Enhanced Media Library - Version 2.3.1

Version Description

Release Date - August 9, 2016

Download this release

Release Info

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

Code changes from version 2.3 to 2.3.1

core/mime-types.php CHANGED
@@ -15,14 +15,14 @@ if ( ! defined( 'ABSPATH' ) )
15
 
16
  if ( ! function_exists( 'wpuxss_eml_mimes_validate' ) ) {
17
 
18
- function wpuxss_eml_mimes_validate($input) {
19
 
20
  if ( ! $input ) $input = array();
21
 
 
22
  if ( isset( $_POST['eml-restore-mime-types-settings'] ) ) {
23
 
24
- $wpuxss_eml_mimes_backup = get_option('wpuxss_eml_mimes_backup');
25
- $input = $wpuxss_eml_mimes_backup;
26
 
27
  add_settings_error(
28
  'mime-types',
@@ -31,7 +31,7 @@ if ( ! function_exists( 'wpuxss_eml_mimes_validate' ) ) {
31
  'updated'
32
  );
33
  }
34
- elseif ( ! isset( $_POST['eml-settings-import'] ) && ! isset( $_POST['eml-settings-restore'] ) ) {
35
 
36
  add_settings_error(
37
  'mime-types',
@@ -41,9 +41,10 @@ if ( ! function_exists( 'wpuxss_eml_mimes_validate' ) ) {
41
  );
42
  }
43
 
 
44
  foreach ( $input as $type => $mime ) {
45
 
46
- $sanitized_type = wpuxss_eml_sanitize_extension($type);
47
 
48
  if ( $sanitized_type !== $type ) {
49
 
15
 
16
  if ( ! function_exists( 'wpuxss_eml_mimes_validate' ) ) {
17
 
18
+ function wpuxss_eml_mimes_validate( $input ) {
19
 
20
  if ( ! $input ) $input = array();
21
 
22
+
23
  if ( isset( $_POST['eml-restore-mime-types-settings'] ) ) {
24
 
25
+ $input = get_option( 'wpuxss_eml_mimes_backup' , array() );
 
26
 
27
  add_settings_error(
28
  'mime-types',
31
  'updated'
32
  );
33
  }
34
+ else {
35
 
36
  add_settings_error(
37
  'mime-types',
41
  );
42
  }
43
 
44
+
45
  foreach ( $input as $type => $mime ) {
46
 
47
+ $sanitized_type = wpuxss_eml_sanitize_extension( $type );
48
 
49
  if ( $sanitized_type !== $type ) {
50
 
core/options-pages.php CHANGED
@@ -467,7 +467,13 @@ if ( ! function_exists( 'wpuxss_eml_mimetype_options_page_scripts' ) ) {
467
  );
468
 
469
  $l10n_data = array(
470
- 'mime_deletion_confirm' => __( 'Warning! All your custom MIME Types will be deleted by this operation.', 'enhanced-media-library' ),
 
 
 
 
 
 
471
  'mime_error_empty_fields' => __( 'Please fill into all fields.', 'enhanced-media-library' ),
472
  'mime_error_duplicate' => __( 'Duplicate extensions or MIME types. Please chose other one.', 'enhanced-media-library' )
473
  );
@@ -1463,6 +1469,8 @@ if ( ! function_exists( 'wpuxss_eml_print_mimetypes_options' ) ) {
1463
 
1464
  <?php settings_fields( 'mime-types' ); ?>
1465
 
 
 
1466
  <table class="wpuxss-eml-mime-type-list wp-list-table widefat" cellspacing="0">
1467
  <thead>
1468
  <tr>
@@ -1532,9 +1540,7 @@ if ( ! function_exists( 'wpuxss_eml_print_mimetypes_options' ) ) {
1532
  </tfoot>
1533
  </table>
1534
 
1535
- <?php submit_button(__('Restore WordPress default MIME Types','enhanced-media-library'),'secondary','eml-restore-mime-types-settings'); ?>
1536
-
1537
- <?php submit_button( __( 'Save Changes', 'enhanced-media-library' ), 'primary', 'eml-save-mime-types-settings' ); ?>
1538
 
1539
  </form>
1540
 
@@ -1552,6 +1558,29 @@ if ( ! function_exists( 'wpuxss_eml_print_mimetypes_options' ) ) {
1552
 
1553
 
1554
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1555
  /**
1556
  * wpuxss_eml_print_credits
1557
  *
467
  );
468
 
469
  $l10n_data = array(
470
+ 'mime_restoring_confirm_title' => __( 'Restore WordPress default MIME Types', 'enhanced-media-library' ),
471
+ 'mime_restoring_confirm_text' => __( 'Warning! All your custom MIME Types will be deleted by this operation.', 'enhanced-media-library' ),
472
+ 'mime_restoring_yes' => __( 'Restore Defaults', 'enhanced-media-library' ),
473
+ 'in_progress_restoring_text' => __( 'Restoring...', 'enhanced-media-library' ),
474
+
475
+ 'cancel' => __( 'Cancel', 'enhanced-media-library' ),
476
+
477
  'mime_error_empty_fields' => __( 'Please fill into all fields.', 'enhanced-media-library' ),
478
  'mime_error_duplicate' => __( 'Duplicate extensions or MIME types. Please chose other one.', 'enhanced-media-library' )
479
  );
1469
 
1470
  <?php settings_fields( 'mime-types' ); ?>
1471
 
1472
+ <?php wpuxss_eml_print_mimetypes_buttons(); ?>
1473
+
1474
  <table class="wpuxss-eml-mime-type-list wp-list-table widefat" cellspacing="0">
1475
  <thead>
1476
  <tr>
1540
  </tfoot>
1541
  </table>
1542
 
1543
+ <?php wpuxss_eml_print_mimetypes_buttons(); ?>
 
 
1544
 
1545
  </form>
1546
 
1558
 
1559
 
1560
 
1561
+ /**
1562
+ * wpuxss_eml_print_mimetypes_buttons
1563
+ *
1564
+ * @since 2.3.1
1565
+ * @created 01/08/16
1566
+ */
1567
+
1568
+ if ( ! function_exists( 'wpuxss_eml_print_mimetypes_buttons' ) ) {
1569
+
1570
+ function wpuxss_eml_print_mimetypes_buttons() { ?>
1571
+
1572
+ <p class="submit">
1573
+ <?php submit_button( __( 'Save Changes', 'enhanced-media-library' ), 'primary', 'eml-save-mime-types-settings', false ); ?>
1574
+
1575
+ <input type="button" name="eml-restore-mime-types-settings" id="eml-restore-mime-types-settings" class="button" value="<?php _e('Restore WordPress default MIME Types','enhanced-media-library'); ?>">
1576
+ </p>
1577
+
1578
+ <?php
1579
+ }
1580
+ }
1581
+
1582
+
1583
+
1584
  /**
1585
  * wpuxss_eml_print_credits
1586
  *
css/eml-admin.css CHANGED
@@ -190,6 +190,9 @@ body.eml-media-css .media-modal.acf-expanded .attachments-browser .media-toolbar
190
  .wpuxss-eml-column-delete {
191
  width: 30px;
192
  }
 
 
 
193
 
194
 
195
 
190
  .wpuxss-eml-column-delete {
191
  width: 30px;
192
  }
193
+ #eml-restore-mime-types-settings {
194
+ margin-left: 20px;
195
+ }
196
 
197
 
198
 
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
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';
31
 
32
 
33
 
@@ -261,7 +261,11 @@ if ( ! function_exists( 'wpuxss_eml_on_wp_loaded' ) ) {
261
  }
262
 
263
  if ( in_array( 'post', $params->object_type ) ) {
264
- $wp_taxonomies[$taxonomy]->update_count_callback = '_eml_update_post_term_count';
 
 
 
 
265
  }
266
  }
267
 
@@ -756,6 +760,14 @@ if ( ! function_exists( 'wpuxss_eml_on_update' ) ) {
756
  );
757
  }
758
  }
 
 
 
 
 
 
 
 
759
 
760
 
761
  update_option( 'wpuxss_eml_taxonomies', $wpuxss_eml_taxonomies );
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.1
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
27
 
28
 
29
 
30
+ $wpuxss_eml_version = '2.3.1';
31
 
32
 
33
 
261
  }
262
 
263
  if ( in_array( 'post', $params->object_type ) ) {
264
+
265
+ if ( in_array( 'attachment', $params->object_type ) )
266
+ $wp_taxonomies[$taxonomy]->update_count_callback = '_eml_update_post_term_count';
267
+ else
268
+ unset( $wp_taxonomies[$taxonomy]->update_count_callback );
269
  }
270
  }
271
 
760
  );
761
  }
762
  }
763
+ else {
764
+
765
+ // since 2.3.1
766
+ if ( ! isset( $wpuxss_eml_lib_options['media_orderby'] ) )
767
+ $wpuxss_eml_lib_options['media_orderby'] = 'date';
768
+ if ( ! isset( $wpuxss_eml_lib_options['media_order'] ) )
769
+ $wpuxss_eml_lib_options['media_order'] = 'DESC';
770
+ }
771
 
772
 
773
  update_option( 'wpuxss_eml_taxonomies', $wpuxss_eml_taxonomies );
js/eml-media-views.js CHANGED
@@ -43,6 +43,8 @@ window.eml = window.eml || { l10n: {} };
43
  library.saveMenuOrder();
44
  }
45
 
 
 
46
  library.reset( library.models );
47
 
48
  selection.trigger( 'selection:unsingle', selection.model, selection );
@@ -51,16 +53,12 @@ window.eml = window.eml || { l10n: {} };
51
 
52
  uploading: function( attachment ) {
53
 
54
- var content = this.frame.content,
55
  selection = this.get( 'selection' );
56
 
57
 
58
- if ( 'upload' === content.mode() ) {
59
- this.frame.content.mode('browse');
60
- }
61
-
62
- if ( wp.Uploader.queue.length == 1 ) {
63
- $('.attachment-filters:has(option[value!="all"]:selected)').val( 'all' ).change();
64
  }
65
 
66
  if ( this.get( 'autoSelect' ) ) {
@@ -71,8 +69,8 @@ window.eml = window.eml || { l10n: {} };
71
  selection.add( attachment );
72
  selection.trigger( 'selection:unsingle', selection.model, selection );
73
  selection.trigger( 'selection:single', selection.model, selection );
74
- }
75
- }
76
  });
77
 
78
 
43
  library.saveMenuOrder();
44
  }
45
 
46
+ $('.attachment-filters:has(option[value!="all"]:selected)').val( 'all' ).change();
47
+
48
  library.reset( library.models );
49
 
50
  selection.trigger( 'selection:unsingle', selection.model, selection );
53
 
54
  uploading: function( attachment ) {
55
 
56
+ var content = this.frame.content,
57
  selection = this.get( 'selection' );
58
 
59
 
60
+ if ( 'upload' === content.mode() ) {
61
+ this.frame.content.mode('browse');
 
 
 
 
62
  }
63
 
64
  if ( this.get( 'autoSelect' ) ) {
69
  selection.add( attachment );
70
  selection.trigger( 'selection:unsingle', selection.model, selection );
71
  selection.trigger( 'selection:single', selection.model, selection );
72
+ }
73
+ }
74
  });
75
 
76
 
js/eml-mimetype-options.js CHANGED
@@ -1,17 +1,13 @@
1
- window.eml = window.eml || { l10n: {} };
2
-
3
-
4
-
5
  ( function( $, _ ) {
6
 
7
- _.extend( eml.l10n, { mime: wpuxss_eml_mimetype_options_l10n_data } );
8
 
9
 
10
 
11
  // create new mime type
12
  $( document ).on( 'click', '.wpuxss-eml-button-create-mime', function() {
13
 
14
- $('.wpuxss-eml-mime-type-list').find('.wpuxss-eml-clone').clone().attr('class','wpuxss-eml-clone-mime').prependTo('.wpuxss-eml-mime-type-list tbody').show(300);
15
 
16
  return false;
17
  });
@@ -52,34 +48,54 @@ window.eml = window.eml || { l10n: {} };
52
  });
53
 
54
  // mime types restoration warning
55
- $( document ).on( 'click', '#wpuxss_eml_restore_mimes_backup', function() {
56
 
57
- if ( confirm(eml.l10n.mime.mime_deletion_confirm) )
58
- return true;
59
 
60
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  });
62
 
63
  // on mime types form submit
64
- $('#wpuxss-eml-form-mimetypes').submit(function( event ) {
65
 
66
  submit_it = true;
67
  alert_text = '';
68
 
69
  $('.wpuxss-eml-clone-mime').each(function( index ) {
70
 
71
- if ( !$('.wpuxss-eml-type',this).val() || $('.wpuxss-eml-type',this).val() == '' || !$('.wpuxss-eml-mime',this).val() || $('.wpuxss-eml-mime',this).val() == '' ) {
 
72
 
73
  submit_it = false;
74
  alert_text = eml.l10n.mime.mime_error_empty_fields;
75
  }
76
- else if ( $('[id="'+$('.wpuxss-eml-type',this).val()+'"]').length > 0 || $('.wpuxss-eml-mime[value="'+$('.wpuxss-eml-mime',this).val()+'"]').length > 0 ) {
 
77
 
78
  submit_it = false;
79
  alert_text = eml.l10n.mime.mime_error_duplicate;
80
  }
81
 
82
- if ( !$('.wpuxss-eml-singular',this).val() || $('.wpuxss-eml-singular',this).val() == '' || !$('.wpuxss-eml-plural',this).val() || $('.wpuxss-eml-plural',this).val() == '' ) {
 
83
 
84
  $('.wpuxss-eml-singular',this).val($('.wpuxss-eml-mime',this).val());
85
  $('.wpuxss-eml-plural',this).val($('.wpuxss-eml-mime',this).val());
 
 
 
 
1
  ( function( $, _ ) {
2
 
3
+ var l10n = wpuxss_eml_mimetype_options_l10n_data;
4
 
5
 
6
 
7
  // create new mime type
8
  $( document ).on( 'click', '.wpuxss-eml-button-create-mime', function() {
9
 
10
+ $('.wpuxss-eml-mime-type-list').find('.wpuxss-eml-clone').clone().attr('class','wpuxss-eml-clone-mime').prependTo('.wpuxss-eml-mime-type-list tbody').show(300).find('input').first().focus();
11
 
12
  return false;
13
  });
48
  });
49
 
50
  // mime types restoration warning
51
+ $( document ).on( 'click', '#eml-restore-mime-types-settings', function( event ) {
52
 
53
+ var name = this.name,
54
+ value = $(this).val();
55
 
56
+
57
+ event.preventDefault();
58
+
59
+ emlConfirmDialog( l10n.mime_restoring_confirm_title, l10n.mime_restoring_confirm_text, l10n.mime_restoring_yes, l10n.cancel, 'button button-primary eml-warning-button' )
60
+ .done( function() {
61
+
62
+ emlFullscreenSpinnerStart( l10n.in_progress_restoring_text );
63
+
64
+ $('<input type="hidden"/>').attr( 'name', name )
65
+ .val( value )
66
+ .appendTo( $('#wpuxss-eml-form-mimetypes') );
67
+
68
+ $('#wpuxss-eml-form-mimetypes').submit();
69
+
70
+ })
71
+ .fail(function() {
72
+ return false;
73
+ });
74
  });
75
 
76
  // on mime types form submit
77
+ $( '#wpuxss-eml-form-mimetypes' ).submit( function( event ) {
78
 
79
  submit_it = true;
80
  alert_text = '';
81
 
82
  $('.wpuxss-eml-clone-mime').each(function( index ) {
83
 
84
+ if ( ! $('.wpuxss-eml-type',this).val() || $('.wpuxss-eml-type',this).val() == '' ||
85
+ ! $('.wpuxss-eml-mime',this).val() || $('.wpuxss-eml-mime',this).val() == '' ) {
86
 
87
  submit_it = false;
88
  alert_text = eml.l10n.mime.mime_error_empty_fields;
89
  }
90
+ else if ( $('[id="'+$('.wpuxss-eml-type',this).val()+'"]').length > 0 ||
91
+ $('.wpuxss-eml-mime[value="'+$('.wpuxss-eml-mime',this).val()+'"]').length > 0 ) {
92
 
93
  submit_it = false;
94
  alert_text = eml.l10n.mime.mime_error_duplicate;
95
  }
96
 
97
+ if ( ! $('.wpuxss-eml-singular',this).val() || $('.wpuxss-eml-singular',this).val() == '' ||
98
+ ! $('.wpuxss-eml-plural',this).val() || $('.wpuxss-eml-plural',this).val() == '' ) {
99
 
100
  $('.wpuxss-eml-singular',this).val($('.wpuxss-eml-mime',this).val());
101
  $('.wpuxss-eml-plural',this).val($('.wpuxss-eml-mime',this).val());
languages/enhanced-media-library-de_DE.mo CHANGED
Binary file
languages/enhanced-media-library-de_DE.po CHANGED
@@ -3,7 +3,7 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-06-27 20:51+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: Markus Kottländer\n"
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "MIME Types settings saved."
30
  msgstr ""
31
 
32
- #: core/mime-types.php:115
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -37,8 +37,8 @@ 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:997 core/options-pages.php:1122
41
- #: core/options-pages.php:1445 core/options-pages.php:1622
42
  msgid "Media Settings"
43
  msgstr "Medien-Einstellungen"
44
 
@@ -54,7 +54,6 @@ msgstr "Taxonomien"
54
  msgid "MIME Types"
55
  msgstr "MIME Types"
56
 
57
- #. Plugin Name of the plugin/theme
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr "Enhanced Media Library"
@@ -63,13 +62,13 @@ msgstr "Enhanced Media Library"
63
  msgid "General"
64
  msgstr ""
65
 
66
- #: core/options-pages.php:209 core/options-pages.php:1143
67
  msgid "Media Taxonomies"
68
  msgstr "Media Taxonomien"
69
 
70
- #: core/options-pages.php:233 core/options-pages.php:539
71
- #: core/options-pages.php:993 core/options-pages.php:1118
72
- #: core/options-pages.php:1441
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr ""
75
 
@@ -145,9 +144,9 @@ msgstr ""
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:397 core/options-pages.php:1167
149
- #: core/options-pages.php:1182 core/options-pages.php:1245
150
- #: core/options-pages.php:1314
151
  msgid "Edit"
152
  msgstr "Bearbeiten"
153
 
@@ -155,23 +154,23 @@ msgstr "Bearbeiten"
155
  msgid "Close"
156
  msgstr "Schließen"
157
 
158
- #: core/options-pages.php:399 core/options-pages.php:1183
159
- #: core/options-pages.php:1246
160
  msgid "View"
161
  msgstr "Anzeigen"
162
 
163
- #: core/options-pages.php:400 core/options-pages.php:1184
164
- #: core/options-pages.php:1247
165
  msgid "Update"
166
  msgstr "Aktualisieren"
167
 
168
- #: core/options-pages.php:401 core/options-pages.php:1185
169
- #: core/options-pages.php:1248
170
  msgid "Add New"
171
  msgstr ""
172
 
173
- #: core/options-pages.php:402 core/options-pages.php:1186
174
- #: core/options-pages.php:1249
175
  msgid "New"
176
  msgstr ""
177
 
@@ -179,23 +178,23 @@ msgstr ""
179
  msgid "Name"
180
  msgstr ""
181
 
182
- #: core/options-pages.php:404 core/options-pages.php:1187
183
- #: core/options-pages.php:1250
184
  msgid "Parent"
185
  msgstr ""
186
 
187
- #: core/options-pages.php:405 core/options-pages.php:635
188
- #: core/options-pages.php:1181 core/options-pages.php:1244
189
- #: core/taxonomies.php:348 enhanced-media-library.php:481
190
  msgid "All"
191
  msgstr "Alle"
192
 
193
- #: core/options-pages.php:406 core/options-pages.php:1188
194
- #: core/options-pages.php:1251
195
  msgid "Search"
196
  msgstr "Durchsuchen"
197
 
198
- #: core/options-pages.php:408 core/options-pages.php:1232
199
  msgid "New Taxonomy"
200
  msgstr ""
201
 
@@ -255,7 +254,7 @@ msgid "Ok"
255
  msgstr ""
256
 
257
  #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
@@ -263,7 +262,7 @@ msgstr ""
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
@@ -275,45 +274,57 @@ msgstr ""
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:470
279
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr ""
281
 
282
  #: core/options-pages.php:471
283
- msgid "Please fill into all fields."
284
  msgstr ""
285
 
286
  #: core/options-pages.php:472
 
 
 
 
 
 
 
 
 
 
 
 
287
  msgid "Duplicate extensions or MIME types. Please chose other one."
288
  msgstr ""
289
 
290
- #: core/options-pages.php:509 core/options-pages.php:626
291
  msgid "Complete Cleanup"
292
  msgstr ""
293
 
294
- #: core/options-pages.php:510
295
  msgid ""
296
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
297
  "plugin data</strong> from the database including backups."
298
  msgstr ""
299
 
300
- #: core/options-pages.php:512
301
  msgid "Yes, delete all data"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:513
305
  msgid "Cleaning..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:544
309
  msgid "Enhanced Media Library Settings"
310
  msgstr ""
311
 
312
- #: core/options-pages.php:554
313
  msgid "Export"
314
  msgstr ""
315
 
316
- #: core/options-pages.php:558
317
  msgid ""
318
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
319
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -321,15 +332,15 @@ msgid ""
321
  "another website."
322
  msgstr ""
323
 
324
- #: core/options-pages.php:563
325
  msgid "Export Plugin Settings"
326
  msgstr ""
327
 
328
- #: core/options-pages.php:573
329
  msgid "Import"
330
  msgstr ""
331
 
332
- #: core/options-pages.php:577
333
  msgid ""
334
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
335
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -337,168 +348,168 @@ msgid ""
337
  "another website using the export button above."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:578
341
  msgid ""
342
  "All plugin settings will be overridden by the import. You will have a chance "
343
  "to restore current data from an automatic backup in case you are not "
344
  "satisfied with the result of the import."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:585
348
  msgid "Import Plugin Settings"
349
  msgstr ""
350
 
351
- #: core/options-pages.php:597
352
  msgid "Restore"
353
  msgstr ""
354
 
355
- #: core/options-pages.php:603
356
  msgid "No backup available at the moment."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:605
360
  msgid "Backup will be created automatically before any import operation."
361
  msgstr ""
362
 
363
- #: core/options-pages.php:609
364
  msgid ""
365
  "The backup has been automatically created before the latest import operation."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:613
369
  msgid "Restore Settings from the Backup"
370
  msgstr ""
371
 
372
- #: core/options-pages.php:633
373
  msgid "What will be deleted:"
374
  msgstr ""
375
 
376
- #: core/options-pages.php:638
377
  msgid "All plugin options"
378
  msgstr ""
379
 
380
- #: core/options-pages.php:639
381
  msgid "All plugin backups stored in database"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:643
385
  msgid "What will remain intact:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:644
389
  msgid "All media items"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:645
393
  msgid "All taxonomies not listed above"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:648
397
  msgid ""
398
  "The plugin cannot delete itself because of security reason. Please delete it "
399
  "manually from plugin list after cleanup."
400
  msgstr ""
401
 
402
- #: core/options-pages.php:650
403
  msgid ""
404
  "If you are not sure about this operation please create a backup of your "
405
  "database prior to cleanup!"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:656
409
  msgid "Delete All Data & Deactivate"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:756
413
  msgid "Please upload a file to import settings."
414
  msgstr ""
415
 
416
- #: core/options-pages.php:782
417
  msgid "Plugin settings imported."
418
  msgstr ""
419
 
420
- #: core/options-pages.php:829
421
  msgid "Plugin settings restored from the backup."
422
  msgstr ""
423
 
424
- #: core/options-pages.php:1018
425
  msgid "Media Items Order"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:1025
429
  msgid "Order media items by"
430
  msgstr ""
431
 
432
- #: core/options-pages.php:1028
433
  msgid "Date"
434
  msgstr ""
435
 
436
- #: core/options-pages.php:1029
437
  msgid "Title"
438
  msgstr ""
439
 
440
- #: core/options-pages.php:1030
441
  msgid "Custom Order"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1032 core/options-pages.php:1044
445
  msgid "For media library and media popups"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1033
449
  msgid "Option allows to change order by drag and drop with Custom Order value."
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1038
453
  msgid "Sort order"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1041
457
  msgid "Ascending"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1042
461
  msgid "Descending"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1057
465
  msgid "Media Shortcodes"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1064 core/options-pages.php:1067
469
  msgid "Enhanced media shortcodes"
470
  msgstr ""
471
 
472
- #: core/options-pages.php:1068
473
  msgid ""
474
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
475
  "upload date, and media items number limit"
476
  msgstr ""
477
 
478
- #: core/options-pages.php:1069
479
  msgid "Gallery example:"
480
  msgstr ""
481
 
482
- #: core/options-pages.php:1070
483
  msgid "Audio playlist example:"
484
  msgstr ""
485
 
486
- #: core/options-pages.php:1071
487
  msgid "Video playlist example:"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1073
491
  #, php-format
492
  msgid ""
493
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1075
497
  #, php-format
498
  msgid "%sLearn more%s."
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1077
502
  #, php-format
503
  msgid ""
504
  "Please check out your gallery front-end and back-end functionality once this "
@@ -506,244 +517,240 @@ msgid ""
506
  "%s."
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1147 core/options-pages.php:1294
510
  msgid "Assign following taxonomies to Media Library:"
511
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
512
 
513
- #: core/options-pages.php:1166 core/options-pages.php:1232
514
- #: core/options-pages.php:1313
515
  msgid "Assign Taxonomy"
516
  msgstr "Taxonomie zuweisen"
517
 
518
- #: core/options-pages.php:1167 core/options-pages.php:1314
519
  msgid "Edit Taxonomy"
520
  msgstr "Taxonomie bearbeiten"
521
 
522
- #: core/options-pages.php:1171 core/options-pages.php:1234
523
  msgid "Delete Taxonomy"
524
  msgstr "Taxonomie löschen"
525
 
526
- #: core/options-pages.php:1176 core/options-pages.php:1239
527
  msgid "Labels"
528
  msgstr ""
529
 
530
- #: core/options-pages.php:1178 core/options-pages.php:1241
531
  msgid "Singular"
532
  msgstr ""
533
 
534
- #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Plural"
536
  msgstr ""
537
 
538
- #: core/options-pages.php:1180 core/options-pages.php:1243
539
  msgid "Menu Name"
540
  msgstr "Menü Name"
541
 
542
- #: core/options-pages.php:1193 core/options-pages.php:1216
543
- #: core/options-pages.php:1256 core/options-pages.php:1317
544
  msgid "Settings"
545
  msgstr "Einstellungen"
546
 
547
- #: core/options-pages.php:1195 core/options-pages.php:1258
548
  msgid "Taxonomy Name"
549
  msgstr "Taxonomie Name"
550
 
551
- #: core/options-pages.php:1196 core/options-pages.php:1259
552
  msgid "Hierarchical"
553
  msgstr "Hierarchisch"
554
 
555
- #: core/options-pages.php:1197 core/options-pages.php:1260
556
  msgid "Column for List View"
557
  msgstr ""
558
 
559
- #: core/options-pages.php:1198 core/options-pages.php:1218
560
- #: core/options-pages.php:1261 core/options-pages.php:1319
561
  msgid "Filter for List View"
562
  msgstr ""
563
 
564
- #: core/options-pages.php:1199 core/options-pages.php:1219
565
- #: core/options-pages.php:1262 core/options-pages.php:1320
566
  msgid "Filter for Grid View / Media Popup"
567
  msgstr ""
568
 
569
- #: core/options-pages.php:1200 core/options-pages.php:1220
570
- #: core/options-pages.php:1263 core/options-pages.php:1321
571
  msgid "Edit in Media Popup"
572
  msgstr ""
573
 
574
- #: core/options-pages.php:1201 core/options-pages.php:1264
575
  msgid "Show in Nav Menu"
576
  msgstr ""
577
 
578
- #: core/options-pages.php:1202 core/options-pages.php:1265
579
  msgid "Remember Terms Order (sort)"
580
  msgstr ""
581
 
582
- #: core/options-pages.php:1203 core/options-pages.php:1266
583
  msgid "Show in REST"
584
  msgstr ""
585
 
586
- #: core/options-pages.php:1204 core/options-pages.php:1267
587
  msgid "Rewrite Slug"
588
  msgstr ""
589
 
590
- #: core/options-pages.php:1205 core/options-pages.php:1268
591
  msgid "Slug with Front"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1280
595
  msgid "Add New Taxonomy"
596
  msgstr "Neue Taxonomie hinzufügen"
597
 
598
- #: core/options-pages.php:1290
599
  msgid "Non-Media Taxonomies"
600
  msgstr "Nicht-Medien Taxonimien"
601
 
602
- #: core/options-pages.php:1351
603
  msgid "Options"
604
  msgstr "Optionen"
605
 
606
- #: core/options-pages.php:1361 core/options-pages.php:1364
607
  msgid "Taxonomy archive pages"
608
  msgstr "Taxonomie Archiv Seiten"
609
 
610
- #: core/options-pages.php:1365
611
  msgid "Turn on media taxonomy archive pages on the front-end"
612
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
613
 
614
- #: core/options-pages.php:1366
615
  msgid ""
616
  "Re-save your permalink settings after this option change to make it work."
617
  msgstr ""
618
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
619
  "greift."
620
 
621
- #: core/options-pages.php:1372 core/options-pages.php:1375
622
  msgid "Assign all like hierarchical"
623
  msgstr "Alle als hierarchisch zuweisen"
624
 
625
- #: core/options-pages.php:1376
626
  msgid ""
627
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
628
  msgstr ""
629
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
630
  "Popups als hierarchisch an"
631
 
632
- #: core/options-pages.php:1382 core/options-pages.php:1385
633
  msgid "Force filters"
634
  msgstr "Filter erzwingen"
635
 
636
- #: core/options-pages.php:1386
637
  msgid "Show media filters for ANY Media Popup"
638
  msgstr ""
639
 
640
- #: core/options-pages.php:1387
641
  msgid "Try this if filters are not shown for third-party plugins or themes."
642
  msgstr ""
643
 
644
- #: core/options-pages.php:1393 core/options-pages.php:1396
645
  msgid "Show count"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1397
649
  msgid "Show item count per category for media filters"
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1451
653
  msgid "Add New MIME Type"
654
  msgstr "Neuen MIME Type hinzufügen"
655
 
656
- #: core/options-pages.php:1469 core/options-pages.php:1524
657
  msgid "Extension"
658
  msgstr "Dateiendung"
659
 
660
- #: core/options-pages.php:1470 core/options-pages.php:1525
661
  msgid "MIME Type"
662
  msgstr "MIME Type"
663
 
664
- #: core/options-pages.php:1471 core/options-pages.php:1526
665
  msgid "Singular Label"
666
  msgstr "Singular Beschriftung"
667
 
668
- #: core/options-pages.php:1472 core/options-pages.php:1527
669
  msgid "Plural Label"
670
  msgstr "Plural Beschriftung"
671
 
672
- #: core/options-pages.php:1473 core/options-pages.php:1503
673
- #: core/options-pages.php:1516 core/options-pages.php:1528
674
  msgid "Add Filter"
675
  msgstr "Filter hinzufügen"
676
 
677
- #: core/options-pages.php:1474 core/options-pages.php:1504
678
- #: core/options-pages.php:1517 core/options-pages.php:1529
679
  msgid "Allow Upload"
680
  msgstr "Upload erlauben"
681
 
682
- #: core/options-pages.php:1505 core/options-pages.php:1518
683
  msgid "Delete MIME Type"
684
  msgstr "MIME Type löschen"
685
 
686
- #: core/options-pages.php:1535
687
- msgid "Restore WordPress default MIME Types"
688
- msgstr ""
689
-
690
- #: core/options-pages.php:1537
691
  msgid "Save Changes"
692
  msgstr "Änderungen speichern"
693
 
694
- #: core/options-pages.php:1574
695
  msgid "Changelog"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1575
699
  msgid "What's new in"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1575
703
  msgid "version"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1578
707
  msgid "More features under the hood"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1580
711
  msgid "Support"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1581
715
  msgid "Feel free to ask for help on"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1581
719
  msgid "Support is free for both versions of the plugin."
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1583
723
  msgid "Plugin rating"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1584
727
  msgid "Please"
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1584
731
  msgid "vote for the plugin"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1584
735
  msgid "Thanks!"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1586
739
  msgid "Other plugins you may find useful"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1625
743
  msgid "Utility"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1648
747
  msgid "Vote!"
748
  msgstr ""
749
 
@@ -756,84 +763,70 @@ msgid "Media Library settings saved."
756
  msgstr ""
757
 
758
  #: core/taxonomies.php:341 core/taxonomies.php:347
759
- #: enhanced-media-library.php:480
760
  msgid "Filter by"
761
  msgstr "Filtern nach"
762
 
763
- #: core/taxonomies.php:349 enhanced-media-library.php:482
764
  msgid "Not in"
765
  msgstr "Nicht in"
766
 
767
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
768
  msgid "All Uncategorized"
769
  msgstr "Alle unkategorisierten"
770
 
771
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
772
  msgid "Reset All Filters"
773
  msgstr "Alle Filter zurücksetzen"
774
 
775
- #: enhanced-media-library.php:513
776
  msgid "Uploaded to post #"
777
  msgstr ""
778
 
779
- #: enhanced-media-library.php:514
780
  msgid "Based On"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
784
  msgid "Media Categories"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:560
788
  msgid "Media Category"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:562
792
  msgid "All Media Categories"
793
  msgstr ""
794
 
795
- #: enhanced-media-library.php:563
796
  msgid "Edit Media Category"
797
  msgstr ""
798
 
799
- #: enhanced-media-library.php:564
800
  msgid "View Media Category"
801
  msgstr ""
802
 
803
- #: enhanced-media-library.php:565
804
  msgid "Update Media Category"
805
  msgstr ""
806
 
807
- #: enhanced-media-library.php:566
808
  msgid "Add New Media Category"
809
  msgstr ""
810
 
811
- #: enhanced-media-library.php:567
812
  msgid "New Media Category Name"
813
  msgstr ""
814
 
815
- #: enhanced-media-library.php:568
816
  msgid "Parent Media Category"
817
  msgstr ""
818
 
819
- #: enhanced-media-library.php:569
820
  msgid "Parent Media Category:"
821
  msgstr ""
822
 
823
- #: enhanced-media-library.php:570
824
  msgid "Search Media Categories"
825
  msgstr ""
826
-
827
- #. Plugin URI of the plugin/theme
828
- #. Author URI of the plugin/theme
829
- msgid "http://wpUXsolutions.com"
830
- msgstr ""
831
-
832
- #. Description of the plugin/theme
833
- msgid ""
834
- "This plugin will be handy for those who need to manage a lot of media files."
835
- msgstr "Dieses Plugin ist nützlich für alle, die viele Medien verwalten."
836
-
837
- #. Author of the plugin/theme
838
- msgid "wpUXsolutions"
839
- msgstr ""
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"
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>"
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
 
54
  msgid "MIME Types"
55
  msgstr "MIME Types"
56
 
 
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-he_IL.mo CHANGED
Binary file
languages/enhanced-media-library-he_IL.po CHANGED
@@ -3,7 +3,7 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-06-27 20:52+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: \n"
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "MIME Types settings saved."
30
  msgstr ""
31
 
32
- #: core/mime-types.php:115
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -37,8 +37,8 @@ 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:997 core/options-pages.php:1122
41
- #: core/options-pages.php:1445 core/options-pages.php:1622
42
  msgid "Media Settings"
43
  msgstr "הגדרות מדיה"
44
 
@@ -54,7 +54,6 @@ msgstr "תוית מיון"
54
  msgid "MIME Types"
55
  msgstr "סוגי קבצים"
56
 
57
- #. Plugin Name of the plugin/theme
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr "ספרית מדיה משופרת"
@@ -63,13 +62,13 @@ msgstr "ספרית מדיה משופרת"
63
  msgid "General"
64
  msgstr ""
65
 
66
- #: core/options-pages.php:209 core/options-pages.php:1143
67
  msgid "Media Taxonomies"
68
  msgstr "תויות מיון למדיה"
69
 
70
- #: core/options-pages.php:233 core/options-pages.php:539
71
- #: core/options-pages.php:993 core/options-pages.php:1118
72
- #: core/options-pages.php:1441
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
75
 
@@ -145,9 +144,9 @@ msgstr ""
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:397 core/options-pages.php:1167
149
- #: core/options-pages.php:1182 core/options-pages.php:1245
150
- #: core/options-pages.php:1314
151
  msgid "Edit"
152
  msgstr "ערוך"
153
 
@@ -155,23 +154,23 @@ msgstr "ערוך"
155
  msgid "Close"
156
  msgstr "סגור"
157
 
158
- #: core/options-pages.php:399 core/options-pages.php:1183
159
- #: core/options-pages.php:1246
160
  msgid "View"
161
  msgstr "צפה"
162
 
163
- #: core/options-pages.php:400 core/options-pages.php:1184
164
- #: core/options-pages.php:1247
165
  msgid "Update"
166
  msgstr "עדכן"
167
 
168
- #: core/options-pages.php:401 core/options-pages.php:1185
169
- #: core/options-pages.php:1248
170
  msgid "Add New"
171
  msgstr "הוסף חדש"
172
 
173
- #: core/options-pages.php:402 core/options-pages.php:1186
174
- #: core/options-pages.php:1249
175
  msgid "New"
176
  msgstr "חדש"
177
 
@@ -179,23 +178,23 @@ msgstr "חדש"
179
  msgid "Name"
180
  msgstr "שם"
181
 
182
- #: core/options-pages.php:404 core/options-pages.php:1187
183
- #: core/options-pages.php:1250
184
  msgid "Parent"
185
  msgstr "הורה"
186
 
187
- #: core/options-pages.php:405 core/options-pages.php:635
188
- #: core/options-pages.php:1181 core/options-pages.php:1244
189
- #: core/taxonomies.php:348 enhanced-media-library.php:481
190
  msgid "All"
191
  msgstr "הכל"
192
 
193
- #: core/options-pages.php:406 core/options-pages.php:1188
194
- #: core/options-pages.php:1251
195
  msgid "Search"
196
  msgstr "חיפוש"
197
 
198
- #: core/options-pages.php:408 core/options-pages.php:1232
199
  msgid "New Taxonomy"
200
  msgstr "תוית מיון חדשה"
201
 
@@ -255,7 +254,7 @@ msgid "Ok"
255
  msgstr ""
256
 
257
  #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
@@ -263,7 +262,7 @@ msgstr ""
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
@@ -275,45 +274,57 @@ msgstr ""
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:470
 
 
 
 
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
281
 
282
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
283
  msgid "Please fill into all fields."
284
  msgstr "אנא הזן את כל השדות"
285
 
286
- #: core/options-pages.php:472
287
  msgid "Duplicate extensions or MIME types. Please chose other one."
288
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
289
 
290
- #: core/options-pages.php:509 core/options-pages.php:626
291
  msgid "Complete Cleanup"
292
  msgstr ""
293
 
294
- #: core/options-pages.php:510
295
  msgid ""
296
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
297
  "plugin data</strong> from the database including backups."
298
  msgstr ""
299
 
300
- #: core/options-pages.php:512
301
  msgid "Yes, delete all data"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:513
305
  msgid "Cleaning..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:544
309
  msgid "Enhanced Media Library Settings"
310
  msgstr ""
311
 
312
- #: core/options-pages.php:554
313
  msgid "Export"
314
  msgstr ""
315
 
316
- #: core/options-pages.php:558
317
  msgid ""
318
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
319
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -321,15 +332,15 @@ msgid ""
321
  "another website."
322
  msgstr ""
323
 
324
- #: core/options-pages.php:563
325
  msgid "Export Plugin Settings"
326
  msgstr ""
327
 
328
- #: core/options-pages.php:573
329
  msgid "Import"
330
  msgstr ""
331
 
332
- #: core/options-pages.php:577
333
  msgid ""
334
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
335
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -337,168 +348,168 @@ msgid ""
337
  "another website using the export button above."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:578
341
  msgid ""
342
  "All plugin settings will be overridden by the import. You will have a chance "
343
  "to restore current data from an automatic backup in case you are not "
344
  "satisfied with the result of the import."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:585
348
  msgid "Import Plugin Settings"
349
  msgstr ""
350
 
351
- #: core/options-pages.php:597
352
  msgid "Restore"
353
  msgstr ""
354
 
355
- #: core/options-pages.php:603
356
  msgid "No backup available at the moment."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:605
360
  msgid "Backup will be created automatically before any import operation."
361
  msgstr ""
362
 
363
- #: core/options-pages.php:609
364
  msgid ""
365
  "The backup has been automatically created before the latest import operation."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:613
369
  msgid "Restore Settings from the Backup"
370
  msgstr ""
371
 
372
- #: core/options-pages.php:633
373
  msgid "What will be deleted:"
374
  msgstr ""
375
 
376
- #: core/options-pages.php:638
377
  msgid "All plugin options"
378
  msgstr ""
379
 
380
- #: core/options-pages.php:639
381
  msgid "All plugin backups stored in database"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:643
385
  msgid "What will remain intact:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:644
389
  msgid "All media items"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:645
393
  msgid "All taxonomies not listed above"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:648
397
  msgid ""
398
  "The plugin cannot delete itself because of security reason. Please delete it "
399
  "manually from plugin list after cleanup."
400
  msgstr ""
401
 
402
- #: core/options-pages.php:650
403
  msgid ""
404
  "If you are not sure about this operation please create a backup of your "
405
  "database prior to cleanup!"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:656
409
  msgid "Delete All Data & Deactivate"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:756
413
  msgid "Please upload a file to import settings."
414
  msgstr ""
415
 
416
- #: core/options-pages.php:782
417
  msgid "Plugin settings imported."
418
  msgstr ""
419
 
420
- #: core/options-pages.php:829
421
  msgid "Plugin settings restored from the backup."
422
  msgstr ""
423
 
424
- #: core/options-pages.php:1018
425
  msgid "Media Items Order"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:1025
429
  msgid "Order media items by"
430
  msgstr ""
431
 
432
- #: core/options-pages.php:1028
433
  msgid "Date"
434
  msgstr ""
435
 
436
- #: core/options-pages.php:1029
437
  msgid "Title"
438
  msgstr ""
439
 
440
- #: core/options-pages.php:1030
441
  msgid "Custom Order"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1032 core/options-pages.php:1044
445
  msgid "For media library and media popups"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1033
449
  msgid "Option allows to change order by drag and drop with Custom Order value."
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1038
453
  msgid "Sort order"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1041
457
  msgid "Ascending"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1042
461
  msgid "Descending"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1057
465
  msgid "Media Shortcodes"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1064 core/options-pages.php:1067
469
  msgid "Enhanced media shortcodes"
470
  msgstr ""
471
 
472
- #: core/options-pages.php:1068
473
  msgid ""
474
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
475
  "upload date, and media items number limit"
476
  msgstr ""
477
 
478
- #: core/options-pages.php:1069
479
  msgid "Gallery example:"
480
  msgstr ""
481
 
482
- #: core/options-pages.php:1070
483
  msgid "Audio playlist example:"
484
  msgstr ""
485
 
486
- #: core/options-pages.php:1071
487
  msgid "Video playlist example:"
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1073
491
  #, php-format
492
  msgid ""
493
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1075
497
  #, php-format
498
  msgid "%sLearn more%s."
499
  msgstr ""
500
 
501
- #: core/options-pages.php:1077
502
  #, php-format
503
  msgid ""
504
  "Please check out your gallery front-end and back-end functionality once this "
@@ -506,241 +517,237 @@ msgid ""
506
  "%s."
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1147 core/options-pages.php:1294
510
  msgid "Assign following taxonomies to Media Library:"
511
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
512
 
513
- #: core/options-pages.php:1166 core/options-pages.php:1232
514
- #: core/options-pages.php:1313
515
  msgid "Assign Taxonomy"
516
  msgstr "הקצא תוית מיון"
517
 
518
- #: core/options-pages.php:1167 core/options-pages.php:1314
519
  msgid "Edit Taxonomy"
520
  msgstr "ערוך תוית מיון"
521
 
522
- #: core/options-pages.php:1171 core/options-pages.php:1234
523
  msgid "Delete Taxonomy"
524
  msgstr "מחק תוית מיון"
525
 
526
- #: core/options-pages.php:1176 core/options-pages.php:1239
527
  msgid "Labels"
528
  msgstr "תויות"
529
 
530
- #: core/options-pages.php:1178 core/options-pages.php:1241
531
  msgid "Singular"
532
  msgstr "יחיד"
533
 
534
- #: core/options-pages.php:1179 core/options-pages.php:1242
535
  msgid "Plural"
536
  msgstr "רבים"
537
 
538
- #: core/options-pages.php:1180 core/options-pages.php:1243
539
  msgid "Menu Name"
540
  msgstr "שם התפריט"
541
 
542
- #: core/options-pages.php:1193 core/options-pages.php:1216
543
- #: core/options-pages.php:1256 core/options-pages.php:1317
544
  msgid "Settings"
545
  msgstr "הגדרות"
546
 
547
- #: core/options-pages.php:1195 core/options-pages.php:1258
548
  msgid "Taxonomy Name"
549
  msgstr "שם תוית המיון"
550
 
551
- #: core/options-pages.php:1196 core/options-pages.php:1259
552
  msgid "Hierarchical"
553
  msgstr "היררכי"
554
 
555
- #: core/options-pages.php:1197 core/options-pages.php:1260
556
  msgid "Column for List View"
557
  msgstr ""
558
 
559
- #: core/options-pages.php:1198 core/options-pages.php:1218
560
- #: core/options-pages.php:1261 core/options-pages.php:1319
561
  msgid "Filter for List View"
562
  msgstr ""
563
 
564
- #: core/options-pages.php:1199 core/options-pages.php:1219
565
- #: core/options-pages.php:1262 core/options-pages.php:1320
566
  msgid "Filter for Grid View / Media Popup"
567
  msgstr ""
568
 
569
- #: core/options-pages.php:1200 core/options-pages.php:1220
570
- #: core/options-pages.php:1263 core/options-pages.php:1321
571
  msgid "Edit in Media Popup"
572
  msgstr "עריכה בחלון מדיה"
573
 
574
- #: core/options-pages.php:1201 core/options-pages.php:1264
575
  msgid "Show in Nav Menu"
576
  msgstr "הצג בתפריט הניווט"
577
 
578
- #: core/options-pages.php:1202 core/options-pages.php:1265
579
  msgid "Remember Terms Order (sort)"
580
  msgstr ""
581
 
582
- #: core/options-pages.php:1203 core/options-pages.php:1266
583
  msgid "Show in REST"
584
  msgstr ""
585
 
586
- #: core/options-pages.php:1204 core/options-pages.php:1267
587
  msgid "Rewrite Slug"
588
  msgstr "שכתב סלוגן"
589
 
590
- #: core/options-pages.php:1205 core/options-pages.php:1268
591
  msgid "Slug with Front"
592
  msgstr "סלוגן עם הקדמה"
593
 
594
- #: core/options-pages.php:1280
595
  msgid "Add New Taxonomy"
596
  msgstr "הוסף תוית מיון חדשה"
597
 
598
- #: core/options-pages.php:1290
599
  msgid "Non-Media Taxonomies"
600
  msgstr "תויות מיון ללא-מדיה"
601
 
602
- #: core/options-pages.php:1351
603
  msgid "Options"
604
  msgstr "אפשרויות"
605
 
606
- #: core/options-pages.php:1361 core/options-pages.php:1364
607
  msgid "Taxonomy archive pages"
608
  msgstr "ארכיון עמודי תויות מיון"
609
 
610
- #: core/options-pages.php:1365
611
  msgid "Turn on media taxonomy archive pages on the front-end"
612
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
613
 
614
- #: core/options-pages.php:1366
615
  msgid ""
616
  "Re-save your permalink settings after this option change to make it work."
617
  msgstr ""
618
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
619
 
620
- #: core/options-pages.php:1372 core/options-pages.php:1375
621
  msgid "Assign all like hierarchical"
622
  msgstr "הקצא הכל באופן היררכי"
623
 
624
- #: core/options-pages.php:1376
625
  msgid ""
626
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
627
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
628
 
629
- #: core/options-pages.php:1382 core/options-pages.php:1385
630
  msgid "Force filters"
631
  msgstr "כפה מסננים"
632
 
633
- #: core/options-pages.php:1386
634
  msgid "Show media filters for ANY Media Popup"
635
  msgstr ""
636
 
637
- #: core/options-pages.php:1387
638
  msgid "Try this if filters are not shown for third-party plugins or themes."
639
  msgstr ""
640
 
641
- #: core/options-pages.php:1393 core/options-pages.php:1396
642
  msgid "Show count"
643
  msgstr ""
644
 
645
- #: core/options-pages.php:1397
646
  msgid "Show item count per category for media filters"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1451
650
  msgid "Add New MIME Type"
651
  msgstr "הוסף סוג קובץ חדש"
652
 
653
- #: core/options-pages.php:1469 core/options-pages.php:1524
654
  msgid "Extension"
655
  msgstr "הרחבה"
656
 
657
- #: core/options-pages.php:1470 core/options-pages.php:1525
658
  msgid "MIME Type"
659
  msgstr "סוג קובץ (MIME Type)"
660
 
661
- #: core/options-pages.php:1471 core/options-pages.php:1526
662
  msgid "Singular Label"
663
  msgstr "תוית יחידה"
664
 
665
- #: core/options-pages.php:1472 core/options-pages.php:1527
666
  msgid "Plural Label"
667
  msgstr "תויות רבות"
668
 
669
- #: core/options-pages.php:1473 core/options-pages.php:1503
670
- #: core/options-pages.php:1516 core/options-pages.php:1528
671
  msgid "Add Filter"
672
  msgstr "הוסף מסנן"
673
 
674
- #: core/options-pages.php:1474 core/options-pages.php:1504
675
- #: core/options-pages.php:1517 core/options-pages.php:1529
676
  msgid "Allow Upload"
677
  msgstr "אפשר העלאה"
678
 
679
- #: core/options-pages.php:1505 core/options-pages.php:1518
680
  msgid "Delete MIME Type"
681
  msgstr "מחק סוג קובץ"
682
 
683
- #: core/options-pages.php:1535
684
- msgid "Restore WordPress default MIME Types"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1537
688
  msgid "Save Changes"
689
  msgstr "שמור שינויים"
690
 
691
- #: core/options-pages.php:1574
692
  msgid "Changelog"
693
  msgstr ""
694
 
695
- #: core/options-pages.php:1575
696
  msgid "What's new in"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1575
700
  msgid "version"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1578
704
  msgid "More features under the hood"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1580
708
  msgid "Support"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1581
712
  msgid "Feel free to ask for help on"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1581
716
  msgid "Support is free for both versions of the plugin."
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1583
720
  msgid "Plugin rating"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1584
724
  msgid "Please"
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1584
728
  msgid "vote for the plugin"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1584
732
  msgid "Thanks!"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1586
736
  msgid "Other plugins you may find useful"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1625
740
  msgid "Utility"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1648
744
  msgid "Vote!"
745
  msgstr ""
746
 
@@ -753,84 +760,70 @@ msgid "Media Library settings saved."
753
  msgstr ""
754
 
755
  #: core/taxonomies.php:341 core/taxonomies.php:347
756
- #: enhanced-media-library.php:480
757
  msgid "Filter by"
758
  msgstr "סנן על-פי"
759
 
760
- #: core/taxonomies.php:349 enhanced-media-library.php:482
761
  msgid "Not in"
762
  msgstr "לא ב-"
763
 
764
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
765
  msgid "All Uncategorized"
766
  msgstr "הכל לא ממויין"
767
 
768
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
769
  msgid "Reset All Filters"
770
  msgstr "אפס את כל המסננים"
771
 
772
- #: enhanced-media-library.php:513
773
  msgid "Uploaded to post #"
774
  msgstr ""
775
 
776
- #: enhanced-media-library.php:514
777
  msgid "Based On"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
781
  msgid "Media Categories"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:560
785
  msgid "Media Category"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:562
789
  msgid "All Media Categories"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:563
793
  msgid "Edit Media Category"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:564
797
  msgid "View Media Category"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:565
801
  msgid "Update Media Category"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:566
805
  msgid "Add New Media Category"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:567
809
  msgid "New Media Category Name"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:568
813
  msgid "Parent Media Category"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:569
817
  msgid "Parent Media Category:"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:570
821
  msgid "Search Media Categories"
822
  msgstr ""
823
-
824
- #. Plugin URI of the plugin/theme
825
- #. Author URI of the plugin/theme
826
- msgid "http://wpUXsolutions.com"
827
- msgstr ""
828
-
829
- #. Description of the plugin/theme
830
- msgid ""
831
- "This plugin will be handy for those who need to manage a lot of media files."
832
- msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם קבצים רבים."
833
-
834
- #. Author of the plugin/theme
835
- msgid "wpUXsolutions"
836
- msgstr ""
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"
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>"
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
 
54
  msgid "MIME Types"
55
  msgstr "סוגי קבצים"
56
 
 
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr "ספרית מדיה משופרת"
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-it_IT.mo CHANGED
Binary file
languages/enhanced-media-library-it_IT.po CHANGED
@@ -3,7 +3,7 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-06-27 20:48+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: \n"
@@ -29,7 +29,7 @@ msgstr "Impostazioni tipi MIME ripristinate."
29
  msgid "MIME Types settings saved."
30
  msgstr "Impostazioni tipi MIME salvate."
31
 
32
- #: core/mime-types.php:115
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -37,8 +37,8 @@ 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:997 core/options-pages.php:1122
41
- #: core/options-pages.php:1445 core/options-pages.php:1622
42
  msgid "Media Settings"
43
  msgstr "Impostazioni Media"
44
 
@@ -54,7 +54,6 @@ msgstr "Tassonomie"
54
  msgid "MIME Types"
55
  msgstr "Tipi MIME"
56
 
57
- #. Plugin Name of the plugin/theme
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr "Enhanced Media Library"
@@ -63,13 +62,13 @@ msgstr "Enhanced Media Library"
63
  msgid "General"
64
  msgstr "Generale"
65
 
66
- #: core/options-pages.php:209 core/options-pages.php:1143
67
  msgid "Media Taxonomies"
68
  msgstr "Tassonomie Media"
69
 
70
- #: core/options-pages.php:233 core/options-pages.php:539
71
- #: core/options-pages.php:993 core/options-pages.php:1118
72
- #: core/options-pages.php:1441
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
75
 
@@ -151,9 +150,9 @@ msgstr ""
151
  msgid "Organize my uploads into month- and year-based folders"
152
  msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
153
 
154
- #: core/options-pages.php:397 core/options-pages.php:1167
155
- #: core/options-pages.php:1182 core/options-pages.php:1245
156
- #: core/options-pages.php:1314
157
  msgid "Edit"
158
  msgstr "Modifica"
159
 
@@ -161,23 +160,23 @@ msgstr "Modifica"
161
  msgid "Close"
162
  msgstr "Chiudi"
163
 
164
- #: core/options-pages.php:399 core/options-pages.php:1183
165
- #: core/options-pages.php:1246
166
  msgid "View"
167
  msgstr "Visualizza"
168
 
169
- #: core/options-pages.php:400 core/options-pages.php:1184
170
- #: core/options-pages.php:1247
171
  msgid "Update"
172
  msgstr "Aggiorna"
173
 
174
- #: core/options-pages.php:401 core/options-pages.php:1185
175
- #: core/options-pages.php:1248
176
  msgid "Add New"
177
  msgstr "Aggiungi nuovo"
178
 
179
- #: core/options-pages.php:402 core/options-pages.php:1186
180
- #: core/options-pages.php:1249
181
  msgid "New"
182
  msgstr "Nuovo"
183
 
@@ -185,23 +184,23 @@ msgstr "Nuovo"
185
  msgid "Name"
186
  msgstr "Nome"
187
 
188
- #: core/options-pages.php:404 core/options-pages.php:1187
189
- #: core/options-pages.php:1250
190
  msgid "Parent"
191
  msgstr "Genitore"
192
 
193
- #: core/options-pages.php:405 core/options-pages.php:635
194
- #: core/options-pages.php:1181 core/options-pages.php:1244
195
- #: core/taxonomies.php:348 enhanced-media-library.php:481
196
  msgid "All"
197
  msgstr "Tutto"
198
 
199
- #: core/options-pages.php:406 core/options-pages.php:1188
200
- #: core/options-pages.php:1251
201
  msgid "Search"
202
  msgstr "Cerca"
203
 
204
- #: core/options-pages.php:408 core/options-pages.php:1232
205
  msgid "New Taxonomy"
206
  msgstr "Nuova tassonomia"
207
 
@@ -268,7 +267,7 @@ msgid "Ok"
268
  msgstr "Ok"
269
 
270
  #: core/options-pages.php:426 core/options-pages.php:431
271
- #: core/options-pages.php:514
272
  msgid "Cancel"
273
  msgstr "Annulla"
274
 
@@ -276,7 +275,7 @@ msgstr "Annulla"
276
  msgid "Synchronize Now"
277
  msgstr "Sincronizza ora"
278
 
279
- #: core/options-pages.php:429 core/options-pages.php:511
280
  msgid "This operation cannot be canceled! Are you still sure?"
281
  msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
282
 
@@ -288,25 +287,37 @@ msgstr "Sincronizza"
288
  msgid "Synchronizing..."
289
  msgstr "Sincronizzazione..."
290
 
291
- #: core/options-pages.php:470
 
 
 
 
292
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
293
  msgstr ""
294
  "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
295
  "questa operazione."
296
 
297
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
298
  msgid "Please fill into all fields."
299
  msgstr "Si prega di compilare in tutti i campi."
300
 
301
- #: core/options-pages.php:472
302
  msgid "Duplicate extensions or MIME types. Please chose other one."
303
  msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
304
 
305
- #: core/options-pages.php:509 core/options-pages.php:626
306
  msgid "Complete Cleanup"
307
  msgstr "Pulizia completa"
308
 
309
- #: core/options-pages.php:510
310
  msgid ""
311
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
312
  "plugin data</strong> from the database including backups."
@@ -314,23 +325,23 @@ msgstr ""
314
  "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
315
  "del plugin</strong> dal database inclusi i backup."
316
 
317
- #: core/options-pages.php:512
318
  msgid "Yes, delete all data"
319
  msgstr "S&igrave;, cancella tutti i dati"
320
 
321
- #: core/options-pages.php:513
322
  msgid "Cleaning..."
323
  msgstr "Pulizia in corso..."
324
 
325
- #: core/options-pages.php:544
326
  msgid "Enhanced Media Library Settings"
327
  msgstr "Impostazioni Enhanced Media Library"
328
 
329
- #: core/options-pages.php:554
330
  msgid "Export"
331
  msgstr "Esporta"
332
 
333
- #: core/options-pages.php:558
334
  msgid ""
335
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
336
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -342,15 +353,15 @@ msgstr ""
342
  "esportate in un file di configurazione. Questo consente di importare "
343
  "facilmente la configurazione in un altro sito web."
344
 
345
- #: core/options-pages.php:563
346
  msgid "Export Plugin Settings"
347
  msgstr "Esporta le impostazioni del plugin"
348
 
349
- #: core/options-pages.php:573
350
  msgid "Import"
351
  msgstr "Importa"
352
 
353
- #: core/options-pages.php:577
354
  msgid ""
355
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
356
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -363,7 +374,7 @@ msgstr ""
363
  "mediante l'esportazione da un altro sito web utilizzando il pulsante Esporta "
364
  "sopra."
365
 
366
- #: core/options-pages.php:578
367
  msgid ""
368
  "All plugin settings will be overridden by the import. You will have a chance "
369
  "to restore current data from an automatic backup in case you are not "
@@ -374,60 +385,60 @@ msgstr ""
374
  "automatico nel caso in cui non sarete soddisfatti del risultato "
375
  "dell'importazione."
376
 
377
- #: core/options-pages.php:585
378
  msgid "Import Plugin Settings"
379
  msgstr "Importa le impostazioni del plugin"
380
 
381
- #: core/options-pages.php:597
382
  msgid "Restore"
383
  msgstr "Ripristina"
384
 
385
- #: core/options-pages.php:603
386
  msgid "No backup available at the moment."
387
  msgstr "Nessun backup disponibile attualmente."
388
 
389
- #: core/options-pages.php:605
390
  msgid "Backup will be created automatically before any import operation."
391
  msgstr ""
392
  "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
393
  "di importazione."
394
 
395
- #: core/options-pages.php:609
396
  msgid ""
397
  "The backup has been automatically created before the latest import operation."
398
  msgstr ""
399
  "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
400
  "di importazione."
401
 
402
- #: core/options-pages.php:613
403
  msgid "Restore Settings from the Backup"
404
  msgstr "Ripristina le impostazioni dal backup"
405
 
406
- #: core/options-pages.php:633
407
  msgid "What will be deleted:"
408
  msgstr "Cosa sar&agrave; cancellato:"
409
 
410
- #: core/options-pages.php:638
411
  msgid "All plugin options"
412
  msgstr "Tutte le opzioni del plugin"
413
 
414
- #: core/options-pages.php:639
415
  msgid "All plugin backups stored in database"
416
  msgstr "Tutti i backup del plugin salvati nel database"
417
 
418
- #: core/options-pages.php:643
419
  msgid "What will remain intact:"
420
  msgstr "Cosa rester&agrave; invariato:"
421
 
422
- #: core/options-pages.php:644
423
  msgid "All media items"
424
  msgstr "Tutti gli elementi media"
425
 
426
- #: core/options-pages.php:645
427
  msgid "All taxonomies not listed above"
428
  msgstr " Tutte le tassonomie non elencate sopra"
429
 
430
- #: core/options-pages.php:648
431
  msgid ""
432
  "The plugin cannot delete itself because of security reason. Please delete it "
433
  "manually from plugin list after cleanup."
@@ -435,7 +446,7 @@ msgstr ""
435
  "Il plugin non pu&ograve; eliminare se stesso per motivi di sicurezza. Si "
436
  "prega di eliminarlo manualmente dalla lista plugin dopo la pulizia."
437
 
438
- #: core/options-pages.php:650
439
  msgid ""
440
  "If you are not sure about this operation please create a backup of your "
441
  "database prior to cleanup!"
@@ -443,73 +454,73 @@ msgstr ""
443
  "Se non siete sicuri su questa operazione si prega di creare un backup del "
444
  "vostro database prima di eseguire la pulizia!"
445
 
446
- #: core/options-pages.php:656
447
  msgid "Delete All Data & Deactivate"
448
  msgstr "Elimina tutti i dati e disattiva il plugin"
449
 
450
- #: core/options-pages.php:756
451
  msgid "Please upload a file to import settings."
452
  msgstr "Si prega di caricare un file da cui importare le impostazioni."
453
 
454
- #: core/options-pages.php:782
455
  msgid "Plugin settings imported."
456
  msgstr "Impstazioni del plugin importate."
457
 
458
- #: core/options-pages.php:829
459
  msgid "Plugin settings restored from the backup."
460
  msgstr "Impostazioni del plugin ripristinate dal backup."
461
 
462
- #: core/options-pages.php:1018
463
  msgid "Media Items Order"
464
  msgstr "Ordinamento elementi media"
465
 
466
- #: core/options-pages.php:1025
467
  msgid "Order media items by"
468
  msgstr "Ordina gli elementi media per"
469
 
470
- #: core/options-pages.php:1028
471
  msgid "Date"
472
  msgstr "Data"
473
 
474
- #: core/options-pages.php:1029
475
  msgid "Title"
476
  msgstr "Titolo"
477
 
478
- #: core/options-pages.php:1030
479
  msgid "Custom Order"
480
  msgstr "Ordinamento personalizzato"
481
 
482
- #: core/options-pages.php:1032 core/options-pages.php:1044
483
  msgid "For media library and media popups"
484
  msgstr "Per la libreria media e i pop-up media"
485
 
486
- #: core/options-pages.php:1033
487
  msgid "Option allows to change order by drag and drop with Custom Order value."
488
  msgstr ""
489
  "Questa opzione permette di modificare l'ordine con il drag &amp; drop con il "
490
  "valore dell'ordinamento personalizzato."
491
 
492
- #: core/options-pages.php:1038
493
  msgid "Sort order"
494
  msgstr "Ordinamento"
495
 
496
- #: core/options-pages.php:1041
497
  msgid "Ascending"
498
  msgstr "Ascendente"
499
 
500
- #: core/options-pages.php:1042
501
  msgid "Descending"
502
  msgstr "Discendente"
503
 
504
- #: core/options-pages.php:1057
505
  msgid "Media Shortcodes"
506
  msgstr "Shortcode Media"
507
 
508
- #: core/options-pages.php:1064 core/options-pages.php:1067
509
  msgid "Enhanced media shortcodes"
510
  msgstr "Shortcode media avanzati"
511
 
512
- #: core/options-pages.php:1068
513
  msgid ""
514
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
515
  "upload date, and media items number limit"
@@ -517,19 +528,19 @@ msgstr ""
517
  "Migliora gli shortcode media di WordPress in modo da poter usare le "
518
  "tassonomie Media, la data di caricamento e il limite di elementi media"
519
 
520
- #: core/options-pages.php:1069
521
  msgid "Gallery example:"
522
  msgstr "Esempio di galleria:"
523
 
524
- #: core/options-pages.php:1070
525
  msgid "Audio playlist example:"
526
  msgstr "Esempio di playlist audio:"
527
 
528
- #: core/options-pages.php:1071
529
  msgid "Video playlist example:"
530
  msgstr "Esempio di playlist video:"
531
 
532
- #: core/options-pages.php:1073
533
  #, php-format
534
  msgid ""
535
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
@@ -537,12 +548,12 @@ msgstr ""
537
  "%sAttenzione:%s &Egrave; possibile che ci sia Incompatibilit&agrave; con "
538
  "altri plugin gallery o temi!"
539
 
540
- #: core/options-pages.php:1075
541
  #, php-format
542
  msgid "%sLearn more%s."
543
  msgstr "%sPer saperne di pi&ugrave;%s."
544
 
545
- #: core/options-pages.php:1077
546
  #, php-format
547
  msgid ""
548
  "Please check out your gallery front-end and back-end functionality once this "
@@ -553,247 +564,243 @@ msgstr ""
553
  "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
554
  "trovate un problema si prega di informare gli autori del plugin %s or %s."
555
 
556
- #: core/options-pages.php:1147 core/options-pages.php:1294
557
  msgid "Assign following taxonomies to Media Library:"
558
  msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
559
 
560
- #: core/options-pages.php:1166 core/options-pages.php:1232
561
- #: core/options-pages.php:1313
562
  msgid "Assign Taxonomy"
563
  msgstr "Assegna tassonomia"
564
 
565
- #: core/options-pages.php:1167 core/options-pages.php:1314
566
  msgid "Edit Taxonomy"
567
  msgstr "Modifica tassonomia"
568
 
569
- #: core/options-pages.php:1171 core/options-pages.php:1234
570
  msgid "Delete Taxonomy"
571
  msgstr "Elimina tassonomia"
572
 
573
- #: core/options-pages.php:1176 core/options-pages.php:1239
574
  msgid "Labels"
575
  msgstr "Etichette"
576
 
577
- #: core/options-pages.php:1178 core/options-pages.php:1241
578
  msgid "Singular"
579
  msgstr "Singolare"
580
 
581
- #: core/options-pages.php:1179 core/options-pages.php:1242
582
  msgid "Plural"
583
  msgstr "Plurale"
584
 
585
- #: core/options-pages.php:1180 core/options-pages.php:1243
586
  msgid "Menu Name"
587
  msgstr "Nome menu"
588
 
589
- #: core/options-pages.php:1193 core/options-pages.php:1216
590
- #: core/options-pages.php:1256 core/options-pages.php:1317
591
  msgid "Settings"
592
  msgstr "Impostazioni"
593
 
594
- #: core/options-pages.php:1195 core/options-pages.php:1258
595
  msgid "Taxonomy Name"
596
  msgstr "Nome tassonomia"
597
 
598
- #: core/options-pages.php:1196 core/options-pages.php:1259
599
  msgid "Hierarchical"
600
  msgstr "Gerarchico"
601
 
602
- #: core/options-pages.php:1197 core/options-pages.php:1260
603
  msgid "Column for List View"
604
  msgstr "Colonna nella visualizzazione a lista"
605
 
606
- #: core/options-pages.php:1198 core/options-pages.php:1218
607
- #: core/options-pages.php:1261 core/options-pages.php:1319
608
  msgid "Filter for List View"
609
  msgstr "Filtro per la visualizzazione a lista"
610
 
611
- #: core/options-pages.php:1199 core/options-pages.php:1219
612
- #: core/options-pages.php:1262 core/options-pages.php:1320
613
  msgid "Filter for Grid View / Media Popup"
614
  msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
615
 
616
- #: core/options-pages.php:1200 core/options-pages.php:1220
617
- #: core/options-pages.php:1263 core/options-pages.php:1321
618
  msgid "Edit in Media Popup"
619
  msgstr "Modifica nel pop-up media"
620
 
621
- #: core/options-pages.php:1201 core/options-pages.php:1264
622
  msgid "Show in Nav Menu"
623
  msgstr "Mostra nel menu di navigazione"
624
 
625
- #: core/options-pages.php:1202 core/options-pages.php:1265
626
  msgid "Remember Terms Order (sort)"
627
  msgstr "Ricorda l'ordinamento dei termini (sort)"
628
 
629
- #: core/options-pages.php:1203 core/options-pages.php:1266
630
  msgid "Show in REST"
631
  msgstr "Mostra in REST"
632
 
633
- #: core/options-pages.php:1204 core/options-pages.php:1267
634
  msgid "Rewrite Slug"
635
  msgstr "Rewrite per lo slug"
636
 
637
- #: core/options-pages.php:1205 core/options-pages.php:1268
638
  msgid "Slug with Front"
639
  msgstr "Slug (with_front)"
640
 
641
- #: core/options-pages.php:1280
642
  msgid "Add New Taxonomy"
643
  msgstr "Aggiungi nuova tassonomia"
644
 
645
- #: core/options-pages.php:1290
646
  msgid "Non-Media Taxonomies"
647
  msgstr "Tassonomie non Media"
648
 
649
- #: core/options-pages.php:1351
650
  msgid "Options"
651
  msgstr "Opzioni"
652
 
653
- #: core/options-pages.php:1361 core/options-pages.php:1364
654
  msgid "Taxonomy archive pages"
655
  msgstr "Pagine di archivio della tassonomia"
656
 
657
- #: core/options-pages.php:1365
658
  msgid "Turn on media taxonomy archive pages on the front-end"
659
  msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
660
 
661
- #: core/options-pages.php:1366
662
  msgid ""
663
  "Re-save your permalink settings after this option change to make it work."
664
  msgstr ""
665
  "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
666
  "opzione affinch&egrave; i cambiamenti abbiano effetto."
667
 
668
- #: core/options-pages.php:1372 core/options-pages.php:1375
669
  msgid "Assign all like hierarchical"
670
  msgstr "Considera tutte le tassonomie come gerarchiche"
671
 
672
- #: core/options-pages.php:1376
673
  msgid ""
674
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
675
  msgstr ""
676
  "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
677
  "a griglia / pop-up media"
678
 
679
- #: core/options-pages.php:1382 core/options-pages.php:1385
680
  msgid "Force filters"
681
  msgstr "Forza i filtri"
682
 
683
- #: core/options-pages.php:1386
684
  msgid "Show media filters for ANY Media Popup"
685
  msgstr "Vistualizza i filtri media per tutti i pop-up media"
686
 
687
- #: core/options-pages.php:1387
688
  msgid "Try this if filters are not shown for third-party plugins or themes."
689
  msgstr ""
690
  "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
691
  "di terze parti."
692
 
693
- #: core/options-pages.php:1393 core/options-pages.php:1396
694
  msgid "Show count"
695
  msgstr ""
696
 
697
- #: core/options-pages.php:1397
698
  msgid "Show item count per category for media filters"
699
  msgstr ""
700
 
701
- #: core/options-pages.php:1451
702
  msgid "Add New MIME Type"
703
  msgstr "Aggiungi un nuovo tipo MIME"
704
 
705
- #: core/options-pages.php:1469 core/options-pages.php:1524
706
  msgid "Extension"
707
  msgstr "Estensione"
708
 
709
- #: core/options-pages.php:1470 core/options-pages.php:1525
710
  msgid "MIME Type"
711
  msgstr "Tipo MIME"
712
 
713
- #: core/options-pages.php:1471 core/options-pages.php:1526
714
  msgid "Singular Label"
715
  msgstr "Etichetta per il singolare"
716
 
717
- #: core/options-pages.php:1472 core/options-pages.php:1527
718
  msgid "Plural Label"
719
  msgstr "Etichetta per il plurale"
720
 
721
- #: core/options-pages.php:1473 core/options-pages.php:1503
722
- #: core/options-pages.php:1516 core/options-pages.php:1528
723
  msgid "Add Filter"
724
  msgstr "Aggiungi filtro"
725
 
726
- #: core/options-pages.php:1474 core/options-pages.php:1504
727
- #: core/options-pages.php:1517 core/options-pages.php:1529
728
  msgid "Allow Upload"
729
  msgstr "Permetti upload"
730
 
731
- #: core/options-pages.php:1505 core/options-pages.php:1518
732
  msgid "Delete MIME Type"
733
  msgstr "Elimina il tipo MIME"
734
 
735
- #: core/options-pages.php:1535
736
- msgid "Restore WordPress default MIME Types"
737
- msgstr "Ripristina i tipi MIME predefiniti di WordPress"
738
-
739
- #: core/options-pages.php:1537
740
  msgid "Save Changes"
741
  msgstr "Salva le modifiche"
742
 
743
- #: core/options-pages.php:1574
744
  msgid "Changelog"
745
  msgstr "Changelog"
746
 
747
- #: core/options-pages.php:1575
748
  msgid "What's new in"
749
  msgstr "Cosa c'&egrave; di nuovo nella"
750
 
751
- #: core/options-pages.php:1575
752
  msgid "version"
753
  msgstr "versione"
754
 
755
- #: core/options-pages.php:1578
756
  msgid "More features under the hood"
757
  msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
758
 
759
- #: core/options-pages.php:1580
760
  msgid "Support"
761
  msgstr "Supporto"
762
 
763
- #: core/options-pages.php:1581
764
  msgid "Feel free to ask for help on"
765
  msgstr "Sentitevi liberi di chiedere aiuto su"
766
 
767
- #: core/options-pages.php:1581
768
  msgid "Support is free for both versions of the plugin."
769
  msgstr ""
770
  "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
771
 
772
- #: core/options-pages.php:1583
773
  msgid "Plugin rating"
774
  msgstr "Valutazione plugin"
775
 
776
- #: core/options-pages.php:1584
777
  msgid "Please"
778
  msgstr "Prego"
779
 
780
- #: core/options-pages.php:1584
781
  msgid "vote for the plugin"
782
  msgstr "vota il plugin"
783
 
784
- #: core/options-pages.php:1584
785
  msgid "Thanks!"
786
  msgstr "Grazie!"
787
 
788
- #: core/options-pages.php:1586
789
  msgid "Other plugins you may find useful"
790
  msgstr "Altri plugin che potresti trovare utili"
791
 
792
- #: core/options-pages.php:1625
793
  msgid "Utility"
794
  msgstr "Utilit&agrave;"
795
 
796
- #: core/options-pages.php:1648
797
  msgid "Vote!"
798
  msgstr "Vota!"
799
 
@@ -806,86 +813,70 @@ msgid "Media Library settings saved."
806
  msgstr "Impostazioni Libreria Media salvate."
807
 
808
  #: core/taxonomies.php:341 core/taxonomies.php:347
809
- #: enhanced-media-library.php:480
810
  msgid "Filter by"
811
  msgstr "Filtra per"
812
 
813
- #: core/taxonomies.php:349 enhanced-media-library.php:482
814
  msgid "Not in"
815
  msgstr "Non in"
816
 
817
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
818
  msgid "All Uncategorized"
819
  msgstr "Tutti gli elementi non classificati"
820
 
821
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
822
  msgid "Reset All Filters"
823
  msgstr "Reimposta tutti i filtri"
824
 
825
- #: enhanced-media-library.php:513
826
  msgid "Uploaded to post #"
827
  msgstr "Caricato nel post #"
828
 
829
- #: enhanced-media-library.php:514
830
  msgid "Based On"
831
  msgstr "Basato su"
832
 
833
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
834
  msgid "Media Categories"
835
  msgstr "Categorie Media"
836
 
837
- #: enhanced-media-library.php:560
838
  msgid "Media Category"
839
  msgstr "Categoria Media"
840
 
841
- #: enhanced-media-library.php:562
842
  msgid "All Media Categories"
843
  msgstr "Tutte le categorie Media"
844
 
845
- #: enhanced-media-library.php:563
846
  msgid "Edit Media Category"
847
  msgstr "Modifica categoria Media"
848
 
849
- #: enhanced-media-library.php:564
850
  msgid "View Media Category"
851
  msgstr "Visualizza categoria Media"
852
 
853
- #: enhanced-media-library.php:565
854
  msgid "Update Media Category"
855
  msgstr "Aggiorna categoria Media"
856
 
857
- #: enhanced-media-library.php:566
858
  msgid "Add New Media Category"
859
  msgstr "Aggiungi nuova categoria Media"
860
 
861
- #: enhanced-media-library.php:567
862
  msgid "New Media Category Name"
863
  msgstr "Nome della nuova categoria Media"
864
 
865
- #: enhanced-media-library.php:568
866
  msgid "Parent Media Category"
867
  msgstr "Categoria media genitore"
868
 
869
- #: enhanced-media-library.php:569
870
  msgid "Parent Media Category:"
871
  msgstr "Categoria media genitore:"
872
 
873
- #: enhanced-media-library.php:570
874
  msgid "Search Media Categories"
875
  msgstr "Cerca nella categoria Media"
876
-
877
- #. Plugin URI of the plugin/theme
878
- #. Author URI of the plugin/theme
879
- msgid "http://wpUXsolutions.com"
880
- msgstr ""
881
-
882
- #. Description of the plugin/theme
883
- msgid ""
884
- "This plugin will be handy for those who need to manage a lot of media files."
885
- msgstr ""
886
- "Questo plugin sar&agrave; utile per coloro che hanno bisogno di gestire "
887
- "grandi quantit&agrave; di file multimediali."
888
-
889
- #. Author of the plugin/theme
890
- msgid "wpUXsolutions"
891
- msgstr ""
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"
29
  msgid "MIME Types settings saved."
30
  msgstr "Impostazioni tipi MIME salvate."
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>"
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
 
54
  msgid "MIME Types"
55
  msgstr "Tipi MIME"
56
 
 
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "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
  "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
  "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
  "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
  "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
  "%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
  "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
 
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"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ja.mo CHANGED
Binary file
languages/enhanced-media-library-ja.po CHANGED
@@ -3,7 +3,7 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-06-27 20:52+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: \n"
@@ -29,15 +29,15 @@ msgstr ""
29
  msgid "MIME Types settings saved."
30
  msgstr ""
31
 
32
- #: core/mime-types.php:115
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:997 core/options-pages.php:1122
40
- #: core/options-pages.php:1445 core/options-pages.php:1622
41
  msgid "Media Settings"
42
  msgstr "メディア設定"
43
 
@@ -62,13 +62,13 @@ msgstr "Enhanced Media Library"
62
  msgid "General"
63
  msgstr "一般"
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1143
66
  msgid "Media Taxonomies"
67
  msgstr "メディアタクソノミー(分類法)"
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:539
70
- #: core/options-pages.php:993 core/options-pages.php:1118
71
- #: core/options-pages.php:1441
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "このページにアクセスするための十分な権限がありません。"
74
 
@@ -144,9 +144,9 @@ msgstr ""
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1167
148
- #: core/options-pages.php:1182 core/options-pages.php:1245
149
- #: core/options-pages.php:1314
150
  msgid "Edit"
151
  msgstr "編集"
152
 
@@ -154,23 +154,23 @@ msgstr "編集"
154
  msgid "Close"
155
  msgstr "閉じる"
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1183
158
- #: core/options-pages.php:1246
159
  msgid "View"
160
  msgstr "表示"
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1184
163
- #: core/options-pages.php:1247
164
  msgid "Update"
165
  msgstr "更新"
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1185
168
- #: core/options-pages.php:1248
169
  msgid "Add New"
170
  msgstr "新規追加"
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1186
173
- #: core/options-pages.php:1249
174
  msgid "New"
175
  msgstr "新規"
176
 
@@ -178,23 +178,23 @@ msgstr "新規"
178
  msgid "Name"
179
  msgstr "名前"
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1187
182
- #: core/options-pages.php:1250
183
  msgid "Parent"
184
  msgstr "親カテゴリー"
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:635
187
- #: core/options-pages.php:1181 core/options-pages.php:1244
188
- #: core/taxonomies.php:348 enhanced-media-library.php:481
189
  msgid "All"
190
  msgstr "全て"
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1188
193
- #: core/options-pages.php:1251
194
  msgid "Search"
195
  msgstr "検索"
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1232
198
  msgid "New Taxonomy"
199
  msgstr "新しいタクソノミー (分類)"
200
 
@@ -255,7 +255,7 @@ msgid "Ok"
255
  msgstr ""
256
 
257
  #: core/options-pages.php:426 core/options-pages.php:431
258
- #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
@@ -263,7 +263,7 @@ msgstr ""
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
@@ -275,45 +275,57 @@ msgstr ""
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:470
 
 
 
 
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
281
 
282
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
283
  msgid "Please fill into all fields."
284
  msgstr "すべてのフィールドに記入してください。"
285
 
286
- #: core/options-pages.php:472
287
  msgid "Duplicate extensions or MIME types. Please chose other one."
288
  msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
289
 
290
- #: core/options-pages.php:509 core/options-pages.php:626
291
  msgid "Complete Cleanup"
292
  msgstr ""
293
 
294
- #: core/options-pages.php:510
295
  msgid ""
296
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
297
  "plugin data</strong> from the database including backups."
298
  msgstr ""
299
 
300
- #: core/options-pages.php:512
301
  msgid "Yes, delete all data"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:513
305
  msgid "Cleaning..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:544
309
  msgid "Enhanced Media Library Settings"
310
  msgstr "Enhanced Media Library 設定"
311
 
312
- #: core/options-pages.php:554
313
  msgid "Export"
314
  msgstr "エクスポート"
315
 
316
- #: core/options-pages.php:558
317
  msgid ""
318
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
319
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -321,15 +333,15 @@ msgid ""
321
  "another website."
322
  msgstr ""
323
 
324
- #: core/options-pages.php:563
325
  msgid "Export Plugin Settings"
326
  msgstr "プラグイン設定をエクスポート"
327
 
328
- #: core/options-pages.php:573
329
  msgid "Import"
330
  msgstr "インポート"
331
 
332
- #: core/options-pages.php:577
333
  msgid ""
334
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
335
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -337,141 +349,141 @@ msgid ""
337
  "another website using the export button above."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:578
341
  msgid ""
342
  "All plugin settings will be overridden by the import. You will have a chance "
343
  "to restore current data from an automatic backup in case you are not "
344
  "satisfied with the result of the import."
345
  msgstr ""
346
 
347
- #: core/options-pages.php:585
348
  msgid "Import Plugin Settings"
349
  msgstr "プラグイン設定をインポート"
350
 
351
- #: core/options-pages.php:597
352
  msgid "Restore"
353
  msgstr "リストア(復元する)"
354
 
355
- #: core/options-pages.php:603
356
  msgid "No backup available at the moment."
357
  msgstr "現在利用できるバックアップはありません。"
358
 
359
- #: core/options-pages.php:605
360
  msgid "Backup will be created automatically before any import operation."
361
  msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
362
 
363
- #: core/options-pages.php:609
364
  msgid ""
365
  "The backup has been automatically created before the latest import operation."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:613
369
  msgid "Restore Settings from the Backup"
370
  msgstr "バックアップから設定を復元させて下さい。"
371
 
372
- #: core/options-pages.php:633
373
  msgid "What will be deleted:"
374
  msgstr ""
375
 
376
- #: core/options-pages.php:638
377
  msgid "All plugin options"
378
  msgstr ""
379
 
380
- #: core/options-pages.php:639
381
  msgid "All plugin backups stored in database"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:643
385
  msgid "What will remain intact:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:644
389
  msgid "All media items"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:645
393
  msgid "All taxonomies not listed above"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:648
397
  msgid ""
398
  "The plugin cannot delete itself because of security reason. Please delete it "
399
  "manually from plugin list after cleanup."
400
  msgstr ""
401
 
402
- #: core/options-pages.php:650
403
  msgid ""
404
  "If you are not sure about this operation please create a backup of your "
405
  "database prior to cleanup!"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:656
409
  msgid "Delete All Data & Deactivate"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:756
413
  msgid "Please upload a file to import settings."
414
  msgstr "設定をインポートするファイルをアップロードしてください。"
415
 
416
- #: core/options-pages.php:782
417
  msgid "Plugin settings imported."
418
  msgstr "プラグインの設定がインポートされました。"
419
 
420
- #: core/options-pages.php:829
421
  msgid "Plugin settings restored from the backup."
422
  msgstr "プラグインの設定は、バックアップから復元させて下さい。"
423
 
424
- #: core/options-pages.php:1018
425
  msgid "Media Items Order"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:1025
429
  msgid "Order media items by"
430
  msgstr "メディアアイテムの順番"
431
 
432
- #: core/options-pages.php:1028
433
  msgid "Date"
434
  msgstr "日付"
435
 
436
- #: core/options-pages.php:1029
437
  msgid "Title"
438
  msgstr "タイトル"
439
 
440
- #: core/options-pages.php:1030
441
  msgid "Custom Order"
442
  msgstr "カスタムオーダー"
443
 
444
- #: core/options-pages.php:1032 core/options-pages.php:1044
445
  msgid "For media library and media popups"
446
  msgstr "メディアライブラリとメディアポップアップについて"
447
 
448
- #: core/options-pages.php:1033
449
  msgid "Option allows to change order by drag and drop with Custom Order value."
450
  msgstr ""
451
  "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
452
  "ロップすることができます。"
453
 
454
- #: core/options-pages.php:1038
455
  msgid "Sort order"
456
  msgstr "ソート順"
457
 
458
- #: core/options-pages.php:1041
459
  msgid "Ascending"
460
  msgstr "昇順"
461
 
462
- #: core/options-pages.php:1042
463
  msgid "Descending"
464
  msgstr "降順"
465
 
466
- #: core/options-pages.php:1057
467
  msgid "Media Shortcodes"
468
  msgstr "メディアのショートコード"
469
 
470
- #: core/options-pages.php:1064 core/options-pages.php:1067
471
  msgid "Enhanced media shortcodes"
472
  msgstr "強化されたメディアのショートコード"
473
 
474
- #: core/options-pages.php:1068
475
  msgid ""
476
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
477
  "upload date, and media items number limit"
@@ -479,30 +491,30 @@ msgstr ""
479
  "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
480
  "メディア・アイテム数の上限を取得させます。"
481
 
482
- #: core/options-pages.php:1069
483
  msgid "Gallery example:"
484
  msgstr "ギャラリーの例:"
485
 
486
- #: core/options-pages.php:1070
487
  msgid "Audio playlist example:"
488
  msgstr "オーディオプレイリストの例:"
489
 
490
- #: core/options-pages.php:1071
491
  msgid "Video playlist example:"
492
  msgstr "ビデオプレイリストの例:"
493
 
494
- #: core/options-pages.php:1073
495
  #, php-format
496
  msgid ""
497
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
498
  msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
499
 
500
- #: core/options-pages.php:1075
501
  #, php-format
502
  msgid "%sLearn more%s."
503
  msgstr "%sもっと詳しく%s."
504
 
505
- #: core/options-pages.php:1077
506
  #, php-format
507
  msgid ""
508
  "Please check out your gallery front-end and back-end functionality once this "
@@ -513,247 +525,243 @@ msgstr ""
513
  "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
514
  "イン作者までご連絡ください %s か %s."
515
 
516
- #: core/options-pages.php:1147 core/options-pages.php:1294
517
  msgid "Assign following taxonomies to Media Library:"
518
  msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
519
 
520
- #: core/options-pages.php:1166 core/options-pages.php:1232
521
- #: core/options-pages.php:1313
522
  msgid "Assign Taxonomy"
523
  msgstr "タクソノミーを割り当て"
524
 
525
- #: core/options-pages.php:1167 core/options-pages.php:1314
526
  msgid "Edit Taxonomy"
527
  msgstr "タクソノミーの編集"
528
 
529
- #: core/options-pages.php:1171 core/options-pages.php:1234
530
  msgid "Delete Taxonomy"
531
  msgstr "タクソノミーを削除します"
532
 
533
- #: core/options-pages.php:1176 core/options-pages.php:1239
534
  msgid "Labels"
535
  msgstr "ラベル"
536
 
537
- #: core/options-pages.php:1178 core/options-pages.php:1241
538
  msgid "Singular"
539
  msgstr "単数"
540
 
541
- #: core/options-pages.php:1179 core/options-pages.php:1242
542
  msgid "Plural"
543
  msgstr "複数"
544
 
545
- #: core/options-pages.php:1180 core/options-pages.php:1243
546
  msgid "Menu Name"
547
  msgstr "メニュー名"
548
 
549
- #: core/options-pages.php:1193 core/options-pages.php:1216
550
- #: core/options-pages.php:1256 core/options-pages.php:1317
551
  msgid "Settings"
552
  msgstr "設定"
553
 
554
- #: core/options-pages.php:1195 core/options-pages.php:1258
555
  msgid "Taxonomy Name"
556
  msgstr "タクソノミー名"
557
 
558
- #: core/options-pages.php:1196 core/options-pages.php:1259
559
  msgid "Hierarchical"
560
  msgstr "階層"
561
 
562
- #: core/options-pages.php:1197 core/options-pages.php:1260
563
  msgid "Column for List View"
564
  msgstr "リスト表示の列"
565
 
566
- #: core/options-pages.php:1198 core/options-pages.php:1218
567
- #: core/options-pages.php:1261 core/options-pages.php:1319
568
  msgid "Filter for List View"
569
  msgstr "リスト表示のフィルター"
570
 
571
- #: core/options-pages.php:1199 core/options-pages.php:1219
572
- #: core/options-pages.php:1262 core/options-pages.php:1320
573
  msgid "Filter for Grid View / Media Popup"
574
  msgstr "グリット表示/メディアポップアップのフィルター"
575
 
576
- #: core/options-pages.php:1200 core/options-pages.php:1220
577
- #: core/options-pages.php:1263 core/options-pages.php:1321
578
  msgid "Edit in Media Popup"
579
  msgstr "メディアポップアップの編集"
580
 
581
- #: core/options-pages.php:1201 core/options-pages.php:1264
582
  msgid "Show in Nav Menu"
583
  msgstr "ナビゲーションメニューに表示"
584
 
585
- #: core/options-pages.php:1202 core/options-pages.php:1265
586
  msgid "Remember Terms Order (sort)"
587
  msgstr ""
588
 
589
- #: core/options-pages.php:1203 core/options-pages.php:1266
590
  msgid "Show in REST"
591
  msgstr "リストに表示"
592
 
593
- #: core/options-pages.php:1204 core/options-pages.php:1267
594
  msgid "Rewrite Slug"
595
  msgstr "スラッグを書き換え"
596
 
597
- #: core/options-pages.php:1205 core/options-pages.php:1268
598
  msgid "Slug with Front"
599
  msgstr "フロントとスラッグ"
600
 
601
- #: core/options-pages.php:1280
602
  msgid "Add New Taxonomy"
603
  msgstr "新しいタクソノミーを追加"
604
 
605
- #: core/options-pages.php:1290
606
  msgid "Non-Media Taxonomies"
607
  msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
608
 
609
- #: core/options-pages.php:1351
610
  msgid "Options"
611
  msgstr "オプション"
612
 
613
- #: core/options-pages.php:1361 core/options-pages.php:1364
614
  msgid "Taxonomy archive pages"
615
  msgstr "タクソノミーのアーカイブページ"
616
 
617
- #: core/options-pages.php:1365
618
  msgid "Turn on media taxonomy archive pages on the front-end"
619
  msgstr ""
620
  "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
621
 
622
- #: core/options-pages.php:1366
623
  msgid ""
624
  "Re-save your permalink settings after this option change to make it work."
625
  msgstr ""
626
  "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
627
  "しましょう。"
628
 
629
- #: core/options-pages.php:1372 core/options-pages.php:1375
630
  msgid "Assign all like hierarchical"
631
  msgstr "階層のように全て割り当てます"
632
 
633
- #: core/options-pages.php:1376
634
  msgid ""
635
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
636
  msgstr ""
637
  "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
638
  "する"
639
 
640
- #: core/options-pages.php:1382 core/options-pages.php:1385
641
  msgid "Force filters"
642
  msgstr "フォースフィルター"
643
 
644
- #: core/options-pages.php:1386
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
647
 
648
- #: core/options-pages.php:1387
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
  "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
652
  "試してみてください。"
653
 
654
- #: core/options-pages.php:1393 core/options-pages.php:1396
655
  msgid "Show count"
656
  msgstr ""
657
 
658
- #: core/options-pages.php:1397
659
  msgid "Show item count per category for media filters"
660
  msgstr ""
661
 
662
- #: core/options-pages.php:1451
663
  msgid "Add New MIME Type"
664
  msgstr "MIMEタイプ新規追加"
665
 
666
- #: core/options-pages.php:1469 core/options-pages.php:1524
667
  msgid "Extension"
668
  msgstr "拡張子"
669
 
670
- #: core/options-pages.php:1470 core/options-pages.php:1525
671
  msgid "MIME Type"
672
  msgstr "MIMEタイプ"
673
 
674
- #: core/options-pages.php:1471 core/options-pages.php:1526
675
  msgid "Singular Label"
676
  msgstr "単数のラベル"
677
 
678
- #: core/options-pages.php:1472 core/options-pages.php:1527
679
  msgid "Plural Label"
680
  msgstr "複数のラベル"
681
 
682
- #: core/options-pages.php:1473 core/options-pages.php:1503
683
- #: core/options-pages.php:1516 core/options-pages.php:1528
684
  msgid "Add Filter"
685
  msgstr "フィルタを追加"
686
 
687
- #: core/options-pages.php:1474 core/options-pages.php:1504
688
- #: core/options-pages.php:1517 core/options-pages.php:1529
689
  msgid "Allow Upload"
690
  msgstr "アップロードを許可"
691
 
692
- #: core/options-pages.php:1505 core/options-pages.php:1518
693
  msgid "Delete MIME Type"
694
  msgstr "MIMEタイプを削除します"
695
 
696
- #: core/options-pages.php:1535
697
- msgid "Restore WordPress default MIME Types"
698
- msgstr "WordPressのデフォルトのMIMEタイプを復元"
699
-
700
- #: core/options-pages.php:1537
701
  msgid "Save Changes"
702
  msgstr "変更内容を保存"
703
 
704
- #: core/options-pages.php:1574
705
  msgid "Changelog"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1575
709
  msgid "What's new in"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1575
713
  msgid "version"
714
  msgstr ""
715
 
716
- #: core/options-pages.php:1578
717
  msgid "More features under the hood"
718
  msgstr ""
719
 
720
- #: core/options-pages.php:1580
721
  msgid "Support"
722
  msgstr ""
723
 
724
- #: core/options-pages.php:1581
725
  msgid "Feel free to ask for help on"
726
  msgstr ""
727
 
728
- #: core/options-pages.php:1581
729
  msgid "Support is free for both versions of the plugin."
730
  msgstr ""
731
 
732
- #: core/options-pages.php:1583
733
  msgid "Plugin rating"
734
  msgstr ""
735
 
736
- #: core/options-pages.php:1584
737
  msgid "Please"
738
  msgstr ""
739
 
740
- #: core/options-pages.php:1584
741
  msgid "vote for the plugin"
742
  msgstr ""
743
 
744
- #: core/options-pages.php:1584
745
  msgid "Thanks!"
746
  msgstr ""
747
 
748
- #: core/options-pages.php:1586
749
  msgid "Other plugins you may find useful"
750
  msgstr ""
751
 
752
- #: core/options-pages.php:1625
753
  msgid "Utility"
754
  msgstr ""
755
 
756
- #: core/options-pages.php:1648
757
  msgid "Vote!"
758
  msgstr ""
759
 
@@ -766,71 +774,71 @@ msgid "Media Library settings saved."
766
  msgstr ""
767
 
768
  #: core/taxonomies.php:341 core/taxonomies.php:347
769
- #: enhanced-media-library.php:480
770
  msgid "Filter by"
771
  msgstr ""
772
 
773
- #: core/taxonomies.php:349 enhanced-media-library.php:482
774
  msgid "Not in"
775
  msgstr ""
776
 
777
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
778
  msgid "All Uncategorized"
779
  msgstr "未分類"
780
 
781
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
782
  msgid "Reset All Filters"
783
  msgstr "絞り込みを解除"
784
 
785
- #: enhanced-media-library.php:513
786
  msgid "Uploaded to post #"
787
  msgstr "投稿をアップロード #"
788
 
789
- #: enhanced-media-library.php:514
790
  msgid "Based On"
791
  msgstr ""
792
 
793
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
794
  msgid "Media Categories"
795
  msgstr ""
796
 
797
- #: enhanced-media-library.php:560
798
  msgid "Media Category"
799
  msgstr ""
800
 
801
- #: enhanced-media-library.php:562
802
  msgid "All Media Categories"
803
  msgstr ""
804
 
805
- #: enhanced-media-library.php:563
806
  msgid "Edit Media Category"
807
  msgstr ""
808
 
809
- #: enhanced-media-library.php:564
810
  msgid "View Media Category"
811
  msgstr ""
812
 
813
- #: enhanced-media-library.php:565
814
  msgid "Update Media Category"
815
  msgstr ""
816
 
817
- #: enhanced-media-library.php:566
818
  msgid "Add New Media Category"
819
  msgstr ""
820
 
821
- #: enhanced-media-library.php:567
822
  msgid "New Media Category Name"
823
  msgstr ""
824
 
825
- #: enhanced-media-library.php:568
826
  msgid "Parent Media Category"
827
  msgstr ""
828
 
829
- #: enhanced-media-library.php:569
830
  msgid "Parent Media Category:"
831
  msgstr ""
832
 
833
- #: enhanced-media-library.php:570
834
  msgid "Search Media Categories"
835
  msgstr ""
836
 
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"
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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 "
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
  "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"
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 "
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
 
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
 
languages/enhanced-media-library-ko_KR.mo CHANGED
Binary file
languages/enhanced-media-library-ko_KR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Enhanced Media Library PRO\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-27 20:52+0300\n"
6
- "PO-Revision-Date: 2016-06-27 20:52+0300\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ko\n"
@@ -31,15 +31,15 @@ msgstr ""
31
  msgid "MIME Types settings saved."
32
  msgstr ""
33
 
34
- #: core/mime-types.php:115
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:997 core/options-pages.php:1122
42
- #: core/options-pages.php:1445 core/options-pages.php:1622
43
  msgid "Media Settings"
44
  msgstr "미디어 설정"
45
 
@@ -55,7 +55,6 @@ msgstr "카테고리"
55
  msgid "MIME Types"
56
  msgstr "MIME 유형"
57
 
58
- #. Plugin Name of the plugin/theme
59
  #: core/options-pages.php:135 core/options-pages.php:136
60
  msgid "Enhanced Media Library"
61
  msgstr "Enhanced Media Library"
@@ -64,13 +63,13 @@ msgstr "Enhanced Media Library"
64
  msgid "General"
65
  msgstr ""
66
 
67
- #: core/options-pages.php:209 core/options-pages.php:1143
68
  msgid "Media Taxonomies"
69
  msgstr "미디어 카테고리"
70
 
71
- #: core/options-pages.php:233 core/options-pages.php:539
72
- #: core/options-pages.php:993 core/options-pages.php:1118
73
- #: core/options-pages.php:1441
74
  msgid "You do not have sufficient permissions to access this page."
75
  msgstr "이 페이지에 접근할 권한이 없습니다."
76
 
@@ -146,9 +145,9 @@ msgstr ""
146
  msgid "Organize my uploads into month- and year-based folders"
147
  msgstr ""
148
 
149
- #: core/options-pages.php:397 core/options-pages.php:1167
150
- #: core/options-pages.php:1182 core/options-pages.php:1245
151
- #: core/options-pages.php:1314
152
  msgid "Edit"
153
  msgstr "편집"
154
 
@@ -156,23 +155,23 @@ msgstr "편집"
156
  msgid "Close"
157
  msgstr "닫기"
158
 
159
- #: core/options-pages.php:399 core/options-pages.php:1183
160
- #: core/options-pages.php:1246
161
  msgid "View"
162
  msgstr "보기"
163
 
164
- #: core/options-pages.php:400 core/options-pages.php:1184
165
- #: core/options-pages.php:1247
166
  msgid "Update"
167
  msgstr "업데이트"
168
 
169
- #: core/options-pages.php:401 core/options-pages.php:1185
170
- #: core/options-pages.php:1248
171
  msgid "Add New"
172
  msgstr "새로 추가하기"
173
 
174
- #: core/options-pages.php:402 core/options-pages.php:1186
175
- #: core/options-pages.php:1249
176
  msgid "New"
177
  msgstr "신규"
178
 
@@ -180,23 +179,23 @@ msgstr "신규"
180
  msgid "Name"
181
  msgstr "이름"
182
 
183
- #: core/options-pages.php:404 core/options-pages.php:1187
184
- #: core/options-pages.php:1250
185
  msgid "Parent"
186
  msgstr "부모"
187
 
188
- #: core/options-pages.php:405 core/options-pages.php:635
189
- #: core/options-pages.php:1181 core/options-pages.php:1244
190
- #: core/taxonomies.php:348 enhanced-media-library.php:481
191
  msgid "All"
192
  msgstr "모두"
193
 
194
- #: core/options-pages.php:406 core/options-pages.php:1188
195
- #: core/options-pages.php:1251
196
  msgid "Search"
197
  msgstr "검색"
198
 
199
- #: core/options-pages.php:408 core/options-pages.php:1232
200
  msgid "New Taxonomy"
201
  msgstr "새로운 카테고리"
202
 
@@ -256,7 +255,7 @@ msgid "Ok"
256
  msgstr ""
257
 
258
  #: core/options-pages.php:426 core/options-pages.php:431
259
- #: core/options-pages.php:514
260
  msgid "Cancel"
261
  msgstr ""
262
 
@@ -264,7 +263,7 @@ msgstr ""
264
  msgid "Synchronize Now"
265
  msgstr ""
266
 
267
- #: core/options-pages.php:429 core/options-pages.php:511
268
  msgid "This operation cannot be canceled! Are you still sure?"
269
  msgstr ""
270
 
@@ -276,45 +275,57 @@ msgstr ""
276
  msgid "Synchronizing..."
277
  msgstr ""
278
 
279
- #: core/options-pages.php:470
 
 
 
 
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
282
 
283
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
284
  msgid "Please fill into all fields."
285
  msgstr "모든 필드에 입력해주세요."
286
 
287
- #: core/options-pages.php:472
288
  msgid "Duplicate extensions or MIME types. Please chose other one."
289
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
290
 
291
- #: core/options-pages.php:509 core/options-pages.php:626
292
  msgid "Complete Cleanup"
293
  msgstr ""
294
 
295
- #: core/options-pages.php:510
296
  msgid ""
297
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
298
  "plugin data</strong> from the database including backups."
299
  msgstr ""
300
 
301
- #: core/options-pages.php:512
302
  msgid "Yes, delete all data"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:513
306
  msgid "Cleaning..."
307
  msgstr ""
308
 
309
- #: core/options-pages.php:544
310
  msgid "Enhanced Media Library Settings"
311
  msgstr ""
312
 
313
- #: core/options-pages.php:554
314
  msgid "Export"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:558
318
  msgid ""
319
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
320
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -322,15 +333,15 @@ msgid ""
322
  "another website."
323
  msgstr ""
324
 
325
- #: core/options-pages.php:563
326
  msgid "Export Plugin Settings"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:573
330
  msgid "Import"
331
  msgstr ""
332
 
333
- #: core/options-pages.php:577
334
  msgid ""
335
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
336
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -338,168 +349,168 @@ msgid ""
338
  "another website using the export button above."
339
  msgstr ""
340
 
341
- #: core/options-pages.php:578
342
  msgid ""
343
  "All plugin settings will be overridden by the import. You will have a chance "
344
  "to restore current data from an automatic backup in case you are not "
345
  "satisfied with the result of the import."
346
  msgstr ""
347
 
348
- #: core/options-pages.php:585
349
  msgid "Import Plugin Settings"
350
  msgstr ""
351
 
352
- #: core/options-pages.php:597
353
  msgid "Restore"
354
  msgstr ""
355
 
356
- #: core/options-pages.php:603
357
  msgid "No backup available at the moment."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:605
361
  msgid "Backup will be created automatically before any import operation."
362
  msgstr ""
363
 
364
- #: core/options-pages.php:609
365
  msgid ""
366
  "The backup has been automatically created before the latest import operation."
367
  msgstr ""
368
 
369
- #: core/options-pages.php:613
370
  msgid "Restore Settings from the Backup"
371
  msgstr ""
372
 
373
- #: core/options-pages.php:633
374
  msgid "What will be deleted:"
375
  msgstr ""
376
 
377
- #: core/options-pages.php:638
378
  msgid "All plugin options"
379
  msgstr ""
380
 
381
- #: core/options-pages.php:639
382
  msgid "All plugin backups stored in database"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:643
386
  msgid "What will remain intact:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:644
390
  msgid "All media items"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:645
394
  msgid "All taxonomies not listed above"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:648
398
  msgid ""
399
  "The plugin cannot delete itself because of security reason. Please delete it "
400
  "manually from plugin list after cleanup."
401
  msgstr ""
402
 
403
- #: core/options-pages.php:650
404
  msgid ""
405
  "If you are not sure about this operation please create a backup of your "
406
  "database prior to cleanup!"
407
  msgstr ""
408
 
409
- #: core/options-pages.php:656
410
  msgid "Delete All Data & Deactivate"
411
  msgstr ""
412
 
413
- #: core/options-pages.php:756
414
  msgid "Please upload a file to import settings."
415
  msgstr ""
416
 
417
- #: core/options-pages.php:782
418
  msgid "Plugin settings imported."
419
  msgstr ""
420
 
421
- #: core/options-pages.php:829
422
  msgid "Plugin settings restored from the backup."
423
  msgstr ""
424
 
425
- #: core/options-pages.php:1018
426
  msgid "Media Items Order"
427
  msgstr ""
428
 
429
- #: core/options-pages.php:1025
430
  msgid "Order media items by"
431
  msgstr ""
432
 
433
- #: core/options-pages.php:1028
434
  msgid "Date"
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1029
438
  msgid "Title"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1030
442
  msgid "Custom Order"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:1032 core/options-pages.php:1044
446
  msgid "For media library and media popups"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1033
450
  msgid "Option allows to change order by drag and drop with Custom Order value."
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1038
454
  msgid "Sort order"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1041
458
  msgid "Ascending"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1042
462
  msgid "Descending"
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1057
466
  msgid "Media Shortcodes"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1064 core/options-pages.php:1067
470
  msgid "Enhanced media shortcodes"
471
  msgstr ""
472
 
473
- #: core/options-pages.php:1068
474
  msgid ""
475
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
476
  "upload date, and media items number limit"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1069
480
  msgid "Gallery example:"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1070
484
  msgid "Audio playlist example:"
485
  msgstr ""
486
 
487
- #: core/options-pages.php:1071
488
  msgid "Video playlist example:"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1073
492
  #, php-format
493
  msgid ""
494
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1075
498
  #, php-format
499
  msgid "%sLearn more%s."
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1077
503
  #, php-format
504
  msgid ""
505
  "Please check out your gallery front-end and back-end functionality once this "
@@ -507,241 +518,237 @@ msgid ""
507
  "%s."
508
  msgstr ""
509
 
510
- #: core/options-pages.php:1147 core/options-pages.php:1294
511
  msgid "Assign following taxonomies to Media Library:"
512
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
513
 
514
- #: core/options-pages.php:1166 core/options-pages.php:1232
515
- #: core/options-pages.php:1313
516
  msgid "Assign Taxonomy"
517
  msgstr "카테고리 할당"
518
 
519
- #: core/options-pages.php:1167 core/options-pages.php:1314
520
  msgid "Edit Taxonomy"
521
  msgstr "카테고리 편집"
522
 
523
- #: core/options-pages.php:1171 core/options-pages.php:1234
524
  msgid "Delete Taxonomy"
525
  msgstr "카테고리 삭제"
526
 
527
- #: core/options-pages.php:1176 core/options-pages.php:1239
528
  msgid "Labels"
529
  msgstr "라벨"
530
 
531
- #: core/options-pages.php:1178 core/options-pages.php:1241
532
  msgid "Singular"
533
  msgstr "단수"
534
 
535
- #: core/options-pages.php:1179 core/options-pages.php:1242
536
  msgid "Plural"
537
  msgstr "복수"
538
 
539
- #: core/options-pages.php:1180 core/options-pages.php:1243
540
  msgid "Menu Name"
541
  msgstr "메뉴명"
542
 
543
- #: core/options-pages.php:1193 core/options-pages.php:1216
544
- #: core/options-pages.php:1256 core/options-pages.php:1317
545
  msgid "Settings"
546
  msgstr "설정"
547
 
548
- #: core/options-pages.php:1195 core/options-pages.php:1258
549
  msgid "Taxonomy Name"
550
  msgstr "카테고리명"
551
 
552
- #: core/options-pages.php:1196 core/options-pages.php:1259
553
  msgid "Hierarchical"
554
  msgstr "계층 구조"
555
 
556
- #: core/options-pages.php:1197 core/options-pages.php:1260
557
  msgid "Column for List View"
558
  msgstr ""
559
 
560
- #: core/options-pages.php:1198 core/options-pages.php:1218
561
- #: core/options-pages.php:1261 core/options-pages.php:1319
562
  msgid "Filter for List View"
563
  msgstr ""
564
 
565
- #: core/options-pages.php:1199 core/options-pages.php:1219
566
- #: core/options-pages.php:1262 core/options-pages.php:1320
567
  msgid "Filter for Grid View / Media Popup"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1200 core/options-pages.php:1220
571
- #: core/options-pages.php:1263 core/options-pages.php:1321
572
  msgid "Edit in Media Popup"
573
  msgstr "미디어 팝업에서 편집"
574
 
575
- #: core/options-pages.php:1201 core/options-pages.php:1264
576
  msgid "Show in Nav Menu"
577
  msgstr "탐색 메뉴에서 표시"
578
 
579
- #: core/options-pages.php:1202 core/options-pages.php:1265
580
  msgid "Remember Terms Order (sort)"
581
  msgstr ""
582
 
583
- #: core/options-pages.php:1203 core/options-pages.php:1266
584
  msgid "Show in REST"
585
  msgstr ""
586
 
587
- #: core/options-pages.php:1204 core/options-pages.php:1267
588
  msgid "Rewrite Slug"
589
  msgstr "슬러그 다시 쓰기"
590
 
591
- #: core/options-pages.php:1205 core/options-pages.php:1268
592
  msgid "Slug with Front"
593
  msgstr "프런트를 포함한 슬러그"
594
 
595
- #: core/options-pages.php:1280
596
  msgid "Add New Taxonomy"
597
  msgstr "새로운 카테고리 추가"
598
 
599
- #: core/options-pages.php:1290
600
  msgid "Non-Media Taxonomies"
601
  msgstr "비 미디어 카테고리"
602
 
603
- #: core/options-pages.php:1351
604
  msgid "Options"
605
  msgstr "옵션"
606
 
607
- #: core/options-pages.php:1361 core/options-pages.php:1364
608
  msgid "Taxonomy archive pages"
609
  msgstr "카테고리 보관 페이지"
610
 
611
- #: core/options-pages.php:1365
612
  msgid "Turn on media taxonomy archive pages on the front-end"
613
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
614
 
615
- #: core/options-pages.php:1366
616
  msgid ""
617
  "Re-save your permalink settings after this option change to make it work."
618
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
619
 
620
- #: core/options-pages.php:1372 core/options-pages.php:1375
621
  msgid "Assign all like hierarchical"
622
  msgstr "모두 계층 구조와 같이 할당"
623
 
624
- #: core/options-pages.php:1376
625
  msgid ""
626
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
627
  msgstr ""
628
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
629
 
630
- #: core/options-pages.php:1382 core/options-pages.php:1385
631
  msgid "Force filters"
632
  msgstr "필터 강제 적용"
633
 
634
- #: core/options-pages.php:1386
635
  msgid "Show media filters for ANY Media Popup"
636
  msgstr ""
637
 
638
- #: core/options-pages.php:1387
639
  msgid "Try this if filters are not shown for third-party plugins or themes."
640
  msgstr ""
641
 
642
- #: core/options-pages.php:1393 core/options-pages.php:1396
643
  msgid "Show count"
644
  msgstr ""
645
 
646
- #: core/options-pages.php:1397
647
  msgid "Show item count per category for media filters"
648
  msgstr ""
649
 
650
- #: core/options-pages.php:1451
651
  msgid "Add New MIME Type"
652
  msgstr "새로운 MIME 유형 추가"
653
 
654
- #: core/options-pages.php:1469 core/options-pages.php:1524
655
  msgid "Extension"
656
  msgstr "확장자"
657
 
658
- #: core/options-pages.php:1470 core/options-pages.php:1525
659
  msgid "MIME Type"
660
  msgstr "MIME 유형"
661
 
662
- #: core/options-pages.php:1471 core/options-pages.php:1526
663
  msgid "Singular Label"
664
  msgstr "단수 라벨"
665
 
666
- #: core/options-pages.php:1472 core/options-pages.php:1527
667
  msgid "Plural Label"
668
  msgstr "복수 라벨"
669
 
670
- #: core/options-pages.php:1473 core/options-pages.php:1503
671
- #: core/options-pages.php:1516 core/options-pages.php:1528
672
  msgid "Add Filter"
673
  msgstr "필터 추가"
674
 
675
- #: core/options-pages.php:1474 core/options-pages.php:1504
676
- #: core/options-pages.php:1517 core/options-pages.php:1529
677
  msgid "Allow Upload"
678
  msgstr "업로드 허용"
679
 
680
- #: core/options-pages.php:1505 core/options-pages.php:1518
681
  msgid "Delete MIME Type"
682
  msgstr "MIME 유형 삭제"
683
 
684
- #: core/options-pages.php:1535
685
- msgid "Restore WordPress default MIME Types"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1537
689
  msgid "Save Changes"
690
  msgstr "변경 사항 저장"
691
 
692
- #: core/options-pages.php:1574
693
  msgid "Changelog"
694
  msgstr ""
695
 
696
- #: core/options-pages.php:1575
697
  msgid "What's new in"
698
  msgstr ""
699
 
700
- #: core/options-pages.php:1575
701
  msgid "version"
702
  msgstr ""
703
 
704
- #: core/options-pages.php:1578
705
  msgid "More features under the hood"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1580
709
  msgid "Support"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1581
713
  msgid "Feel free to ask for help on"
714
  msgstr ""
715
 
716
- #: core/options-pages.php:1581
717
  msgid "Support is free for both versions of the plugin."
718
  msgstr ""
719
 
720
- #: core/options-pages.php:1583
721
  msgid "Plugin rating"
722
  msgstr ""
723
 
724
- #: core/options-pages.php:1584
725
  msgid "Please"
726
  msgstr ""
727
 
728
- #: core/options-pages.php:1584
729
  msgid "vote for the plugin"
730
  msgstr ""
731
 
732
- #: core/options-pages.php:1584
733
  msgid "Thanks!"
734
  msgstr ""
735
 
736
- #: core/options-pages.php:1586
737
  msgid "Other plugins you may find useful"
738
  msgstr ""
739
 
740
- #: core/options-pages.php:1625
741
  msgid "Utility"
742
  msgstr ""
743
 
744
- #: core/options-pages.php:1648
745
  msgid "Vote!"
746
  msgstr ""
747
 
@@ -754,84 +761,70 @@ msgid "Media Library settings saved."
754
  msgstr ""
755
 
756
  #: core/taxonomies.php:341 core/taxonomies.php:347
757
- #: enhanced-media-library.php:480
758
  msgid "Filter by"
759
  msgstr "필터 적용:"
760
 
761
- #: core/taxonomies.php:349 enhanced-media-library.php:482
762
  msgid "Not in"
763
  msgstr "포함되지 않음:"
764
 
765
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
766
  msgid "All Uncategorized"
767
  msgstr "모두 미분류됨"
768
 
769
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
770
  msgid "Reset All Filters"
771
  msgstr "모든 필터 재설정"
772
 
773
- #: enhanced-media-library.php:513
774
  msgid "Uploaded to post #"
775
  msgstr ""
776
 
777
- #: enhanced-media-library.php:514
778
  msgid "Based On"
779
  msgstr ""
780
 
781
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
782
  msgid "Media Categories"
783
  msgstr ""
784
 
785
- #: enhanced-media-library.php:560
786
  msgid "Media Category"
787
  msgstr ""
788
 
789
- #: enhanced-media-library.php:562
790
  msgid "All Media Categories"
791
  msgstr ""
792
 
793
- #: enhanced-media-library.php:563
794
  msgid "Edit Media Category"
795
  msgstr ""
796
 
797
- #: enhanced-media-library.php:564
798
  msgid "View Media Category"
799
  msgstr ""
800
 
801
- #: enhanced-media-library.php:565
802
  msgid "Update Media Category"
803
  msgstr ""
804
 
805
- #: enhanced-media-library.php:566
806
  msgid "Add New Media Category"
807
  msgstr ""
808
 
809
- #: enhanced-media-library.php:567
810
  msgid "New Media Category Name"
811
  msgstr ""
812
 
813
- #: enhanced-media-library.php:568
814
  msgid "Parent Media Category"
815
  msgstr ""
816
 
817
- #: enhanced-media-library.php:569
818
  msgid "Parent Media Category:"
819
  msgstr ""
820
 
821
- #: enhanced-media-library.php:570
822
  msgid "Search Media Categories"
823
  msgstr ""
824
-
825
- #. Plugin URI of the plugin/theme
826
- #. Author URI of the plugin/theme
827
- msgid "http://wpUXsolutions.com"
828
- msgstr ""
829
-
830
- #. Description of the plugin/theme
831
- msgid ""
832
- "This plugin will be handy for those who need to manage a lot of media files."
833
- msgstr "이 플러그인은 많은 미디어 파일을 관리해야 하는 사용자에게 유용합니다."
834
-
835
- #. Author of the plugin/theme
836
- msgid "wpUXsolutions"
837
- msgstr ""
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"
31
  msgid "MIME Types settings saved."
32
  msgstr ""
33
 
34
+ #: core/mime-types.php:116
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
 
55
  msgid "MIME Types"
56
  msgstr "MIME 유형"
57
 
 
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr "Enhanced Media Library"
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-06-27 20:52+0300\n"
6
- "PO-Revision-Date: 2016-06-27 20:53+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"
@@ -27,7 +27,7 @@ msgstr ""
27
  msgid "MIME Types settings saved."
28
  msgstr ""
29
 
30
- #: core/mime-types.php:115
31
  #, php-format
32
  msgid " <span class=\"count\">(%s)</span>"
33
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -36,8 +36,8 @@ msgstr[1] ""
36
 
37
  # @ eml
38
  #: core/options-pages.php:97 core/options-pages.php:236
39
- #: core/options-pages.php:997 core/options-pages.php:1122
40
- #: core/options-pages.php:1445 core/options-pages.php:1622
41
  msgid "Media Settings"
42
  msgstr "Media Instellingen"
43
 
@@ -56,7 +56,6 @@ msgid "MIME Types"
56
  msgstr "MIME Types"
57
 
58
  # @ eml
59
- #. Plugin Name of the plugin/theme
60
  #: core/options-pages.php:135 core/options-pages.php:136
61
  msgid "Enhanced Media Library"
62
  msgstr ""
@@ -66,14 +65,14 @@ msgid "General"
66
  msgstr ""
67
 
68
  # @ eml
69
- #: core/options-pages.php:209 core/options-pages.php:1143
70
  msgid "Media Taxonomies"
71
  msgstr "Media Taxonomies"
72
 
73
  # @ eml
74
- #: core/options-pages.php:233 core/options-pages.php:539
75
- #: core/options-pages.php:993 core/options-pages.php:1118
76
- #: core/options-pages.php:1441
77
  msgid "You do not have sufficient permissions to access this page."
78
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
79
 
@@ -150,9 +149,9 @@ msgid "Organize my uploads into month- and year-based folders"
150
  msgstr ""
151
 
152
  # @ eml
153
- #: core/options-pages.php:397 core/options-pages.php:1167
154
- #: core/options-pages.php:1182 core/options-pages.php:1245
155
- #: core/options-pages.php:1314
156
  msgid "Edit"
157
  msgstr "Bewerk"
158
 
@@ -162,26 +161,26 @@ msgid "Close"
162
  msgstr "Sluit"
163
 
164
  # @ eml
165
- #: core/options-pages.php:399 core/options-pages.php:1183
166
- #: core/options-pages.php:1246
167
  msgid "View"
168
  msgstr "Bekijk"
169
 
170
  # @ eml
171
- #: core/options-pages.php:400 core/options-pages.php:1184
172
- #: core/options-pages.php:1247
173
  msgid "Update"
174
  msgstr "Werk bij"
175
 
176
  # @ eml
177
- #: core/options-pages.php:401 core/options-pages.php:1185
178
- #: core/options-pages.php:1248
179
  msgid "Add New"
180
  msgstr "Voeg Nieuw Toe"
181
 
182
  # @ eml
183
- #: core/options-pages.php:402 core/options-pages.php:1186
184
- #: core/options-pages.php:1249
185
  msgid "New"
186
  msgstr "Nieuw"
187
 
@@ -191,26 +190,26 @@ msgid "Name"
191
  msgstr "Naam"
192
 
193
  # @ eml
194
- #: core/options-pages.php:404 core/options-pages.php:1187
195
- #: core/options-pages.php:1250
196
  msgid "Parent"
197
  msgstr "Parent"
198
 
199
  # @ eml
200
- #: core/options-pages.php:405 core/options-pages.php:635
201
- #: core/options-pages.php:1181 core/options-pages.php:1244
202
- #: core/taxonomies.php:348 enhanced-media-library.php:481
203
  msgid "All"
204
  msgstr "Allemaal"
205
 
206
  # @ eml
207
- #: core/options-pages.php:406 core/options-pages.php:1188
208
- #: core/options-pages.php:1251
209
  msgid "Search"
210
  msgstr "Zoek"
211
 
212
  # @ eml
213
- #: core/options-pages.php:408 core/options-pages.php:1232
214
  msgid "New Taxonomy"
215
  msgstr "Nieuwe Taxonomy"
216
 
@@ -270,7 +269,7 @@ msgid "Ok"
270
  msgstr ""
271
 
272
  #: core/options-pages.php:426 core/options-pages.php:431
273
- #: core/options-pages.php:514
274
  msgid "Cancel"
275
  msgstr ""
276
 
@@ -278,7 +277,7 @@ msgstr ""
278
  msgid "Synchronize Now"
279
  msgstr ""
280
 
281
- #: core/options-pages.php:429 core/options-pages.php:511
282
  msgid "This operation cannot be canceled! Are you still sure?"
283
  msgstr ""
284
 
@@ -290,50 +289,62 @@ msgstr ""
290
  msgid "Synchronizing..."
291
  msgstr ""
292
 
 
 
 
 
293
  # @ eml
294
- #: core/options-pages.php:470
295
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
296
  msgstr ""
297
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
298
  "verwijderd worden."
299
 
 
 
 
 
 
 
 
 
300
  # @ eml
301
- #: core/options-pages.php:471
302
  msgid "Please fill into all fields."
303
  msgstr "Vul aub alle velden in."
304
 
305
  # @ eml
306
- #: core/options-pages.php:472
307
  msgid "Duplicate extensions or MIME types. Please chose other one."
308
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
309
 
310
- #: core/options-pages.php:509 core/options-pages.php:626
311
  msgid "Complete Cleanup"
312
  msgstr ""
313
 
314
- #: core/options-pages.php:510
315
  msgid ""
316
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
317
  "plugin data</strong> from the database including backups."
318
  msgstr ""
319
 
320
- #: core/options-pages.php:512
321
  msgid "Yes, delete all data"
322
  msgstr ""
323
 
324
- #: core/options-pages.php:513
325
  msgid "Cleaning..."
326
  msgstr ""
327
 
328
- #: core/options-pages.php:544
329
  msgid "Enhanced Media Library Settings"
330
  msgstr ""
331
 
332
- #: core/options-pages.php:554
333
  msgid "Export"
334
  msgstr ""
335
 
336
- #: core/options-pages.php:558
337
  msgid ""
338
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
339
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -341,15 +352,15 @@ msgid ""
341
  "another website."
342
  msgstr ""
343
 
344
- #: core/options-pages.php:563
345
  msgid "Export Plugin Settings"
346
  msgstr ""
347
 
348
- #: core/options-pages.php:573
349
  msgid "Import"
350
  msgstr ""
351
 
352
- #: core/options-pages.php:577
353
  msgid ""
354
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
355
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -357,168 +368,168 @@ msgid ""
357
  "another website using the export button above."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:578
361
  msgid ""
362
  "All plugin settings will be overridden by the import. You will have a chance "
363
  "to restore current data from an automatic backup in case you are not "
364
  "satisfied with the result of the import."
365
  msgstr ""
366
 
367
- #: core/options-pages.php:585
368
  msgid "Import Plugin Settings"
369
  msgstr ""
370
 
371
- #: core/options-pages.php:597
372
  msgid "Restore"
373
  msgstr ""
374
 
375
- #: core/options-pages.php:603
376
  msgid "No backup available at the moment."
377
  msgstr ""
378
 
379
- #: core/options-pages.php:605
380
  msgid "Backup will be created automatically before any import operation."
381
  msgstr ""
382
 
383
- #: core/options-pages.php:609
384
  msgid ""
385
  "The backup has been automatically created before the latest import operation."
386
  msgstr ""
387
 
388
- #: core/options-pages.php:613
389
  msgid "Restore Settings from the Backup"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:633
393
  msgid "What will be deleted:"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:638
397
  msgid "All plugin options"
398
  msgstr ""
399
 
400
- #: core/options-pages.php:639
401
  msgid "All plugin backups stored in database"
402
  msgstr ""
403
 
404
- #: core/options-pages.php:643
405
  msgid "What will remain intact:"
406
  msgstr ""
407
 
408
- #: core/options-pages.php:644
409
  msgid "All media items"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:645
413
  msgid "All taxonomies not listed above"
414
  msgstr ""
415
 
416
- #: core/options-pages.php:648
417
  msgid ""
418
  "The plugin cannot delete itself because of security reason. Please delete it "
419
  "manually from plugin list after cleanup."
420
  msgstr ""
421
 
422
- #: core/options-pages.php:650
423
  msgid ""
424
  "If you are not sure about this operation please create a backup of your "
425
  "database prior to cleanup!"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:656
429
  msgid "Delete All Data & Deactivate"
430
  msgstr ""
431
 
432
- #: core/options-pages.php:756
433
  msgid "Please upload a file to import settings."
434
  msgstr ""
435
 
436
- #: core/options-pages.php:782
437
  msgid "Plugin settings imported."
438
  msgstr ""
439
 
440
- #: core/options-pages.php:829
441
  msgid "Plugin settings restored from the backup."
442
  msgstr ""
443
 
444
- #: core/options-pages.php:1018
445
  msgid "Media Items Order"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:1025
449
  msgid "Order media items by"
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1028
453
  msgid "Date"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1029
457
  msgid "Title"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1030
461
  msgid "Custom Order"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1032 core/options-pages.php:1044
465
  msgid "For media library and media popups"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1033
469
  msgid "Option allows to change order by drag and drop with Custom Order value."
470
  msgstr ""
471
 
472
- #: core/options-pages.php:1038
473
  msgid "Sort order"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1041
477
  msgid "Ascending"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1042
481
  msgid "Descending"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1057
485
  msgid "Media Shortcodes"
486
  msgstr ""
487
 
488
- #: core/options-pages.php:1064 core/options-pages.php:1067
489
  msgid "Enhanced media shortcodes"
490
  msgstr ""
491
 
492
- #: core/options-pages.php:1068
493
  msgid ""
494
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
495
  "upload date, and media items number limit"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1069
499
  msgid "Gallery example:"
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1070
503
  msgid "Audio playlist example:"
504
  msgstr ""
505
 
506
- #: core/options-pages.php:1071
507
  msgid "Video playlist example:"
508
  msgstr ""
509
 
510
- #: core/options-pages.php:1073
511
  #, php-format
512
  msgid ""
513
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
514
  msgstr ""
515
 
516
- #: core/options-pages.php:1075
517
  #, php-format
518
  msgid "%sLearn more%s."
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1077
522
  #, php-format
523
  msgid ""
524
  "Please check out your gallery front-end and back-end functionality once this "
@@ -527,260 +538,256 @@ msgid ""
527
  msgstr ""
528
 
529
  # @ eml
530
- #: core/options-pages.php:1147 core/options-pages.php:1294
531
  msgid "Assign following taxonomies to Media Library:"
532
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
533
 
534
  # @ eml
535
- #: core/options-pages.php:1166 core/options-pages.php:1232
536
- #: core/options-pages.php:1313
537
  msgid "Assign Taxonomy"
538
  msgstr "Toekennen Taxonomie"
539
 
540
  # @ eml
541
- #: core/options-pages.php:1167 core/options-pages.php:1314
542
  msgid "Edit Taxonomy"
543
  msgstr "Bewerk Taxonomie"
544
 
545
  # @ eml
546
- #: core/options-pages.php:1171 core/options-pages.php:1234
547
  msgid "Delete Taxonomy"
548
  msgstr "Verwijder Taxonomie"
549
 
550
  # @ eml
551
- #: core/options-pages.php:1176 core/options-pages.php:1239
552
  msgid "Labels"
553
  msgstr "Labels"
554
 
555
  # @ eml
556
- #: core/options-pages.php:1178 core/options-pages.php:1241
557
  msgid "Singular"
558
  msgstr "Enkelvoud"
559
 
560
  # @ eml
561
- #: core/options-pages.php:1179 core/options-pages.php:1242
562
  msgid "Plural"
563
  msgstr "Meervoud"
564
 
565
  # @ eml
566
- #: core/options-pages.php:1180 core/options-pages.php:1243
567
  msgid "Menu Name"
568
  msgstr "Menu Naam"
569
 
570
  # @ eml
571
- #: core/options-pages.php:1193 core/options-pages.php:1216
572
- #: core/options-pages.php:1256 core/options-pages.php:1317
573
  msgid "Settings"
574
  msgstr "Instellingen"
575
 
576
- #: core/options-pages.php:1195 core/options-pages.php:1258
577
  msgid "Taxonomy Name"
578
  msgstr ""
579
 
580
  # @ eml
581
- #: core/options-pages.php:1196 core/options-pages.php:1259
582
  msgid "Hierarchical"
583
  msgstr "Hiërarchisch"
584
 
585
- #: core/options-pages.php:1197 core/options-pages.php:1260
586
  msgid "Column for List View"
587
  msgstr ""
588
 
589
- #: core/options-pages.php:1198 core/options-pages.php:1218
590
- #: core/options-pages.php:1261 core/options-pages.php:1319
591
  msgid "Filter for List View"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1199 core/options-pages.php:1219
595
- #: core/options-pages.php:1262 core/options-pages.php:1320
596
  msgid "Filter for Grid View / Media Popup"
597
  msgstr ""
598
 
599
- #: core/options-pages.php:1200 core/options-pages.php:1220
600
- #: core/options-pages.php:1263 core/options-pages.php:1321
601
  msgid "Edit in Media Popup"
602
  msgstr ""
603
 
604
  # @ eml
605
- #: core/options-pages.php:1201 core/options-pages.php:1264
606
  msgid "Show in Nav Menu"
607
  msgstr "Toon in Nav Menu"
608
 
609
- #: core/options-pages.php:1202 core/options-pages.php:1265
610
  msgid "Remember Terms Order (sort)"
611
  msgstr ""
612
 
613
- #: core/options-pages.php:1203 core/options-pages.php:1266
614
  msgid "Show in REST"
615
  msgstr ""
616
 
617
- #: core/options-pages.php:1204 core/options-pages.php:1267
618
  msgid "Rewrite Slug"
619
  msgstr ""
620
 
621
- #: core/options-pages.php:1205 core/options-pages.php:1268
622
  msgid "Slug with Front"
623
  msgstr ""
624
 
625
  # @ eml
626
- #: core/options-pages.php:1280
627
  msgid "Add New Taxonomy"
628
  msgstr "Voeg Nieuwe Taxonomie Toe"
629
 
630
  # @ eml
631
- #: core/options-pages.php:1290
632
  msgid "Non-Media Taxonomies"
633
  msgstr "Niet-Media Taxonomies"
634
 
635
- #: core/options-pages.php:1351
636
  msgid "Options"
637
  msgstr ""
638
 
639
- #: core/options-pages.php:1361 core/options-pages.php:1364
640
  msgid "Taxonomy archive pages"
641
  msgstr ""
642
 
643
- #: core/options-pages.php:1365
644
  msgid "Turn on media taxonomy archive pages on the front-end"
645
  msgstr ""
646
 
647
- #: core/options-pages.php:1366
648
  msgid ""
649
  "Re-save your permalink settings after this option change to make it work."
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1372 core/options-pages.php:1375
653
  msgid "Assign all like hierarchical"
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1376
657
  msgid ""
658
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1382 core/options-pages.php:1385
662
  msgid "Force filters"
663
  msgstr ""
664
 
665
- #: core/options-pages.php:1386
666
  msgid "Show media filters for ANY Media Popup"
667
  msgstr ""
668
 
669
- #: core/options-pages.php:1387
670
  msgid "Try this if filters are not shown for third-party plugins or themes."
671
  msgstr ""
672
 
673
- #: core/options-pages.php:1393 core/options-pages.php:1396
674
  msgid "Show count"
675
  msgstr ""
676
 
677
- #: core/options-pages.php:1397
678
  msgid "Show item count per category for media filters"
679
  msgstr ""
680
 
681
  # @ eml
682
- #: core/options-pages.php:1451
683
  msgid "Add New MIME Type"
684
  msgstr "Voeg Nieuw MIME Type Toe"
685
 
686
  # @ eml
687
- #: core/options-pages.php:1469 core/options-pages.php:1524
688
  msgid "Extension"
689
  msgstr "Extensie"
690
 
691
  # @ eml
692
- #: core/options-pages.php:1470 core/options-pages.php:1525
693
  msgid "MIME Type"
694
  msgstr "MIME Type"
695
 
696
  # @ eml
697
- #: core/options-pages.php:1471 core/options-pages.php:1526
698
  msgid "Singular Label"
699
  msgstr "Enkelvoud Label"
700
 
701
  # @ eml
702
- #: core/options-pages.php:1472 core/options-pages.php:1527
703
  msgid "Plural Label"
704
  msgstr "Meervoud Label"
705
 
706
  # @ eml
707
- #: core/options-pages.php:1473 core/options-pages.php:1503
708
- #: core/options-pages.php:1516 core/options-pages.php:1528
709
  msgid "Add Filter"
710
  msgstr "Voeg Filter Toe"
711
 
712
  # @ eml
713
- #: core/options-pages.php:1474 core/options-pages.php:1504
714
- #: core/options-pages.php:1517 core/options-pages.php:1529
715
  msgid "Allow Upload"
716
  msgstr "Sta Upload Toe"
717
 
718
  # @ eml
719
- #: core/options-pages.php:1505 core/options-pages.php:1518
720
  msgid "Delete MIME Type"
721
  msgstr "Verwijder MIME Type"
722
 
723
- #: core/options-pages.php:1535
724
- msgid "Restore WordPress default MIME Types"
725
- msgstr ""
726
-
727
- #: core/options-pages.php:1537
728
  msgid "Save Changes"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1574
732
  msgid "Changelog"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1575
736
  msgid "What's new in"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1575
740
  msgid "version"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1578
744
  msgid "More features under the hood"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1580
748
  msgid "Support"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1581
752
  msgid "Feel free to ask for help on"
753
  msgstr ""
754
 
755
- #: core/options-pages.php:1581
756
  msgid "Support is free for both versions of the plugin."
757
  msgstr ""
758
 
759
- #: core/options-pages.php:1583
760
  msgid "Plugin rating"
761
  msgstr ""
762
 
763
- #: core/options-pages.php:1584
764
  msgid "Please"
765
  msgstr ""
766
 
767
- #: core/options-pages.php:1584
768
  msgid "vote for the plugin"
769
  msgstr ""
770
 
771
- #: core/options-pages.php:1584
772
  msgid "Thanks!"
773
  msgstr ""
774
 
775
- #: core/options-pages.php:1586
776
  msgid "Other plugins you may find useful"
777
  msgstr ""
778
 
779
- #: core/options-pages.php:1625
780
  msgid "Utility"
781
  msgstr ""
782
 
783
- #: core/options-pages.php:1648
784
  msgid "Vote!"
785
  msgstr ""
786
 
@@ -793,86 +800,70 @@ msgid "Media Library settings saved."
793
  msgstr ""
794
 
795
  #: core/taxonomies.php:341 core/taxonomies.php:347
796
- #: enhanced-media-library.php:480
797
  msgid "Filter by"
798
  msgstr ""
799
 
800
- #: core/taxonomies.php:349 enhanced-media-library.php:482
801
  msgid "Not in"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
805
  msgid "All Uncategorized"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
809
  msgid "Reset All Filters"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:513
813
  msgid "Uploaded to post #"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:514
817
  msgid "Based On"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
821
  msgid "Media Categories"
822
  msgstr ""
823
 
824
- #: enhanced-media-library.php:560
825
  msgid "Media Category"
826
  msgstr ""
827
 
828
- #: enhanced-media-library.php:562
829
  msgid "All Media Categories"
830
  msgstr ""
831
 
832
- #: enhanced-media-library.php:563
833
  msgid "Edit Media Category"
834
  msgstr ""
835
 
836
- #: enhanced-media-library.php:564
837
  msgid "View Media Category"
838
  msgstr ""
839
 
840
- #: enhanced-media-library.php:565
841
  msgid "Update Media Category"
842
  msgstr ""
843
 
844
- #: enhanced-media-library.php:566
845
  msgid "Add New Media Category"
846
  msgstr ""
847
 
848
- #: enhanced-media-library.php:567
849
  msgid "New Media Category Name"
850
  msgstr ""
851
 
852
- #: enhanced-media-library.php:568
853
  msgid "Parent Media Category"
854
  msgstr ""
855
 
856
- #: enhanced-media-library.php:569
857
  msgid "Parent Media Category:"
858
  msgstr ""
859
 
860
- #: enhanced-media-library.php:570
861
  msgid "Search Media Categories"
862
  msgstr ""
863
-
864
- #. Plugin URI of the plugin/theme
865
- #. Author URI of the plugin/theme
866
- msgid "http://wpUXsolutions.com"
867
- msgstr ""
868
-
869
- # @ eml
870
- #. Description of the plugin/theme
871
- msgid ""
872
- "This plugin will be handy for those who need to manage a lot of media files."
873
- msgstr ""
874
- "Deze plug-in is handig voor iedereen die veel media bestanden moet beheren."
875
-
876
- #. Author of the plugin/theme
877
- msgid "wpUXsolutions"
878
- 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-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"
27
  msgid "MIME Types settings saved."
28
  msgstr ""
29
 
30
+ #: core/mime-types.php:116
31
  #, php-format
32
  msgid " <span class=\"count\">(%s)</span>"
33
  msgid_plural " <span class=\"count\">(%s)</span>"
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
 
56
  msgstr "MIME Types"
57
 
58
  # @ eml
 
59
  #: core/options-pages.php:135 core/options-pages.php:136
60
  msgid "Enhanced Media Library"
61
  msgstr ""
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  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
 
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-pl_PL.mo CHANGED
Binary file
languages/enhanced-media-library-pl_PL.po CHANGED
@@ -4,8 +4,8 @@ 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-06-27 20:53+0300\n"
8
- "PO-Revision-Date: 2016-06-27 20:54+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"
@@ -25,7 +25,7 @@ msgstr ""
25
  msgid "MIME Types settings saved."
26
  msgstr ""
27
 
28
- #: core/mime-types.php:115
29
  #, php-format
30
  msgid " <span class=\"count\">(%s)</span>"
31
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -34,8 +34,8 @@ msgstr[1] ""
34
  msgstr[2] ""
35
 
36
  #: core/options-pages.php:97 core/options-pages.php:236
37
- #: core/options-pages.php:997 core/options-pages.php:1122
38
- #: core/options-pages.php:1445 core/options-pages.php:1622
39
  msgid "Media Settings"
40
  msgstr "Ustawienia Mediów"
41
 
@@ -60,13 +60,13 @@ msgstr "Rozszerzona Biblioteka Mediów"
60
  msgid "General"
61
  msgstr ""
62
 
63
- #: core/options-pages.php:209 core/options-pages.php:1143
64
  msgid "Media Taxonomies"
65
  msgstr "Taksonomie mediów"
66
 
67
- #: core/options-pages.php:233 core/options-pages.php:539
68
- #: core/options-pages.php:993 core/options-pages.php:1118
69
- #: core/options-pages.php:1441
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
 
@@ -142,9 +142,9 @@ msgstr ""
142
  msgid "Organize my uploads into month- and year-based folders"
143
  msgstr ""
144
 
145
- #: core/options-pages.php:397 core/options-pages.php:1167
146
- #: core/options-pages.php:1182 core/options-pages.php:1245
147
- #: core/options-pages.php:1314
148
  msgid "Edit"
149
  msgstr "Edytuj"
150
 
@@ -152,23 +152,23 @@ msgstr "Edytuj"
152
  msgid "Close"
153
  msgstr "Zamknij"
154
 
155
- #: core/options-pages.php:399 core/options-pages.php:1183
156
- #: core/options-pages.php:1246
157
  msgid "View"
158
  msgstr "Zobacz"
159
 
160
- #: core/options-pages.php:400 core/options-pages.php:1184
161
- #: core/options-pages.php:1247
162
  msgid "Update"
163
  msgstr "Aktualizuj"
164
 
165
- #: core/options-pages.php:401 core/options-pages.php:1185
166
- #: core/options-pages.php:1248
167
  msgid "Add New"
168
  msgstr "Dodaj nowy"
169
 
170
- #: core/options-pages.php:402 core/options-pages.php:1186
171
- #: core/options-pages.php:1249
172
  msgid "New"
173
  msgstr "Nowy"
174
 
@@ -176,23 +176,23 @@ msgstr "Nowy"
176
  msgid "Name"
177
  msgstr "Nazwa"
178
 
179
- #: core/options-pages.php:404 core/options-pages.php:1187
180
- #: core/options-pages.php:1250
181
  msgid "Parent"
182
  msgstr "Rodzic"
183
 
184
- #: core/options-pages.php:405 core/options-pages.php:635
185
- #: core/options-pages.php:1181 core/options-pages.php:1244
186
- #: core/taxonomies.php:348 enhanced-media-library.php:481
187
  msgid "All"
188
  msgstr "Wszystkie"
189
 
190
- #: core/options-pages.php:406 core/options-pages.php:1188
191
- #: core/options-pages.php:1251
192
  msgid "Search"
193
  msgstr "Szukaj"
194
 
195
- #: core/options-pages.php:408 core/options-pages.php:1232
196
  msgid "New Taxonomy"
197
  msgstr "Nowa taksonomia"
198
 
@@ -252,7 +252,7 @@ msgid "Ok"
252
  msgstr ""
253
 
254
  #: core/options-pages.php:426 core/options-pages.php:431
255
- #: core/options-pages.php:514
256
  msgid "Cancel"
257
  msgstr ""
258
 
@@ -260,7 +260,7 @@ msgstr ""
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
- #: core/options-pages.php:429 core/options-pages.php:511
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
@@ -272,49 +272,61 @@ msgstr ""
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
- #: core/options-pages.php:470
 
 
 
 
276
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
277
  msgstr ""
278
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
279
  "operację. "
280
 
281
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
282
  msgid "Please fill into all fields."
283
  msgstr "Proszę wypełnić wszystkie pola"
284
 
285
- #: core/options-pages.php:472
286
  msgid "Duplicate extensions or MIME types. Please chose other one."
287
  msgstr ""
288
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
289
  "pliku"
290
 
291
- #: core/options-pages.php:509 core/options-pages.php:626
292
  msgid "Complete Cleanup"
293
  msgstr ""
294
 
295
- #: core/options-pages.php:510
296
  msgid ""
297
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
298
  "plugin data</strong> from the database including backups."
299
  msgstr ""
300
 
301
- #: core/options-pages.php:512
302
  msgid "Yes, delete all data"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:513
306
  msgid "Cleaning..."
307
  msgstr ""
308
 
309
- #: core/options-pages.php:544
310
  msgid "Enhanced Media Library Settings"
311
  msgstr ""
312
 
313
- #: core/options-pages.php:554
314
  msgid "Export"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:558
318
  msgid ""
319
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
320
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -322,15 +334,15 @@ msgid ""
322
  "another website."
323
  msgstr ""
324
 
325
- #: core/options-pages.php:563
326
  msgid "Export Plugin Settings"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:573
330
  msgid "Import"
331
  msgstr ""
332
 
333
- #: core/options-pages.php:577
334
  msgid ""
335
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
336
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -338,168 +350,168 @@ msgid ""
338
  "another website using the export button above."
339
  msgstr ""
340
 
341
- #: core/options-pages.php:578
342
  msgid ""
343
  "All plugin settings will be overridden by the import. You will have a chance "
344
  "to restore current data from an automatic backup in case you are not "
345
  "satisfied with the result of the import."
346
  msgstr ""
347
 
348
- #: core/options-pages.php:585
349
  msgid "Import Plugin Settings"
350
  msgstr ""
351
 
352
- #: core/options-pages.php:597
353
  msgid "Restore"
354
  msgstr ""
355
 
356
- #: core/options-pages.php:603
357
  msgid "No backup available at the moment."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:605
361
  msgid "Backup will be created automatically before any import operation."
362
  msgstr ""
363
 
364
- #: core/options-pages.php:609
365
  msgid ""
366
  "The backup has been automatically created before the latest import operation."
367
  msgstr ""
368
 
369
- #: core/options-pages.php:613
370
  msgid "Restore Settings from the Backup"
371
  msgstr ""
372
 
373
- #: core/options-pages.php:633
374
  msgid "What will be deleted:"
375
  msgstr ""
376
 
377
- #: core/options-pages.php:638
378
  msgid "All plugin options"
379
  msgstr ""
380
 
381
- #: core/options-pages.php:639
382
  msgid "All plugin backups stored in database"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:643
386
  msgid "What will remain intact:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:644
390
  msgid "All media items"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:645
394
  msgid "All taxonomies not listed above"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:648
398
  msgid ""
399
  "The plugin cannot delete itself because of security reason. Please delete it "
400
  "manually from plugin list after cleanup."
401
  msgstr ""
402
 
403
- #: core/options-pages.php:650
404
  msgid ""
405
  "If you are not sure about this operation please create a backup of your "
406
  "database prior to cleanup!"
407
  msgstr ""
408
 
409
- #: core/options-pages.php:656
410
  msgid "Delete All Data & Deactivate"
411
  msgstr ""
412
 
413
- #: core/options-pages.php:756
414
  msgid "Please upload a file to import settings."
415
  msgstr ""
416
 
417
- #: core/options-pages.php:782
418
  msgid "Plugin settings imported."
419
  msgstr ""
420
 
421
- #: core/options-pages.php:829
422
  msgid "Plugin settings restored from the backup."
423
  msgstr ""
424
 
425
- #: core/options-pages.php:1018
426
  msgid "Media Items Order"
427
  msgstr ""
428
 
429
- #: core/options-pages.php:1025
430
  msgid "Order media items by"
431
  msgstr ""
432
 
433
- #: core/options-pages.php:1028
434
  msgid "Date"
435
  msgstr ""
436
 
437
- #: core/options-pages.php:1029
438
  msgid "Title"
439
  msgstr ""
440
 
441
- #: core/options-pages.php:1030
442
  msgid "Custom Order"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:1032 core/options-pages.php:1044
446
  msgid "For media library and media popups"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:1033
450
  msgid "Option allows to change order by drag and drop with Custom Order value."
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1038
454
  msgid "Sort order"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1041
458
  msgid "Ascending"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1042
462
  msgid "Descending"
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1057
466
  msgid "Media Shortcodes"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1064 core/options-pages.php:1067
470
  msgid "Enhanced media shortcodes"
471
  msgstr ""
472
 
473
- #: core/options-pages.php:1068
474
  msgid ""
475
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
476
  "upload date, and media items number limit"
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1069
480
  msgid "Gallery example:"
481
  msgstr ""
482
 
483
- #: core/options-pages.php:1070
484
  msgid "Audio playlist example:"
485
  msgstr ""
486
 
487
- #: core/options-pages.php:1071
488
  msgid "Video playlist example:"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1073
492
  #, php-format
493
  msgid ""
494
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
495
  msgstr ""
496
 
497
- #: core/options-pages.php:1075
498
  #, php-format
499
  msgid "%sLearn more%s."
500
  msgstr ""
501
 
502
- #: core/options-pages.php:1077
503
  #, php-format
504
  msgid ""
505
  "Please check out your gallery front-end and back-end functionality once this "
@@ -507,240 +519,236 @@ msgid ""
507
  "%s."
508
  msgstr ""
509
 
510
- #: core/options-pages.php:1147 core/options-pages.php:1294
511
  msgid "Assign following taxonomies to Media Library:"
512
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
513
 
514
- #: core/options-pages.php:1166 core/options-pages.php:1232
515
- #: core/options-pages.php:1313
516
  msgid "Assign Taxonomy"
517
  msgstr "Przypisz taksonomię"
518
 
519
- #: core/options-pages.php:1167 core/options-pages.php:1314
520
  msgid "Edit Taxonomy"
521
  msgstr "Edytuj taksonomię"
522
 
523
- #: core/options-pages.php:1171 core/options-pages.php:1234
524
  msgid "Delete Taxonomy"
525
  msgstr "Usuń taksonomię"
526
 
527
- #: core/options-pages.php:1176 core/options-pages.php:1239
528
  msgid "Labels"
529
  msgstr "Etykiety"
530
 
531
- #: core/options-pages.php:1178 core/options-pages.php:1241
532
  msgid "Singular"
533
  msgstr "Liczba pojedyncza"
534
 
535
- #: core/options-pages.php:1179 core/options-pages.php:1242
536
  msgid "Plural"
537
  msgstr "Liczba mnoga"
538
 
539
- #: core/options-pages.php:1180 core/options-pages.php:1243
540
  msgid "Menu Name"
541
  msgstr "Nazwa w menu"
542
 
543
- #: core/options-pages.php:1193 core/options-pages.php:1216
544
- #: core/options-pages.php:1256 core/options-pages.php:1317
545
  msgid "Settings"
546
  msgstr "Ustawienia"
547
 
548
- #: core/options-pages.php:1195 core/options-pages.php:1258
549
  msgid "Taxonomy Name"
550
  msgstr ""
551
 
552
- #: core/options-pages.php:1196 core/options-pages.php:1259
553
  msgid "Hierarchical"
554
  msgstr "Hierachicznie"
555
 
556
- #: core/options-pages.php:1197 core/options-pages.php:1260
557
  msgid "Column for List View"
558
  msgstr ""
559
 
560
- #: core/options-pages.php:1198 core/options-pages.php:1218
561
- #: core/options-pages.php:1261 core/options-pages.php:1319
562
  msgid "Filter for List View"
563
  msgstr ""
564
 
565
- #: core/options-pages.php:1199 core/options-pages.php:1219
566
- #: core/options-pages.php:1262 core/options-pages.php:1320
567
  msgid "Filter for Grid View / Media Popup"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1200 core/options-pages.php:1220
571
- #: core/options-pages.php:1263 core/options-pages.php:1321
572
  msgid "Edit in Media Popup"
573
  msgstr ""
574
 
575
- #: core/options-pages.php:1201 core/options-pages.php:1264
576
  msgid "Show in Nav Menu"
577
  msgstr "Pokaż w menu nawigacyjnym"
578
 
579
- #: core/options-pages.php:1202 core/options-pages.php:1265
580
  msgid "Remember Terms Order (sort)"
581
  msgstr ""
582
 
583
- #: core/options-pages.php:1203 core/options-pages.php:1266
584
  msgid "Show in REST"
585
  msgstr ""
586
 
587
- #: core/options-pages.php:1204 core/options-pages.php:1267
588
  msgid "Rewrite Slug"
589
  msgstr ""
590
 
591
- #: core/options-pages.php:1205 core/options-pages.php:1268
592
  msgid "Slug with Front"
593
  msgstr ""
594
 
595
- #: core/options-pages.php:1280
596
  msgid "Add New Taxonomy"
597
  msgstr "Dodaj nową taksonomię"
598
 
599
- #: core/options-pages.php:1290
600
  msgid "Non-Media Taxonomies"
601
  msgstr "Pozostałe taksonomie"
602
 
603
- #: core/options-pages.php:1351
604
  msgid "Options"
605
  msgstr ""
606
 
607
- #: core/options-pages.php:1361 core/options-pages.php:1364
608
  msgid "Taxonomy archive pages"
609
  msgstr ""
610
 
611
- #: core/options-pages.php:1365
612
  msgid "Turn on media taxonomy archive pages on the front-end"
613
  msgstr ""
614
 
615
- #: core/options-pages.php:1366
616
  msgid ""
617
  "Re-save your permalink settings after this option change to make it work."
618
  msgstr ""
619
 
620
- #: core/options-pages.php:1372 core/options-pages.php:1375
621
  msgid "Assign all like hierarchical"
622
  msgstr ""
623
 
624
- #: core/options-pages.php:1376
625
  msgid ""
626
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
627
  msgstr ""
628
 
629
- #: core/options-pages.php:1382 core/options-pages.php:1385
630
  msgid "Force filters"
631
  msgstr ""
632
 
633
- #: core/options-pages.php:1386
634
  msgid "Show media filters for ANY Media Popup"
635
  msgstr ""
636
 
637
- #: core/options-pages.php:1387
638
  msgid "Try this if filters are not shown for third-party plugins or themes."
639
  msgstr ""
640
 
641
- #: core/options-pages.php:1393 core/options-pages.php:1396
642
  msgid "Show count"
643
  msgstr ""
644
 
645
- #: core/options-pages.php:1397
646
  msgid "Show item count per category for media filters"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1451
650
  msgid "Add New MIME Type"
651
  msgstr "Dodaj nowy typ MIME"
652
 
653
- #: core/options-pages.php:1469 core/options-pages.php:1524
654
  msgid "Extension"
655
  msgstr "Rozszerzenie"
656
 
657
- #: core/options-pages.php:1470 core/options-pages.php:1525
658
  msgid "MIME Type"
659
  msgstr "Typ MIME"
660
 
661
- #: core/options-pages.php:1471 core/options-pages.php:1526
662
  msgid "Singular Label"
663
  msgstr "Etykieta dla liczby pojedynczej"
664
 
665
- #: core/options-pages.php:1472 core/options-pages.php:1527
666
  msgid "Plural Label"
667
  msgstr "Etykieta dla liczby mnogiej"
668
 
669
- #: core/options-pages.php:1473 core/options-pages.php:1503
670
- #: core/options-pages.php:1516 core/options-pages.php:1528
671
  msgid "Add Filter"
672
  msgstr "Dodaj filtr"
673
 
674
- #: core/options-pages.php:1474 core/options-pages.php:1504
675
- #: core/options-pages.php:1517 core/options-pages.php:1529
676
  msgid "Allow Upload"
677
  msgstr "Zezwól na przesyłanie"
678
 
679
- #: core/options-pages.php:1505 core/options-pages.php:1518
680
  msgid "Delete MIME Type"
681
  msgstr "Usuń typ MIME"
682
 
683
- #: core/options-pages.php:1535
684
- msgid "Restore WordPress default MIME Types"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1537
688
  msgid "Save Changes"
689
  msgstr ""
690
 
691
- #: core/options-pages.php:1574
692
  msgid "Changelog"
693
  msgstr ""
694
 
695
- #: core/options-pages.php:1575
696
  msgid "What's new in"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1575
700
  msgid "version"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1578
704
  msgid "More features under the hood"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1580
708
  msgid "Support"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1581
712
  msgid "Feel free to ask for help on"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1581
716
  msgid "Support is free for both versions of the plugin."
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1583
720
  msgid "Plugin rating"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1584
724
  msgid "Please"
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1584
728
  msgid "vote for the plugin"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1584
732
  msgid "Thanks!"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1586
736
  msgid "Other plugins you may find useful"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1625
740
  msgid "Utility"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1648
744
  msgid "Vote!"
745
  msgstr ""
746
 
@@ -753,71 +761,71 @@ msgid "Media Library settings saved."
753
  msgstr ""
754
 
755
  #: core/taxonomies.php:341 core/taxonomies.php:347
756
- #: enhanced-media-library.php:480
757
  msgid "Filter by"
758
  msgstr ""
759
 
760
- #: core/taxonomies.php:349 enhanced-media-library.php:482
761
  msgid "Not in"
762
  msgstr ""
763
 
764
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
765
  msgid "All Uncategorized"
766
  msgstr ""
767
 
768
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
769
  msgid "Reset All Filters"
770
  msgstr ""
771
 
772
- #: enhanced-media-library.php:513
773
  msgid "Uploaded to post #"
774
  msgstr ""
775
 
776
- #: enhanced-media-library.php:514
777
  msgid "Based On"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
781
  msgid "Media Categories"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:560
785
  msgid "Media Category"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:562
789
  msgid "All Media Categories"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:563
793
  msgid "Edit Media Category"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:564
797
  msgid "View Media Category"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:565
801
  msgid "Update Media Category"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:566
805
  msgid "Add New Media Category"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:567
809
  msgid "New Media Category Name"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:568
813
  msgid "Parent Media Category"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:569
817
  msgid "Parent Media Category:"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:570
821
  msgid "Search Media Categories"
822
  msgstr ""
823
 
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"
25
  msgid "MIME Types settings saved."
26
  msgstr ""
27
 
28
+ #: core/mime-types.php:116
29
  #, php-format
30
  msgid " <span class=\"count\">(%s)</span>"
31
  msgid_plural " <span class=\"count\">(%s)</span>"
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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
 
languages/enhanced-media-library-sv_SE.mo CHANGED
Binary file
languages/enhanced-media-library-sv_SE.po CHANGED
@@ -3,7 +3,7 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-06-27 20:54+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: P. E.\n"
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "MIME Types settings saved."
30
  msgstr ""
31
 
32
- #: core/mime-types.php:115
33
  #, php-format
34
  msgid " <span class=\"count\">(%s)</span>"
35
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -37,8 +37,8 @@ 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:997 core/options-pages.php:1122
41
- #: core/options-pages.php:1445 core/options-pages.php:1622
42
  msgid "Media Settings"
43
  msgstr "Mediainställningar"
44
 
@@ -54,7 +54,6 @@ msgstr "Taxonomier"
54
  msgid "MIME Types"
55
  msgstr "MIME-typer"
56
 
57
- #. Plugin Name of the plugin/theme
58
  #: core/options-pages.php:135 core/options-pages.php:136
59
  msgid "Enhanced Media Library"
60
  msgstr "Enhanced Media Library"
@@ -63,13 +62,13 @@ msgstr "Enhanced Media Library"
63
  msgid "General"
64
  msgstr ""
65
 
66
- #: core/options-pages.php:209 core/options-pages.php:1143
67
  msgid "Media Taxonomies"
68
  msgstr "Mediataxonomier"
69
 
70
- #: core/options-pages.php:233 core/options-pages.php:539
71
- #: core/options-pages.php:993 core/options-pages.php:1118
72
- #: core/options-pages.php:1441
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
75
 
@@ -145,9 +144,9 @@ msgstr ""
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:397 core/options-pages.php:1167
149
- #: core/options-pages.php:1182 core/options-pages.php:1245
150
- #: core/options-pages.php:1314
151
  msgid "Edit"
152
  msgstr "Redigera"
153
 
@@ -155,23 +154,23 @@ msgstr "Redigera"
155
  msgid "Close"
156
  msgstr "Stäng"
157
 
158
- #: core/options-pages.php:399 core/options-pages.php:1183
159
- #: core/options-pages.php:1246
160
  msgid "View"
161
  msgstr "Visa"
162
 
163
- #: core/options-pages.php:400 core/options-pages.php:1184
164
- #: core/options-pages.php:1247
165
  msgid "Update"
166
  msgstr "Uppdatera"
167
 
168
- #: core/options-pages.php:401 core/options-pages.php:1185
169
- #: core/options-pages.php:1248
170
  msgid "Add New"
171
  msgstr "Lägg Till Ny"
172
 
173
- #: core/options-pages.php:402 core/options-pages.php:1186
174
- #: core/options-pages.php:1249
175
  msgid "New"
176
  msgstr "Ny"
177
 
@@ -179,23 +178,23 @@ msgstr "Ny"
179
  msgid "Name"
180
  msgstr "Namn"
181
 
182
- #: core/options-pages.php:404 core/options-pages.php:1187
183
- #: core/options-pages.php:1250
184
  msgid "Parent"
185
  msgstr "Förälder"
186
 
187
- #: core/options-pages.php:405 core/options-pages.php:635
188
- #: core/options-pages.php:1181 core/options-pages.php:1244
189
- #: core/taxonomies.php:348 enhanced-media-library.php:481
190
  msgid "All"
191
  msgstr "Alla"
192
 
193
- #: core/options-pages.php:406 core/options-pages.php:1188
194
- #: core/options-pages.php:1251
195
  msgid "Search"
196
  msgstr "Sök"
197
 
198
- #: core/options-pages.php:408 core/options-pages.php:1232
199
  msgid "New Taxonomy"
200
  msgstr "Ny Taxonomi"
201
 
@@ -256,7 +255,7 @@ msgid "Ok"
256
  msgstr ""
257
 
258
  #: core/options-pages.php:426 core/options-pages.php:431
259
- #: core/options-pages.php:514
260
  msgid "Cancel"
261
  msgstr ""
262
 
@@ -264,7 +263,7 @@ msgstr ""
264
  msgid "Synchronize Now"
265
  msgstr ""
266
 
267
- #: core/options-pages.php:429 core/options-pages.php:511
268
  msgid "This operation cannot be canceled! Are you still sure?"
269
  msgstr ""
270
 
@@ -276,46 +275,58 @@ msgstr ""
276
  msgid "Synchronizing..."
277
  msgstr ""
278
 
279
- #: core/options-pages.php:470
 
 
 
 
280
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
281
  msgstr ""
282
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
283
 
284
- #: core/options-pages.php:471
 
 
 
 
 
 
 
 
285
  msgid "Please fill into all fields."
286
  msgstr "Var god fyll i alla fält."
287
 
288
- #: core/options-pages.php:472
289
  msgid "Duplicate extensions or MIME types. Please chose other one."
290
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
291
 
292
- #: core/options-pages.php:509 core/options-pages.php:626
293
  msgid "Complete Cleanup"
294
  msgstr ""
295
 
296
- #: core/options-pages.php:510
297
  msgid ""
298
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
299
  "plugin data</strong> from the database including backups."
300
  msgstr ""
301
 
302
- #: core/options-pages.php:512
303
  msgid "Yes, delete all data"
304
  msgstr ""
305
 
306
- #: core/options-pages.php:513
307
  msgid "Cleaning..."
308
  msgstr ""
309
 
310
- #: core/options-pages.php:544
311
  msgid "Enhanced Media Library Settings"
312
  msgstr ""
313
 
314
- #: core/options-pages.php:554
315
  msgid "Export"
316
  msgstr ""
317
 
318
- #: core/options-pages.php:558
319
  msgid ""
320
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
321
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -323,15 +334,15 @@ msgid ""
323
  "another website."
324
  msgstr ""
325
 
326
- #: core/options-pages.php:563
327
  msgid "Export Plugin Settings"
328
  msgstr ""
329
 
330
- #: core/options-pages.php:573
331
  msgid "Import"
332
  msgstr ""
333
 
334
- #: core/options-pages.php:577
335
  msgid ""
336
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
337
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -339,168 +350,168 @@ msgid ""
339
  "another website using the export button above."
340
  msgstr ""
341
 
342
- #: core/options-pages.php:578
343
  msgid ""
344
  "All plugin settings will be overridden by the import. You will have a chance "
345
  "to restore current data from an automatic backup in case you are not "
346
  "satisfied with the result of the import."
347
  msgstr ""
348
 
349
- #: core/options-pages.php:585
350
  msgid "Import Plugin Settings"
351
  msgstr ""
352
 
353
- #: core/options-pages.php:597
354
  msgid "Restore"
355
  msgstr ""
356
 
357
- #: core/options-pages.php:603
358
  msgid "No backup available at the moment."
359
  msgstr ""
360
 
361
- #: core/options-pages.php:605
362
  msgid "Backup will be created automatically before any import operation."
363
  msgstr ""
364
 
365
- #: core/options-pages.php:609
366
  msgid ""
367
  "The backup has been automatically created before the latest import operation."
368
  msgstr ""
369
 
370
- #: core/options-pages.php:613
371
  msgid "Restore Settings from the Backup"
372
  msgstr ""
373
 
374
- #: core/options-pages.php:633
375
  msgid "What will be deleted:"
376
  msgstr ""
377
 
378
- #: core/options-pages.php:638
379
  msgid "All plugin options"
380
  msgstr ""
381
 
382
- #: core/options-pages.php:639
383
  msgid "All plugin backups stored in database"
384
  msgstr ""
385
 
386
- #: core/options-pages.php:643
387
  msgid "What will remain intact:"
388
  msgstr ""
389
 
390
- #: core/options-pages.php:644
391
  msgid "All media items"
392
  msgstr ""
393
 
394
- #: core/options-pages.php:645
395
  msgid "All taxonomies not listed above"
396
  msgstr ""
397
 
398
- #: core/options-pages.php:648
399
  msgid ""
400
  "The plugin cannot delete itself because of security reason. Please delete it "
401
  "manually from plugin list after cleanup."
402
  msgstr ""
403
 
404
- #: core/options-pages.php:650
405
  msgid ""
406
  "If you are not sure about this operation please create a backup of your "
407
  "database prior to cleanup!"
408
  msgstr ""
409
 
410
- #: core/options-pages.php:656
411
  msgid "Delete All Data & Deactivate"
412
  msgstr ""
413
 
414
- #: core/options-pages.php:756
415
  msgid "Please upload a file to import settings."
416
  msgstr ""
417
 
418
- #: core/options-pages.php:782
419
  msgid "Plugin settings imported."
420
  msgstr ""
421
 
422
- #: core/options-pages.php:829
423
  msgid "Plugin settings restored from the backup."
424
  msgstr ""
425
 
426
- #: core/options-pages.php:1018
427
  msgid "Media Items Order"
428
  msgstr ""
429
 
430
- #: core/options-pages.php:1025
431
  msgid "Order media items by"
432
  msgstr ""
433
 
434
- #: core/options-pages.php:1028
435
  msgid "Date"
436
  msgstr ""
437
 
438
- #: core/options-pages.php:1029
439
  msgid "Title"
440
  msgstr ""
441
 
442
- #: core/options-pages.php:1030
443
  msgid "Custom Order"
444
  msgstr ""
445
 
446
- #: core/options-pages.php:1032 core/options-pages.php:1044
447
  msgid "For media library and media popups"
448
  msgstr ""
449
 
450
- #: core/options-pages.php:1033
451
  msgid "Option allows to change order by drag and drop with Custom Order value."
452
  msgstr ""
453
 
454
- #: core/options-pages.php:1038
455
  msgid "Sort order"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1041
459
  msgid "Ascending"
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1042
463
  msgid "Descending"
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1057
467
  msgid "Media Shortcodes"
468
  msgstr ""
469
 
470
- #: core/options-pages.php:1064 core/options-pages.php:1067
471
  msgid "Enhanced media shortcodes"
472
  msgstr ""
473
 
474
- #: core/options-pages.php:1068
475
  msgid ""
476
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
477
  "upload date, and media items number limit"
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1069
481
  msgid "Gallery example:"
482
  msgstr ""
483
 
484
- #: core/options-pages.php:1070
485
  msgid "Audio playlist example:"
486
  msgstr ""
487
 
488
- #: core/options-pages.php:1071
489
  msgid "Video playlist example:"
490
  msgstr ""
491
 
492
- #: core/options-pages.php:1073
493
  #, php-format
494
  msgid ""
495
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
496
  msgstr ""
497
 
498
- #: core/options-pages.php:1075
499
  #, php-format
500
  msgid "%sLearn more%s."
501
  msgstr ""
502
 
503
- #: core/options-pages.php:1077
504
  #, php-format
505
  msgid ""
506
  "Please check out your gallery front-end and back-end functionality once this "
@@ -508,243 +519,239 @@ msgid ""
508
  "%s."
509
  msgstr ""
510
 
511
- #: core/options-pages.php:1147 core/options-pages.php:1294
512
  msgid "Assign following taxonomies to Media Library:"
513
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
514
 
515
- #: core/options-pages.php:1166 core/options-pages.php:1232
516
- #: core/options-pages.php:1313
517
  msgid "Assign Taxonomy"
518
  msgstr "Tilldela Taxonomi"
519
 
520
- #: core/options-pages.php:1167 core/options-pages.php:1314
521
  msgid "Edit Taxonomy"
522
  msgstr "Redigera Taxonomi"
523
 
524
- #: core/options-pages.php:1171 core/options-pages.php:1234
525
  msgid "Delete Taxonomy"
526
  msgstr "Ta Bort Taxonomi"
527
 
528
- #: core/options-pages.php:1176 core/options-pages.php:1239
529
  msgid "Labels"
530
  msgstr "Etiketter"
531
 
532
- #: core/options-pages.php:1178 core/options-pages.php:1241
533
  msgid "Singular"
534
  msgstr "Singular"
535
 
536
- #: core/options-pages.php:1179 core/options-pages.php:1242
537
  msgid "Plural"
538
  msgstr "Plural"
539
 
540
- #: core/options-pages.php:1180 core/options-pages.php:1243
541
  msgid "Menu Name"
542
  msgstr "Menynamn"
543
 
544
- #: core/options-pages.php:1193 core/options-pages.php:1216
545
- #: core/options-pages.php:1256 core/options-pages.php:1317
546
  msgid "Settings"
547
  msgstr "Inställningar"
548
 
549
- #: core/options-pages.php:1195 core/options-pages.php:1258
550
  msgid "Taxonomy Name"
551
  msgstr "Taxonominamn"
552
 
553
- #: core/options-pages.php:1196 core/options-pages.php:1259
554
  msgid "Hierarchical"
555
  msgstr "Hierarkisk"
556
 
557
- #: core/options-pages.php:1197 core/options-pages.php:1260
558
  msgid "Column for List View"
559
  msgstr ""
560
 
561
- #: core/options-pages.php:1198 core/options-pages.php:1218
562
- #: core/options-pages.php:1261 core/options-pages.php:1319
563
  msgid "Filter for List View"
564
  msgstr ""
565
 
566
- #: core/options-pages.php:1199 core/options-pages.php:1219
567
- #: core/options-pages.php:1262 core/options-pages.php:1320
568
  msgid "Filter for Grid View / Media Popup"
569
  msgstr ""
570
 
571
- #: core/options-pages.php:1200 core/options-pages.php:1220
572
- #: core/options-pages.php:1263 core/options-pages.php:1321
573
  msgid "Edit in Media Popup"
574
  msgstr "Redigera i Media-popup"
575
 
576
- #: core/options-pages.php:1201 core/options-pages.php:1264
577
  msgid "Show in Nav Menu"
578
  msgstr "Visa i Nav Menu"
579
 
580
- #: core/options-pages.php:1202 core/options-pages.php:1265
581
  msgid "Remember Terms Order (sort)"
582
  msgstr ""
583
 
584
- #: core/options-pages.php:1203 core/options-pages.php:1266
585
  msgid "Show in REST"
586
  msgstr ""
587
 
588
- #: core/options-pages.php:1204 core/options-pages.php:1267
589
  msgid "Rewrite Slug"
590
  msgstr "Skriv Om Slug"
591
 
592
- #: core/options-pages.php:1205 core/options-pages.php:1268
593
  msgid "Slug with Front"
594
  msgstr "Slug med Framsida"
595
 
596
- #: core/options-pages.php:1280
597
  msgid "Add New Taxonomy"
598
  msgstr "Lägg Till Ny Taxonomi"
599
 
600
- #: core/options-pages.php:1290
601
  msgid "Non-Media Taxonomies"
602
  msgstr "Icke-Media-taxonomier"
603
 
604
- #: core/options-pages.php:1351
605
  msgid "Options"
606
  msgstr "Alternativ"
607
 
608
- #: core/options-pages.php:1361 core/options-pages.php:1364
609
  msgid "Taxonomy archive pages"
610
  msgstr "Arkivsidor för Taxonomier"
611
 
612
- #: core/options-pages.php:1365
613
  msgid "Turn on media taxonomy archive pages on the front-end"
614
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
615
 
616
- #: core/options-pages.php:1366
617
  msgid ""
618
  "Re-save your permalink settings after this option change to make it work."
619
  msgstr ""
620
  "Återspara inställningarna för permalänkar efter en ändring av detta "
621
  "alternativ för att få det att fungera."
622
 
623
- #: core/options-pages.php:1372 core/options-pages.php:1375
624
  msgid "Assign all like hierarchical"
625
  msgstr "Tilldela alla som hierarkiska"
626
 
627
- #: core/options-pages.php:1376
628
  msgid ""
629
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
630
  msgstr ""
631
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
632
 
633
- #: core/options-pages.php:1382 core/options-pages.php:1385
634
  msgid "Force filters"
635
  msgstr "Tvinga filter"
636
 
637
- #: core/options-pages.php:1386
638
  msgid "Show media filters for ANY Media Popup"
639
  msgstr ""
640
 
641
- #: core/options-pages.php:1387
642
  msgid "Try this if filters are not shown for third-party plugins or themes."
643
  msgstr ""
644
 
645
- #: core/options-pages.php:1393 core/options-pages.php:1396
646
  msgid "Show count"
647
  msgstr ""
648
 
649
- #: core/options-pages.php:1397
650
  msgid "Show item count per category for media filters"
651
  msgstr ""
652
 
653
- #: core/options-pages.php:1451
654
  msgid "Add New MIME Type"
655
  msgstr "Lägg Till Ny MIME-typ"
656
 
657
- #: core/options-pages.php:1469 core/options-pages.php:1524
658
  msgid "Extension"
659
  msgstr "Utökning"
660
 
661
- #: core/options-pages.php:1470 core/options-pages.php:1525
662
  msgid "MIME Type"
663
  msgstr "MIME-typ"
664
 
665
- #: core/options-pages.php:1471 core/options-pages.php:1526
666
  msgid "Singular Label"
667
  msgstr "Singular-etikett"
668
 
669
- #: core/options-pages.php:1472 core/options-pages.php:1527
670
  msgid "Plural Label"
671
  msgstr "Plural-etikett"
672
 
673
- #: core/options-pages.php:1473 core/options-pages.php:1503
674
- #: core/options-pages.php:1516 core/options-pages.php:1528
675
  msgid "Add Filter"
676
  msgstr "Lägg Till Filter"
677
 
678
- #: core/options-pages.php:1474 core/options-pages.php:1504
679
- #: core/options-pages.php:1517 core/options-pages.php:1529
680
  msgid "Allow Upload"
681
  msgstr "Tillåt Uppladdning"
682
 
683
- #: core/options-pages.php:1505 core/options-pages.php:1518
684
  msgid "Delete MIME Type"
685
  msgstr "Ta Bort MIME-typ"
686
 
687
- #: core/options-pages.php:1535
688
- msgid "Restore WordPress default MIME Types"
689
- msgstr ""
690
-
691
- #: core/options-pages.php:1537
692
  msgid "Save Changes"
693
  msgstr "Spara Ändringar"
694
 
695
- #: core/options-pages.php:1574
696
  msgid "Changelog"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1575
700
  msgid "What's new in"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1575
704
  msgid "version"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1578
708
  msgid "More features under the hood"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1580
712
  msgid "Support"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1581
716
  msgid "Feel free to ask for help on"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1581
720
  msgid "Support is free for both versions of the plugin."
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1583
724
  msgid "Plugin rating"
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1584
728
  msgid "Please"
729
  msgstr ""
730
 
731
- #: core/options-pages.php:1584
732
  msgid "vote for the plugin"
733
  msgstr ""
734
 
735
- #: core/options-pages.php:1584
736
  msgid "Thanks!"
737
  msgstr ""
738
 
739
- #: core/options-pages.php:1586
740
  msgid "Other plugins you may find useful"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1625
744
  msgid "Utility"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1648
748
  msgid "Vote!"
749
  msgstr ""
750
 
@@ -757,85 +764,70 @@ msgid "Media Library settings saved."
757
  msgstr ""
758
 
759
  #: core/taxonomies.php:341 core/taxonomies.php:347
760
- #: enhanced-media-library.php:480
761
  msgid "Filter by"
762
  msgstr "Filtrera efter"
763
 
764
- #: core/taxonomies.php:349 enhanced-media-library.php:482
765
  msgid "Not in"
766
  msgstr "Ej i"
767
 
768
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
769
  msgid "All Uncategorized"
770
  msgstr "Alla Okategoriserade"
771
 
772
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
773
  msgid "Reset All Filters"
774
  msgstr "Återställ alla filter"
775
 
776
- #: enhanced-media-library.php:513
777
  msgid "Uploaded to post #"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:514
781
  msgid "Based On"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
785
  msgid "Media Categories"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:560
789
  msgid "Media Category"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:562
793
  msgid "All Media Categories"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:563
797
  msgid "Edit Media Category"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:564
801
  msgid "View Media Category"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:565
805
  msgid "Update Media Category"
806
  msgstr ""
807
 
808
- #: enhanced-media-library.php:566
809
  msgid "Add New Media Category"
810
  msgstr ""
811
 
812
- #: enhanced-media-library.php:567
813
  msgid "New Media Category Name"
814
  msgstr ""
815
 
816
- #: enhanced-media-library.php:568
817
  msgid "Parent Media Category"
818
  msgstr ""
819
 
820
- #: enhanced-media-library.php:569
821
  msgid "Parent Media Category:"
822
  msgstr ""
823
 
824
- #: enhanced-media-library.php:570
825
  msgid "Search Media Categories"
826
  msgstr ""
827
-
828
- #. Plugin URI of the plugin/theme
829
- #. Author URI of the plugin/theme
830
- msgid "http://wpUXsolutions.com"
831
- msgstr ""
832
-
833
- #. Description of the plugin/theme
834
- msgid ""
835
- "This plugin will be handy for those who need to manage a lot of media files."
836
- msgstr ""
837
- "Detta är ett praktiskt tillägg för de som behöver hantera många mediafiler."
838
-
839
- #. Author of the plugin/theme
840
- msgid "wpUXsolutions"
841
- msgstr ""
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"
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>"
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
 
54
  msgid "MIME Types"
55
  msgstr "MIME-typer"
56
 
 
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2016-06-27 20:47+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"
@@ -28,7 +28,7 @@ msgstr ""
28
  msgid "MIME Types settings saved."
29
  msgstr ""
30
 
31
- #: core/mime-types.php:115
32
  #, php-format
33
  msgid " <span class=\"count\">(%s)</span>"
34
  msgid_plural " <span class=\"count\">(%s)</span>"
@@ -36,8 +36,8 @@ msgstr[0] ""
36
  msgstr[1] ""
37
 
38
  #: core/options-pages.php:97 core/options-pages.php:236
39
- #: core/options-pages.php:997 core/options-pages.php:1122
40
- #: core/options-pages.php:1445 core/options-pages.php:1622
41
  msgid "Media Settings"
42
  msgstr ""
43
 
@@ -62,13 +62,13 @@ msgstr ""
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:209 core/options-pages.php:1143
66
  msgid "Media Taxonomies"
67
  msgstr ""
68
 
69
- #: core/options-pages.php:233 core/options-pages.php:539
70
- #: core/options-pages.php:993 core/options-pages.php:1118
71
- #: core/options-pages.php:1441
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr ""
74
 
@@ -144,9 +144,9 @@ msgstr ""
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:397 core/options-pages.php:1167
148
- #: core/options-pages.php:1182 core/options-pages.php:1245
149
- #: core/options-pages.php:1314
150
  msgid "Edit"
151
  msgstr ""
152
 
@@ -154,23 +154,23 @@ msgstr ""
154
  msgid "Close"
155
  msgstr ""
156
 
157
- #: core/options-pages.php:399 core/options-pages.php:1183
158
- #: core/options-pages.php:1246
159
  msgid "View"
160
  msgstr ""
161
 
162
- #: core/options-pages.php:400 core/options-pages.php:1184
163
- #: core/options-pages.php:1247
164
  msgid "Update"
165
  msgstr ""
166
 
167
- #: core/options-pages.php:401 core/options-pages.php:1185
168
- #: core/options-pages.php:1248
169
  msgid "Add New"
170
  msgstr ""
171
 
172
- #: core/options-pages.php:402 core/options-pages.php:1186
173
- #: core/options-pages.php:1249
174
  msgid "New"
175
  msgstr ""
176
 
@@ -178,23 +178,23 @@ msgstr ""
178
  msgid "Name"
179
  msgstr ""
180
 
181
- #: core/options-pages.php:404 core/options-pages.php:1187
182
- #: core/options-pages.php:1250
183
  msgid "Parent"
184
  msgstr ""
185
 
186
- #: core/options-pages.php:405 core/options-pages.php:635
187
- #: core/options-pages.php:1181 core/options-pages.php:1244
188
- #: core/taxonomies.php:348 enhanced-media-library.php:481
189
  msgid "All"
190
  msgstr ""
191
 
192
- #: core/options-pages.php:406 core/options-pages.php:1188
193
- #: core/options-pages.php:1251
194
  msgid "Search"
195
  msgstr ""
196
 
197
- #: core/options-pages.php:408 core/options-pages.php:1232
198
  msgid "New Taxonomy"
199
  msgstr ""
200
 
@@ -254,7 +254,7 @@ msgid "Ok"
254
  msgstr ""
255
 
256
  #: core/options-pages.php:426 core/options-pages.php:431
257
- #: core/options-pages.php:514
258
  msgid "Cancel"
259
  msgstr ""
260
 
@@ -262,7 +262,7 @@ msgstr ""
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:429 core/options-pages.php:511
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
@@ -274,45 +274,57 @@ msgstr ""
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:470
278
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr ""
280
 
281
  #: core/options-pages.php:471
282
- msgid "Please fill into all fields."
283
  msgstr ""
284
 
285
  #: core/options-pages.php:472
 
 
 
 
 
 
 
 
 
 
 
 
286
  msgid "Duplicate extensions or MIME types. Please chose other one."
287
  msgstr ""
288
 
289
- #: core/options-pages.php:509 core/options-pages.php:626
290
  msgid "Complete Cleanup"
291
  msgstr ""
292
 
293
- #: core/options-pages.php:510
294
  msgid ""
295
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
296
  "plugin data</strong> from the database including backups."
297
  msgstr ""
298
 
299
- #: core/options-pages.php:512
300
  msgid "Yes, delete all data"
301
  msgstr ""
302
 
303
- #: core/options-pages.php:513
304
  msgid "Cleaning..."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:544
308
  msgid "Enhanced Media Library Settings"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:554
312
  msgid "Export"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:558
316
  msgid ""
317
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
318
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -320,15 +332,15 @@ msgid ""
320
  "another website."
321
  msgstr ""
322
 
323
- #: core/options-pages.php:563
324
  msgid "Export Plugin Settings"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:573
328
  msgid "Import"
329
  msgstr ""
330
 
331
- #: core/options-pages.php:577
332
  msgid ""
333
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
334
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -336,168 +348,168 @@ msgid ""
336
  "another website using the export button above."
337
  msgstr ""
338
 
339
- #: core/options-pages.php:578
340
  msgid ""
341
  "All plugin settings will be overridden by the import. You will have a chance "
342
  "to restore current data from an automatic backup in case you are not "
343
  "satisfied with the result of the import."
344
  msgstr ""
345
 
346
- #: core/options-pages.php:585
347
  msgid "Import Plugin Settings"
348
  msgstr ""
349
 
350
- #: core/options-pages.php:597
351
  msgid "Restore"
352
  msgstr ""
353
 
354
- #: core/options-pages.php:603
355
  msgid "No backup available at the moment."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:605
359
  msgid "Backup will be created automatically before any import operation."
360
  msgstr ""
361
 
362
- #: core/options-pages.php:609
363
  msgid ""
364
  "The backup has been automatically created before the latest import operation."
365
  msgstr ""
366
 
367
- #: core/options-pages.php:613
368
  msgid "Restore Settings from the Backup"
369
  msgstr ""
370
 
371
- #: core/options-pages.php:633
372
  msgid "What will be deleted:"
373
  msgstr ""
374
 
375
- #: core/options-pages.php:638
376
  msgid "All plugin options"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:639
380
  msgid "All plugin backups stored in database"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:643
384
  msgid "What will remain intact:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:644
388
  msgid "All media items"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:645
392
  msgid "All taxonomies not listed above"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:648
396
  msgid ""
397
  "The plugin cannot delete itself because of security reason. Please delete it "
398
  "manually from plugin list after cleanup."
399
  msgstr ""
400
 
401
- #: core/options-pages.php:650
402
  msgid ""
403
  "If you are not sure about this operation please create a backup of your "
404
  "database prior to cleanup!"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:656
408
  msgid "Delete All Data & Deactivate"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:756
412
  msgid "Please upload a file to import settings."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:782
416
  msgid "Plugin settings imported."
417
  msgstr ""
418
 
419
- #: core/options-pages.php:829
420
  msgid "Plugin settings restored from the backup."
421
  msgstr ""
422
 
423
- #: core/options-pages.php:1018
424
  msgid "Media Items Order"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:1025
428
  msgid "Order media items by"
429
  msgstr ""
430
 
431
- #: core/options-pages.php:1028
432
  msgid "Date"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:1029
436
  msgid "Title"
437
  msgstr ""
438
 
439
- #: core/options-pages.php:1030
440
  msgid "Custom Order"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:1032 core/options-pages.php:1044
444
  msgid "For media library and media popups"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:1033
448
  msgid "Option allows to change order by drag and drop with Custom Order value."
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1038
452
  msgid "Sort order"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:1041
456
  msgid "Ascending"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1042
460
  msgid "Descending"
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1057
464
  msgid "Media Shortcodes"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1064 core/options-pages.php:1067
468
  msgid "Enhanced media shortcodes"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1068
472
  msgid ""
473
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
474
  "upload date, and media items number limit"
475
  msgstr ""
476
 
477
- #: core/options-pages.php:1069
478
  msgid "Gallery example:"
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1070
482
  msgid "Audio playlist example:"
483
  msgstr ""
484
 
485
- #: core/options-pages.php:1071
486
  msgid "Video playlist example:"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1073
490
  #, php-format
491
  msgid ""
492
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
493
  msgstr ""
494
 
495
- #: core/options-pages.php:1075
496
  #, php-format
497
  msgid "%sLearn more%s."
498
  msgstr ""
499
 
500
- #: core/options-pages.php:1077
501
  #, php-format
502
  msgid ""
503
  "Please check out your gallery front-end and back-end functionality once this "
@@ -505,240 +517,236 @@ msgid ""
505
  "%s."
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1147 core/options-pages.php:1294
509
  msgid "Assign following taxonomies to Media Library:"
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1166 core/options-pages.php:1232
513
- #: core/options-pages.php:1313
514
  msgid "Assign Taxonomy"
515
  msgstr ""
516
 
517
- #: core/options-pages.php:1167 core/options-pages.php:1314
518
  msgid "Edit Taxonomy"
519
  msgstr ""
520
 
521
- #: core/options-pages.php:1171 core/options-pages.php:1234
522
  msgid "Delete Taxonomy"
523
  msgstr ""
524
 
525
- #: core/options-pages.php:1176 core/options-pages.php:1239
526
  msgid "Labels"
527
  msgstr ""
528
 
529
- #: core/options-pages.php:1178 core/options-pages.php:1241
530
  msgid "Singular"
531
  msgstr ""
532
 
533
- #: core/options-pages.php:1179 core/options-pages.php:1242
534
  msgid "Plural"
535
  msgstr ""
536
 
537
- #: core/options-pages.php:1180 core/options-pages.php:1243
538
  msgid "Menu Name"
539
  msgstr ""
540
 
541
- #: core/options-pages.php:1193 core/options-pages.php:1216
542
- #: core/options-pages.php:1256 core/options-pages.php:1317
543
  msgid "Settings"
544
  msgstr ""
545
 
546
- #: core/options-pages.php:1195 core/options-pages.php:1258
547
  msgid "Taxonomy Name"
548
  msgstr ""
549
 
550
- #: core/options-pages.php:1196 core/options-pages.php:1259
551
  msgid "Hierarchical"
552
  msgstr ""
553
 
554
- #: core/options-pages.php:1197 core/options-pages.php:1260
555
  msgid "Column for List View"
556
  msgstr ""
557
 
558
- #: core/options-pages.php:1198 core/options-pages.php:1218
559
- #: core/options-pages.php:1261 core/options-pages.php:1319
560
  msgid "Filter for List View"
561
  msgstr ""
562
 
563
- #: core/options-pages.php:1199 core/options-pages.php:1219
564
- #: core/options-pages.php:1262 core/options-pages.php:1320
565
  msgid "Filter for Grid View / Media Popup"
566
  msgstr ""
567
 
568
- #: core/options-pages.php:1200 core/options-pages.php:1220
569
- #: core/options-pages.php:1263 core/options-pages.php:1321
570
  msgid "Edit in Media Popup"
571
  msgstr ""
572
 
573
- #: core/options-pages.php:1201 core/options-pages.php:1264
574
  msgid "Show in Nav Menu"
575
  msgstr ""
576
 
577
- #: core/options-pages.php:1202 core/options-pages.php:1265
578
  msgid "Remember Terms Order (sort)"
579
  msgstr ""
580
 
581
- #: core/options-pages.php:1203 core/options-pages.php:1266
582
  msgid "Show in REST"
583
  msgstr ""
584
 
585
- #: core/options-pages.php:1204 core/options-pages.php:1267
586
  msgid "Rewrite Slug"
587
  msgstr ""
588
 
589
- #: core/options-pages.php:1205 core/options-pages.php:1268
590
  msgid "Slug with Front"
591
  msgstr ""
592
 
593
- #: core/options-pages.php:1280
594
  msgid "Add New Taxonomy"
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1290
598
  msgid "Non-Media Taxonomies"
599
  msgstr ""
600
 
601
- #: core/options-pages.php:1351
602
  msgid "Options"
603
  msgstr ""
604
 
605
- #: core/options-pages.php:1361 core/options-pages.php:1364
606
  msgid "Taxonomy archive pages"
607
  msgstr ""
608
 
609
- #: core/options-pages.php:1365
610
  msgid "Turn on media taxonomy archive pages on the front-end"
611
  msgstr ""
612
 
613
- #: core/options-pages.php:1366
614
  msgid ""
615
  "Re-save your permalink settings after this option change to make it work."
616
  msgstr ""
617
 
618
- #: core/options-pages.php:1372 core/options-pages.php:1375
619
  msgid "Assign all like hierarchical"
620
  msgstr ""
621
 
622
- #: core/options-pages.php:1376
623
  msgid ""
624
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
625
  msgstr ""
626
 
627
- #: core/options-pages.php:1382 core/options-pages.php:1385
628
  msgid "Force filters"
629
  msgstr ""
630
 
631
- #: core/options-pages.php:1386
632
  msgid "Show media filters for ANY Media Popup"
633
  msgstr ""
634
 
635
- #: core/options-pages.php:1387
636
  msgid "Try this if filters are not shown for third-party plugins or themes."
637
  msgstr ""
638
 
639
- #: core/options-pages.php:1393 core/options-pages.php:1396
640
  msgid "Show count"
641
  msgstr ""
642
 
643
- #: core/options-pages.php:1397
644
  msgid "Show item count per category for media filters"
645
  msgstr ""
646
 
647
- #: core/options-pages.php:1451
648
  msgid "Add New MIME Type"
649
  msgstr ""
650
 
651
- #: core/options-pages.php:1469 core/options-pages.php:1524
652
  msgid "Extension"
653
  msgstr ""
654
 
655
- #: core/options-pages.php:1470 core/options-pages.php:1525
656
  msgid "MIME Type"
657
  msgstr ""
658
 
659
- #: core/options-pages.php:1471 core/options-pages.php:1526
660
  msgid "Singular Label"
661
  msgstr ""
662
 
663
- #: core/options-pages.php:1472 core/options-pages.php:1527
664
  msgid "Plural Label"
665
  msgstr ""
666
 
667
- #: core/options-pages.php:1473 core/options-pages.php:1503
668
- #: core/options-pages.php:1516 core/options-pages.php:1528
669
  msgid "Add Filter"
670
  msgstr ""
671
 
672
- #: core/options-pages.php:1474 core/options-pages.php:1504
673
- #: core/options-pages.php:1517 core/options-pages.php:1529
674
  msgid "Allow Upload"
675
  msgstr ""
676
 
677
- #: core/options-pages.php:1505 core/options-pages.php:1518
678
  msgid "Delete MIME Type"
679
  msgstr ""
680
 
681
- #: core/options-pages.php:1535
682
- msgid "Restore WordPress default MIME Types"
683
- msgstr ""
684
-
685
- #: core/options-pages.php:1537
686
  msgid "Save Changes"
687
  msgstr ""
688
 
689
- #: core/options-pages.php:1574
690
  msgid "Changelog"
691
  msgstr ""
692
 
693
- #: core/options-pages.php:1575
694
  msgid "What's new in"
695
  msgstr ""
696
 
697
- #: core/options-pages.php:1575
698
  msgid "version"
699
  msgstr ""
700
 
701
- #: core/options-pages.php:1578
702
  msgid "More features under the hood"
703
  msgstr ""
704
 
705
- #: core/options-pages.php:1580
706
  msgid "Support"
707
  msgstr ""
708
 
709
- #: core/options-pages.php:1581
710
  msgid "Feel free to ask for help on"
711
  msgstr ""
712
 
713
- #: core/options-pages.php:1581
714
  msgid "Support is free for both versions of the plugin."
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1583
718
  msgid "Plugin rating"
719
  msgstr ""
720
 
721
- #: core/options-pages.php:1584
722
  msgid "Please"
723
  msgstr ""
724
 
725
- #: core/options-pages.php:1584
726
  msgid "vote for the plugin"
727
  msgstr ""
728
 
729
- #: core/options-pages.php:1584
730
  msgid "Thanks!"
731
  msgstr ""
732
 
733
- #: core/options-pages.php:1586
734
  msgid "Other plugins you may find useful"
735
  msgstr ""
736
 
737
- #: core/options-pages.php:1625
738
  msgid "Utility"
739
  msgstr ""
740
 
741
- #: core/options-pages.php:1648
742
  msgid "Vote!"
743
  msgstr ""
744
 
@@ -751,71 +759,71 @@ msgid "Media Library settings saved."
751
  msgstr ""
752
 
753
  #: core/taxonomies.php:341 core/taxonomies.php:347
754
- #: enhanced-media-library.php:480
755
  msgid "Filter by"
756
  msgstr ""
757
 
758
- #: core/taxonomies.php:349 enhanced-media-library.php:482
759
  msgid "Not in"
760
  msgstr ""
761
 
762
- #: enhanced-media-library.php:331 enhanced-media-library.php:479
763
  msgid "All Uncategorized"
764
  msgstr ""
765
 
766
- #: enhanced-media-library.php:332 enhanced-media-library.php:483
767
  msgid "Reset All Filters"
768
  msgstr ""
769
 
770
- #: enhanced-media-library.php:513
771
  msgid "Uploaded to post #"
772
  msgstr ""
773
 
774
- #: enhanced-media-library.php:514
775
  msgid "Based On"
776
  msgstr ""
777
 
778
- #: enhanced-media-library.php:559 enhanced-media-library.php:561
779
  msgid "Media Categories"
780
  msgstr ""
781
 
782
- #: enhanced-media-library.php:560
783
  msgid "Media Category"
784
  msgstr ""
785
 
786
- #: enhanced-media-library.php:562
787
  msgid "All Media Categories"
788
  msgstr ""
789
 
790
- #: enhanced-media-library.php:563
791
  msgid "Edit Media Category"
792
  msgstr ""
793
 
794
- #: enhanced-media-library.php:564
795
  msgid "View Media Category"
796
  msgstr ""
797
 
798
- #: enhanced-media-library.php:565
799
  msgid "Update Media Category"
800
  msgstr ""
801
 
802
- #: enhanced-media-library.php:566
803
  msgid "Add New Media Category"
804
  msgstr ""
805
 
806
- #: enhanced-media-library.php:567
807
  msgid "New Media Category Name"
808
  msgstr ""
809
 
810
- #: enhanced-media-library.php:568
811
  msgid "Parent Media Category"
812
  msgstr ""
813
 
814
- #: enhanced-media-library.php:569
815
  msgid "Parent Media Category:"
816
  msgstr ""
817
 
818
- #: enhanced-media-library.php:570
819
  msgid "Search Media Categories"
820
  msgstr ""
821
 
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"
28
  msgid "MIME Types settings saved."
29
  msgstr ""
30
 
31
+ #: core/mime-types.php:116
32
  #, php-format
33
  msgid " <span class=\"count\">(%s)</span>"
34
  msgid_plural " <span class=\"count\">(%s)</span>"
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
 
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
 
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
 
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
 
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
 
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
 
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
 
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
  "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
  "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
  "%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
 
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
 
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.5.3
6
- Stable tag: 2.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -76,15 +76,17 @@ Assistance with translating is highly appreciated! If you'd like to be a transla
76
  = Compatibility with Other Plugins =
77
 
78
  * Advanced Custom Fields
79
- * Search & Filter
80
- * I Order Terms
81
  * WooCommerce
 
 
 
82
  * Meta Slider
83
  * Jetpack Carousel
84
  * Jetpack Tiled Galleries
85
  * Simple Lightbox
86
  * Responsive Lightbox by dFactory
87
 
 
88
  Please let us know if you find any issue with the plugins from the list above or others.
89
 
90
 
@@ -107,8 +109,9 @@ Please notice that you use the Enhanced Media Library with other plugins that ad
107
 
108
  = Useful Links =
109
 
110
- * [Where to start? (Information is being updated)](http://wpuxsolutions.com/documents/enhanced-media-library/eml-where-to-start/)
111
- * [Enhanced Media Shortcode Possible Conflicts](http://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts/)
 
112
 
113
 
114
 
@@ -126,51 +129,7 @@ Please notice that you use the Enhanced Media Library with other plugins that ad
126
 
127
  == Frequently Asked Questions ==
128
 
129
- = Why my custom media taxonomy's page is 404? =
130
-
131
- Try to just re-save permalinks settings. Go to `Settings > Permalinks` and push "Save Changes" button.
132
-
133
- = Why Media Popup of some theme/plugin does not show taxonomy filters? =
134
-
135
- By default EML adds its filters to any media popup that already contains native WordPress filters. If a third-party plugin or theme supports native WordPress filters, EML will enhance them.
136
-
137
- If a third-party plugin or theme does not support WordPress native filters, but you believe that you need them, try "Force filters" option (`Settings > Media > Taxonomies > Options`). It allows forcing media filters for ANY media popup regardless of what was intended by its creator.
138
-
139
- = How to show images per media category on a webpage? =
140
-
141
- Since EML 2.1 you can use gallery shortcode with taxonomy parameters like this: `[gallery media_category="5" category="2" limit="10" monthnum="12" year="2015" orderby="title" order="DESC"]` to show filter-based gallery on the front-end. The feature should be activated on `Settings > Media > Media Library > Media Shortcodes`.
142
-
143
- Also, you can use WP_Query ([example of the code](http://wordpress.org/support/topic/php-displaying-an-array-of-images-per-category-or-categories)).
144
-
145
- = Drag and Drop re-order does not work for media library =
146
-
147
- First, please make sure that you chose "Custom Order" for "Order media items by" on `Settings > Media > Media Library > Media Items Order`.
148
-
149
- If you use Chrome on Windows, there can be an unexplored issue with it. See core tickets [#22607](https://core.trac.wordpress.org/ticket/22607), [#29606](https://core.trac.wordpress.org/ticket/29606), [#31652](https://core.trac.wordpress.org/ticket/31652). Feel free to contribute your issue details.
150
-
151
- In case you use Chrome on a touch screen laptop try to fix the issue as described [here](https://github.com/dbushell/Nestable/issues/92) or use other browser to re-order with drag and drop.
152
-
153
- = My gallery behavior is strange | Wrong or none media items displayed | Ligtbox/carousel/slideshow/mosaic looks broken =
154
-
155
- The plugin enhances WordPress gallery shortcode in most gentle manner possible. Since v2.1.5 the mechanism of the enhancement is dramatically improved to avoid possible conflicts. In most cases Enhanced Media Library is compatible with any plugin that changes *native* WP gallery template in order to provide lightbox, carousel, slideshow, grid/mosaic functionality.
156
-
157
- That said, other plugins might override WP gallery attributes or database query for media items in a way that would prevent Enhanced Media Library from displaying correct set of media items for gallery.
158
-
159
- If you find a possible conflict and prefer third-party features to taxonomy-based gallery of the plugin, please deactivate the feature (unset "Enhanced media shortcodes" option on `Settings > Media > Media Library > Media Shortcodes`) and let us know about the issue. We would like to find a solution!
160
-
161
- If you are a plugin/theme developer please read [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts/)
162
-
163
- = Incorrect MIME type in a link inserted to a post / page =
164
-
165
- Most likely your server is configured improperly to handle this MIME type. Try to add `AddType MIME_TYPE EXTENSION` line to your .htaccess file (learn more about [.htaccess](http://www.htaccess-guide.com/) and [AddType](http://httpd.apache.org/docs/2.0/mod/mod_mime.html#addtype)). For example, if your wrongly treated file is .mobi, then the line should be `AddType application/x-mobipocket-ebook .mobi`. But better contact your hosting provider with the description of the problem.
166
-
167
- = I get "Something went wrong" error when bulk-editing in PRO =
168
-
169
- Your server can simply not have enough time when processing a lot of media items. Increase `max_execution_time` to 300 (5 minutes) and try again. Increasing memory_limit could help as well.
170
-
171
- = Will I lose media categories I’ve created if I upgrade from free to PRO? =
172
-
173
- No, all your data will remain intact. Your created media categories and their ties with your images are stored in the database. When you deactivate and delete the free version and then upload and activate the PRO one nothing happens to the database.
174
 
175
 
176
 
@@ -202,6 +161,18 @@ No, all your data will remain intact. Your created media categories and their ti
202
 
203
  == Changelog ==
204
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  = 2.3 =
206
  *Release Date - June 27, 2016*
207
 
@@ -244,7 +215,7 @@ No, all your data will remain intact. Your created media categories and their ti
244
  * Better CSS for media library grid mode, addressing some minor issues as well
245
 
246
  = Compatibility =
247
- * Wordpress 4.5 compatibility ensured
248
 
249
 
250
  &nbsp;
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
6
+ Stable tag: 2.3.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
76
  = Compatibility with Other Plugins =
77
 
78
  * Advanced Custom Fields
 
 
79
  * WooCommerce
80
+ * I Order Terms
81
+ * Search & Filter
82
+ * Document Gallery
83
  * Meta Slider
84
  * Jetpack Carousel
85
  * Jetpack Tiled Galleries
86
  * Simple Lightbox
87
  * Responsive Lightbox by dFactory
88
 
89
+
90
  Please let us know if you find any issue with the plugins from the list above or others.
91
 
92
 
109
 
110
  = Useful Links =
111
 
112
+ * [Where to start? (Information is being updated)](https://wpuxsolutions.com/documents/enhanced-media-library/eml-where-to-start/)
113
+ * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts/)
114
+ * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs/)
115
 
116
 
117
 
129
 
130
  == Frequently Asked Questions ==
131
 
132
+ > [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs/) | [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library/)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
 
135
 
161
 
162
  == Changelog ==
163
 
164
+ = 2.3.1 =
165
+ *Release Date - August 9, 2016*
166
+
167
+ = Bugfixes =
168
+ * MIME Type saving/restoring bug fixed: Settings > Media > MIME Types (tab)
169
+ * Few minor bugs fixed
170
+
171
+ = Compatibility =
172
+ * WordPress 4.6 compatibility ensured
173
+
174
+
175
+ &nbsp;
176
  = 2.3 =
177
  *Release Date - June 27, 2016*
178
 
215
  * Better CSS for media library grid mode, addressing some minor issues as well
216
 
217
  = Compatibility =
218
+ * WordPress 4.5 compatibility ensured
219
 
220
 
221
  &nbsp;