Enhanced Media Library - Version 2.3

Version Description

Release Date - June 27, 2016

Download this release

Release Info

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

Code changes from version 2.2.2 to 2.3

Files changed (35) hide show
  1. core/options-pages.php +104 -26
  2. core/taxonomies.php +358 -68
  3. css/eml-admin.css +1 -1
  4. enhanced-media-library.php +65 -58
  5. js/eml-admin.js +17 -15
  6. js/eml-enhanced-medialist.js +2 -2
  7. js/eml-media-editor.js +2 -2
  8. js/eml-media-list.js +6 -9
  9. js/eml-media-models.js +40 -1
  10. js/eml-media-views.js +30 -14
  11. js/eml-mimetype-options.js +17 -19
  12. languages/enhanced-media-library-de_DE.mo +0 -0
  13. languages/enhanced-media-library-de_DE.po +231 -599
  14. languages/enhanced-media-library-es_ES.mo +0 -0
  15. languages/enhanced-media-library-es_ES.po +0 -1536
  16. languages/enhanced-media-library-fr_FR.mo +0 -0
  17. languages/enhanced-media-library-fr_FR.po +0 -1376
  18. languages/enhanced-media-library-he_IL.mo +0 -0
  19. languages/enhanced-media-library-he_IL.po +231 -790
  20. languages/enhanced-media-library-it_IT.mo +0 -0
  21. languages/enhanced-media-library-it_IT.po +891 -0
  22. languages/enhanced-media-library-ja.mo +0 -0
  23. languages/enhanced-media-library-ja.po +231 -859
  24. languages/enhanced-media-library-ko_KR.mo +0 -0
  25. languages/enhanced-media-library-ko_KR.po +232 -797
  26. languages/enhanced-media-library-nl_NL.mo +0 -0
  27. languages/enhanced-media-library-nl_NL.po +232 -517
  28. languages/enhanced-media-library-pl_PL.mo +0 -0
  29. languages/enhanced-media-library-pl_PL.po +232 -497
  30. languages/enhanced-media-library-sv_SE.mo +0 -0
  31. languages/enhanced-media-library-sv_SE.po +231 -814
  32. languages/enhanced-media-library-uk.mo +0 -0
  33. languages/enhanced-media-library-uk.po +0 -1215
  34. languages/enhanced-media-library.pot +232 -449
  35. readme.txt +27 -128
core/options-pages.php CHANGED
@@ -92,7 +92,7 @@ if ( ! function_exists( 'wpuxss_eml_admin_menu' ) ) {
92
  }
93
 
94
 
95
- add_submenu_page(
96
  null,
97
  __('Media Settings','enhanced-media-library'), //page_title
98
  '', //menu_title
@@ -140,6 +140,9 @@ if ( ! function_exists( 'wpuxss_eml_admin_menu' ) ) {
140
  );
141
 
142
 
 
 
 
143
  add_action('admin_print_scripts-' . $eml_medialibrary_options_page, 'wpuxss_eml_medialibrary_options_page_scripts');
144
  add_action('admin_print_scripts-' . $eml_taxonomies_options_page, 'wpuxss_eml_taxonomies_options_page_scripts');
145
  add_action('admin_print_scripts-' . $eml_mimetype_options_page, 'wpuxss_eml_mimetype_options_page_scripts');
@@ -150,6 +153,22 @@ if ( ! function_exists( 'wpuxss_eml_admin_menu' ) ) {
150
 
151
 
152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
  /**
154
  * wpuxss_eml_submenu_file
155
  *
@@ -400,7 +419,7 @@ if ( ! function_exists( 'wpuxss_eml_taxonomies_options_page_scripts' ) ) {
400
 
401
  'tax_error_empty_fileds_title' => __( 'Empty Fields', 'enhanced-media-library' ),
402
  'tax_error_empty_both' => __( 'Please choose Singular and Plural names for all new taxomonies.', 'enhanced-media-library' ),
403
- 'tax_error_empty_singular' => __( 'Please choose Singilar name for all new taxomonies.', 'enhanced-media-library' ),
404
  'tax_error_empty_plural' => __( 'Please choose Plural Name for all new taxomonies.', 'enhanced-media-library' ),
405
 
406
  'okay' => __( 'Ok', 'enhanced-media-library' ),
@@ -727,14 +746,9 @@ if ( ! function_exists( 'wpuxss_eml_settings_import' ) ) {
727
  return;
728
 
729
 
730
- // backup settings
731
- $settings = wpuxss_eml_get_settings();
732
- update_option( 'wpuxss_eml_backup', $settings );
733
-
734
-
735
  $import_file = $_FILES['import_file'];
736
 
737
- if( empty( $import_file['tmp_name'] ) ) {
738
 
739
  add_settings_error(
740
  'eml-settings',
@@ -746,6 +760,12 @@ if ( ! function_exists( 'wpuxss_eml_settings_import' ) ) {
746
  return;
747
  }
748
 
 
 
 
 
 
 
749
  $json_data = file_get_contents( $import_file['tmp_name'] );
750
  $settings = json_decode( $json_data, true );
751
 
@@ -840,18 +860,63 @@ if ( ! function_exists( 'wpuxss_eml_settings_cleanup' ) ) {
840
  return;
841
 
842
 
843
- $wpuxss_eml_taxonomies = wpuxss_eml_get_eml_taxonomies();
844
 
845
- foreach ( (array) $wpuxss_eml_taxonomies as $taxonomy => $params ) {
 
846
 
847
- $terms = get_terms( $taxonomy, array( 'fields' => 'ids', 'hide_empty' => false ) );
 
 
 
 
848
 
849
- foreach ( $terms as $id ) {
850
- wp_delete_term( $id, $taxonomy );
851
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
 
853
- $wpdb->delete( $wpdb->term_taxonomy, array( 'taxonomy' => $taxonomy ), array( '%s' ) );
854
- delete_option( $taxonomy . '_children' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
855
  }
856
 
857
 
@@ -960,9 +1025,9 @@ if ( ! function_exists( 'wpuxss_eml_print_media_library_options' ) ) {
960
  <th scope="row"><label for="wpuxss_eml_lib_options[media_orderby]"><?php _e('Order media items by','enhanced-media-library'); ?></label></th>
961
  <td>
962
  <select name="wpuxss_eml_lib_options[media_orderby]" id="wpuxss_eml_lib_options_media_orderby">
963
- <option value="date" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'date' ); ?>>Date</option>
964
- <option value="title" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'title' ); ?>>Title</option>
965
- <option value="menuOrder" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'menuOrder' ); ?>>Custom Order</option>
966
  </select>
967
  <?php _e('For media library and media popups','enhanced-media-library'); ?>
968
  <p class="description"><?php _e( 'Option allows to change order by drag and drop with Custom Order value.', 'enhanced-media-library' ); ?></p>
@@ -973,8 +1038,8 @@ if ( ! function_exists( 'wpuxss_eml_print_media_library_options' ) ) {
973
  <th scope="row"><label for="wpuxss_eml_lib_options[media_order]"><?php _e('Sort order','enhanced-media-library'); ?></label></th>
974
  <td>
975
  <select name="wpuxss_eml_lib_options[media_order]" id="wpuxss_eml_lib_options_media_order">
976
- <option value="ASC" <?php selected( $wpuxss_eml_lib_options['media_order'], 'ASC' ); ?>>Ascending</option>
977
- <option value="DESC" <?php selected( $wpuxss_eml_lib_options['media_order'], 'DESC' ); ?>>Descending</option>
978
  </select>
979
  <?php _e('For media library and media popups','enhanced-media-library'); ?>
980
  </td>
@@ -1324,6 +1389,16 @@ if ( ! function_exists( 'wpuxss_eml_print_taxonomies_options' ) ) {
1324
  </td>
1325
  </tr>
1326
 
 
 
 
 
 
 
 
 
 
 
1327
  </table>
1328
 
1329
  <?php submit_button(); ?>
@@ -1427,7 +1502,7 @@ if ( ! function_exists( 'wpuxss_eml_print_mimetypes_options' ) ) {
1427
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][plural]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['plural']); ?>" /></td>
1428
  <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][filter]" title="<?php _e('Add Filter','enhanced-media-library'); ?>" value="1" <?php checked(1, $wpuxss_eml_mimes[$type]['filter']); ?> /></td>
1429
  <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][upload]" title="<?php _e('Allow Upload','enhanced-media-library'); ?>" value="1" <?php checked(true, $allowed); ?> /></td>
1430
- <td><a class="wpuxss-eml-button-remove" title="Delete MIME Type" href="javascript:;">&ndash;</a></td>
1431
  </tr>
1432
 
1433
  <?php endif; ?>
@@ -1564,14 +1639,17 @@ if ( ! function_exists( 'wpuxss_eml_settings_link' ) ) {
1564
 
1565
  add_filter( 'plugin_row_meta', 'wpuxss_eml_plugin_row_meta', 10, 2 );
1566
 
1567
- function wpuxss_eml_plugin_row_meta( $links, $file ) {
1568
 
1569
- if ( wpuxss_get_eml_basename() == $file ) {
1570
 
1571
- $links[] = '<a href="https://wordpress.org/support/view/plugin-reviews/enhanced-media-library" target="_blank"><span class="dashicons dashicons-thumbs-up"></span> ' . __( 'Vote!', 'enhanced-media-library' ) . '</a>';
1572
- }
1573
 
1574
- return $links;
 
 
 
 
1575
  }
1576
 
1577
  ?>
92
  }
93
 
94
 
95
+ $eml_media_options_page = add_submenu_page(
96
  null,
97
  __('Media Settings','enhanced-media-library'), //page_title
98
  '', //menu_title
140
  );
141
 
142
 
143
+
144
+ add_action( 'load-' . $eml_media_options_page, 'wpuxss_eml_load_media_options_page' );
145
+
146
  add_action('admin_print_scripts-' . $eml_medialibrary_options_page, 'wpuxss_eml_medialibrary_options_page_scripts');
147
  add_action('admin_print_scripts-' . $eml_taxonomies_options_page, 'wpuxss_eml_taxonomies_options_page_scripts');
148
  add_action('admin_print_scripts-' . $eml_mimetype_options_page, 'wpuxss_eml_mimetype_options_page_scripts');
153
 
154
 
155
 
156
+ /**
157
+ * wpuxss_eml_load_media_options_page
158
+ *
159
+ * Ensure compatibility with default options-media.php for third-parties
160
+ *
161
+ * @since 2.3
162
+ * @created 14/06/16
163
+ */
164
+
165
+ function wpuxss_eml_load_media_options_page() {
166
+
167
+ do_action( 'load-options-media.php' );
168
+ }
169
+
170
+
171
+
172
  /**
173
  * wpuxss_eml_submenu_file
174
  *
419
 
420
  'tax_error_empty_fileds_title' => __( 'Empty Fields', 'enhanced-media-library' ),
421
  'tax_error_empty_both' => __( 'Please choose Singular and Plural names for all new taxomonies.', 'enhanced-media-library' ),
422
+ 'tax_error_empty_singular' => __( 'Please choose Singular name for all new taxomonies.', 'enhanced-media-library' ),
423
  'tax_error_empty_plural' => __( 'Please choose Plural Name for all new taxomonies.', 'enhanced-media-library' ),
424
 
425
  'okay' => __( 'Ok', 'enhanced-media-library' ),
746
  return;
747
 
748
 
 
 
 
 
 
749
  $import_file = $_FILES['import_file'];
750
 
751
+ if ( empty( $import_file['tmp_name'] ) ) {
752
 
753
  add_settings_error(
754
  'eml-settings',
760
  return;
761
  }
762
 
763
+
764
+ // backup settings
765
+ $settings = wpuxss_eml_get_settings();
766
+ update_option( 'wpuxss_eml_backup', $settings );
767
+
768
+
769
  $json_data = file_get_contents( $import_file['tmp_name'] );
770
  $settings = json_decode( $json_data, true );
771
 
860
  return;
861
 
862
 
863
+ foreach ( get_option( 'wpuxss_eml_taxonomies', array() ) as $taxonomy => $params ) {
864
 
865
+ $terms = get_terms( $taxonomy, array( 'fields' => 'all', 'get' => 'all' ) );
866
+ $term_pairs = wpuxss_eml_get_media_term_pairs( $terms, 'id=>tt_id' );
867
 
868
+ if ( (bool) $params['eml_media'] ) {
869
+
870
+ foreach ( $term_pairs as $id => $tt_id ) {
871
+ wp_delete_term( $id, $taxonomy );
872
+ }
873
 
874
+ $wpdb->delete( $wpdb->term_taxonomy, array( 'taxonomy' => $taxonomy ), array( '%s' ) );
875
+ delete_option( $taxonomy . '_children' );
876
  }
877
+ elseif ( ! empty( $term_pairs ) ) {
878
+
879
+ $deleted_tt_ids = array();
880
+ $rows2remove_format = join( ', ', array_fill( 0, count( $term_pairs ), '%d' ) );
881
+
882
+ $results = $wpdb->get_results( $wpdb->prepare(
883
+ "
884
+ SELECT $wpdb->term_relationships.term_taxonomy_id, $wpdb->term_relationships.object_id
885
+ FROM $wpdb->term_relationships
886
+ INNER JOIN $wpdb->posts
887
+ ON $wpdb->term_relationships.object_id = $wpdb->posts.ID
888
+ WHERE $wpdb->posts.post_type = 'attachment'
889
+ AND $wpdb->term_relationships.term_taxonomy_id IN ($rows2remove_format)
890
+ ",
891
+ $term_pairs
892
+ ) );
893
+
894
+ foreach ( $results as $result ) {
895
+ $deleted_tt_ids[$result->object_id][] = $result->term_taxonomy_id;
896
+ }
897
+
898
+ foreach( $deleted_tt_ids as $attachment_id => $tt_ids ) {
899
+ do_action( 'delete_term_relationships', $attachment_id, $tt_ids );
900
+ }
901
 
902
+ $removed = $wpdb->query( $wpdb->prepare(
903
+ "
904
+ DELETE $wpdb->term_relationships.* FROM $wpdb->term_relationships
905
+ INNER JOIN $wpdb->posts
906
+ ON $wpdb->term_relationships.object_id = $wpdb->posts.ID
907
+ WHERE $wpdb->posts.post_type = 'attachment'
908
+ AND $wpdb->term_relationships.term_taxonomy_id IN ($rows2remove_format)
909
+ ",
910
+ $term_pairs
911
+ ) );
912
+
913
+ if ( false !== $removed ) {
914
+
915
+ foreach( $deleted_tt_ids as $attachment_id => $tt_ids ) {
916
+ do_action( 'deleted_term_relationships', $attachment_id, $tt_ids );
917
+ }
918
+ }
919
+ }
920
  }
921
 
922
 
1025
  <th scope="row"><label for="wpuxss_eml_lib_options[media_orderby]"><?php _e('Order media items by','enhanced-media-library'); ?></label></th>
1026
  <td>
1027
  <select name="wpuxss_eml_lib_options[media_orderby]" id="wpuxss_eml_lib_options_media_orderby">
1028
+ <option value="date" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'date' ); ?>><?php _e('Date','enhanced-media-library'); ?></option>
1029
+ <option value="title" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'title' ); ?>><?php _e('Title','enhanced-media-library'); ?></option>
1030
+ <option value="menuOrder" <?php selected( $wpuxss_eml_lib_options['media_orderby'], 'menuOrder' ); ?>><?php _e('Custom Order','enhanced-media-library'); ?></option>
1031
  </select>
1032
  <?php _e('For media library and media popups','enhanced-media-library'); ?>
1033
  <p class="description"><?php _e( 'Option allows to change order by drag and drop with Custom Order value.', 'enhanced-media-library' ); ?></p>
1038
  <th scope="row"><label for="wpuxss_eml_lib_options[media_order]"><?php _e('Sort order','enhanced-media-library'); ?></label></th>
1039
  <td>
1040
  <select name="wpuxss_eml_lib_options[media_order]" id="wpuxss_eml_lib_options_media_order">
1041
+ <option value="ASC" <?php selected( $wpuxss_eml_lib_options['media_order'], 'ASC' ); ?>><?php _e('Ascending','enhanced-media-library'); ?></option>
1042
+ <option value="DESC" <?php selected( $wpuxss_eml_lib_options['media_order'], 'DESC' ); ?>><?php _e('Descending','enhanced-media-library'); ?></option>
1043
  </select>
1044
  <?php _e('For media library and media popups','enhanced-media-library'); ?>
1045
  </td>
1389
  </td>
1390
  </tr>
1391
 
1392
+ <tr>
1393
+ <th scope="row"><?php _e('Show count','enhanced-media-library'); ?></th>
1394
+ <td>
1395
+ <fieldset>
1396
+ <legend class="screen-reader-text"><span><?php _e('Show count','enhanced-media-library'); ?></span></legend>
1397
+ <label><input name="wpuxss_eml_tax_options[show_count]" type="hidden" value="0" /><input name="wpuxss_eml_tax_options[show_count]" type="checkbox" value="1" <?php checked( true, $wpuxss_eml_tax_options['show_count'], true ); ?> /> <?php _e('Show item count per category for media filters','enhanced-media-library'); ?></label>
1398
+ </fieldset>
1399
+ </td>
1400
+ </tr>
1401
+
1402
  </table>
1403
 
1404
  <?php submit_button(); ?>
1502
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][plural]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['plural']); ?>" /></td>
1503
  <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][filter]" title="<?php _e('Add Filter','enhanced-media-library'); ?>" value="1" <?php checked(1, $wpuxss_eml_mimes[$type]['filter']); ?> /></td>
1504
  <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][upload]" title="<?php _e('Allow Upload','enhanced-media-library'); ?>" value="1" <?php checked(true, $allowed); ?> /></td>
1505
+ <td><a class="wpuxss-eml-button-remove" title="<?php _e('Delete MIME Type','enhanced-media-library'); ?>" href="javascript:;">&ndash;</a></td>
1506
  </tr>
1507
 
1508
  <?php endif; ?>
1639
 
1640
  add_filter( 'plugin_row_meta', 'wpuxss_eml_plugin_row_meta', 10, 2 );
1641
 
1642
+ if ( ! function_exists( 'wpuxss_eml_plugin_row_meta' ) ) {
1643
 
1644
+ function wpuxss_eml_plugin_row_meta( $links, $file ) {
1645
 
1646
+ if ( wpuxss_get_eml_basename() == $file ) {
 
1647
 
1648
+ $links[] = '<a href="https://wordpress.org/support/view/plugin-reviews/enhanced-media-library" target="_blank"><span class="dashicons dashicons-thumbs-up"></span> ' . __( 'Vote!', 'enhanced-media-library' ) . '</a>';
1649
+ }
1650
+
1651
+ return $links;
1652
+ }
1653
  }
1654
 
1655
  ?>
core/taxonomies.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  if ( ! defined( 'ABSPATH' ) )
4
- exit;
5
 
6
 
7
 
@@ -212,37 +212,17 @@ if ( ! function_exists( 'wpuxss_eml_ajax_query_attachments' ) ) {
212
 
213
  $uncategorized = ( isset( $query['uncategorized'] ) && $query['uncategorized'] ) ? 1 : 0;
214
 
215
- // TODO: delete code for < 4.1
216
- if ( version_compare( $wp_version, '4.1', '<' ) ) {
217
 
218
- if ( isset( $query['year'] ) && $query['year'] &&
219
- isset( $query['monthnum'] ) && $query['monthnum'] ) {
220
-
221
- $query['m'] = $query['year'] . $query['monthnum'];
222
- }
223
- else {
224
-
225
- $query['m'] = '';
226
- }
227
-
228
- $query = array_intersect_key( $query, array_flip( array(
229
- 's', 'order', 'orderby', 'posts_per_page', 'paged', 'post_mime_type',
230
- 'post_parent', 'post__in', 'post__not_in', 'm'
231
- ) ) );
232
- }
233
- else {
234
-
235
- $query = array_intersect_key( $query, array_flip( array(
236
- 's', 'order', 'orderby', 'posts_per_page', 'paged', 'post_mime_type',
237
- 'post_parent', 'post__in', 'post__not_in', 'year', 'monthnum'
238
- ) ) );
239
- }
240
 
241
  foreach ( get_object_taxonomies( 'attachment', 'names' ) as $taxonomy ) {
242
 
243
  if ( $uncategorized ) {
244
 
245
- $terms = get_terms( $taxonomy, array('fields'=>'ids','get'=>'all') );
246
 
247
  $tax_query[] = array(
248
  'taxonomy' => $taxonomy,
@@ -345,39 +325,42 @@ if ( ! function_exists( 'wpuxss_eml_restrict_manage_posts' ) ) {
345
  $media_library_mode = get_user_option( 'media_library_mode' ) ? get_user_option( 'media_library_mode' ) : 'grid';
346
 
347
 
348
- if ( isset( $current_screen ) && 'upload' === $current_screen->base && 'list' === $media_library_mode ) {
349
-
350
- $wpuxss_eml_taxonomies = get_option('wpuxss_eml_taxonomies');
351
-
352
- $uncategorized = ( isset( $_REQUEST['attachment-filter'] ) && 'uncategorized' === $_REQUEST['attachment-filter'] ) ? 1 : 0;
353
-
354
- foreach ( get_object_taxonomies( 'attachment', 'object' ) as $taxonomy ) {
355
-
356
- if ( $wpuxss_eml_taxonomies[$taxonomy->name]['admin_filter'] ) {
357
 
358
- echo "<label for='{$taxonomy->name}' class='screen-reader-text'>" . __('Filter by','enhanced-media-library') . " {$taxonomy->labels->singular_name}</label>";
 
359
 
360
- $selected = ( ! $uncategorized && isset( $wp_query->query[$taxonomy->name] ) ) ? $wp_query->query[$taxonomy->name] : 0;
361
 
362
- wp_dropdown_categories(
363
- array(
364
- 'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name,
365
- 'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->name . ' —',
366
- 'show_option_not_in' => '' . __( 'Not in', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name . ' —',
367
- 'taxonomy' => $taxonomy->name,
368
- 'name' => $taxonomy->name,
369
- 'orderby' => 'name',
370
- 'selected' => $selected,
371
- 'hierarchical' => true,
372
- 'show_count' => true,
373
- 'hide_empty' => false,
374
- 'hide_if_empty' => true,
375
- 'class' => 'eml-taxonomy-filters'
376
- )
377
- );
378
- }
379
- } // endforeach
380
- }
 
 
 
 
 
 
 
 
381
  }
382
  }
383
 
@@ -636,6 +619,100 @@ if ( ! function_exists( 'wpuxss_eml_attachment_fields_to_edit' ) ) {
636
 
637
 
638
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
639
  /**
640
  * Walker_Media_Taxonomy_Checklist
641
  *
@@ -645,7 +722,7 @@ if ( ! function_exists( 'wpuxss_eml_attachment_fields_to_edit' ) ) {
645
  * @created 09/09/13
646
  */
647
 
648
- if( ! class_exists('Walker_Media_Taxonomy_Checklist') ) {
649
 
650
  class Walker_Media_Taxonomy_Checklist extends Walker {
651
 
@@ -693,13 +770,14 @@ if( ! class_exists('Walker_Media_Taxonomy_Checklist') ) {
693
  * @created 05/11/13
694
  */
695
 
696
- if( ! class_exists('Walker_Media_Taxonomy_Uploader_Filter') ) {
697
 
698
  class Walker_Media_Taxonomy_Uploader_Filter extends Walker {
699
 
700
  var $tree_type = 'category';
701
  var $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
702
 
 
703
  function start_lvl( &$output, $depth = 0, $args = array() ) {
704
 
705
  $output .= "";
@@ -712,13 +790,16 @@ if( ! class_exists('Walker_Media_Taxonomy_Uploader_Filter') ) {
712
 
713
  function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
714
 
715
- //extract($args);
716
 
 
717
  $indent = str_repeat('&nbsp;&nbsp;&nbsp;', $depth);
718
 
 
 
719
  $el = array(
720
  'term_id' => $category->term_id,
721
- 'term_name' => $indent . esc_html( apply_filters( 'the_category', $category->name ) ) . '&nbsp;&nbsp;(' . $category->count . ')'
722
  );
723
 
724
  $output .= json_encode( $el );
@@ -758,6 +839,7 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_compat' ) ) {
758
  wp_send_json_error();
759
 
760
 
 
761
  $attachment_data = $_REQUEST['attachments'][ $id ];
762
 
763
  check_ajax_referer( 'update-post_' . $id, 'nonce' );
@@ -781,30 +863,110 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_compat' ) ) {
781
 
782
  wp_update_post( $post );
783
 
784
- foreach ( get_attachment_taxonomies( $post ) as $taxonomy ) {
 
 
 
 
 
 
 
 
 
 
785
 
786
  if ( isset( $attachment_data[ $taxonomy ] ) ) {
787
 
788
- wp_set_object_terms( $id, array_map( 'trim', preg_split( '/,+/', $attachment_data[ $taxonomy ] ) ), $taxonomy, false );
789
  }
790
  elseif ( isset( $_REQUEST['tax_input'] ) && isset( $_REQUEST['tax_input'][ $taxonomy ] ) ) {
791
 
792
  $term_ids = array_keys( $_REQUEST['tax_input'][ $taxonomy ], 1 );
793
  $term_ids = array_map( 'intval', $term_ids );
 
 
 
 
 
794
 
795
- wp_set_object_terms( $id, $term_ids, $taxonomy, false );
 
 
796
  }
797
  }
798
 
799
  if ( ! $attachment = wp_prepare_attachment_for_js( $id ) )
800
  wp_send_json_error();
801
 
 
 
 
 
802
  wp_send_json_success( $attachment );
803
  }
804
  }
805
 
806
 
807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
  /**
809
  * wpuxss_eml_save_attachment_order
810
  *
@@ -820,6 +982,9 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_order' ) ) {
820
 
821
  function wpuxss_eml_save_attachment_order() {
822
 
 
 
 
823
  if ( ! isset( $_REQUEST['post_id'] ) )
824
  wp_send_json_error();
825
 
@@ -837,7 +1002,9 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_order' ) ) {
837
  check_ajax_referer( 'eml-bulk-edit-nonce', 'nonce' );
838
  }
839
 
 
840
  $attachments = $_REQUEST['attachments'];
 
841
 
842
  foreach ( $attachments as $attachment_id => $menu_order ) {
843
 
@@ -848,9 +1015,28 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_order' ) ) {
848
  if ( 'attachment' != $attachment->post_type )
849
  continue;
850
 
851
- wp_update_post( array( 'ID' => $attachment_id, 'menu_order' => $menu_order ) );
852
  }
853
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
854
  wp_send_json_success();
855
  }
856
  }
@@ -866,10 +1052,12 @@ if ( ! function_exists( 'wpuxss_eml_save_attachment_order' ) ) {
866
 
867
  if ( ! function_exists( 'wpuxss_eml_get_eml_taxonomies' ) ) {
868
 
869
- function wpuxss_eml_get_eml_taxonomies() {
870
 
871
- $wpuxss_eml_taxonomies = get_option( 'wpuxss_eml_taxonomies', array() );
872
- $return = array_filter( $wpuxss_eml_taxonomies, 'wpuxss_eml_filter_by_eml_taxonomies' );
 
 
873
 
874
  return $return;
875
  }
@@ -888,7 +1076,109 @@ if ( ! function_exists( 'wpuxss_eml_filter_by_eml_taxonomies' ) ) {
888
 
889
  function wpuxss_eml_filter_by_eml_taxonomies( $taxonomy ) {
890
 
891
- return $taxonomy['eml_media'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
892
  }
893
  }
894
 
1
  <?php
2
 
3
  if ( ! defined( 'ABSPATH' ) )
4
+ exit;
5
 
6
 
7
 
212
 
213
  $uncategorized = ( isset( $query['uncategorized'] ) && $query['uncategorized'] ) ? 1 : 0;
214
 
 
 
215
 
216
+ $query = array_intersect_key( $query, array_flip( array(
217
+ 's', 'order', 'orderby', 'posts_per_page', 'paged', 'post_mime_type',
218
+ 'post_parent', 'post__in', 'post__not_in', 'year', 'monthnum'
219
+ ) ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
220
 
221
  foreach ( get_object_taxonomies( 'attachment', 'names' ) as $taxonomy ) {
222
 
223
  if ( $uncategorized ) {
224
 
225
+ $terms = get_terms( $taxonomy, array( 'fields' => 'ids', 'get' => 'all' ) );
226
 
227
  $tax_query[] = array(
228
  'taxonomy' => $taxonomy,
325
  $media_library_mode = get_user_option( 'media_library_mode' ) ? get_user_option( 'media_library_mode' ) : 'grid';
326
 
327
 
328
+ if ( ! isset( $current_screen ) || 'upload' !== $current_screen->base || 'list' !== $media_library_mode ) {
329
+ return;
330
+ }
 
 
 
 
 
 
331
 
332
+ $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options' );
333
+ $wpuxss_eml_taxonomies = get_option( 'wpuxss_eml_taxonomies', array() );
334
 
335
+ $uncategorized = ( isset( $_REQUEST['attachment-filter'] ) && 'uncategorized' === $_REQUEST['attachment-filter'] ) ? 1 : 0;
336
 
337
+ foreach ( get_object_taxonomies( 'attachment', 'object' ) as $taxonomy ) {
338
+
339
+ if ( $wpuxss_eml_taxonomies[$taxonomy->name]['admin_filter'] ) {
340
+
341
+ echo "<label for='{$taxonomy->name}' class='screen-reader-text'>" . __('Filter by','enhanced-media-library') . " {$taxonomy->labels->singular_name}</label>";
342
+
343
+ $selected = ( ! $uncategorized && isset( $wp_query->query[$taxonomy->name] ) ) ? $wp_query->query[$taxonomy->name] : 0;
344
+
345
+ wp_dropdown_categories(
346
+ array(
347
+ 'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name,
348
+ 'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->name . ' —',
349
+ 'show_option_not_in' => '— ' . __( 'Not in', 'enhanced-media-library' ) . ' ' . $taxonomy->labels->singular_name . ' —',
350
+ 'taxonomy' => $taxonomy->name,
351
+ 'name' => $taxonomy->name,
352
+ 'orderby' => 'name',
353
+ 'selected' => $selected,
354
+ 'hierarchical' => true,
355
+ 'show_count' => (bool) $wpuxss_eml_tax_options['show_count'],
356
+ 'hide_empty' => false,
357
+ 'hide_if_empty' => true,
358
+ 'class' => 'eml-taxonomy-filters',
359
+ 'walker' => new wpuxss_eml_Walker_CategoryDropdown()
360
+ )
361
+ );
362
+ }
363
+ } // endforeach
364
  }
365
  }
366
 
619
 
620
 
621
 
622
+ /**
623
+ * wpuxss_eml_Walker_CategoryDropdown
624
+ *
625
+ * Based on /wp-includes/class-walker-category-dropdown.php
626
+ *
627
+ * @since 2.3
628
+ * @created 14/06/16
629
+ */
630
+
631
+ if ( ! class_exists( 'wpuxss_eml_Walker_CategoryDropdown' ) ) {
632
+
633
+ class wpuxss_eml_Walker_CategoryDropdown extends Walker_CategoryDropdown {
634
+
635
+ function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
636
+
637
+ $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options' );
638
+
639
+ $pad = str_repeat('&nbsp;', $depth * 3);
640
+
641
+ /** This filter is documented in wp-includes/category-template.php */
642
+ $cat_name = apply_filters( 'list_cats', $category->name, $category );
643
+
644
+ if ( isset( $args['value_field'] ) && isset( $category->{$args['value_field']} ) ) {
645
+ $value_field = $args['value_field'];
646
+ } else {
647
+ $value_field = 'term_id';
648
+ }
649
+
650
+ $output .= "\t<option class=\"level-$depth\" value=\"" . esc_attr( $category->{$value_field} ) . "\"";
651
+
652
+ // Type-juggling causes false matches, so we force everything to a string.
653
+ if ( (string) $category->{$value_field} === (string) $args['selected'] )
654
+ $output .= ' selected="selected"';
655
+ $output .= '>';
656
+ $output .= $pad.$cat_name;
657
+
658
+
659
+ if ( $args['show_count'] && (bool) $wpuxss_eml_tax_options['show_count'] ) {
660
+
661
+ $count = wpuxss_eml_get_media_term_count( $category->term_id, $category->term_taxonomy_id );
662
+ $output .= '&nbsp;&nbsp;('. number_format_i18n( $count ) .')';
663
+ }
664
+
665
+ $output .= "</option>\n";
666
+ }
667
+ }
668
+ }
669
+
670
+
671
+
672
+ /**
673
+ * wpuxss_eml_get_media_term_count
674
+ *
675
+ * @since 2.3
676
+ * @created 14/06/16
677
+ */
678
+
679
+ if ( ! function_exists( 'wpuxss_eml_get_media_term_count' ) ) {
680
+
681
+ function wpuxss_eml_get_media_term_count( $term_id, $tt_id ) {
682
+
683
+ global $wpdb;
684
+
685
+
686
+ $terms = array( $tt_id );
687
+
688
+ $children = $wpdb->get_results( $wpdb->prepare( "SELECT term_taxonomy_id FROM $wpdb->term_taxonomy
689
+ WHERE parent = %d", (int) $term_id ) );
690
+
691
+
692
+ if ( ! empty( $children ) ) {
693
+
694
+ foreach ( $children as $child ) {
695
+ $terms[] = $child->term_taxonomy_id;
696
+ }
697
+ }
698
+
699
+ $terms_format = join( ', ', array_fill( 0, count( $terms ), '%d' ) );
700
+
701
+ $results = $wpdb->get_results( $wpdb->prepare(
702
+ "
703
+ SELECT ID FROM $wpdb->posts, $wpdb->term_relationships WHERE $wpdb->posts.ID = $wpdb->term_relationships.object_id AND post_type = 'attachment' AND ( post_status = 'publish' OR post_status = 'inherit' ) AND term_taxonomy_id IN ($terms_format) GROUP BY ID
704
+ ",
705
+ $terms
706
+ ) );
707
+
708
+ $count = $results ? $wpdb->num_rows : 0;
709
+
710
+ return $count;
711
+ }
712
+ }
713
+
714
+
715
+
716
  /**
717
  * Walker_Media_Taxonomy_Checklist
718
  *
722
  * @created 09/09/13
723
  */
724
 
725
+ if ( ! class_exists( 'Walker_Media_Taxonomy_Checklist' ) ) {
726
 
727
  class Walker_Media_Taxonomy_Checklist extends Walker {
728
 
770
  * @created 05/11/13
771
  */
772
 
773
+ if ( ! class_exists( 'Walker_Media_Taxonomy_Uploader_Filter' ) ) {
774
 
775
  class Walker_Media_Taxonomy_Uploader_Filter extends Walker {
776
 
777
  var $tree_type = 'category';
778
  var $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
779
 
780
+
781
  function start_lvl( &$output, $depth = 0, $args = array() ) {
782
 
783
  $output .= "";
790
 
791
  function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
792
 
793
+ extract($args);
794
 
795
+ $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options' );
796
  $indent = str_repeat('&nbsp;&nbsp;&nbsp;', $depth);
797
 
798
+ $count = ( (bool) $wpuxss_eml_tax_options['show_count'] ) ? '&nbsp;&nbsp;('. number_format_i18n( wpuxss_eml_get_media_term_count( $category->term_id, $category->term_taxonomy_id ) ) .')' : '';
799
+
800
  $el = array(
801
  'term_id' => $category->term_id,
802
+ 'term_name' => $indent . esc_html( apply_filters( 'the_category', $category->name ) ) . $count
803
  );
804
 
805
  $output .= json_encode( $el );
839
  wp_send_json_error();
840
 
841
 
842
+ $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options' );
843
  $attachment_data = $_REQUEST['attachments'][ $id ];
844
 
845
  check_ajax_referer( 'update-post_' . $id, 'nonce' );
863
 
864
  wp_update_post( $post );
865
 
866
+
867
+ $media_taxonomy_names = get_object_taxonomies( 'attachment','names' );
868
+
869
+ if ( (bool) $wpuxss_eml_tax_options['show_count'] ) {
870
+
871
+ $terms = get_terms( $media_taxonomy_names, array('fields'=>'all','get'=>'all') );
872
+ $term_pairs = wpuxss_eml_get_media_term_pairs( $terms, 'id=>tt_id' );
873
+ }
874
+
875
+
876
+ foreach ( $media_taxonomy_names as $taxonomy ) {
877
 
878
  if ( isset( $attachment_data[ $taxonomy ] ) ) {
879
 
880
+ $term_ids = array_map( 'trim', preg_split( '/,+/', $attachment_data[ $taxonomy ] ) );
881
  }
882
  elseif ( isset( $_REQUEST['tax_input'] ) && isset( $_REQUEST['tax_input'][ $taxonomy ] ) ) {
883
 
884
  $term_ids = array_keys( $_REQUEST['tax_input'][ $taxonomy ], 1 );
885
  $term_ids = array_map( 'intval', $term_ids );
886
+ }
887
+
888
+ wp_set_object_terms( $id, $term_ids, $taxonomy, false );
889
+
890
+ if ( (bool) $wpuxss_eml_tax_options['show_count'] ) {
891
 
892
+ foreach( $term_pairs as $term_id => $tt_id) {
893
+ $tcount[$term_id] = wpuxss_eml_get_media_term_count( $term_id, $tt_id );
894
+ }
895
  }
896
  }
897
 
898
  if ( ! $attachment = wp_prepare_attachment_for_js( $id ) )
899
  wp_send_json_error();
900
 
901
+ if ( (bool) $wpuxss_eml_tax_options['show_count'] )
902
+ $attachment['tcount'] = $tcount;
903
+
904
+
905
  wp_send_json_success( $attachment );
906
  }
907
  }
908
 
909
 
910
 
911
+ /**
912
+ * wpuxss_eml_delete_post
913
+ *
914
+ * Based on /wp-admin/includes/ajax-actions.php
915
+ *
916
+ * @since 2.3
917
+ * @created 17/06/16
918
+ */
919
+
920
+ add_action( 'wp_ajax_delete-post', 'wpuxss_eml_delete_post', 0 );
921
+
922
+ if ( ! function_exists( 'wpuxss_eml_delete_post' ) ) {
923
+
924
+ function wpuxss_eml_delete_post() {
925
+
926
+ if ( empty( $action ) )
927
+ $action = 'delete-post';
928
+
929
+ $id = isset( $_POST['id'] ) ? (int) $_POST['id'] : 0;
930
+
931
+ check_ajax_referer( "{$action}_$id" );
932
+
933
+ if ( ! current_user_can( 'delete_post', $id ) )
934
+ wp_die( -1 );
935
+
936
+ if ( ! $post = get_post( $id ) )
937
+ wp_die( 1 );
938
+
939
+
940
+ if ( 'attachment' === $post->post_type ) {
941
+
942
+ $response = array();
943
+ $wpuxss_eml_tax_options = get_option('wpuxss_eml_tax_options');
944
+
945
+ if ( wp_delete_post( $id ) ) {
946
+
947
+ if ( (bool) $wpuxss_eml_tax_options['show_count'] ) {
948
+
949
+ $terms = get_terms( get_object_taxonomies( 'attachment','names' ), array('fields'=>'all','get'=>'all') );
950
+
951
+ foreach( wpuxss_eml_get_media_term_pairs( $terms, 'id=>tt_id' ) as $term_id => $tt_id ) {
952
+ $response['tcount'][$term_id] = wpuxss_eml_get_media_term_count( $term_id, $tt_id );
953
+ }
954
+ }
955
+
956
+ wp_send_json_success( $response );
957
+ }
958
+ else
959
+ wp_send_json_error();
960
+ }
961
+ elseif ( wp_delete_post( $id ) )
962
+ wp_die( 1 );
963
+ else
964
+ wp_die( 0 );
965
+ }
966
+ }
967
+
968
+
969
+
970
  /**
971
  * wpuxss_eml_save_attachment_order
972
  *
982
 
983
  function wpuxss_eml_save_attachment_order() {
984
 
985
+ global $wpdb;
986
+
987
+
988
  if ( ! isset( $_REQUEST['post_id'] ) )
989
  wp_send_json_error();
990
 
1002
  check_ajax_referer( 'eml-bulk-edit-nonce', 'nonce' );
1003
  }
1004
 
1005
+
1006
  $attachments = $_REQUEST['attachments'];
1007
+ $attachments2edit = array();
1008
 
1009
  foreach ( $attachments as $attachment_id => $menu_order ) {
1010
 
1015
  if ( 'attachment' != $attachment->post_type )
1016
  continue;
1017
 
1018
+ $attachments2edit[$attachment_id] = $menu_order;
1019
  }
1020
 
1021
+
1022
+ asort( $attachments2edit );
1023
+ $order = array_keys( $attachments2edit );
1024
+ $order_format = join( ', ', array_fill( 0, count( $order ), '%d' ) );
1025
+ $wpdb->query( 'SELECT @i:=0' );
1026
+
1027
+
1028
+ $result = $wpdb->query( $wpdb->prepare(
1029
+ "
1030
+ UPDATE $wpdb->posts SET $wpdb->posts.menu_order = ( @i:=@i+1 )
1031
+ WHERE $wpdb->posts.ID IN ( $order_format ) ORDER BY FIELD( $wpdb->posts.ID, $order_format )
1032
+ ",
1033
+ array_merge( $order, $order )
1034
+ ) );
1035
+
1036
+
1037
+ if ( ! $result )
1038
+ wp_send_json_error();
1039
+
1040
  wp_send_json_success();
1041
  }
1042
  }
1052
 
1053
  if ( ! function_exists( 'wpuxss_eml_get_eml_taxonomies' ) ) {
1054
 
1055
+ function wpuxss_eml_get_eml_taxonomies( $all_media_taxonomies = array() ) {
1056
 
1057
+ if ( empty( $all_media_taxonomies ) )
1058
+ $all_media_taxonomies = get_option( 'wpuxss_eml_taxonomies', array() );
1059
+
1060
+ $return = array_filter( $all_media_taxonomies, 'wpuxss_eml_filter_by_eml_taxonomies' );
1061
 
1062
  return $return;
1063
  }
1076
 
1077
  function wpuxss_eml_filter_by_eml_taxonomies( $taxonomy ) {
1078
 
1079
+ return (bool) $taxonomy['eml_media'];
1080
+ }
1081
+ }
1082
+
1083
+
1084
+
1085
+ /**
1086
+ * wpuxss_eml_get_media_term_pairs
1087
+ *
1088
+ * @since 2.3
1089
+ * @created 19/06/16
1090
+ */
1091
+
1092
+ if ( ! function_exists( 'wpuxss_eml_get_media_term_pairs' ) ) {
1093
+
1094
+ function wpuxss_eml_get_media_term_pairs( $terms = array(), $mode = 'id=>tt_id' ) {
1095
+
1096
+ $result = array();
1097
+
1098
+
1099
+ foreach( $terms as $term ) {
1100
+
1101
+ if ( 'id=>tt_id' === $mode )
1102
+ $result[$term->term_id] = $term->term_taxonomy_id;
1103
+
1104
+ if ( 'tt_id=>id' === $mode )
1105
+ $result[$term->term_taxonomy_id] = $term->term_id;
1106
+
1107
+ if ( 'id=>name' === $mode )
1108
+ $result[$term->term_id] = $term->name;
1109
+ }
1110
+
1111
+ return $result;
1112
+ }
1113
+ }
1114
+
1115
+
1116
+
1117
+ /**
1118
+ * _eml_update_attachment_term_count
1119
+ *
1120
+ * @since 2.3
1121
+ * @created 22/06/16
1122
+ */
1123
+
1124
+ if ( ! function_exists( '_eml_update_attachment_term_count' ) ) {
1125
+
1126
+ function _eml_update_attachment_term_count( $terms, $taxonomy ) {
1127
+
1128
+ global $wpdb;
1129
+
1130
+ foreach ( (array) $terms as $term ) {
1131
+
1132
+ $count = 0;
1133
+
1134
+ $count += (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts p1 WHERE p1.ID = $wpdb->term_relationships.object_id AND post_type = 'attachment' AND ( post_status = 'publish' OR post_status = 'inherit' ) AND term_taxonomy_id = %d", $term ) );
1135
+
1136
+ do_action( 'edit_term_taxonomy', $term, $taxonomy->name );
1137
+ $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) );
1138
+ do_action( 'edited_term_taxonomy', $term, $taxonomy->name );
1139
+ }
1140
+ }
1141
+ }
1142
+
1143
+
1144
+
1145
+ /**
1146
+ * _eml_update_post_term_count
1147
+ *
1148
+ * @since 2.3
1149
+ * @created 22/06/16
1150
+ */
1151
+
1152
+ if ( ! function_exists( '_eml_update_post_term_count' ) ) {
1153
+
1154
+ function _eml_update_post_term_count( $terms, $taxonomy ) {
1155
+
1156
+ global $wpdb;
1157
+
1158
+ $object_types = (array) $taxonomy->object_type;
1159
+
1160
+ foreach ( $object_types as &$object_type )
1161
+ list( $object_type ) = explode( ':', $object_type );
1162
+
1163
+ $object_types = array_unique( $object_types );
1164
+
1165
+ if ( false !== ( $check_attachments = array_search( 'attachment', $object_types ) ) )
1166
+ unset( $object_types[ $check_attachments ] );
1167
+
1168
+ if ( $object_types )
1169
+ $object_types = esc_sql( array_filter( $object_types, 'post_type_exists' ) );
1170
+
1171
+ foreach ( (array) $terms as $term ) {
1172
+
1173
+ $count = 0;
1174
+
1175
+ if ( $object_types )
1176
+ $count += (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts WHERE $wpdb->posts.ID = $wpdb->term_relationships.object_id AND post_status = 'publish' AND post_type IN ('" . implode("', '", $object_types ) . "') AND term_taxonomy_id = %d", $term ) );
1177
+
1178
+ do_action( 'edit_term_taxonomy', $term, $taxonomy->name );
1179
+ $wpdb->update( $wpdb->term_taxonomy, compact( 'count' ), array( 'term_taxonomy_id' => $term ) );
1180
+ do_action( 'edited_term_taxonomy', $term, $taxonomy->name );
1181
+ }
1182
  }
1183
  }
1184
 
css/eml-admin.css CHANGED
@@ -382,7 +382,7 @@ body.rtl .wpuxss-eml-button-container-right {
382
 
383
  /* == ui-dialog Styles == */
384
 
385
- .ui-dialog {
386
  z-index: 300000 !important;
387
  }
388
 
382
 
383
  /* == ui-dialog Styles == */
384
 
385
+ .eml-dialog-modal {
386
  z-index: 300000 !important;
387
  }
388
 
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.2.2
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.2.2';
31
 
32
 
33
 
@@ -179,9 +179,10 @@ if ( ! function_exists( 'wpuxss_eml_on_init' ) ) {
179
  'show_admin_column' => $params['show_admin_column'],
180
  'show_in_nav_menus' => $params['show_in_nav_menus'],
181
  'hierarchical' => $params['hierarchical'],
182
- 'update_count_callback' => '_update_generic_term_count',
183
  'sort' => $params['sort'],
184
  'show_in_rest' => $params['show_in_rest'],
 
185
  'rewrite' => array(
186
  'slug' => $params['rewrite']['slug'],
187
  'with_front' => $params['rewrite']['with_front']
@@ -243,16 +244,24 @@ if ( ! function_exists( 'wpuxss_eml_on_wp_loaded' ) ) {
243
  unregister_taxonomy_for_object_type( $taxonomy, 'attachment' );
244
  }
245
 
246
- // update_count_callback for attachment taxonomies if needed
 
 
 
 
 
 
247
  foreach ( $taxonomies as $taxonomy => $params ) {
248
 
249
- if ( in_array('attachment',$params->object_type) ) {
 
 
250
 
251
- if ( ! isset( $wp_taxonomies[$taxonomy]->update_count_callback ) ||
252
- empty( $wp_taxonomies[$taxonomy]->update_count_callback ) ) {
253
 
254
- $wp_taxonomies[$taxonomy]->update_count_callback = '_update_generic_term_count';
255
- }
256
  }
257
  }
258
 
@@ -363,68 +372,57 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
363
  $wpuxss_eml_lib_options = get_option('wpuxss_eml_lib_options');
364
  $wpuxss_eml_tax_options = get_option('wpuxss_eml_tax_options');
365
 
366
- // taxonomies for passing to media uploader's filter
367
- $wpuxss_eml_taxonomies = get_option('wpuxss_eml_taxonomies');
368
- if ( empty($wpuxss_eml_taxonomies) ) $wpuxss_eml_taxonomies = array();
369
 
370
- $all_taxonomies_array = array(); // all attachment taxonomies
371
- $taxonomies_array = array(); // attachment taxonomies excluding those without grid view filter
372
  $compat_taxonomies_to_hide = array();
373
- $compat_taxonomies_to_show = array();
374
- $compat_taxonomies = array();
375
 
376
- foreach ( get_object_taxonomies('attachment','object') as $taxonomy ) {
377
 
378
- $terms_array = array();
379
- $terms = array();
 
380
 
381
- if ( $wpuxss_eml_taxonomies[$taxonomy->name]['media_uploader_filter'] && function_exists( 'wp_terms_checklist' ) ) {
382
 
383
- ob_start();
384
 
385
- wp_terms_checklist( 0, array( 'taxonomy' => $taxonomy->name, 'checked_ontop' => false, 'walker' => new Walker_Media_Taxonomy_Uploader_Filter() ) );
386
 
387
- $html = '';
388
- if ( ob_get_contents() != false ) {
389
- $html = ob_get_contents();
390
- }
391
 
392
- ob_end_clean();
393
 
 
394
 
395
- $html = str_replace( '}{', '},{', $html );
396
- $html = '[' . $html . ']';
397
- $terms = json_decode( $html, true );
398
- $terms = array_filter( $terms );
399
 
 
400
 
401
- if ( ! empty( $terms ) ) {
402
 
403
- $taxonomies_array[$taxonomy->name] = array(
404
- 'singular_name' => $taxonomy->labels->singular_name,
405
- 'plural_name' => $taxonomy->labels->name,
406
- 'term_list' => $terms
407
- );
408
- }
409
- }
410
 
411
- $all_terms = get_terms( $taxonomy->name, array('fields'=>'id=>name','get'=>'all') );
412
- $all_taxonomies_array[$taxonomy->name] = array(
413
  'singular_name' => $taxonomy->labels->singular_name,
414
  'plural_name' => $taxonomy->labels->name,
415
- 'terms' => $all_terms
 
416
  );
417
 
418
- if ( ! $wpuxss_eml_taxonomies[$taxonomy->name]['media_popup_taxonomy_edit'] ) {
419
- $compat_taxonomies_to_hide[] = $taxonomy->name;
420
- }
421
- elseif ( $wpuxss_eml_tax_options['edit_all_as_hierarchical'] || $taxonomy->hierarchical ) {
422
- $compat_taxonomies_to_show[] = $taxonomy->name;
423
- }
424
 
425
- $compat_taxonomies[] = $taxonomy->name;
 
 
426
 
427
- } //endforeach
 
 
 
428
 
429
 
430
  // generic scripts
@@ -470,10 +468,12 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
470
 
471
 
472
  $media_views_l10n = array(
473
- 'taxonomies' => $taxonomies_array,
474
- 'compat_taxonomies' => $compat_taxonomies,
 
 
475
  'compat_taxonomies_to_hide' => $compat_taxonomies_to_hide,
476
- 'is_tax_compat' => count( $compat_taxonomies_to_show ) ? 1 : 0,
477
  'force_filters' => $wpuxss_eml_tax_options['force_filters'],
478
  'wp_version' => $wp_version,
479
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
@@ -510,7 +510,6 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
510
  );
511
 
512
  $enhanced_medialist_l10n = array(
513
- 'all_taxonomies' => $all_taxonomies_array,
514
  'uploaded_to' => __( 'Uploaded to post #', 'enhanced-media-library' ),
515
  'based_on' => __( 'Based On', 'enhanced-media-library' )
516
  );
@@ -596,7 +595,8 @@ if ( ! function_exists( 'wpuxss_eml_on_activation' ) ) {
596
  $wpuxss_eml_tax_options = array(
597
  'tax_archives' => 1,
598
  'edit_all_as_hierarchical' => 0,
599
- 'force_filters' => 0
 
600
  );
601
 
602
  $allowed_mimes = get_allowed_mime_types();
@@ -640,12 +640,12 @@ if ( ! function_exists( 'wpuxss_eml_on_update' ) ) {
640
 
641
  function wpuxss_eml_on_update() {
642
 
643
- $wpuxss_eml_taxonomies = get_option( 'wpuxss_eml_taxonomies' );
644
  $wpuxss_eml_lib_options = get_option( 'wpuxss_eml_lib_options', null );
645
  $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options', null );
646
 
647
 
648
- foreach( (array) $wpuxss_eml_taxonomies as $taxonomy => $params ) {
649
 
650
  $eml_media = intval( $params['eml_media'] );
651
 
@@ -703,9 +703,16 @@ if ( ! function_exists( 'wpuxss_eml_on_update' ) ) {
703
  $wpuxss_eml_tax_options = array(
704
  'tax_archives' => 1,
705
  'edit_all_as_hierarchical' => 0,
706
- 'force_filters' => 0
 
707
  );
708
  }
 
 
 
 
 
 
709
 
710
 
711
  // since 2.2.1
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
 
28
 
29
 
30
+ $wpuxss_eml_version = '2.3';
31
 
32
 
33
 
179
  'show_admin_column' => $params['show_admin_column'],
180
  'show_in_nav_menus' => $params['show_in_nav_menus'],
181
  'hierarchical' => $params['hierarchical'],
182
+ 'update_count_callback' => '_eml_update_attachment_term_count',
183
  'sort' => $params['sort'],
184
  'show_in_rest' => $params['show_in_rest'],
185
+ 'query_var' => $taxonomy,
186
  'rewrite' => array(
187
  'slug' => $params['rewrite']['slug'],
188
  'with_front' => $params['rewrite']['with_front']
244
  unregister_taxonomy_for_object_type( $taxonomy, 'attachment' );
245
  }
246
 
247
+
248
+ /**
249
+ * Clean up update_count_callback
250
+ * Set custom update_count_callback for post type
251
+ *
252
+ * @since 2.3
253
+ */
254
  foreach ( $taxonomies as $taxonomy => $params ) {
255
 
256
+ if ( in_array( 'attachment', $params->object_type ) &&
257
+ isset( $wp_taxonomies[$taxonomy]->update_count_callback ) &&
258
+ '_update_generic_term_count' === $wp_taxonomies[$taxonomy]->update_count_callback ) {
259
 
260
+ unset( $wp_taxonomies[$taxonomy]->update_count_callback );
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
 
372
  $wpuxss_eml_lib_options = get_option('wpuxss_eml_lib_options');
373
  $wpuxss_eml_tax_options = get_option('wpuxss_eml_tax_options');
374
 
375
+ $wpuxss_eml_taxonomies = get_option( 'wpuxss_eml_taxonomies', array() );
376
+ $media_taxonomies = get_object_taxonomies( 'attachment','object' );
377
+ $media_taxonomy_names = array_keys( $media_taxonomies );
378
 
379
+ $media_taxonomies_ready_for_script = array();
380
+ $filter_taxonomy_names_ready_for_script = array();
381
  $compat_taxonomies_to_hide = array();
 
 
382
 
 
383
 
384
+ $terms = get_terms( $media_taxonomy_names, array('fields'=>'all','get'=>'all') );
385
+ $terms_id_tt_id_ready_for_script = wpuxss_eml_get_media_term_pairs( $terms, 'id=>tt_id' );
386
+ $terms_id_name_ready_for_script = wpuxss_eml_get_media_term_pairs( $terms, 'id=>name' );
387
 
 
388
 
389
+ foreach ( $media_taxonomies as $taxonomy ) {
390
 
391
+ $taxonomy_terms = array();
392
 
 
 
 
 
393
 
394
+ ob_start();
395
 
396
+ wp_terms_checklist( 0, array( 'taxonomy' => $taxonomy->name, 'checked_ontop' => false, 'walker' => new Walker_Media_Taxonomy_Uploader_Filter() ) );
397
 
398
+ $html = '';
399
+ if ( ob_get_contents() != false ) {
400
+ $html = ob_get_contents();
401
+ }
402
 
403
+ ob_end_clean();
404
 
 
405
 
406
+ $html = str_replace( '}{', '},{', $html );
407
+ $html = '[' . $html . ']';
408
+ $taxonomy_terms = json_decode( $html, true );
 
 
 
 
409
 
410
+ $media_taxonomies_ready_for_script[$taxonomy->name] = array(
 
411
  'singular_name' => $taxonomy->labels->singular_name,
412
  'plural_name' => $taxonomy->labels->name,
413
+ 'term_list' => $taxonomy_terms,
414
+ 'terms' => $terms_id_name_ready_for_script
415
  );
416
 
 
 
 
 
 
 
417
 
418
+ if ( (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_uploader_filter'] ) {
419
+ $filter_taxonomy_names_ready_for_script[] = $taxonomy->name;
420
+ }
421
 
422
+ if ( ! (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_popup_taxonomy_edit'] ) {
423
+ $compat_taxonomies_to_hide[] = $taxonomy->name;
424
+ }
425
+ }
426
 
427
 
428
  // generic scripts
468
 
469
 
470
  $media_views_l10n = array(
471
+ 'terms' => $terms_id_tt_id_ready_for_script,
472
+ 'taxonomies' => $media_taxonomies_ready_for_script,
473
+ 'filter_taxonomies' => $filter_taxonomy_names_ready_for_script,
474
+ 'compat_taxonomies' => $media_taxonomy_names,
475
  'compat_taxonomies_to_hide' => $compat_taxonomies_to_hide,
476
+ 'is_tax_compat' => count( $media_taxonomy_names ) - count( $compat_taxonomies_to_hide ) > 0 ? 1 : 0,
477
  'force_filters' => $wpuxss_eml_tax_options['force_filters'],
478
  'wp_version' => $wp_version,
479
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
510
  );
511
 
512
  $enhanced_medialist_l10n = array(
 
513
  'uploaded_to' => __( 'Uploaded to post #', 'enhanced-media-library' ),
514
  'based_on' => __( 'Based On', 'enhanced-media-library' )
515
  );
595
  $wpuxss_eml_tax_options = array(
596
  'tax_archives' => 1,
597
  'edit_all_as_hierarchical' => 0,
598
+ 'force_filters' => 0,
599
+ 'show_count' => 1
600
  );
601
 
602
  $allowed_mimes = get_allowed_mime_types();
640
 
641
  function wpuxss_eml_on_update() {
642
 
643
+ $wpuxss_eml_taxonomies = get_option( 'wpuxss_eml_taxonomies', array() );
644
  $wpuxss_eml_lib_options = get_option( 'wpuxss_eml_lib_options', null );
645
  $wpuxss_eml_tax_options = get_option( 'wpuxss_eml_tax_options', null );
646
 
647
 
648
+ foreach( $wpuxss_eml_taxonomies as $taxonomy => $params ) {
649
 
650
  $eml_media = intval( $params['eml_media'] );
651
 
703
  $wpuxss_eml_tax_options = array(
704
  'tax_archives' => 1,
705
  'edit_all_as_hierarchical' => 0,
706
+ 'force_filters' => 0,
707
+ 'show_count' => 1
708
  );
709
  }
710
+ else {
711
+
712
+ // since 2.3
713
+ if ( ! isset( $wpuxss_eml_tax_options['show_count'] ) )
714
+ $wpuxss_eml_tax_options['show_count'] = 1;
715
+ }
716
 
717
 
718
  // since 2.2.1
js/eml-admin.js CHANGED
@@ -15,15 +15,16 @@
15
 
16
  var def = $.Deferred(),
17
 
18
- confirmdialog = $('<div id="dialog-modal"></div>').appendTo('body')
19
  .html( html )
20
  .dialog({
21
- modal : true,
22
- resizable : false,
23
- width : w,
24
- autoOpen : false,
25
- title : title,
26
- buttons : [
 
27
  {
28
  'text' : yes,
29
  'class' : yesClass,
@@ -55,15 +56,16 @@
55
 
56
  var def = $.Deferred(),
57
 
58
- alertdialog = $('<div id="dialog-modal"></div>').appendTo('body')
59
  .html( html )
60
  .dialog({
61
- modal : true,
62
- resizable : false,
63
- width : w,
64
- autoOpen : false,
65
- title : title,
66
- buttons : [
 
67
  {
68
  'text' : yes,
69
  'class' : yesClass,
@@ -89,7 +91,7 @@
89
  }
90
 
91
 
92
- window.emlFullscreenSpinnerStop = function( text ) {
93
  $('.fullscreen-spinner-box').remove();
94
  }
95
 
15
 
16
  var def = $.Deferred(),
17
 
18
+ confirmdialog = $('<div id="eml-dialog-modal"></div>').appendTo('body')
19
  .html( html )
20
  .dialog({
21
+ dialogClass : 'eml-dialog-modal',
22
+ modal : true,
23
+ resizable : false,
24
+ width : w,
25
+ autoOpen : false,
26
+ title : title,
27
+ buttons : [
28
  {
29
  'text' : yes,
30
  'class' : yesClass,
56
 
57
  var def = $.Deferred(),
58
 
59
+ alertdialog = $('<div id="eml-dialog-modal"></div>').appendTo('body')
60
  .html( html )
61
  .dialog({
62
+ dialogClass : 'eml-dialog-modal',
63
+ modal : true,
64
+ resizable : false,
65
+ width : w,
66
+ autoOpen : false,
67
+ title : title,
68
+ buttons : [
69
  {
70
  'text' : yes,
71
  'class' : yesClass,
91
  }
92
 
93
 
94
+ window.emlFullscreenSpinnerStop = function() {
95
  $('.fullscreen-spinner-box').remove();
96
  }
97
 
js/eml-enhanced-medialist.js CHANGED
@@ -17,7 +17,7 @@ function emlIsFilterBased( attrs ) {
17
  return true;
18
  }
19
 
20
- return _.some( eml.l10n.all_taxonomies, function( terms, taxonomy ) {
21
  return ( ! _.isUndefined( attrs[taxonomy] ) && ! _.isNull( attrs[taxonomy] ) );
22
  });
23
  }
@@ -209,7 +209,7 @@ function emlIsFilterBased( attrs ) {
209
 
210
  append = '<br class="clear" /><h3>' + eml.l10n.based_on + '</h3><label class="setting eml-filter-based"><ul class="eml-filter-based">';
211
 
212
- _.each( eml.l10n.all_taxonomies, function( attrs, taxonomy ) {
213
 
214
  var ids = library.props.get( taxonomy ),
215
  taxonomy_string;
17
  return true;
18
  }
19
 
20
+ return _.some( eml.l10n.taxonomies, function( terms, taxonomy ) {
21
  return ( ! _.isUndefined( attrs[taxonomy] ) && ! _.isNull( attrs[taxonomy] ) );
22
  });
23
  }
209
 
210
  append = '<br class="clear" /><h3>' + eml.l10n.based_on + '</h3><label class="setting eml-filter-based"><ul class="eml-filter-based">';
211
 
212
+ _.each( eml.l10n.taxonomies, function( attrs, taxonomy ) {
213
 
214
  var ids = library.props.get( taxonomy ),
215
  taxonomy_string;
js/eml-media-editor.js CHANGED
@@ -76,7 +76,7 @@ window.eml = window.eml || { l10n: {} };
76
  args.uploadedTo = attrs.id;
77
  }
78
 
79
- _.each( eml.l10n.all_taxonomies, function( terms, taxonomy ) {
80
 
81
  if ( attrs[taxonomy] ) {
82
 
@@ -174,7 +174,7 @@ window.eml = window.eml || { l10n: {} };
174
  }
175
 
176
 
177
- _.each( eml.l10n.all_taxonomies, function( terms, taxonomy ) {
178
 
179
  if ( props[taxonomy] ) {
180
  attrs[taxonomy] = props[taxonomy];
76
  args.uploadedTo = attrs.id;
77
  }
78
 
79
+ _.each( eml.l10n.taxonomies, function( terms, taxonomy ) {
80
 
81
  if ( attrs[taxonomy] ) {
82
 
174
  }
175
 
176
 
177
+ _.each( eml.l10n.taxonomies, function( terms, taxonomy ) {
178
 
179
  if ( props[taxonomy] ) {
180
  attrs[taxonomy] = props[taxonomy];
js/eml-media-list.js CHANGED
@@ -5,7 +5,7 @@
5
 
6
 
7
  $( document ).ready( function() {
8
-
9
  var $mainFilter = $('select[name="attachment-filter"]'),
10
  $dataFilter = $('select#filter-by-date'),
11
  $taxFilters = $('select.eml-taxonomy-filters'),
@@ -27,12 +27,11 @@
27
 
28
  if ( ! $mainFilter.prop( 'selectedIndex' ) &&
29
  ! $dataFilter.prop( 'selectedIndex' ) &&
30
- ! $taxFilters.filter( function() { return $(this).prop( 'selectedIndex' ) } ).get().length )
31
- {
32
  $resetFilters.prop( 'disabled', true );
33
  }
34
- else
35
- {
36
  $resetFilters.prop( 'disabled', false );
37
  }
38
 
@@ -57,12 +56,10 @@
57
 
58
  });
59
 
60
- function resetFilters( event )
61
- {
62
  if ( 'uncategorized' == event.data.checkFilter.val() )
63
- {
64
  event.data.resetFilter.prop( 'selectedIndex', 0 );
65
- }
66
  }
67
 
68
  })( jQuery );
5
 
6
 
7
  $( document ).ready( function() {
8
+
9
  var $mainFilter = $('select[name="attachment-filter"]'),
10
  $dataFilter = $('select#filter-by-date'),
11
  $taxFilters = $('select.eml-taxonomy-filters'),
27
 
28
  if ( ! $mainFilter.prop( 'selectedIndex' ) &&
29
  ! $dataFilter.prop( 'selectedIndex' ) &&
30
+ ! $taxFilters.filter( function() { return $(this).prop( 'selectedIndex' ) } ).get().length ) {
31
+
32
  $resetFilters.prop( 'disabled', true );
33
  }
34
+ else {
 
35
  $resetFilters.prop( 'disabled', false );
36
  }
37
 
56
 
57
  });
58
 
59
+ function resetFilters( event ) {
60
+
61
  if ( 'uncategorized' == event.data.checkFilter.val() )
 
62
  event.data.resetFilter.prop( 'selectedIndex', 0 );
 
63
  }
64
 
65
  })( jQuery );
js/eml-media-models.js CHANGED
@@ -6,7 +6,8 @@ window.eml = window.eml || { l10n: {} };
6
 
7
  var media = wp.media,
8
  Attachments = media.model.Attachments,
9
- Query = media.model.Query;
 
10
 
11
 
12
 
@@ -14,6 +15,39 @@ window.eml = window.eml || { l10n: {} };
14
 
15
 
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  _.extend( Attachments.prototype, {
18
 
19
  saveMenuOrder: function() {
@@ -64,6 +98,11 @@ window.eml = window.eml || { l10n: {} };
64
  this.created = new Date();
65
 
66
  this.filters.order = function( attachment ) {
 
 
 
 
 
67
  return attachment.get( 'menuOrder' ) === 0;
68
  };
69
 
6
 
7
  var media = wp.media,
8
  Attachments = media.model.Attachments,
9
+ Query = media.model.Query,
10
+ original = {};
11
 
12
 
13
 
15
 
16
 
17
 
18
+ original.Attachment = {
19
+
20
+ sync: media.model.Attachment.prototype.sync
21
+ };
22
+
23
+ _.extend( media.model.Attachment.prototype, {
24
+
25
+ sync: function( method, model, options ) {
26
+
27
+ var result = original.Attachment.sync.apply( this, arguments );
28
+
29
+
30
+ if ( 'delete' === method ) {
31
+
32
+ result.done( function( resp ) {
33
+
34
+ _.each( resp.tcount, function( count, term_id ) {
35
+
36
+ var $option = $( '.eml-taxonomy-filters option[value="'+term_id+'"]' ),
37
+ text = $option.text();
38
+
39
+ text = text.replace( /\(.*?\)/, '('+count+')' );
40
+ $option.text( text );
41
+ });
42
+ });
43
+ }
44
+
45
+ return result;
46
+ }
47
+ });
48
+
49
+
50
+
51
  _.extend( Attachments.prototype, {
52
 
53
  saveMenuOrder: function() {
98
  this.created = new Date();
99
 
100
  this.filters.order = function( attachment ) {
101
+
102
+ if ( ! this.comparator ) {
103
+ return true;
104
+ }
105
+
106
  return attachment.get( 'menuOrder' ) === 0;
107
  };
108
 
js/eml-media-views.js CHANGED
@@ -38,23 +38,21 @@ window.eml = window.eml || { l10n: {} };
38
  selection = this.get( 'selection' ),
39
  orderby = library.props.get( 'orderby' );
40
 
 
41
  if ( 'menuOrder' === orderby ) {
42
  library.saveMenuOrder();
43
  }
44
 
45
  library.reset( library.models );
46
 
47
- if ( selection.model.length ) {
48
- selection.trigger( 'selection:unsingle', selection.model, selection );
49
- selection.trigger( 'selection:single', selection.model, selection );
50
- }
51
  },
52
 
53
  uploading: function( attachment ) {
54
 
55
  var content = this.frame.content,
56
- selection = this.get( 'selection' ),
57
- library = this.get( 'library' );
58
 
59
 
60
  if ( 'upload' === content.mode() ) {
@@ -101,7 +99,18 @@ window.eml = window.eml || { l10n: {} };
101
  render: function() {
102
 
103
  var compat = this.model.get('compat'),
104
- $compat_el = this.$el;
 
 
 
 
 
 
 
 
 
 
 
105
 
106
  if ( ! compat || ! compat.item ) {
107
  return;
@@ -150,6 +159,7 @@ window.eml = window.eml || { l10n: {} };
150
  selection = this.controller.state().get( 'selection' ),
151
  resetFilterButton = this.controller.content.get().toolbar.get( 'resetFilterButton' ),
152
 
 
153
  all = $('.attachment-filters').length,
154
  unchanged = $('.attachment-filters').map(function(){
155
  return this.value
@@ -167,6 +177,12 @@ window.eml = window.eml || { l10n: {} };
167
  selection.reset();
168
  }
169
 
 
 
 
 
 
 
170
  if ( _.isUndefined( resetFilterButton ) ) {
171
  return;
172
  }
@@ -229,7 +245,7 @@ window.eml = window.eml || { l10n: {} };
229
  createFilters: function() {
230
 
231
  var uncategorizedProps,
232
- taxonomies = _.keys( eml.l10n.taxonomies );
233
 
234
 
235
  original.AttachmentFilters.All.createFilters.apply( this, arguments );
@@ -273,7 +289,7 @@ window.eml = window.eml || { l10n: {} };
273
  createFilters: function() {
274
 
275
  var uncategorizedProps,
276
- taxonomies = _.keys( eml.l10n.taxonomies );
277
 
278
 
279
  original.AttachmentFilters.Uploaded.createFilters.apply( this, arguments );
@@ -329,7 +345,7 @@ window.eml = window.eml || { l10n: {} };
329
  });
330
 
331
  filters.all = {
332
- text: eml.l10n.filter_by + self.options.singularName,
333
  props: {
334
  uncategorized : null,
335
  orderby : eml.l10n.media_orderby,
@@ -341,7 +357,7 @@ window.eml = window.eml || { l10n: {} };
341
  filters['all']['props'][self.options.taxonomy] = null;
342
 
343
  filters.in = {
344
- text: '&#8212; ' + eml.l10n.in + self.options.pluralName + ' &#8212;',
345
  props: {
346
  uncategorized : null,
347
  orderby : eml.l10n.media_orderby,
@@ -353,7 +369,7 @@ window.eml = window.eml || { l10n: {} };
353
  filters['in']['props'][self.options.taxonomy] = 'in';
354
 
355
  filters.not_in = {
356
- text: '&#8212; ' + eml.l10n.not_in + self.options.singularName + ' &#8212;',
357
  props: {
358
  uncategorized : null,
359
  orderby : eml.l10n.media_orderby,
@@ -423,7 +439,7 @@ window.eml = window.eml || { l10n: {} };
423
  $attachments = $browser.find('.attachments'),
424
  $uploader = $browser.find('.uploader-inline'),
425
  $toolbar = $browser.find('.media-toolbar'),
426
- $messages = $('.eml-media-css .updated:visible, .eml-media-css .error:visible');
427
 
428
 
429
  if ( ! this.controller.isModeActive( 'select' ) &&
@@ -520,7 +536,7 @@ window.eml = window.eml || { l10n: {} };
520
 
521
  $.each( eml.l10n.taxonomies, function( taxonomy, values ) {
522
 
523
- if ( values.term_list ) {
524
 
525
  self.toolbar.set( taxonomy+'FilterLabel', new media.view.Label({
526
  value: eml.l10n.filter_by + values.singular_name,
38
  selection = this.get( 'selection' ),
39
  orderby = library.props.get( 'orderby' );
40
 
41
+
42
  if ( 'menuOrder' === orderby ) {
43
  library.saveMenuOrder();
44
  }
45
 
46
  library.reset( library.models );
47
 
48
+ selection.trigger( 'selection:unsingle', selection.model, selection );
49
+ selection.trigger( 'selection:single', selection.model, selection );
 
 
50
  },
51
 
52
  uploading: function( attachment ) {
53
 
54
  var content = this.frame.content,
55
+ selection = this.get( 'selection' );
 
56
 
57
 
58
  if ( 'upload' === content.mode() ) {
99
  render: function() {
100
 
101
  var compat = this.model.get('compat'),
102
+ $compat_el = this.$el,
103
+ tcount = this.model.get('tcount');
104
+
105
+
106
+ _.each( tcount, function( count, term_id ) {
107
+
108
+ var $option = $( '.eml-taxonomy-filters option[value="'+term_id+'"]' ),
109
+ text = $option.text();
110
+
111
+ text = text.replace( /\(.*?\)/, '('+count+')' );
112
+ $option.text( text );
113
+ });
114
 
115
  if ( ! compat || ! compat.item ) {
116
  return;
159
  selection = this.controller.state().get( 'selection' ),
160
  resetFilterButton = this.controller.content.get().toolbar.get( 'resetFilterButton' ),
161
 
162
+
163
  all = $('.attachment-filters').length,
164
  unchanged = $('.attachment-filters').map(function(){
165
  return this.value
177
  selection.reset();
178
  }
179
 
180
+
181
+ if ( filter && media.view.settings.mediaTrash ) {
182
+ this.controller.toolbar.get().$('.media-selection').toggleClass( 'trash', 'trash' === filter.props.status );
183
+ }
184
+
185
+
186
  if ( _.isUndefined( resetFilterButton ) ) {
187
  return;
188
  }
245
  createFilters: function() {
246
 
247
  var uncategorizedProps,
248
+ taxonomies = _.intersection( _.keys( eml.l10n.taxonomies ), eml.l10n.filter_taxonomies );
249
 
250
 
251
  original.AttachmentFilters.All.createFilters.apply( this, arguments );
289
  createFilters: function() {
290
 
291
  var uncategorizedProps,
292
+ taxonomies = _.intersection( _.keys( eml.l10n.taxonomies ), eml.l10n.filter_taxonomies );
293
 
294
 
295
  original.AttachmentFilters.Uploaded.createFilters.apply( this, arguments );
345
  });
346
 
347
  filters.all = {
348
+ text: eml.l10n.filter_by + ' ' + self.options.singularName,
349
  props: {
350
  uncategorized : null,
351
  orderby : eml.l10n.media_orderby,
357
  filters['all']['props'][self.options.taxonomy] = null;
358
 
359
  filters.in = {
360
+ text: '&#8212; ' + eml.l10n.in + ' ' + self.options.pluralName + ' &#8212;',
361
  props: {
362
  uncategorized : null,
363
  orderby : eml.l10n.media_orderby,
369
  filters['in']['props'][self.options.taxonomy] = 'in';
370
 
371
  filters.not_in = {
372
+ text: '&#8212; ' + eml.l10n.not_in + ' ' + self.options.singularName + ' &#8212;',
373
  props: {
374
  uncategorized : null,
375
  orderby : eml.l10n.media_orderby,
439
  $attachments = $browser.find('.attachments'),
440
  $uploader = $browser.find('.uploader-inline'),
441
  $toolbar = $browser.find('.media-toolbar'),
442
+ $messages = $('.eml-media-css .updated:visible, .eml-media-css .error:visible, .eml-media-css .notice:visible');
443
 
444
 
445
  if ( ! this.controller.isModeActive( 'select' ) &&
536
 
537
  $.each( eml.l10n.taxonomies, function( taxonomy, values ) {
538
 
539
+ if ( -1 !== _.indexOf( eml.l10n.filter_taxonomies, taxonomy ) && values.term_list ) {
540
 
541
  self.toolbar.set( taxonomy+'FilterLabel', new media.view.Label({
542
  value: eml.l10n.filter_by + values.singular_name,
js/eml-mimetype-options.js CHANGED
@@ -27,8 +27,8 @@ window.eml = window.eml || { l10n: {} };
27
  });
28
 
29
  // on change of an extension during creation
30
- $(document).on('blur', '.wpuxss-eml-clone-mime .wpuxss-eml-type', function()
31
- {
32
  var extension = $(this).val().toLowerCase(),
33
  mime_type_tr = $(this).closest('tr');
34
 
@@ -43,8 +43,8 @@ window.eml = window.eml || { l10n: {} };
43
 
44
 
45
  // on change of a mime type during creation
46
- $(document).on('blur', '.wpuxss-eml-clone-mime .wpuxss-eml-mime', function()
47
- {
48
  var mime_type = $(this).val().toLowerCase(),
49
  mime_type_tr = $(this).closest('tr');
50
 
@@ -52,43 +52,41 @@ 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
- {
59
  return true;
60
- }
61
 
62
  return false;
63
  });
64
 
65
  // on mime types form submit
66
- $('#wpuxss-eml-form-mimetypes').submit(function( event )
67
- {
68
  submit_it = true;
69
  alert_text = '';
70
 
71
- $('.wpuxss-eml-clone-mime').each(function( index )
72
- {
73
- if ( !$('.wpuxss-eml-type',this).val() || $('.wpuxss-eml-type',this).val() == '' || !$('.wpuxss-eml-mime',this).val() || $('.wpuxss-eml-mime',this).val() == '' )
74
- {
75
  submit_it = false;
76
  alert_text = eml.l10n.mime.mime_error_empty_fields;
77
  }
78
- else if ( $('[id="'+$('.wpuxss-eml-type',this).val()+'"]').length > 0 || $('.wpuxss-eml-mime[value="'+$('.wpuxss-eml-mime',this).val()+'"]').length > 0 )
79
- {
80
  submit_it = false;
81
  alert_text = eml.l10n.mime.mime_error_duplicate;
82
  }
83
 
84
- if ( !$('.wpuxss-eml-singular',this).val() || $('.wpuxss-eml-singular',this).val() == '' || !$('.wpuxss-eml-plural',this).val() || $('.wpuxss-eml-plural',this).val() == '' )
85
- {
86
  $('.wpuxss-eml-singular',this).val($('.wpuxss-eml-mime',this).val());
87
  $('.wpuxss-eml-plural',this).val($('.wpuxss-eml-mime',this).val());
88
  }
89
  });
90
 
91
- if ( !submit_it && alert_text != '' ) alert(alert_text);
92
 
93
  return submit_it;
94
  });
27
  });
28
 
29
  // on change of an extension during creation
30
+ $( document ).on( 'blur', '.wpuxss-eml-clone-mime .wpuxss-eml-type', function() {
31
+
32
  var extension = $(this).val().toLowerCase(),
33
  mime_type_tr = $(this).closest('tr');
34
 
43
 
44
 
45
  // on change of a mime type during creation
46
+ $( document ).on( 'blur', '.wpuxss-eml-clone-mime .wpuxss-eml-mime', function() {
47
+
48
  var mime_type = $(this).val().toLowerCase(),
49
  mime_type_tr = $(this).closest('tr');
50
 
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());
86
  }
87
  });
88
 
89
+ if ( ! submit_it && alert_text != '' ) alert(alert_text);
90
 
91
  return submit_it;
92
  });
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-04-30 12:49+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: Markus Kottländer\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -36,13 +36,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:217
40
- #: core/options-pages.php:932 core/options-pages.php:1057
41
- #: core/options-pages.php:1370 core/options-pages.php:1547
42
  msgid "Media Settings"
43
  msgstr "Medien-Einstellungen"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:189
46
  msgid "Media Library"
47
  msgstr "Mediathek"
48
 
@@ -50,269 +50,270 @@ msgstr "Mediathek"
50
  msgid "Taxonomies"
51
  msgstr "Taxonomien"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:191
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"
60
 
61
- #: core/options-pages.php:188
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:190 core/options-pages.php:1078
66
  msgid "Media Taxonomies"
67
  msgstr "Media Taxonomien"
68
 
69
- #: core/options-pages.php:214 core/options-pages.php:520
70
- #: core/options-pages.php:928 core/options-pages.php:1053
71
- #: core/options-pages.php:1366
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr ""
74
 
75
- #: core/options-pages.php:228
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:229
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:233
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:235
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:237
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:240
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:245 core/options-pages.php:246
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:247 core/options-pages.php:257
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:249 core/options-pages.php:259
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:255 core/options-pages.php:256
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:272
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:279
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:286
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:290
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:296
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:298
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:306
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:378 core/options-pages.php:1102
148
- #: core/options-pages.php:1117 core/options-pages.php:1180
149
- #: core/options-pages.php:1249
150
  msgid "Edit"
151
  msgstr "Bearbeiten"
152
 
153
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
154
  msgid "Close"
155
  msgstr "Schließen"
156
 
157
- #: core/options-pages.php:380 core/options-pages.php:1118
158
- #: core/options-pages.php:1181
159
  msgid "View"
160
  msgstr "Anzeigen"
161
 
162
- #: core/options-pages.php:381 core/options-pages.php:1119
163
- #: core/options-pages.php:1182
164
  msgid "Update"
165
  msgstr "Aktualisieren"
166
 
167
- #: core/options-pages.php:382 core/options-pages.php:1120
168
- #: core/options-pages.php:1183
169
  msgid "Add New"
170
  msgstr ""
171
 
172
- #: core/options-pages.php:383 core/options-pages.php:1121
173
- #: core/options-pages.php:1184
174
  msgid "New"
175
  msgstr ""
176
 
177
- #: core/options-pages.php:384
178
  msgid "Name"
179
  msgstr ""
180
 
181
- #: core/options-pages.php:385 core/options-pages.php:1122
182
- #: core/options-pages.php:1185
183
  msgid "Parent"
184
  msgstr ""
185
 
186
- #: core/options-pages.php:386 core/options-pages.php:616
187
- #: core/options-pages.php:1116 core/options-pages.php:1179
188
- #: core/taxonomies.php:365 enhanced-media-library.php:490
189
  msgid "All"
190
  msgstr "Alle"
191
 
192
- #: core/options-pages.php:387 core/options-pages.php:1123
193
- #: core/options-pages.php:1186
194
  msgid "Search"
195
  msgstr "Durchsuchen"
196
 
197
- #: core/options-pages.php:389 core/options-pages.php:1167
198
  msgid "New Taxonomy"
199
  msgstr ""
200
 
201
- #: core/options-pages.php:391
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:392
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:393
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:394
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:395
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:396
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:398
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:399
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
 
236
- #: core/options-pages.php:401
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:402
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:403
245
- msgid "Please choose Singilar name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:404
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:406
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:407 core/options-pages.php:412
257
- #: core/options-pages.php:495
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:409 pro/core/options-pages.php:165
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:410 core/options-pages.php:492
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:411
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:413
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:451
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr ""
280
 
281
- #: core/options-pages.php:452
282
  msgid "Please fill into all fields."
283
  msgstr ""
284
 
285
- #: core/options-pages.php:453
286
  msgid "Duplicate extensions or MIME types. Please chose other one."
287
  msgstr ""
288
 
289
- #: core/options-pages.php:490 core/options-pages.php:607
290
  msgid "Complete Cleanup"
291
  msgstr ""
292
 
293
- #: core/options-pages.php:491
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:493
300
  msgid "Yes, delete all data"
301
  msgstr ""
302
 
303
- #: core/options-pages.php:494
304
  msgid "Cleaning..."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:525
308
  msgid "Enhanced Media Library Settings"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:535
312
  msgid "Export"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:539
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 +321,15 @@ msgid ""
320
  "another website."
321
  msgstr ""
322
 
323
- #: core/options-pages.php:544
324
  msgid "Export Plugin Settings"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:554
328
  msgid "Import"
329
  msgstr ""
330
 
331
- #: core/options-pages.php:558
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,148 +337,168 @@ msgid ""
336
  "another website using the export button above."
337
  msgstr ""
338
 
339
- #: core/options-pages.php:559
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:566
347
  msgid "Import Plugin Settings"
348
  msgstr ""
349
 
350
- #: core/options-pages.php:578
351
  msgid "Restore"
352
  msgstr ""
353
 
354
- #: core/options-pages.php:584
355
  msgid "No backup available at the moment."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:586
359
  msgid "Backup will be created automatically before any import operation."
360
  msgstr ""
361
 
362
- #: core/options-pages.php:590
363
  msgid ""
364
  "The backup has been automatically created before the latest import operation."
365
  msgstr ""
366
 
367
- #: core/options-pages.php:594
368
  msgid "Restore Settings from the Backup"
369
  msgstr ""
370
 
371
- #: core/options-pages.php:614
372
  msgid "What will be deleted:"
373
  msgstr ""
374
 
375
- #: core/options-pages.php:619
376
  msgid "All plugin options"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:620
380
  msgid "All plugin backups stored in database"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:624
384
  msgid "What will remain intact:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:625
388
  msgid "All media items"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:626
392
  msgid "All taxonomies not listed above"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:629
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:631
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:637
408
  msgid "Delete All Data & Deactivate"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:742
412
  msgid "Please upload a file to import settings."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:762
416
  msgid "Plugin settings imported."
417
  msgstr ""
418
 
419
- #: core/options-pages.php:809
420
  msgid "Plugin settings restored from the backup."
421
  msgstr ""
422
 
423
- #: core/options-pages.php:953
424
  msgid "Media Items Order"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:960
428
  msgid "Order media items by"
429
  msgstr ""
430
 
431
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgid "For media library and media popups"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:968
436
  msgid "Option allows to change order by drag and drop with Custom Order value."
437
  msgstr ""
438
 
439
- #: core/options-pages.php:973
440
  msgid "Sort order"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
444
  msgid "Media Shortcodes"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:999 core/options-pages.php:1002
448
  msgid "Enhanced media shortcodes"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1003
452
  msgid ""
453
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
454
  "upload date, and media items number limit"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1004
458
  msgid "Gallery example:"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1005
462
  msgid "Audio playlist example:"
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1006
466
  msgid "Video playlist example:"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1008
470
  #, php-format
471
  msgid ""
472
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1010
476
  #, php-format
477
  msgid "%sLearn more%s."
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1012
481
  #, php-format
482
  msgid ""
483
  "Please check out your gallery front-end and back-end functionality once this "
@@ -485,236 +506,244 @@ msgid ""
485
  "%s."
486
  msgstr ""
487
 
488
- #: core/options-pages.php:1082 core/options-pages.php:1229
489
  msgid "Assign following taxonomies to Media Library:"
490
  msgstr "Folgende Taxonomien der Mediathek zuweisen:"
491
 
492
- #: core/options-pages.php:1101 core/options-pages.php:1167
493
- #: core/options-pages.php:1248
494
  msgid "Assign Taxonomy"
495
  msgstr "Taxonomie zuweisen"
496
 
497
- #: core/options-pages.php:1102 core/options-pages.php:1249
498
  msgid "Edit Taxonomy"
499
  msgstr "Taxonomie bearbeiten"
500
 
501
- #: core/options-pages.php:1106 core/options-pages.php:1169
502
  msgid "Delete Taxonomy"
503
  msgstr "Taxonomie löschen"
504
 
505
- #: core/options-pages.php:1111 core/options-pages.php:1174
506
  msgid "Labels"
507
  msgstr ""
508
 
509
- #: core/options-pages.php:1113 core/options-pages.php:1176
510
  msgid "Singular"
511
  msgstr ""
512
 
513
- #: core/options-pages.php:1114 core/options-pages.php:1177
514
  msgid "Plural"
515
  msgstr ""
516
 
517
- #: core/options-pages.php:1115 core/options-pages.php:1178
518
  msgid "Menu Name"
519
  msgstr "Menü Name"
520
 
521
- #: core/options-pages.php:1128 core/options-pages.php:1151
522
- #: core/options-pages.php:1191 core/options-pages.php:1252
523
  msgid "Settings"
524
  msgstr "Einstellungen"
525
 
526
- #: core/options-pages.php:1130 core/options-pages.php:1193
527
  msgid "Taxonomy Name"
528
  msgstr "Taxonomie Name"
529
 
530
- #: core/options-pages.php:1131 core/options-pages.php:1194
531
  msgid "Hierarchical"
532
  msgstr "Hierarchisch"
533
 
534
- #: core/options-pages.php:1132 core/options-pages.php:1195
535
  msgid "Column for List View"
536
  msgstr ""
537
 
538
- #: core/options-pages.php:1133 core/options-pages.php:1153
539
- #: core/options-pages.php:1196 core/options-pages.php:1254
540
  msgid "Filter for List View"
541
  msgstr ""
542
 
543
- #: core/options-pages.php:1134 core/options-pages.php:1154
544
- #: core/options-pages.php:1197 core/options-pages.php:1255
545
  msgid "Filter for Grid View / Media Popup"
546
  msgstr ""
547
 
548
- #: core/options-pages.php:1135 core/options-pages.php:1155
549
- #: core/options-pages.php:1198 core/options-pages.php:1256
550
  msgid "Edit in Media Popup"
551
  msgstr ""
552
 
553
- #: core/options-pages.php:1136 core/options-pages.php:1199
554
  msgid "Show in Nav Menu"
555
  msgstr ""
556
 
557
- #: core/options-pages.php:1137 core/options-pages.php:1200
558
  msgid "Remember Terms Order (sort)"
559
  msgstr ""
560
 
561
- #: core/options-pages.php:1138 core/options-pages.php:1201
562
  msgid "Show in REST"
563
  msgstr ""
564
 
565
- #: core/options-pages.php:1139 core/options-pages.php:1202
566
  msgid "Rewrite Slug"
567
  msgstr ""
568
 
569
- #: core/options-pages.php:1140 core/options-pages.php:1203
570
  msgid "Slug with Front"
571
  msgstr ""
572
 
573
- #: core/options-pages.php:1215
574
  msgid "Add New Taxonomy"
575
  msgstr "Neue Taxonomie hinzufügen"
576
 
577
- #: core/options-pages.php:1225
578
  msgid "Non-Media Taxonomies"
579
  msgstr "Nicht-Medien Taxonimien"
580
 
581
- #: core/options-pages.php:1286
582
  msgid "Options"
583
  msgstr "Optionen"
584
 
585
- #: core/options-pages.php:1296 core/options-pages.php:1299
586
  msgid "Taxonomy archive pages"
587
  msgstr "Taxonomie Archiv Seiten"
588
 
589
- #: core/options-pages.php:1300
590
  msgid "Turn on media taxonomy archive pages on the front-end"
591
  msgstr "Medien Taxonomie Archive auf der Website aktivieren"
592
 
593
- #: core/options-pages.php:1301
594
  msgid ""
595
  "Re-save your permalink settings after this option change to make it work."
596
  msgstr ""
597
  "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
598
  "greift."
599
 
600
- #: core/options-pages.php:1307 core/options-pages.php:1310
601
  msgid "Assign all like hierarchical"
602
  msgstr "Alle als hierarchisch zuweisen"
603
 
604
- #: core/options-pages.php:1311
605
  msgid ""
606
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
607
  msgstr ""
608
  "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
609
  "Popups als hierarchisch an"
610
 
611
- #: core/options-pages.php:1317 core/options-pages.php:1320
612
  msgid "Force filters"
613
  msgstr "Filter erzwingen"
614
 
615
- #: core/options-pages.php:1321
616
  msgid "Show media filters for ANY Media Popup"
617
  msgstr ""
618
 
619
- #: core/options-pages.php:1322
620
  msgid "Try this if filters are not shown for third-party plugins or themes."
621
  msgstr ""
622
 
623
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
624
  msgid "Add New MIME Type"
625
  msgstr "Neuen MIME Type hinzufügen"
626
 
627
- #: core/options-pages.php:1394 core/options-pages.php:1449
628
  msgid "Extension"
629
  msgstr "Dateiendung"
630
 
631
- #: core/options-pages.php:1395 core/options-pages.php:1450
632
  msgid "MIME Type"
633
  msgstr "MIME Type"
634
 
635
- #: core/options-pages.php:1396 core/options-pages.php:1451
636
  msgid "Singular Label"
637
  msgstr "Singular Beschriftung"
638
 
639
- #: core/options-pages.php:1397 core/options-pages.php:1452
640
  msgid "Plural Label"
641
  msgstr "Plural Beschriftung"
642
 
643
- #: core/options-pages.php:1398 core/options-pages.php:1428
644
- #: core/options-pages.php:1441 core/options-pages.php:1453
645
  msgid "Add Filter"
646
  msgstr "Filter hinzufügen"
647
 
648
- #: core/options-pages.php:1399 core/options-pages.php:1429
649
- #: core/options-pages.php:1442 core/options-pages.php:1454
650
  msgid "Allow Upload"
651
  msgstr "Upload erlauben"
652
 
653
- #: core/options-pages.php:1443
654
  msgid "Delete MIME Type"
655
  msgstr "MIME Type löschen"
656
 
657
- #: core/options-pages.php:1460
658
  msgid "Restore WordPress default MIME Types"
659
  msgstr ""
660
 
661
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
662
  msgid "Save Changes"
663
  msgstr "Änderungen speichern"
664
 
665
- #: core/options-pages.php:1499
666
  msgid "Changelog"
667
  msgstr ""
668
 
669
- #: core/options-pages.php:1500
670
  msgid "What's new in"
671
  msgstr ""
672
 
673
- #: core/options-pages.php:1500
674
  msgid "version"
675
  msgstr ""
676
 
677
- #: core/options-pages.php:1503
678
  msgid "More features under the hood"
679
  msgstr ""
680
 
681
- #: core/options-pages.php:1505
682
  msgid "Support"
683
  msgstr ""
684
 
685
- #: core/options-pages.php:1506
686
  msgid "Feel free to ask for help on"
687
  msgstr ""
688
 
689
- #: core/options-pages.php:1506
690
  msgid "Support is free for both versions of the plugin."
691
  msgstr ""
692
 
693
- #: core/options-pages.php:1508
694
  msgid "Plugin rating"
695
  msgstr ""
696
 
697
- #: core/options-pages.php:1509
698
  msgid "Please"
699
  msgstr ""
700
 
701
- #: core/options-pages.php:1509
702
  msgid "vote for the plugin"
703
  msgstr ""
704
 
705
- #: core/options-pages.php:1509
706
  msgid "Thanks!"
707
  msgstr ""
708
 
709
- #: core/options-pages.php:1511
710
  msgid "Other plugins you may find useful"
711
  msgstr ""
712
 
713
- #: core/options-pages.php:1550
714
  msgid "Utility"
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1571
718
  msgid "Vote!"
719
  msgstr ""
720
 
@@ -726,336 +755,78 @@ msgstr ""
726
  msgid "Media Library settings saved."
727
  msgstr ""
728
 
729
- #: core/taxonomies.php:358 core/taxonomies.php:364
730
- #: enhanced-media-library.php:489
731
  msgid "Filter by"
732
  msgstr "Filtern nach"
733
 
734
- #: core/taxonomies.php:366 enhanced-media-library.php:491
735
  msgid "Not in"
736
  msgstr "Nicht in"
737
 
738
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
739
  msgid "All Uncategorized"
740
  msgstr "Alle unkategorisierten"
741
 
742
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
743
  msgid "Reset All Filters"
744
  msgstr "Alle Filter zurücksetzen"
745
 
746
- #: enhanced-media-library.php:523
747
  msgid "Uploaded to post #"
748
  msgstr ""
749
 
750
- #: enhanced-media-library.php:524
751
  msgid "Based On"
752
  msgstr ""
753
 
754
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
755
  msgid "Media Categories"
756
  msgstr ""
757
 
758
- #: enhanced-media-library.php:570
759
  msgid "Media Category"
760
  msgstr ""
761
 
762
- #: enhanced-media-library.php:572
763
  msgid "All Media Categories"
764
  msgstr ""
765
 
766
- #: enhanced-media-library.php:573
767
  msgid "Edit Media Category"
768
  msgstr ""
769
 
770
- #: enhanced-media-library.php:574
771
  msgid "View Media Category"
772
  msgstr ""
773
 
774
- #: enhanced-media-library.php:575
775
  msgid "Update Media Category"
776
  msgstr ""
777
 
778
- #: enhanced-media-library.php:576
779
  msgid "Add New Media Category"
780
  msgstr ""
781
 
782
- #: enhanced-media-library.php:577
783
  msgid "New Media Category Name"
784
  msgstr ""
785
 
786
- #: enhanced-media-library.php:578
787
  msgid "Parent Media Category"
788
  msgstr ""
789
 
790
- #: enhanced-media-library.php:579
791
  msgid "Parent Media Category:"
792
  msgstr ""
793
 
794
- #: enhanced-media-library.php:580
795
  msgid "Search Media Categories"
796
  msgstr ""
797
 
798
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
799
- msgid "Remove"
800
- msgstr "Entfernen"
801
-
802
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
803
- msgid "Deselect"
804
- msgstr "Auswahl entfernen"
805
-
806
- #: pro/core/bulk-edit.php:105
807
- msgid "Caption this image&hellip;"
808
- msgstr "Beschrifte dieses Bild&hellip;"
809
-
810
- #: pro/core/bulk-edit.php:109
811
- msgid "Describe this video&hellip;"
812
- msgstr "Beschreibe diese Video-Datei&hellip;"
813
-
814
- #: pro/core/bulk-edit.php:111
815
- msgid "Describe this audio file&hellip;"
816
- msgstr "Beschreibe diese Audio-Datei&hellip;"
817
-
818
- #: pro/core/bulk-edit.php:113
819
- msgid "Describe this media file&hellip;"
820
- msgstr "Beschreibe diese Medien-Datei&hellip;"
821
-
822
- #: pro/core/bulk-edit.php:122
823
- msgid "Attachments Details"
824
- msgstr "Mediendetails"
825
-
826
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
827
- msgid "Select All"
828
- msgstr "Alle auswählen"
829
-
830
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
831
- msgid "Edit Selection"
832
- msgstr "Auswahl bearbeiten"
833
-
834
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
835
- msgid "Deselect All"
836
- msgstr "Auswahl aller entfernen"
837
-
838
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
839
- msgid "Delete Selected"
840
- msgstr "Ausgewählte löschen"
841
-
842
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
843
- msgid "Order By"
844
- msgstr ""
845
-
846
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
847
- msgid "Date"
848
- msgstr ""
849
-
850
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
851
- msgid "Title"
852
- msgstr ""
853
-
854
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
855
- msgid "Custom Order"
856
- msgstr ""
857
-
858
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
859
- msgid "Random"
860
- msgstr ""
861
-
862
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
863
- msgid "Order"
864
- msgstr ""
865
-
866
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
867
- msgid "Ascending"
868
- msgstr ""
869
-
870
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
871
- msgid "Descending"
872
- msgstr ""
873
-
874
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
875
- msgid "Limit"
876
- msgstr ""
877
-
878
- #: pro/core/options-pages.php:78
879
- msgid "Your license has been deactivated."
880
- msgstr ""
881
-
882
- #: pro/core/options-pages.php:88
883
- msgid "Please check if your license key is correct and try again."
884
- msgstr ""
885
-
886
- #: pro/core/options-pages.php:101
887
- msgid ""
888
- "Wrong license key or a server error occured. Please check your license key "
889
- "and try again."
890
- msgstr ""
891
-
892
- #: pro/core/options-pages.php:111
893
- msgid "You license has been activated."
894
- msgstr ""
895
-
896
- #: pro/core/options-pages.php:164
897
- #, php-format
898
- msgid "Auto-assign media items to parent %s %s on upload"
899
- msgstr ""
900
-
901
- #: pro/core/options-pages.php:165
902
- #, php-format
903
- msgid ""
904
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
905
- "attached to a %s will be assigned to %s of their parent %s. Currently "
906
- "assigned %s will not be saved. Media items that are not attached to any %s "
907
- "will not be affected."
908
- msgstr ""
909
-
910
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
911
- msgid "Bulk Edit"
912
- msgstr "Massenbearbeitung"
913
-
914
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
915
- msgid "Turn off 'Save Changes' button"
916
- msgstr "'Änderungen speichern'-Button deaktivieren"
917
-
918
- #: pro/core/options-pages.php:200
919
- msgid "Save changes on the fly"
920
- msgstr "Änderungen sofort speichern"
921
-
922
- #: pro/core/options-pages.php:201
923
- msgid ""
924
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
925
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
926
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
927
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
928
- "files / taxonomies with this option turned on."
929
- msgstr ""
930
-
931
- #: pro/core/options-pages.php:202
932
- msgid ""
933
- "Strongly NOT recommended option if you work with more than hundred of files "
934
- "at a time."
935
- msgstr ""
936
- "NICHT empfohlene Option, wenn du mit mehr als hundert Dateien auf einmal "
937
- "arbeitest."
938
-
939
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
940
- msgid "License Key"
941
- msgstr "Lizenzschlüssel"
942
-
943
- #: pro/core/options-pages.php:252
944
- #, php-format
945
- msgid ""
946
- "To unlock updates please enter your license key below. You can get your "
947
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
948
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
949
- msgstr ""
950
-
951
- #: pro/core/options-pages.php:262
952
- msgid "Activate License"
953
- msgstr "Linzenz aktivieren"
954
-
955
- #: pro/core/options-pages.php:269
956
- msgid "Your license is active!"
957
- msgstr "Deine Lizenz ist aktiv!"
958
-
959
- #: pro/core/options-pages.php:273
960
- msgid "Deactivate License"
961
- msgstr ""
962
-
963
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
964
- msgid ""
965
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
966
- "this server&#8217;s configuration. If you continue to have problems, please "
967
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
968
- msgstr ""
969
- "Ein unerwarteter Fehler ist aufgetreten. Der Fehler kann bei WordPress.org "
970
- "oder der Konfiguration dieses Servers liegen. Wenn du weiterhin Probleme "
971
- "hast, kannst du im <a href=\"https://wordpress.org/support/\">Support Forum</"
972
- "a> um Hilfe bitten."
973
-
974
- #: pro/core/update.php:113
975
- msgid ""
976
- "(WordPress could not establish a secure connection to WordPress.org. Please "
977
- "contact your server administrator.)"
978
- msgstr ""
979
- "(WordPress konnte keine sichere Verbindung zu WordPress.org aufbauen. Bitte "
980
- "kontaktiere deinen Serveradministrator.)"
981
-
982
- #: pro/core/update.php:180
983
- #, php-format
984
- msgid ""
985
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
986
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
987
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
988
- msgstr ""
989
-
990
- #: pro/enhanced-media-library-pro.php:119
991
- msgid "ALL files belong to this item"
992
- msgstr "ALLE Dateien gehören zu diesem Eintrag"
993
-
994
- #: pro/enhanced-media-library-pro.php:120
995
- msgid "SOME files belong to this item"
996
- msgstr "EINIGE Dateien gehören zu diesem Eintrag"
997
-
998
- #: pro/enhanced-media-library-pro.php:121
999
- msgid "NO files belong to this item"
1000
- msgstr "KEINE Dateien gehören zu diesem Eintrag"
1001
-
1002
- #: pro/enhanced-media-library-pro.php:122
1003
- msgid "Changes saved."
1004
- msgstr "Änderungen gespeichert."
1005
-
1006
- #: pro/enhanced-media-library-pro.php:123
1007
- msgid "Something went wrong."
1008
- msgstr "Etwas ist schiefgelaufen."
1009
-
1010
- #: pro/enhanced-media-library-pro.php:126
1011
- msgid "Edit Media Files"
1012
- msgstr "Medien bearbeiten"
1013
-
1014
- #: pro/enhanced-media-library-pro.php:151
1015
- msgid "Create a filter-based gallery"
1016
- msgstr ""
1017
-
1018
- #: pro/enhanced-media-library-pro.php:152
1019
- msgid "Create a filter-based playlist"
1020
- msgstr ""
1021
-
1022
- #: pro/enhanced-media-library-pro.php:153
1023
- msgid "Create a filter-based video playlist"
1024
- msgstr ""
1025
-
1026
- #: pro/enhanced-media-library-pro.php:231
1027
- msgid ""
1028
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1029
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1030
- "will remain intact."
1031
- msgstr ""
1032
-
1033
- #: pro/enhanced-media-library-pro.php:231
1034
- msgid "Return to Plugins"
1035
- msgstr "zu Plugins zurückkehren"
1036
-
1037
- #: pro/enhanced-media-library-pro.php:282
1038
- msgid ""
1039
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1040
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1041
- "be active. Please network deactivate and delete the free versions of the "
1042
- "plugin. All your data will remain intact."
1043
- msgstr ""
1044
-
1045
- #: pro/enhanced-media-library-pro.php:299
1046
- msgid ""
1047
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1048
- "be active. Please deactivate and delete the free version of the plugin. All "
1049
- "your data will remain intact."
1050
- msgstr ""
1051
-
1052
- #: pro/enhanced-media-library-pro.php:315
1053
- msgid ""
1054
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1055
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1056
- "version to be active. Please deactivate (or network deactivate) and delete "
1057
- "the free version of the plugin for this site. All your data will remail "
1058
- "intact."
1059
  msgstr ""
1060
 
1061
  #. Description of the plugin/theme
@@ -1063,145 +834,6 @@ msgid ""
1063
  "This plugin will be handy for those who need to manage a lot of media files."
1064
  msgstr "Dieses Plugin ist nützlich für alle, die viele Medien verwalten."
1065
 
1066
- #~ msgid "Filter by "
1067
- #~ msgstr "Filtern nach "
1068
-
1069
- #~ msgid "Not in "
1070
- #~ msgstr "Nicht in"
1071
-
1072
- #~ msgid ""
1073
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1074
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1075
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1076
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1077
- #~ "of your media files / taxonomies with this option turned on."
1078
- #~ msgstr ""
1079
- #~ "Jeder Klick auf eine Taxonomie-Checkbox während der Massenbearbeitung von "
1080
- #~ "Medien führt zum <strong style=\"color:red\">sofortigen Speichern</"
1081
- #~ "strong> der Daten. Bitte sei vorsichtig! Es ist wesentlich "
1082
- #~ "wahrscheinlicher <strong style=\"color:red\">ausversehen falsche "
1083
- #~ "Zuweisungen</strong> von vielen Medien/Taxonomien durchzuführen, wenn "
1084
- #~ "diese Option aktiviert ist."
1085
-
1086
- #~ msgctxt "uploaded files"
1087
- #~ msgid "All (%s)"
1088
- #~ msgid_plural "All (%s)"
1089
- #~ msgstr[0] "Alle (%s)"
1090
- #~ msgstr[1] "Alle (%s)"
1091
-
1092
- #~ msgctxt "detached files"
1093
- #~ msgid "Unattached (%s)"
1094
- #~ msgid_plural "Unattached (%s)"
1095
- #~ msgstr[0] "Nirgendwo verwendet (%s)"
1096
- #~ msgstr[1] "Nirgendwo verwendet (%s)"
1097
-
1098
- #~ msgctxt "uploaded files"
1099
- #~ msgid "Trash (%s)"
1100
- #~ msgid_plural "Trash (%s)"
1101
- #~ msgstr[0] "Papierkorb (%s)"
1102
- #~ msgstr[1] "Papierkorb (%s)"
1103
-
1104
- #~ msgid "Filter"
1105
- #~ msgstr "Filter"
1106
-
1107
- #~ msgid "Empty Trash"
1108
- #~ msgstr "Papierkorb leeren"
1109
-
1110
- #~ msgid "You do not have permission to upload files."
1111
- #~ msgstr "Du hast nicht die Berechtigung um Dateien hochzuladen."
1112
-
1113
- #~ msgid "Overview"
1114
- #~ msgstr "Übersicht"
1115
-
1116
- #~ msgctxt "file"
1117
- #~ msgid "Add New"
1118
- #~ msgstr "Datei hinzufügen"
1119
-
1120
- #~ msgid "Available Actions"
1121
- #~ msgstr "Verfügbare Aktionen"
1122
-
1123
- #~ msgid "Attaching Files"
1124
- #~ msgstr "Dateien anhängen"
1125
-
1126
- #~ msgid "Undo"
1127
- #~ msgstr "Rückgängig"
1128
-
1129
- #~ msgid "Show media filters for ANY Media Popup."
1130
- #~ msgstr "Zeige Medien-Filter in JEDEM Medien-Popup"
1131
-
1132
- #~ msgid ""
1133
- #~ "May be useful for those who need forcing filters for third-party plugins "
1134
- #~ "or themes."
1135
- #~ msgstr ""
1136
- #~ "Nützlich für jene, die die Filter auch in Plugins oder Themes von "
1137
- #~ "Drittanbietern benötigen."
1138
-
1139
- #~ msgid "Restore default MIME Types"
1140
- #~ msgstr "Standard MIME Types wiederherstellen"
1141
-
1142
- #~ msgid ""
1143
- #~ "Please deactivate and <strong>remove</strong> the old version prior to "
1144
- #~ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1145
- #~ "will remain intact."
1146
- #~ msgstr ""
1147
- #~ "Bitte deaktiviere und <strong>entferne</strong> die alte Version bevor du "
1148
- #~ "<strong>Enhanced Media Library PRO</strong> aktivierst. Alle Daten "
1149
- #~ "bleiben erhalten."
1150
-
1151
- #~ msgid "EML PRO Updates"
1152
- #~ msgstr "EML PRO Updates"
1153
-
1154
- #~ msgid "Updates"
1155
- #~ msgstr "Updates"
1156
-
1157
- #~ msgid "Enhanced Media Library PRO License"
1158
- #~ msgstr "Enhanced Media Library PRO Lizenz"
1159
-
1160
- #~ msgid ""
1161
- #~ "To unlock updates, please enter your license key below. You can see your "
1162
- #~ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
1163
- #~ "Account</a>. If you don&#8217;t have a licence key, your are welcome to "
1164
- #~ "<a href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
1165
- #~ msgstr ""
1166
- #~ "Um Updates freizuschalten, gebe bitte deinen Lizenzschlüssel unten ein. "
1167
- #~ "Du kannst deinen Lizenzschlüssel in <a href=\"http://www.wpuxsolutions."
1168
- #~ "com/account/\">deinem Account</a> einsehen. Wenn du noch keinen "
1169
- #~ "Lizenzschlüssel hast, kannst du <a href=\"http://www.wpuxsolutions.com/"
1170
- #~ "pricing/\">hier</a> einen kaufen."
1171
-
1172
- #~ msgid ""
1173
- #~ "To unlock updates, please enter your license key on the <a href=\"%s"
1174
- #~ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
1175
- #~ "Account</a>. If you don&#8217;t have a licence key, your are welcome to "
1176
- #~ "<a href=\"%s\">purchase it</a>."
1177
- #~ msgstr ""
1178
- #~ "Um Updates freizuschalten gebe bitte deinen Lizenzschlüssel auf der <a "
1179
- #~ "href=\"%s\">Updates</a> Seite ein. Du kannst deinen Lizenzschlüssel in <a "
1180
- #~ "href=\"%s\">deinem Account</a> einsehen. Wenn du noch keinen "
1181
- #~ "Lizenzschlüssel hast, kannst du <a href=\"%s\">hier</a> einen kaufen."
1182
-
1183
- #~ msgid "Expand Details"
1184
- #~ msgstr "Details aufklappen"
1185
-
1186
- #~ msgid "Collapse Details"
1187
- #~ msgstr "Details zuklappen"
1188
-
1189
- #~ msgid "Validation Failed. One or more fields below are required."
1190
- #~ msgstr ""
1191
- #~ "Validierung fehlgeschlagen. Eines oder mehrere der Felder unten sind "
1192
- #~ "erfolderlich."
1193
-
1194
- #~ msgid ""
1195
- #~ "The changes you made will be lost if you navigate away from this page"
1196
- #~ msgstr "Deine Änderungen gehen verloren, wenn du diese Seite verlässt."
1197
-
1198
- #~ msgid ""
1199
- #~ "<strong>Enhanced Media Library PRO</strong> does not require free version "
1200
- #~ "to be active. Please deactivate and remove the free version of the plugin."
1201
- #~ msgstr ""
1202
- #~ "<strong>Enhanced Media Library PRO</strong> erfordert, dass die "
1203
- #~ "kostenlose Version nicht aktiviert ist. Bitte deaktiviere und entferne "
1204
- #~ "die kostenlose Version des Plugins."
1205
-
1206
- #~ msgid "Enhanced Media Library PRO"
1207
- #~ msgstr "Enhanced Media Library PRO"
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"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
+ #: core/options-pages.php:97 core/options-pages.php:236
40
+ #: core/options-pages.php: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
 
45
+ #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "Mediathek"
48
 
50
  msgid "Taxonomies"
51
  msgstr "Taxonomien"
52
 
53
+ #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "MIME Types"
56
 
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"
61
 
62
+ #: core/options-pages.php:207
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
 
76
+ #: core/options-pages.php:247
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:248
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:252
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:254
91
  msgid "Width"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:256
95
  msgid "Height"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:259
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:264 core/options-pages.php:265
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:266 core/options-pages.php:276
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:268 core/options-pages.php:278
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:274 core/options-pages.php:275
116
  msgid "Large size"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:291
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:298
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:305
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:309
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:315
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:317
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:325
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
+ #: core/options-pages.php:397 core/options-pages.php: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
 
154
+ #: core/options-pages.php:398
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
 
178
+ #: core/options-pages.php:403
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
 
202
+ #: core/options-pages.php:410
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:411
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
+ #: core/options-pages.php:412
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:413
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:414
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:415
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:417
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:418
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:420
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:421
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:422
246
+ msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:423
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:425
254
  msgid "Ok"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:426 core/options-pages.php:431
258
+ #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:428
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:430
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:432
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:470
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
  "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
  "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
  "%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
 
755
  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
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-es_ES.mo DELETED
Binary file
languages/enhanced-media-library-es_ES.po DELETED
@@ -1,1536 +0,0 @@
1
- # Copyright (C) 2015 Enhanced Media Library PRO
2
- # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library PRO\n"
6
- "POT-Creation-Date: 2016-04-30 12:50+0300\n"
7
- "PO-Revision-Date: \n"
8
- "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: \n"
10
- "Language: es_ES\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
- "X-Poedit-SearchPath-0: .\n"
22
- "X-Poedit-SearchPathExcluded-0: *.js\n"
23
-
24
- #: core/mime-types.php:30
25
- msgid "MIME Types settings restored."
26
- msgstr ""
27
-
28
- #: core/mime-types.php:39
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
- msgstr[1] " <span class=\"count\">(%s)</span>"
38
-
39
- #: core/options-pages.php:97 core/options-pages.php:217
40
- #: core/options-pages.php:932 core/options-pages.php:1057
41
- #: core/options-pages.php:1370 core/options-pages.php:1547
42
- msgid "Media Settings"
43
- msgstr "Configuración de Medios"
44
-
45
- #: core/options-pages.php:106 core/options-pages.php:189
46
- msgid "Media Library"
47
- msgstr "Media Library"
48
-
49
- #: core/options-pages.php:115
50
- msgid "Taxonomies"
51
- msgstr "Taxonomías"
52
-
53
- #: core/options-pages.php:124 core/options-pages.php:191
54
- msgid "MIME Types"
55
- msgstr "Tipos MIME"
56
-
57
- #: core/options-pages.php:135 core/options-pages.php:136
58
- msgid "Enhanced Media Library"
59
- msgstr "Media Library Mejorada"
60
-
61
- #: core/options-pages.php:188
62
- msgid "General"
63
- msgstr "General"
64
-
65
- #: core/options-pages.php:190 core/options-pages.php:1078
66
- msgid "Media Taxonomies"
67
- msgstr "Taxonomías de Medios"
68
-
69
- #: core/options-pages.php:214 core/options-pages.php:520
70
- #: core/options-pages.php:928 core/options-pages.php:1053
71
- #: core/options-pages.php:1366
72
- msgid "You do not have sufficient permissions to access this page."
73
- msgstr "No tiene permisos suficientes para acceder a esta página."
74
-
75
- #: core/options-pages.php:228
76
- msgid "Image sizes"
77
- msgstr ""
78
-
79
- #: core/options-pages.php:229
80
- msgid ""
81
- "The sizes listed below determine the maximum dimensions in pixels to use "
82
- "when adding an image to the Media Library."
83
- msgstr ""
84
-
85
- #: core/options-pages.php:233
86
- msgid "Thumbnail size"
87
- msgstr ""
88
-
89
- #: core/options-pages.php:235
90
- msgid "Width"
91
- msgstr ""
92
-
93
- #: core/options-pages.php:237
94
- msgid "Height"
95
- msgstr ""
96
-
97
- #: core/options-pages.php:240
98
- msgid ""
99
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
- msgstr ""
101
-
102
- #: core/options-pages.php:245 core/options-pages.php:246
103
- msgid "Medium size"
104
- msgstr ""
105
-
106
- #: core/options-pages.php:247 core/options-pages.php:257
107
- msgid "Max Width"
108
- msgstr ""
109
-
110
- #: core/options-pages.php:249 core/options-pages.php:259
111
- msgid "Max Height"
112
- msgstr ""
113
-
114
- #: core/options-pages.php:255 core/options-pages.php:256
115
- msgid "Large size"
116
- msgstr ""
117
-
118
- #: core/options-pages.php:272
119
- msgid "Embeds"
120
- msgstr ""
121
-
122
- #: core/options-pages.php:279
123
- msgid "Uploading Files"
124
- msgstr ""
125
-
126
- #: core/options-pages.php:286
127
- msgid "Store uploads in this folder"
128
- msgstr ""
129
-
130
- #: core/options-pages.php:290
131
- #, php-format
132
- msgid "Default is %s"
133
- msgstr ""
134
-
135
- #: core/options-pages.php:296
136
- msgid "Full URL path to files"
137
- msgstr ""
138
-
139
- #: core/options-pages.php:298
140
- msgid "Configuring this is optional. By default, it should be blank."
141
- msgstr ""
142
-
143
- #: core/options-pages.php:306
144
- msgid "Organize my uploads into month- and year-based folders"
145
- msgstr ""
146
-
147
- #: core/options-pages.php:378 core/options-pages.php:1102
148
- #: core/options-pages.php:1117 core/options-pages.php:1180
149
- #: core/options-pages.php:1249
150
- msgid "Edit"
151
- msgstr "Editar"
152
-
153
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
154
- msgid "Close"
155
- msgstr "Cerrar"
156
-
157
- #: core/options-pages.php:380 core/options-pages.php:1118
158
- #: core/options-pages.php:1181
159
- msgid "View"
160
- msgstr "Ver"
161
-
162
- #: core/options-pages.php:381 core/options-pages.php:1119
163
- #: core/options-pages.php:1182
164
- msgid "Update"
165
- msgstr "Actualización"
166
-
167
- #: core/options-pages.php:382 core/options-pages.php:1120
168
- #: core/options-pages.php:1183
169
- msgid "Add New"
170
- msgstr "Añadir Nuevo"
171
-
172
- #: core/options-pages.php:383 core/options-pages.php:1121
173
- #: core/options-pages.php:1184
174
- msgid "New"
175
- msgstr "Nuevo"
176
-
177
- #: core/options-pages.php:384
178
- msgid "Name"
179
- msgstr "Nombre"
180
-
181
- #: core/options-pages.php:385 core/options-pages.php:1122
182
- #: core/options-pages.php:1185
183
- msgid "Parent"
184
- msgstr "Padre"
185
-
186
- #: core/options-pages.php:386 core/options-pages.php:616
187
- #: core/options-pages.php:1116 core/options-pages.php:1179
188
- #: core/taxonomies.php:365 enhanced-media-library.php:490
189
- msgid "All"
190
- msgstr "Todo"
191
-
192
- #: core/options-pages.php:387 core/options-pages.php:1123
193
- #: core/options-pages.php:1186
194
- msgid "Search"
195
- msgstr "Buscar"
196
-
197
- #: core/options-pages.php:389 core/options-pages.php:1167
198
- msgid "New Taxonomy"
199
- msgstr "Nueva Taxonomía"
200
-
201
- #: core/options-pages.php:391
202
- msgid "Remove Taxonomy"
203
- msgstr ""
204
-
205
- #: core/options-pages.php:392
206
- msgid "Taxonomy will be removed."
207
- msgstr ""
208
-
209
- #: core/options-pages.php:393
210
- msgid ""
211
- "Taxonomy terms (categories) will remain intact in the database. If you "
212
- "create a taxonomy with the same name in the future, its terms (categories) "
213
- "will be available again."
214
- msgstr ""
215
-
216
- #: core/options-pages.php:394
217
- msgid "Media items will remain intact."
218
- msgstr ""
219
-
220
- #: core/options-pages.php:395
221
- msgid "Are you still sure?"
222
- msgstr ""
223
-
224
- #: core/options-pages.php:396
225
- msgid "Yes, remove taxonomy"
226
- msgstr ""
227
-
228
- #: core/options-pages.php:398
229
- msgid "Duplicate"
230
- msgstr ""
231
-
232
- #: core/options-pages.php:399
233
- msgid "Taxonomy with the same name already exists. Please chose other one."
234
- msgstr "Ya existe una taxonomía con el mismo nombre. Por favor elija otro."
235
-
236
- #: core/options-pages.php:401
237
- msgid "Empty Fields"
238
- msgstr ""
239
-
240
- #: core/options-pages.php:402
241
- msgid "Please choose Singular and Plural names for all new taxomonies."
242
- msgstr ""
243
-
244
- #: core/options-pages.php:403
245
- msgid "Please choose Singilar name for all new taxomonies."
246
- msgstr ""
247
-
248
- #: core/options-pages.php:404
249
- msgid "Please choose Plural Name for all new taxomonies."
250
- msgstr ""
251
-
252
- #: core/options-pages.php:406
253
- msgid "Ok"
254
- msgstr ""
255
-
256
- #: core/options-pages.php:407 core/options-pages.php:412
257
- #: core/options-pages.php:495
258
- msgid "Cancel"
259
- msgstr ""
260
-
261
- #: core/options-pages.php:409 pro/core/options-pages.php:165
262
- msgid "Synchronize Now"
263
- msgstr ""
264
-
265
- #: core/options-pages.php:410 core/options-pages.php:492
266
- msgid "This operation cannot be canceled! Are you still sure?"
267
- msgstr ""
268
-
269
- #: core/options-pages.php:411
270
- msgid "Synchronize"
271
- msgstr ""
272
-
273
- #: core/options-pages.php:413
274
- msgid "Synchronizing..."
275
- msgstr ""
276
-
277
- #: core/options-pages.php:451
278
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
- msgstr ""
280
- "¡Advertencia! Todos los tipos MIME personalizados serán eliminados por esta "
281
- "operación."
282
-
283
- #: core/options-pages.php:452
284
- msgid "Please fill into all fields."
285
- msgstr "Por favor, rellene todos los campos."
286
-
287
- #: core/options-pages.php:453
288
- msgid "Duplicate extensions or MIME types. Please chose other one."
289
- msgstr "Duplicar extensiones o tipos MIME. Por favor elija otra."
290
-
291
- #: core/options-pages.php:490 core/options-pages.php:607
292
- msgid "Complete Cleanup"
293
- msgstr ""
294
-
295
- #: core/options-pages.php:491
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:493
302
- msgid "Yes, delete all data"
303
- msgstr ""
304
-
305
- #: core/options-pages.php:494
306
- msgid "Cleaning..."
307
- msgstr ""
308
-
309
- #: core/options-pages.php:525
310
- msgid "Enhanced Media Library Settings"
311
- msgstr "Configuración Media Library Mejorada"
312
-
313
- #: core/options-pages.php:535
314
- msgid "Export"
315
- msgstr "Exportar"
316
-
317
- #: core/options-pages.php:539
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 "
321
- "configuration file. It allows you to easily import the configuration into "
322
- "another website."
323
- msgstr ""
324
-
325
- #: core/options-pages.php:544
326
- msgid "Export Plugin Settings"
327
- msgstr "Exportar la Configuración de Plugin"
328
-
329
- #: core/options-pages.php:554
330
- msgid "Import"
331
- msgstr "Importar"
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 imported from a "
337
- "configuration file which can be obtained by exporting the settings on "
338
- "another website using the export button above."
339
- msgstr ""
340
-
341
- #: core/options-pages.php:559
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:566
349
- msgid "Import Plugin Settings"
350
- msgstr "Importar la Configuración de Plugin"
351
-
352
- #: core/options-pages.php:578
353
- msgid "Restore"
354
- msgstr "Restaurar"
355
-
356
- #: core/options-pages.php:584
357
- msgid "No backup available at the moment."
358
- msgstr "Ninguna copia de seguridad disponible en este momento."
359
-
360
- #: core/options-pages.php:586
361
- msgid "Backup will be created automatically before any import operation."
362
- msgstr ""
363
- "Copia de seguridad se crea automáticamente antes de cualquier operación de "
364
- "importación."
365
-
366
- #: core/options-pages.php:590
367
- msgid ""
368
- "The backup has been automatically created before the latest import operation."
369
- msgstr ""
370
-
371
- #: core/options-pages.php:594
372
- msgid "Restore Settings from the Backup"
373
- msgstr "Restaurar la Configuración de la Copia de Seguridad"
374
-
375
- #: core/options-pages.php:614
376
- msgid "What will be deleted:"
377
- msgstr ""
378
-
379
- #: core/options-pages.php:619
380
- msgid "All plugin options"
381
- msgstr ""
382
-
383
- #: core/options-pages.php:620
384
- msgid "All plugin backups stored in database"
385
- msgstr ""
386
-
387
- #: core/options-pages.php:624
388
- msgid "What will remain intact:"
389
- msgstr ""
390
-
391
- #: core/options-pages.php:625
392
- msgid "All media items"
393
- msgstr ""
394
-
395
- #: core/options-pages.php:626
396
- msgid "All taxonomies not listed above"
397
- msgstr ""
398
-
399
- #: core/options-pages.php:629
400
- msgid ""
401
- "The plugin cannot delete itself because of security reason. Please delete it "
402
- "manually from plugin list after cleanup."
403
- msgstr ""
404
-
405
- #: core/options-pages.php:631
406
- msgid ""
407
- "If you are not sure about this operation please create a backup of your "
408
- "database prior to cleanup!"
409
- msgstr ""
410
-
411
- #: core/options-pages.php:637
412
- msgid "Delete All Data & Deactivate"
413
- msgstr ""
414
-
415
- #: core/options-pages.php:742
416
- msgid "Please upload a file to import settings."
417
- msgstr "Por favor, sube un archivo para importar la configuración."
418
-
419
- #: core/options-pages.php:762
420
- msgid "Plugin settings imported."
421
- msgstr "Configuración del plugin importada."
422
-
423
- #: core/options-pages.php:809
424
- msgid "Plugin settings restored from the backup."
425
- msgstr "Configuración del plugin restaurada desde la copia de seguridad."
426
-
427
- #: core/options-pages.php:953
428
- msgid "Media Items Order"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:960
432
- msgid "Order media items by"
433
- msgstr "Ordenar por elementos de medios"
434
-
435
- #: core/options-pages.php:967 core/options-pages.php:979
436
- msgid "For media library and media popups"
437
- msgstr "Para la biblioteca de medios y medios ventanas emergentes"
438
-
439
- #: core/options-pages.php:968
440
- msgid "Option allows to change order by drag and drop with Custom Order value."
441
- msgstr ""
442
- "Opción permite cambiar el orden de arrastrar y soltar con el valor de la "
443
- "orden de encargo."
444
-
445
- #: core/options-pages.php:973
446
- msgid "Sort order"
447
- msgstr "Orden de clasificación"
448
-
449
- #: core/options-pages.php:992
450
- msgid "Media Shortcodes"
451
- msgstr "Medios Shortcodes"
452
-
453
- #: core/options-pages.php:999 core/options-pages.php:1002
454
- msgid "Enhanced media shortcodes"
455
- msgstr "Códigos cortos multimedia mejorados"
456
-
457
- #: core/options-pages.php:1003
458
- msgid ""
459
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
460
- "upload date, and media items number limit"
461
- msgstr ""
462
-
463
- #: core/options-pages.php:1004
464
- msgid "Gallery example:"
465
- msgstr ""
466
-
467
- #: core/options-pages.php:1005
468
- msgid "Audio playlist example:"
469
- msgstr ""
470
-
471
- #: core/options-pages.php:1006
472
- msgid "Video playlist example:"
473
- msgstr ""
474
-
475
- #: core/options-pages.php:1008
476
- #, php-format
477
- msgid ""
478
- "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
479
- msgstr ""
480
- "%sAtención: %s Incompatibilidad con otra galería plugins o temas posibles!"
481
-
482
- #: core/options-pages.php:1010
483
- #, php-format
484
- msgid "%sLearn more%s."
485
- msgstr "%sLeer más%s"
486
-
487
- #: core/options-pages.php:1012
488
- #, php-format
489
- msgid ""
490
- "Please check out your gallery front-end and back-end functionality once this "
491
- "option activated. If you find an issue please inform plugin authors at %s or "
492
- "%s."
493
- msgstr ""
494
- "Por favor revise su funcionalidad front-end y back-end de galería una vez "
495
- "esta opción activada. Si encuentra un problema por favor informe a autores "
496
- "de plugin %s o %s."
497
-
498
- #: core/options-pages.php:1082 core/options-pages.php:1229
499
- msgid "Assign following taxonomies to Media Library:"
500
- msgstr "Asignar las siguientes taxonomías a Media Library:"
501
-
502
- #: core/options-pages.php:1101 core/options-pages.php:1167
503
- #: core/options-pages.php:1248
504
- msgid "Assign Taxonomy"
505
- msgstr "Asignar Taxonomía"
506
-
507
- #: core/options-pages.php:1102 core/options-pages.php:1249
508
- msgid "Edit Taxonomy"
509
- msgstr "Editar Taxonomía"
510
-
511
- #: core/options-pages.php:1106 core/options-pages.php:1169
512
- msgid "Delete Taxonomy"
513
- msgstr "Eliminar Taxonomía"
514
-
515
- #: core/options-pages.php:1111 core/options-pages.php:1174
516
- msgid "Labels"
517
- msgstr "Etiquetas"
518
-
519
- #: core/options-pages.php:1113 core/options-pages.php:1176
520
- msgid "Singular"
521
- msgstr "Singular"
522
-
523
- #: core/options-pages.php:1114 core/options-pages.php:1177
524
- msgid "Plural"
525
- msgstr "Plural"
526
-
527
- #: core/options-pages.php:1115 core/options-pages.php:1178
528
- msgid "Menu Name"
529
- msgstr "Nombre del menú"
530
-
531
- #: core/options-pages.php:1128 core/options-pages.php:1151
532
- #: core/options-pages.php:1191 core/options-pages.php:1252
533
- msgid "Settings"
534
- msgstr "Configuración"
535
-
536
- #: core/options-pages.php:1130 core/options-pages.php:1193
537
- msgid "Taxonomy Name"
538
- msgstr "Nombre deTaxonomía"
539
-
540
- #: core/options-pages.php:1131 core/options-pages.php:1194
541
- msgid "Hierarchical"
542
- msgstr "Jerarquizado"
543
-
544
- #: core/options-pages.php:1132 core/options-pages.php:1195
545
- msgid "Column for List View"
546
- msgstr ""
547
-
548
- #: core/options-pages.php:1133 core/options-pages.php:1153
549
- #: core/options-pages.php:1196 core/options-pages.php:1254
550
- msgid "Filter for List View"
551
- msgstr ""
552
-
553
- #: core/options-pages.php:1134 core/options-pages.php:1154
554
- #: core/options-pages.php:1197 core/options-pages.php:1255
555
- msgid "Filter for Grid View / Media Popup"
556
- msgstr ""
557
-
558
- #: core/options-pages.php:1135 core/options-pages.php:1155
559
- #: core/options-pages.php:1198 core/options-pages.php:1256
560
- msgid "Edit in Media Popup"
561
- msgstr "Edición en Medios Popup"
562
-
563
- #: core/options-pages.php:1136 core/options-pages.php:1199
564
- msgid "Show in Nav Menu"
565
- msgstr "Mostrar en el Menú de Navegación"
566
-
567
- #: core/options-pages.php:1137 core/options-pages.php:1200
568
- msgid "Remember Terms Order (sort)"
569
- msgstr "Recordar Términos Orden (clasificar)"
570
-
571
- #: core/options-pages.php:1138 core/options-pages.php:1201
572
- msgid "Show in REST"
573
- msgstr "Mostrar en REST"
574
-
575
- #: core/options-pages.php:1139 core/options-pages.php:1202
576
- msgid "Rewrite Slug"
577
- msgstr "Reescribir Slug"
578
-
579
- #: core/options-pages.php:1140 core/options-pages.php:1203
580
- msgid "Slug with Front"
581
- msgstr "Slug Frontal"
582
-
583
- #: core/options-pages.php:1215
584
- msgid "Add New Taxonomy"
585
- msgstr "Agregar Nueva Taxonomía"
586
-
587
- #: core/options-pages.php:1225
588
- msgid "Non-Media Taxonomies"
589
- msgstr "Sin-Medios Taxonomías "
590
-
591
- #: core/options-pages.php:1286
592
- msgid "Options"
593
- msgstr "Opciones"
594
-
595
- #: core/options-pages.php:1296 core/options-pages.php:1299
596
- msgid "Taxonomy archive pages"
597
- msgstr "Páginas de archivo taxonomía"
598
-
599
- #: core/options-pages.php:1300
600
- msgid "Turn on media taxonomy archive pages on the front-end"
601
- msgstr "Activar páginas de archivo de taxonomía multimedia en el front-end"
602
-
603
- #: core/options-pages.php:1301
604
- msgid ""
605
- "Re-save your permalink settings after this option change to make it work."
606
- msgstr ""
607
- "Vuelva a guardar la configuración de enlace permanente después de este "
608
- "cambio de opción de hacer que funcione."
609
-
610
- #: core/options-pages.php:1307 core/options-pages.php:1310
611
- msgid "Assign all like hierarchical"
612
- msgstr "Asignar todos como jerárquica"
613
-
614
- #: core/options-pages.php:1311
615
- msgid ""
616
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
617
- msgstr ""
618
- "Mostrar taxonomías sin jerárquicas como jerárquica en cuadrícula / Medios "
619
- "emergente"
620
-
621
- #: core/options-pages.php:1317 core/options-pages.php:1320
622
- msgid "Force filters"
623
- msgstr "Restablecer filtros"
624
-
625
- #: core/options-pages.php:1321
626
- msgid "Show media filters for ANY Media Popup"
627
- msgstr "Mostrar filtros de medios para cualquier medio emergente"
628
-
629
- #: core/options-pages.php:1322
630
- msgid "Try this if filters are not shown for third-party plugins or themes."
631
- msgstr ""
632
- "Prueba esto si los filtros no se muestran para plugins de terceros o temas."
633
-
634
- #: core/options-pages.php:1376
635
- msgid "Add New MIME Type"
636
- msgstr "Añadir Nuevo Tipo MIME"
637
-
638
- #: core/options-pages.php:1394 core/options-pages.php:1449
639
- msgid "Extension"
640
- msgstr "Extensiones"
641
-
642
- #: core/options-pages.php:1395 core/options-pages.php:1450
643
- msgid "MIME Type"
644
- msgstr "Tipo MIME"
645
-
646
- #: core/options-pages.php:1396 core/options-pages.php:1451
647
- msgid "Singular Label"
648
- msgstr "Etiqueta Singular"
649
-
650
- #: core/options-pages.php:1397 core/options-pages.php:1452
651
- msgid "Plural Label"
652
- msgstr "Etiqueta Plural"
653
-
654
- #: core/options-pages.php:1398 core/options-pages.php:1428
655
- #: core/options-pages.php:1441 core/options-pages.php:1453
656
- msgid "Add Filter"
657
- msgstr "Añadir filtro"
658
-
659
- #: core/options-pages.php:1399 core/options-pages.php:1429
660
- #: core/options-pages.php:1442 core/options-pages.php:1454
661
- msgid "Allow Upload"
662
- msgstr "Permite Subir"
663
-
664
- #: core/options-pages.php:1443
665
- msgid "Delete MIME Type"
666
- msgstr "Eliminar Tipo MIME"
667
-
668
- #: core/options-pages.php:1460
669
- msgid "Restore WordPress default MIME Types"
670
- msgstr "Restaurar tipos MIME por defecto de WordPress "
671
-
672
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
673
- msgid "Save Changes"
674
- msgstr "Guardar Cambios"
675
-
676
- #: core/options-pages.php:1499
677
- msgid "Changelog"
678
- msgstr ""
679
-
680
- #: core/options-pages.php:1500
681
- msgid "What's new in"
682
- msgstr ""
683
-
684
- #: core/options-pages.php:1500
685
- msgid "version"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1503
689
- msgid "More features under the hood"
690
- msgstr ""
691
-
692
- #: core/options-pages.php:1505
693
- msgid "Support"
694
- msgstr ""
695
-
696
- #: core/options-pages.php:1506
697
- msgid "Feel free to ask for help on"
698
- msgstr ""
699
-
700
- #: core/options-pages.php:1506
701
- msgid "Support is free for both versions of the plugin."
702
- msgstr ""
703
-
704
- #: core/options-pages.php:1508
705
- msgid "Plugin rating"
706
- msgstr ""
707
-
708
- #: core/options-pages.php:1509
709
- msgid "Please"
710
- msgstr ""
711
-
712
- #: core/options-pages.php:1509
713
- msgid "vote for the plugin"
714
- msgstr ""
715
-
716
- #: core/options-pages.php:1509
717
- msgid "Thanks!"
718
- msgstr ""
719
-
720
- #: core/options-pages.php:1511
721
- msgid "Other plugins you may find useful"
722
- msgstr ""
723
-
724
- #: core/options-pages.php:1550
725
- msgid "Utility"
726
- msgstr ""
727
-
728
- #: core/options-pages.php:1571
729
- msgid "Vote!"
730
- msgstr ""
731
-
732
- #: core/taxonomies.php:101
733
- msgid "Media Taxonomies settings saved."
734
- msgstr ""
735
-
736
- #: core/taxonomies.php:159
737
- msgid "Media Library settings saved."
738
- msgstr ""
739
-
740
- #: core/taxonomies.php:358 core/taxonomies.php:364
741
- #: enhanced-media-library.php:489
742
- msgid "Filter by"
743
- msgstr "Filtrar por"
744
-
745
- #: core/taxonomies.php:366 enhanced-media-library.php:491
746
- msgid "Not in"
747
- msgstr "No en"
748
-
749
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
750
- msgid "All Uncategorized"
751
- msgstr "Todo Sin Categoria"
752
-
753
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
754
- msgid "Reset All Filters"
755
- msgstr "Restablecer filtros"
756
-
757
- #: enhanced-media-library.php:523
758
- msgid "Uploaded to post #"
759
- msgstr "Subido a post #"
760
-
761
- #: enhanced-media-library.php:524
762
- msgid "Based On"
763
- msgstr "Basado en"
764
-
765
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
766
- msgid "Media Categories"
767
- msgstr ""
768
-
769
- #: enhanced-media-library.php:570
770
- msgid "Media Category"
771
- msgstr ""
772
-
773
- #: enhanced-media-library.php:572
774
- msgid "All Media Categories"
775
- msgstr ""
776
-
777
- #: enhanced-media-library.php:573
778
- msgid "Edit Media Category"
779
- msgstr ""
780
-
781
- #: enhanced-media-library.php:574
782
- msgid "View Media Category"
783
- msgstr ""
784
-
785
- #: enhanced-media-library.php:575
786
- msgid "Update Media Category"
787
- msgstr ""
788
-
789
- #: enhanced-media-library.php:576
790
- msgid "Add New Media Category"
791
- msgstr ""
792
-
793
- #: enhanced-media-library.php:577
794
- msgid "New Media Category Name"
795
- msgstr ""
796
-
797
- #: enhanced-media-library.php:578
798
- msgid "Parent Media Category"
799
- msgstr ""
800
-
801
- #: enhanced-media-library.php:579
802
- msgid "Parent Media Category:"
803
- msgstr ""
804
-
805
- #: enhanced-media-library.php:580
806
- msgid "Search Media Categories"
807
- msgstr ""
808
-
809
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
810
- msgid "Remove"
811
- msgstr "Eliminar"
812
-
813
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
814
- msgid "Deselect"
815
- msgstr "Deseleccionar"
816
-
817
- #: pro/core/bulk-edit.php:105
818
- msgid "Caption this image&hellip;"
819
- msgstr "Titula esta imagen&hellip;"
820
-
821
- #: pro/core/bulk-edit.php:109
822
- msgid "Describe this video&hellip;"
823
- msgstr "Describe este video&hellip;"
824
-
825
- #: pro/core/bulk-edit.php:111
826
- msgid "Describe this audio file&hellip;"
827
- msgstr "Describe este archivo de audio&hellip;"
828
-
829
- #: pro/core/bulk-edit.php:113
830
- msgid "Describe this media file&hellip;"
831
- msgstr "Describe este archivo multimedia&hellip;"
832
-
833
- #: pro/core/bulk-edit.php:122
834
- msgid "Attachments Details"
835
- msgstr "Detalles de Adjuntos"
836
-
837
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
838
- msgid "Select All"
839
- msgstr "Seleccionar Todo"
840
-
841
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
842
- msgid "Edit Selection"
843
- msgstr "Editar Selección"
844
-
845
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
846
- msgid "Deselect All"
847
- msgstr "Deseleccionar Todo"
848
-
849
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
850
- msgid "Delete Selected"
851
- msgstr "Eliminar Selección"
852
-
853
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
854
- msgid "Order By"
855
- msgstr "Ordenar por"
856
-
857
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
858
- msgid "Date"
859
- msgstr "Fecha"
860
-
861
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
862
- msgid "Title"
863
- msgstr "Título "
864
-
865
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
866
- msgid "Custom Order"
867
- msgstr "Orden Personalizado"
868
-
869
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
870
- msgid "Random"
871
- msgstr "Aleatorio"
872
-
873
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
874
- msgid "Order"
875
- msgstr "Orden"
876
-
877
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
878
- msgid "Ascending"
879
- msgstr "Ascendente"
880
-
881
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
882
- msgid "Descending"
883
- msgstr "Descendente"
884
-
885
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
886
- msgid "Limit"
887
- msgstr "Limite"
888
-
889
- #: pro/core/options-pages.php:78
890
- msgid "Your license has been deactivated."
891
- msgstr "La licencia ha sido desactivada."
892
-
893
- #: pro/core/options-pages.php:88
894
- msgid "Please check if your license key is correct and try again."
895
- msgstr ""
896
- "Por favor, compruebe si su clave de licencia es correcta e inténtelo de "
897
- "nuevo."
898
-
899
- #: pro/core/options-pages.php:101
900
- msgid ""
901
- "Wrong license key or a server error occured. Please check your license key "
902
- "and try again."
903
- msgstr ""
904
- "Clave de licencia incorrecta o un error de servidor se ha producido. Por "
905
- "favor verifique su clave de licencia y vuelva a intentarlo."
906
-
907
- #: pro/core/options-pages.php:111
908
- msgid "You license has been activated."
909
- msgstr "Licencia le ha sido activada."
910
-
911
- #: pro/core/options-pages.php:164
912
- #, php-format
913
- msgid "Auto-assign media items to parent %s %s on upload"
914
- msgstr ""
915
-
916
- #: pro/core/options-pages.php:165
917
- #, php-format
918
- msgid ""
919
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
920
- "attached to a %s will be assigned to %s of their parent %s. Currently "
921
- "assigned %s will not be saved. Media items that are not attached to any %s "
922
- "will not be affected."
923
- msgstr ""
924
-
925
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
926
- msgid "Bulk Edit"
927
- msgstr "Edición Masiva"
928
-
929
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
930
- msgid "Turn off 'Save Changes' button"
931
- msgstr "Desactivar el botón \"Guardar cambios\""
932
-
933
- #: pro/core/options-pages.php:200
934
- msgid "Save changes on the fly"
935
- msgstr "Guardar cambios sobre la marcha"
936
-
937
- #: pro/core/options-pages.php:201
938
- msgid ""
939
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
940
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
941
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
942
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
943
- "files / taxonomies with this option turned on."
944
- msgstr ""
945
-
946
- #: pro/core/options-pages.php:202
947
- msgid ""
948
- "Strongly NOT recommended option if you work with more than hundred of files "
949
- "at a time."
950
- msgstr ""
951
- "Fuertemente desaconsejada opción si trabaja con más de cientos de archivos a "
952
- "la vez."
953
-
954
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
955
- msgid "License Key"
956
- msgstr "Clave de Licencia"
957
-
958
- #: pro/core/options-pages.php:252
959
- #, php-format
960
- msgid ""
961
- "To unlock updates please enter your license key below. You can get your "
962
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
963
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
964
- msgstr ""
965
- "Para desbloquear actualizaciones Introduzca su clave de licencia a "
966
- "continuación. Puede obtener su clave de licencia en <a href=\"%s\">Su "
967
- "cuenta</a>. Si no tienes una licencia, eres Bienvenido a <a href=\"%s"
968
- "\">comprarlo</a>."
969
-
970
- #: pro/core/options-pages.php:262
971
- msgid "Activate License"
972
- msgstr "Activar Licencia"
973
-
974
- #: pro/core/options-pages.php:269
975
- msgid "Your license is active!"
976
- msgstr "Su licencia está activa!"
977
-
978
- #: pro/core/options-pages.php:273
979
- msgid "Deactivate License"
980
- msgstr "Desactivar Licencia"
981
-
982
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
983
- msgid ""
984
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
985
- "this server&#8217;s configuration. If you continue to have problems, please "
986
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
987
- msgstr ""
988
- "Ha sucedido un error inesperado. Puede que haya un problema con WordPress."
989
- "org o con la configuración de este servidor. Si continuas teniendo "
990
- "problemas, por favor prueba en los <a href=\"https://es.forums.wordpress.org"
991
- "\">foros de soporte</a>."
992
-
993
- #: pro/core/update.php:113
994
- msgid ""
995
- "(WordPress could not establish a secure connection to WordPress.org. Please "
996
- "contact your server administrator.)"
997
- msgstr ""
998
- "(WordPress no pudo establecer una conexión segura con WordPress.org. Por "
999
- "favor, contacta con el administrador de tu servidor.)"
1000
-
1001
- #: pro/core/update.php:180
1002
- #, php-format
1003
- msgid ""
1004
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1005
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1006
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1007
- msgstr ""
1008
- "Para desbloquear las actualizaciones, por favor, <a href=\"%s\">activate "
1009
- "your license</a>. Puede obtener su clave de licencia en <a href=\"%s\">Your "
1010
- "Account</a>. Si no tienes una licencia, eres Bienvenido a <a href=\"%s"
1011
- "\">purchase it</a>."
1012
-
1013
- #: pro/enhanced-media-library-pro.php:119
1014
- msgid "ALL files belong to this item"
1015
- msgstr "TODOS los archivos pertenecen a esta partida"
1016
-
1017
- #: pro/enhanced-media-library-pro.php:120
1018
- msgid "SOME files belong to this item"
1019
- msgstr "ALGUNOS ficheros pertenecen a esta partida"
1020
-
1021
- #: pro/enhanced-media-library-pro.php:121
1022
- msgid "NO files belong to this item"
1023
- msgstr "No hay archivos pertenecientes a esta partida"
1024
-
1025
- #: pro/enhanced-media-library-pro.php:122
1026
- msgid "Changes saved."
1027
- msgstr "Cambios guardados"
1028
-
1029
- #: pro/enhanced-media-library-pro.php:123
1030
- msgid "Something went wrong."
1031
- msgstr "Algo ha salido mal"
1032
-
1033
- #: pro/enhanced-media-library-pro.php:126
1034
- msgid "Edit Media Files"
1035
- msgstr "Editar Archivos de Medios"
1036
-
1037
- #: pro/enhanced-media-library-pro.php:151
1038
- msgid "Create a filter-based gallery"
1039
- msgstr "Crear una galería basada en filtros"
1040
-
1041
- #: pro/enhanced-media-library-pro.php:152
1042
- msgid "Create a filter-based playlist"
1043
- msgstr "Crear una lista de reproducción basada en filtros"
1044
-
1045
- #: pro/enhanced-media-library-pro.php:153
1046
- msgid "Create a filter-based video playlist"
1047
- msgstr "Crear una lista de reproducción de vídeo basada en filtros"
1048
-
1049
- #: pro/enhanced-media-library-pro.php:231
1050
- msgid ""
1051
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1052
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1053
- "will remain intact."
1054
- msgstr ""
1055
- "Por favor, desactivar y <strong>eliminar</strong> la vieja versión libre "
1056
- "antes de la activación de <strong>Enhanced Media Library PRO</strong> . "
1057
- "Todos los datos permanecerán intactos."
1058
-
1059
- #: pro/enhanced-media-library-pro.php:231
1060
- msgid "Return to Plugins"
1061
- msgstr "Regresar a la página de plugins"
1062
-
1063
- #: pro/enhanced-media-library-pro.php:282
1064
- msgid ""
1065
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1066
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1067
- "be active. Please network deactivate and delete the free versions of the "
1068
- "plugin. All your data will remain intact."
1069
- msgstr ""
1070
-
1071
- #: pro/enhanced-media-library-pro.php:299
1072
- msgid ""
1073
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1074
- "be active. Please deactivate and delete the free version of the plugin. All "
1075
- "your data will remain intact."
1076
- msgstr ""
1077
- "<Strong>Enhanced Media Library PRO </ strong> no requiere la versión libre "
1078
- "activada. Por favor, desactivar y eliminar la versión gratuita del plug-in. "
1079
- "Todos los datos permanecerán intactos."
1080
-
1081
- #: pro/enhanced-media-library-pro.php:315
1082
- msgid ""
1083
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1084
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1085
- "version to be active. Please deactivate (or network deactivate) and delete "
1086
- "the free version of the plugin for this site. All your data will remail "
1087
- "intact."
1088
- msgstr ""
1089
- "Ambas versiones libres y PRO de Enhanced Media Library están activas en este "
1090
- "sitio. <Strong> Enhanced Media Library </ strong> no requiere la versión "
1091
- "libre activada. Por favor, desactive y elimine (o desactive) la versión "
1092
- "gratuita del plug-in para este sitio. Todos los datos permanecerán intactos."
1093
-
1094
- #. Description of the plugin/theme
1095
- msgid ""
1096
- "This plugin will be handy for those who need to manage a lot of media files."
1097
- msgstr ""
1098
-
1099
- #~ msgid ""
1100
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1101
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1102
- #~ "be lost."
1103
- #~ msgstr ""
1104
- #~ "Taxonomía se eliminará permanentemente! Sus archivos de medios "
1105
- #~ "permanecerán intactos, pero se pierden todas las conexiones con esta "
1106
- #~ "taxonomía y sus términos."
1107
-
1108
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1109
- #~ msgstr ""
1110
- #~ "Por favor seleccione los nombres en singular y plural para todos sus "
1111
- #~ "nuevas taxonomías."
1112
-
1113
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1114
- #~ msgstr ""
1115
- #~ "Por favor, elija el nombre Singular para todas sus nuevas taxonomías."
1116
-
1117
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1118
- #~ msgstr "Por favor, elija el Nombre Plural para todas sus nuevas taxonomías."
1119
-
1120
- #~ msgid ""
1121
- #~ "There is already a taxonomy with the same name. Please chose other one."
1122
- #~ msgstr "Ya existe una taxonomía con el mismo nombre. Por favor elija otro."
1123
-
1124
- #~ msgid ""
1125
- #~ "The plugin settings <strong>Media Settings > Taxonomies</strong> and "
1126
- #~ "<strong>Media Settings > MIME Types</strong> will be exported to a "
1127
- #~ "configuration file. It allows you to easily import the configuration into "
1128
- #~ "another website."
1129
- #~ msgstr ""
1130
- #~ "La configuración del plugin <strong>Ajustes de Medios> Taxonomías</"
1131
- #~ "strong> y <strong>Configuración de Contenido> Tipos MIME</strong> se "
1132
- #~ "pueden exportar a un archivo de configuración. Le permite importar "
1133
- #~ "fácilmente la configuración en otro sitio web."
1134
-
1135
- #~ msgid ""
1136
- #~ "The plugin settings <strong>Media Settings > Taxonomies</strong> and "
1137
- #~ "<strong>Media Settings > MIME Types</strong> will be imported from a "
1138
- #~ "configuration file which can be obtained by exporting the settings on "
1139
- #~ "another website using the export button above."
1140
- #~ msgstr ""
1141
- #~ "La configuración del plugin <strong>Ajustes medios> Taxonomías</strong> "
1142
- #~ "y <strong>Ajustes de este contenido> Tipos MIME</strong> serán "
1143
- #~ "importados de un archivo de configuración que se puede obtener mediante "
1144
- #~ "la exportación de la configuración de otro sitio web mediante el botón de "
1145
- #~ "exportación arriba."
1146
-
1147
- #~ msgid ""
1148
- #~ "All plugin settings will be overriden by the import. You will have a "
1149
- #~ "chance to restore current data from an automatic backup in case you are "
1150
- #~ "not satisfied with the result of the import."
1151
- #~ msgstr ""
1152
- #~ "Todos los ajustes del plugin serán invalidados por la importación. Tendrá "
1153
- #~ "la oportunidad de restaurar los datos actuales desde una copia de "
1154
- #~ "seguridad automática en caso de que no está satisfecho con el resultado "
1155
- #~ "de la importación."
1156
-
1157
- #~ msgid ""
1158
- #~ "The backup had been automatically created before the latest import "
1159
- #~ "opetarion."
1160
- #~ msgstr ""
1161
- #~ "La copia de seguridad se ha creado de forma automática antes de la última "
1162
- #~ "operación de importación."
1163
-
1164
- #~ msgid ""
1165
- #~ "Enhance WordPress media shortcodes to make them understand media "
1166
- #~ "taxonomies, uploade date, and media items number limit"
1167
- #~ msgstr ""
1168
- #~ "Mejorar códigos cortos de WordPress medios para hacerles entender las "
1169
- #~ "taxonomías de los medios, la fecha actualizada y elementos multimedia "
1170
- #~ "límite de número"
1171
-
1172
- #~ msgid ""
1173
- #~ "Gallery example: [gallery media_category=\"5\" limit=\"10\" monthnum="
1174
- #~ "\"12\" year=\"2015\"]"
1175
- #~ msgstr ""
1176
- #~ "Ejemplo de Galería: [categoría de galería de medios =\"5\" límite = "
1177
- #~ "\"10\" numero de mes = \"12\" año = \"2015\"]"
1178
-
1179
- #~ msgid ""
1180
- #~ "Audio playlist example: [playlist media_category=\"5\" limit=\"10\" "
1181
- #~ "monthnum=\"12\" year=\"2015\"]"
1182
- #~ msgstr ""
1183
- #~ "Ejemplo de lista de reproducción de audio: [lista de reproducción "
1184
- #~ "categoría de medios = límite de \"5\" = \"10\" numero de mes = \"12\" año "
1185
- #~ "= \"2015\"]"
1186
-
1187
- #~ msgid ""
1188
- #~ "Video playlist example: [playlist type=\"video\" media_category=\"5\" "
1189
- #~ "limit=\"10\" monthnum=\"12\" year=\"2015\"]"
1190
- #~ msgstr ""
1191
- #~ "vídeo de ejemplo lista de reproducción: [Tipo de lista de reproducción = "
1192
- #~ "\"video\" categoría de medios = \"5\" límite = \"10\" numero de mes = "
1193
- #~ "\"12\" año = \"2015\"]"
1194
-
1195
- #~ msgid "Filter by "
1196
- #~ msgstr "Filtrar por"
1197
-
1198
- #~ msgid "Not in "
1199
- #~ msgstr "No en"
1200
-
1201
- #~ msgid ""
1202
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1203
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1204
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1205
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1206
- #~ "of your media files / taxonomies with this option turned on."
1207
- #~ msgstr ""
1208
- #~ "Cualquier clic en una casilla de la taxonomía en los medios de "
1209
- #~ "comunicación archivos edición mayor dará lugar a <strong style=\"color:red"
1210
- #~ "\">un</strong> ahorro inmediato de los datos. Por favor, tenga cuidado! "
1211
- #~ "Usted tiene muchas más posibilidades <strong style=\"color:red\">de</"
1212
- #~ "strong> realizar <strong style=\"color:red\">accidentalmente mal re-"
1213
- #~ "asignación de</strong> una gran cantidad de archivos multimedia / "
1214
- #~ "taxonomías con esta opción habilitada."
1215
-
1216
- #~ msgid ""
1217
- #~ "Both FREE and PRO versions of the Enhanced Media Library are network "
1218
- #~ "active. <strong>Enhanced Media Library PRO</strong> does not require free "
1219
- #~ "version to be active. Please network deactivate and delete the free "
1220
- #~ "versions of the plugin. All your data will remail intact."
1221
- #~ msgstr ""
1222
- #~ "Ambas versiones libres y PRO de Enhanced Media Library están activas. "
1223
- #~ "<Strong>Enhanced Media Library </ strong> no requiere la versión libre "
1224
- #~ "activada. Por favor desactivar red y eliminar las versiones libres del "
1225
- #~ "plugin. Todos los datos permanecerán intactos."
1226
-
1227
- #~ msgctxt "uploaded files"
1228
- #~ msgid "All (%s)"
1229
- #~ msgid_plural "All (%s)"
1230
- #~ msgstr[0] "Todo (%s)"
1231
- #~ msgstr[1] "Todos %s"
1232
-
1233
- #~ msgctxt "detached files"
1234
- #~ msgid "Unattached (%s)"
1235
- #~ msgid_plural "Unattached (%s)"
1236
- #~ msgstr[0] "No Disponible (%s)"
1237
- #~ msgstr[1] "No Disponibles (%s)"
1238
-
1239
- #~ msgctxt "uploaded files"
1240
- #~ msgid "Trash (%s)"
1241
- #~ msgid_plural "Trash (%s)"
1242
- #~ msgstr[0] "Papelera (%s)"
1243
- #~ msgstr[1] "Papeleras (%s)"
1244
-
1245
- #~ msgid "Filter"
1246
- #~ msgstr "Filtro"
1247
-
1248
- #~ msgid "Empty Trash"
1249
- #~ msgstr "Vaciar Papelera"
1250
-
1251
- #~ msgid "You do not have permission to upload files."
1252
- #~ msgstr "No tienes autorización para subir archivos."
1253
-
1254
- #~ msgid "Overview"
1255
- #~ msgstr "Presentación"
1256
-
1257
- #~ msgid ""
1258
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1259
- #~ "the most recent uploads listed first."
1260
- #~ msgstr ""
1261
- #~ "Todos los archivos que has subido se enumeran en la biblioteca de medios, "
1262
- #~ "con los más recientes archivos mencionados en primer lugar."
1263
-
1264
- #~ msgid ""
1265
- #~ "You can view your media in a simple visual grid or a list with columns. "
1266
- #~ "Switch between these views using the icons to the left above the media."
1267
- #~ msgstr ""
1268
- #~ "Puede ver sus medios de comunicación en una rejilla visual simple o una "
1269
- #~ "lista con las columnas. Cambiar entre estas vistas utilizando los iconos "
1270
- #~ "situados a la izquierda por encima de la media."
1271
-
1272
- #~ msgid ""
1273
- #~ "To delete media items, click the Bulk Select button at the top of the "
1274
- #~ "screen. Select any items you wish to delete, then click the Delete "
1275
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1276
- #~ "viewing your media."
1277
- #~ msgstr ""
1278
- #~ "Para eliminar elementos multimedia, haga clic en el botón de selección a "
1279
- #~ "granel en la parte superior de la pantalla. Seleccione los elementos que "
1280
- #~ "desea eliminar y, a continuación, haga clic en el botón Eliminar el "
1281
- #~ "artículo seleccionado. Al hacer clic en el botón Cancelar Selección le "
1282
- #~ "lleva de vuelta a la visualización de sus medios de comunicación."
1283
-
1284
- #~ msgid "Attachment Details"
1285
- #~ msgstr "Detalles de Adjuntos"
1286
-
1287
- #~ msgid ""
1288
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1289
- #~ "you to preview media and make quick edits. Any changes you make to the "
1290
- #~ "attachment details will be automatically saved."
1291
- #~ msgstr ""
1292
- #~ "Al hacer clic en un elemento mostrará un archivo adjunto Detalles de "
1293
- #~ "diálogo, que le permite una vista previa de los medios de comunicación y "
1294
- #~ "realizar ediciones rápidas. Cualquier cambio que realice en los detalles "
1295
- #~ "de fijación se guardarán automáticamente."
1296
-
1297
- #~ msgid ""
1298
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1299
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1300
- #~ msgstr ""
1301
- #~ "Utilice los botones de flecha en la parte superior del cuadro de diálogo, "
1302
- #~ "o las teclas de flecha izquierda y derecha de tu teclado, para navegar "
1303
- #~ "entre los elementos multimedia de forma rápida."
1304
-
1305
- #~ msgid ""
1306
- #~ "You can also delete individual items and access the extended edit screen "
1307
- #~ "from the details dialog."
1308
- #~ msgstr ""
1309
- #~ "También puede eliminar elementos individuales y acceder a la pantalla de "
1310
- #~ "edición se extendía desde el diálogo de detalles."
1311
-
1312
- #~ msgid "For more information:"
1313
- #~ msgstr "Para más información:"
1314
-
1315
- #~ msgid ""
1316
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1317
- #~ "\"_blank\">Documentation on Media Library</a>"
1318
- #~ msgstr ""
1319
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1320
- #~ "\"_blank\">Documentation on Media Library</a>"
1321
-
1322
- #~ msgid ""
1323
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1324
- #~ "Forums</a>"
1325
- #~ msgstr ""
1326
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1327
- #~ "Forums</a>"
1328
-
1329
- #~ msgctxt "file"
1330
- #~ msgid "Add New"
1331
- #~ msgstr "Añadir Nuevo"
1332
-
1333
- #~ msgid ""
1334
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1335
- #~ "php?mode=list\">Switch to the list view</a>."
1336
- #~ msgstr ""
1337
- #~ "La vista de cuadrícula para Media Library requiere JavaScript. <a href="
1338
- #~ "\"upload.php?mode=list\">Cambiar a la vista de lista.</a>"
1339
-
1340
- #~ msgid "You are not allowed to edit this post."
1341
- #~ msgstr "No tienes permiso para editar esta publicación"
1342
-
1343
- #~ msgid "You are not allowed to move this post to the trash."
1344
- #~ msgstr "No tienes autorización para mover esta Publicación a la papelera."
1345
-
1346
- #~ msgid "Error in moving to trash."
1347
- #~ msgstr "Error en el movimiento a la Papelera."
1348
-
1349
- #~ msgid "You are not allowed to move this post out of the trash."
1350
- #~ msgstr "No tienes autorización para sacar esta Publicación de la papelera."
1351
-
1352
- #~ msgid "Error in restoring from trash."
1353
- #~ msgstr "Error en la restauración de la Papelera."
1354
-
1355
- #~ msgid "You are not allowed to delete this post."
1356
- #~ msgstr "Perdón, no tienes permisos para borrar esta Publicacion."
1357
-
1358
- #~ msgid "Error in deleting."
1359
- #~ msgstr "Error al eliminar."
1360
-
1361
- #~ msgctxt "items per page (screen options)"
1362
- #~ msgid "Media items"
1363
- #~ msgstr "Elementos de la biblioteca de medios"
1364
-
1365
- #~ msgid ""
1366
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1367
- #~ "the most recent uploads listed first. You can use the Screen Options tab "
1368
- #~ "to customize the display of this screen."
1369
- #~ msgstr ""
1370
- #~ "Todos los archivos&#8217; que has subido se enumeran en Media Library, "
1371
- #~ "con los más recientes archivos mencionados en primer lugar. Puede usar la "
1372
- #~ "pestaña Opciones de la pantalla para personalizar la visualización de "
1373
- #~ "esta pantalla."
1374
-
1375
- #~ msgid ""
1376
- #~ "You can narrow the list by file type/status using the text link filters "
1377
- #~ "at the top of the screen. You also can refine the list by date using the "
1378
- #~ "dropdown menu above the media table."
1379
- #~ msgstr ""
1380
- #~ "Puedes filtrar la lista por tipo de archivo / estado usando los filtros "
1381
- #~ "de enlaces de texto en la parte superior de la pantalla. También puede "
1382
- #~ "refinar la lista por fecha usando el menú desplegable encima de la tabla "
1383
- #~ "de medios."
1384
-
1385
- #~ msgid "Available Actions"
1386
- #~ msgstr "Acciones Disponibles"
1387
-
1388
- #~ msgid ""
1389
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1390
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1391
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1392
- #~ "Permanently will delete the file from the media library (as well as from "
1393
- #~ "any posts to which it is currently attached). View will take you to the "
1394
- #~ "display page for that file."
1395
- #~ msgstr ""
1396
- #~ "Al pasar por encima de una fila revela vínculos de acción: Editar, Borrar "
1397
- #~ "permanentemente, y Vista. Al hacer clic en Editar o en el nombre del "
1398
- #~ "archivo de medios muestra una pantalla fácil de editar los metadatos de "
1399
- #~ "ese archivo individual. Al hacer clic en Eliminar permanentemente borrará "
1400
- #~ "el archivo de la biblioteca de medios (así como de cualquier puestos a "
1401
- #~ "los que se une en la actualidad). Ver le llevará a la página de "
1402
- #~ "visualización para ese archivo."
1403
-
1404
- #~ msgid "Attaching Files"
1405
- #~ msgstr "Adjuntar archivos"
1406
-
1407
- #~ msgid ""
1408
- #~ "If a media file has not been attached to any post, you will see that in "
1409
- #~ "the Attached To column, and can click on Attach File to launch a small "
1410
- #~ "popup that will allow you to search for a post and attach the file."
1411
- #~ msgstr ""
1412
- #~ "Si no se adjunta un archivo multimedia a cualquier publicación, a ver en "
1413
- #~ "la columna adjunta a y puede hacer clic en adjuntar archivo para poner en "
1414
- #~ "marcha un pequeño popup que te permitirá buscar un mensaje y adjuntar el "
1415
- #~ "archivo."
1416
-
1417
- #~ msgid "Search results for &#8220;%s&#8221;"
1418
- #~ msgstr "Buscar resultados para &#8220;%s&#8221;"
1419
-
1420
- #~ msgid "Media attachment updated."
1421
- #~ msgstr "Medios adjuntos actualizados."
1422
-
1423
- #~ msgid "Reattached %d attachment."
1424
- #~ msgid_plural "Reattached %d attachments."
1425
- #~ msgstr[0] "Unir %d archivo adjunto."
1426
- #~ msgstr[1] "Unir %d archivos adjuntos."
1427
-
1428
- #~ msgid "Media attachment permanently deleted."
1429
- #~ msgid_plural "%d media attachments permanently deleted."
1430
- #~ msgstr[0] "Medio eliminado permanentemente."
1431
- #~ msgstr[1] "%d Medios eliminados permanentemente."
1432
-
1433
- #~ msgid "Media attachment moved to the trash."
1434
- #~ msgid_plural "%d media attachments moved to the trash."
1435
- #~ msgstr[0] "Medio trasladado a la papelera."
1436
- #~ msgstr[1] "%d medios trasladados a la papelera."
1437
-
1438
- #~ msgid "Undo"
1439
- #~ msgstr "Deshacer"
1440
-
1441
- #~ msgid "Media attachment restored from the trash."
1442
- #~ msgid_plural "%d media attachments restored from the trash."
1443
- #~ msgstr[0] "Medio restaurado desde la papelera."
1444
- #~ msgstr[1] "%d medios restaurados desde la papelera."
1445
-
1446
- #~ msgid "Media permanently deleted."
1447
- #~ msgstr "Medios eliminados permanentemente."
1448
-
1449
- #~ msgid "Error saving media attachment."
1450
- #~ msgstr "Medios adjuntos actualizados."
1451
-
1452
- #~ msgid "Media moved to the trash."
1453
- #~ msgstr "Medios movidos a la papelera."
1454
-
1455
- #~ msgid "Media restored from the trash."
1456
- #~ msgstr "Medios restaurados de la papelera."
1457
-
1458
- #~ msgid ""
1459
- #~ "<a href=\"https://codex.wordpress.org/Media_Library_Screen\" target="
1460
- #~ "\"_blank\">Documentation on Media Library</a>"
1461
- #~ msgstr ""
1462
- #~ "<a href=\"https://codex.wordpress.org/Media_Library_Screen\" target="
1463
- #~ "\"_blank\">Documentación de Media Library</a>"
1464
-
1465
- #~ msgid "You are not allowed to move this item to the Trash."
1466
- #~ msgstr "No se te permite mover este elemento a la papelera."
1467
-
1468
- #~ msgid "You are not allowed to move this item out of the Trash."
1469
- #~ msgstr "No se te permite para sacar este elemento de la papelera."
1470
-
1471
- #~ msgid "You are not allowed to delete this item."
1472
- #~ msgstr "No se te permite eliminar este elemento."
1473
-
1474
- #~ msgid "Filter media items list"
1475
- #~ msgstr "Filtrar la lista de elementos de medios."
1476
-
1477
- #~ msgid "Media items list navigation"
1478
- #~ msgstr "Lista de navegación de elementos de medios"
1479
-
1480
- #~ msgid "Media items list"
1481
- #~ msgstr "Lista de elementos de medios"
1482
-
1483
- #~ msgid "Detached %d attachment."
1484
- #~ msgid_plural "Detached %d attachments."
1485
- #~ msgstr[0] "Archivo adjunto %d individual."
1486
- #~ msgstr[1] "Archivos adjuntos %d individuales."
1487
-
1488
- #~ msgid "%d media attachment permanently deleted."
1489
- #~ msgid_plural "%d media attachments permanently deleted."
1490
- #~ msgstr[0] "%d adjunto multimedia se eliminará de forma permanente."
1491
- #~ msgstr[1] "%d adjuntos multimedia se eliminarán de forma permanente."
1492
-
1493
- #~ msgid "%d media attachment moved to the trash."
1494
- #~ msgid_plural "%d media attachments moved to the trash."
1495
- #~ msgstr[0] "%d medio trasladado a la papelera. "
1496
- #~ msgstr[1] "%d medios trasladados a la papelera. "
1497
-
1498
- #~ msgid "%d media attachment restored from the trash."
1499
- #~ msgid_plural "%d media attachments restored from the trash."
1500
- #~ msgstr[0] "%d medio restaurado desde la papelera."
1501
- #~ msgstr[1] "%d medios restaurados desde la papelera."
1502
-
1503
- #~ msgid "MIME type settings restored."
1504
- #~ msgstr "Configuración de tipo MIME restaurado."
1505
-
1506
- #~ msgid "MIME type settings saved."
1507
- #~ msgstr "Configuración de tipo MIME guardada."
1508
-
1509
- #~ msgid "Column in List View"
1510
- #~ msgstr "Columna en Vista de Lista"
1511
-
1512
- #~ msgid "Filter in List View"
1513
- #~ msgstr "Filtro en Vista de Lista"
1514
-
1515
- #~ msgid "Filter in Grid View / Media Popup"
1516
- #~ msgstr "Filtro en cuadrícula / Medios Popup"
1517
-
1518
- #~ msgid "Filters"
1519
- #~ msgstr "Filtros"
1520
-
1521
- #~ msgid "Taxonomy settings saved."
1522
- #~ msgstr "Ajustes de taxonomía guardados."
1523
-
1524
- #~ msgid "Expand Details"
1525
- #~ msgstr "Expandir Detalles"
1526
-
1527
- #~ msgid "Collapse Details"
1528
- #~ msgstr "Contraer Detalles"
1529
-
1530
- #~ msgid "Validation Failed. One or more fields below are required."
1531
- #~ msgstr "Validación fallida. Uno o más campos siguientes son obligatorios."
1532
-
1533
- #~ msgid ""
1534
- #~ "The changes you made will be lost if you navigate away from this page"
1535
- #~ msgstr ""
1536
- #~ "Los cambios realizados se perderán si usted navega fuera de esta página."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-fr_FR.mo DELETED
Binary file
languages/enhanced-media-library-fr_FR.po DELETED
@@ -1,1376 +0,0 @@
1
- # Translation of Stable (latest release) in French (France)
2
- # This file is distributed under the same license as the Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Stable (latest release)\n"
6
- "POT-Creation-Date: 2016-04-30 12:51+0300\n"
7
- "PO-Revision-Date: 2016-04-30 12:51+0300\n"
8
- "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
- "Language-Team: \n"
10
- "Language: fr\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
15
- "X-Generator: Poedit 1.8.7\n"
16
-
17
- #: core/mime-types.php:30
18
- msgid "MIME Types settings restored."
19
- msgstr ""
20
-
21
- #: core/mime-types.php:39
22
- msgid "MIME Types settings saved."
23
- msgstr ""
24
-
25
- #: core/mime-types.php:115
26
- #, php-format
27
- msgid " <span class=\"count\">(%s)</span>"
28
- msgid_plural " <span class=\"count\">(%s)</span>"
29
- msgstr[0] ""
30
- msgstr[1] ""
31
-
32
- #: core/options-pages.php:97 core/options-pages.php:217
33
- #: core/options-pages.php:932 core/options-pages.php:1057
34
- #: core/options-pages.php:1370 core/options-pages.php:1547
35
- msgid "Media Settings"
36
- msgstr "Réglages de média"
37
-
38
- #: core/options-pages.php:106 core/options-pages.php:189
39
- msgid "Media Library"
40
- msgstr "Bibliothèque des Médias"
41
-
42
- #: core/options-pages.php:115
43
- msgid "Taxonomies"
44
- msgstr "Taxinomies"
45
-
46
- #: core/options-pages.php:124 core/options-pages.php:191
47
- msgid "MIME Types"
48
- msgstr "Types de MIME"
49
-
50
- #: core/options-pages.php:135 core/options-pages.php:136
51
- msgid "Enhanced Media Library"
52
- msgstr "Enhanced Media Library"
53
-
54
- #: core/options-pages.php:188
55
- msgid "General"
56
- msgstr ""
57
-
58
- #: core/options-pages.php:190 core/options-pages.php:1078
59
- msgid "Media Taxonomies"
60
- msgstr "Taxinomies des médias"
61
-
62
- #: core/options-pages.php:214 core/options-pages.php:520
63
- #: core/options-pages.php:928 core/options-pages.php:1053
64
- #: core/options-pages.php:1366
65
- msgid "You do not have sufficient permissions to access this page."
66
- msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page."
67
-
68
- #: core/options-pages.php:228
69
- msgid "Image sizes"
70
- msgstr ""
71
-
72
- #: core/options-pages.php:229
73
- msgid ""
74
- "The sizes listed below determine the maximum dimensions in pixels to use "
75
- "when adding an image to the Media Library."
76
- msgstr ""
77
-
78
- #: core/options-pages.php:233
79
- msgid "Thumbnail size"
80
- msgstr ""
81
-
82
- #: core/options-pages.php:235
83
- msgid "Width"
84
- msgstr ""
85
-
86
- #: core/options-pages.php:237
87
- msgid "Height"
88
- msgstr ""
89
-
90
- #: core/options-pages.php:240
91
- msgid ""
92
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
93
- msgstr ""
94
-
95
- #: core/options-pages.php:245 core/options-pages.php:246
96
- msgid "Medium size"
97
- msgstr ""
98
-
99
- #: core/options-pages.php:247 core/options-pages.php:257
100
- msgid "Max Width"
101
- msgstr ""
102
-
103
- #: core/options-pages.php:249 core/options-pages.php:259
104
- msgid "Max Height"
105
- msgstr ""
106
-
107
- #: core/options-pages.php:255 core/options-pages.php:256
108
- msgid "Large size"
109
- msgstr ""
110
-
111
- #: core/options-pages.php:272
112
- msgid "Embeds"
113
- msgstr ""
114
-
115
- #: core/options-pages.php:279
116
- msgid "Uploading Files"
117
- msgstr ""
118
-
119
- #: core/options-pages.php:286
120
- msgid "Store uploads in this folder"
121
- msgstr ""
122
-
123
- #: core/options-pages.php:290
124
- #, php-format
125
- msgid "Default is %s"
126
- msgstr ""
127
-
128
- #: core/options-pages.php:296
129
- msgid "Full URL path to files"
130
- msgstr ""
131
-
132
- #: core/options-pages.php:298
133
- msgid "Configuring this is optional. By default, it should be blank."
134
- msgstr ""
135
-
136
- #: core/options-pages.php:306
137
- msgid "Organize my uploads into month- and year-based folders"
138
- msgstr ""
139
-
140
- #: core/options-pages.php:378 core/options-pages.php:1102
141
- #: core/options-pages.php:1117 core/options-pages.php:1180
142
- #: core/options-pages.php:1249
143
- msgid "Edit"
144
- msgstr "Modifier"
145
-
146
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
147
- msgid "Close"
148
- msgstr "Fermer"
149
-
150
- #: core/options-pages.php:380 core/options-pages.php:1118
151
- #: core/options-pages.php:1181
152
- msgid "View"
153
- msgstr "Afficher"
154
-
155
- #: core/options-pages.php:381 core/options-pages.php:1119
156
- #: core/options-pages.php:1182
157
- msgid "Update"
158
- msgstr "Mise à jour"
159
-
160
- #: core/options-pages.php:382 core/options-pages.php:1120
161
- #: core/options-pages.php:1183
162
- msgid "Add New"
163
- msgstr "Ajouter"
164
-
165
- #: core/options-pages.php:383 core/options-pages.php:1121
166
- #: core/options-pages.php:1184
167
- msgid "New"
168
- msgstr "Nouveau"
169
-
170
- #: core/options-pages.php:384
171
- msgid "Name"
172
- msgstr "Nom"
173
-
174
- #: core/options-pages.php:385 core/options-pages.php:1122
175
- #: core/options-pages.php:1185
176
- msgid "Parent"
177
- msgstr "Parent"
178
-
179
- #: core/options-pages.php:386 core/options-pages.php:616
180
- #: core/options-pages.php:1116 core/options-pages.php:1179
181
- #: core/taxonomies.php:365 enhanced-media-library.php:490
182
- msgid "All"
183
- msgstr "Tous"
184
-
185
- #: core/options-pages.php:387 core/options-pages.php:1123
186
- #: core/options-pages.php:1186
187
- msgid "Search"
188
- msgstr "Rechercher"
189
-
190
- #: core/options-pages.php:389 core/options-pages.php:1167
191
- msgid "New Taxonomy"
192
- msgstr "Nouvelle taxinomie"
193
-
194
- #: core/options-pages.php:391
195
- msgid "Remove Taxonomy"
196
- msgstr ""
197
-
198
- #: core/options-pages.php:392
199
- msgid "Taxonomy will be removed."
200
- msgstr ""
201
-
202
- #: core/options-pages.php:393
203
- msgid ""
204
- "Taxonomy terms (categories) will remain intact in the database. If you "
205
- "create a taxonomy with the same name in the future, its terms (categories) "
206
- "will be available again."
207
- msgstr ""
208
-
209
- #: core/options-pages.php:394
210
- msgid "Media items will remain intact."
211
- msgstr ""
212
-
213
- #: core/options-pages.php:395
214
- msgid "Are you still sure?"
215
- msgstr ""
216
-
217
- #: core/options-pages.php:396
218
- msgid "Yes, remove taxonomy"
219
- msgstr ""
220
-
221
- #: core/options-pages.php:398
222
- msgid "Duplicate"
223
- msgstr ""
224
-
225
- #: core/options-pages.php:399
226
- msgid "Taxonomy with the same name already exists. Please chose other one."
227
- msgstr ""
228
- "Il y a déjà une taxinomie avec le même nom. Merci d’en choisir un autre."
229
-
230
- #: core/options-pages.php:401
231
- msgid "Empty Fields"
232
- msgstr ""
233
-
234
- #: core/options-pages.php:402
235
- msgid "Please choose Singular and Plural names for all new taxomonies."
236
- msgstr ""
237
-
238
- #: core/options-pages.php:403
239
- msgid "Please choose Singilar name for all new taxomonies."
240
- msgstr ""
241
-
242
- #: core/options-pages.php:404
243
- msgid "Please choose Plural Name for all new taxomonies."
244
- msgstr ""
245
-
246
- #: core/options-pages.php:406
247
- msgid "Ok"
248
- msgstr ""
249
-
250
- #: core/options-pages.php:407 core/options-pages.php:412
251
- #: core/options-pages.php:495
252
- msgid "Cancel"
253
- msgstr ""
254
-
255
- #: core/options-pages.php:409 pro/core/options-pages.php:165
256
- msgid "Synchronize Now"
257
- msgstr ""
258
-
259
- #: core/options-pages.php:410 core/options-pages.php:492
260
- msgid "This operation cannot be canceled! Are you still sure?"
261
- msgstr ""
262
-
263
- #: core/options-pages.php:411
264
- msgid "Synchronize"
265
- msgstr ""
266
-
267
- #: core/options-pages.php:413
268
- msgid "Synchronizing..."
269
- msgstr ""
270
-
271
- #: core/options-pages.php:451
272
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
273
- msgstr ""
274
- "Attention ! Tous les types de MIME personnalisés seront effacés par cette "
275
- "opération."
276
-
277
- #: core/options-pages.php:452
278
- msgid "Please fill into all fields."
279
- msgstr "Merci de remplir tous les champs."
280
-
281
- #: core/options-pages.php:453
282
- msgid "Duplicate extensions or MIME types. Please chose other one."
283
- msgstr ""
284
- "Duplication de l'extension ou du type MIME. Merci d'en spécifier un autre."
285
-
286
- #: core/options-pages.php:490 core/options-pages.php:607
287
- msgid "Complete Cleanup"
288
- msgstr ""
289
-
290
- #: core/options-pages.php:491
291
- msgid ""
292
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
293
- "plugin data</strong> from the database including backups."
294
- msgstr ""
295
-
296
- #: core/options-pages.php:493
297
- msgid "Yes, delete all data"
298
- msgstr ""
299
-
300
- #: core/options-pages.php:494
301
- msgid "Cleaning..."
302
- msgstr ""
303
-
304
- #: core/options-pages.php:525
305
- msgid "Enhanced Media Library Settings"
306
- msgstr ""
307
-
308
- #: core/options-pages.php:535
309
- msgid "Export"
310
- msgstr ""
311
-
312
- #: core/options-pages.php:539
313
- msgid ""
314
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
315
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
316
- "configuration file. It allows you to easily import the configuration into "
317
- "another website."
318
- msgstr ""
319
-
320
- #: core/options-pages.php:544
321
- msgid "Export Plugin Settings"
322
- msgstr ""
323
-
324
- #: core/options-pages.php:554
325
- msgid "Import"
326
- msgstr ""
327
-
328
- #: core/options-pages.php:558
329
- msgid ""
330
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
331
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
332
- "configuration file which can be obtained by exporting the settings on "
333
- "another website using the export button above."
334
- msgstr ""
335
-
336
- #: core/options-pages.php:559
337
- msgid ""
338
- "All plugin settings will be overridden by the import. You will have a chance "
339
- "to restore current data from an automatic backup in case you are not "
340
- "satisfied with the result of the import."
341
- msgstr ""
342
-
343
- #: core/options-pages.php:566
344
- msgid "Import Plugin Settings"
345
- msgstr ""
346
-
347
- #: core/options-pages.php:578
348
- msgid "Restore"
349
- msgstr ""
350
-
351
- #: core/options-pages.php:584
352
- msgid "No backup available at the moment."
353
- msgstr ""
354
-
355
- #: core/options-pages.php:586
356
- msgid "Backup will be created automatically before any import operation."
357
- msgstr ""
358
-
359
- #: core/options-pages.php:590
360
- msgid ""
361
- "The backup has been automatically created before the latest import operation."
362
- msgstr ""
363
-
364
- #: core/options-pages.php:594
365
- msgid "Restore Settings from the Backup"
366
- msgstr ""
367
-
368
- #: core/options-pages.php:614
369
- msgid "What will be deleted:"
370
- msgstr ""
371
-
372
- #: core/options-pages.php:619
373
- msgid "All plugin options"
374
- msgstr ""
375
-
376
- #: core/options-pages.php:620
377
- msgid "All plugin backups stored in database"
378
- msgstr ""
379
-
380
- #: core/options-pages.php:624
381
- msgid "What will remain intact:"
382
- msgstr ""
383
-
384
- #: core/options-pages.php:625
385
- msgid "All media items"
386
- msgstr ""
387
-
388
- #: core/options-pages.php:626
389
- msgid "All taxonomies not listed above"
390
- msgstr ""
391
-
392
- #: core/options-pages.php:629
393
- msgid ""
394
- "The plugin cannot delete itself because of security reason. Please delete it "
395
- "manually from plugin list after cleanup."
396
- msgstr ""
397
-
398
- #: core/options-pages.php:631
399
- msgid ""
400
- "If you are not sure about this operation please create a backup of your "
401
- "database prior to cleanup!"
402
- msgstr ""
403
-
404
- #: core/options-pages.php:637
405
- msgid "Delete All Data & Deactivate"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:742
409
- msgid "Please upload a file to import settings."
410
- msgstr ""
411
-
412
- #: core/options-pages.php:762
413
- msgid "Plugin settings imported."
414
- msgstr ""
415
-
416
- #: core/options-pages.php:809
417
- msgid "Plugin settings restored from the backup."
418
- msgstr ""
419
-
420
- #: core/options-pages.php:953
421
- msgid "Media Items Order"
422
- msgstr ""
423
-
424
- #: core/options-pages.php:960
425
- msgid "Order media items by"
426
- msgstr ""
427
-
428
- #: core/options-pages.php:967 core/options-pages.php:979
429
- msgid "For media library and media popups"
430
- msgstr ""
431
-
432
- #: core/options-pages.php:968
433
- msgid "Option allows to change order by drag and drop with Custom Order value."
434
- msgstr ""
435
-
436
- #: core/options-pages.php:973
437
- msgid "Sort order"
438
- msgstr ""
439
-
440
- #: core/options-pages.php:992
441
- msgid "Media Shortcodes"
442
- msgstr ""
443
-
444
- #: core/options-pages.php:999 core/options-pages.php:1002
445
- msgid "Enhanced media shortcodes"
446
- msgstr ""
447
-
448
- #: core/options-pages.php:1003
449
- msgid ""
450
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
451
- "upload date, and media items number limit"
452
- msgstr ""
453
-
454
- #: core/options-pages.php:1004
455
- msgid "Gallery example:"
456
- msgstr ""
457
-
458
- #: core/options-pages.php:1005
459
- msgid "Audio playlist example:"
460
- msgstr ""
461
-
462
- #: core/options-pages.php:1006
463
- msgid "Video playlist example:"
464
- msgstr ""
465
-
466
- #: core/options-pages.php:1008
467
- #, php-format
468
- msgid ""
469
- "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
470
- msgstr ""
471
-
472
- #: core/options-pages.php:1010
473
- #, php-format
474
- msgid "%sLearn more%s."
475
- msgstr ""
476
-
477
- #: core/options-pages.php:1012
478
- #, php-format
479
- msgid ""
480
- "Please check out your gallery front-end and back-end functionality once this "
481
- "option activated. If you find an issue please inform plugin authors at %s or "
482
- "%s."
483
- msgstr ""
484
-
485
- #: core/options-pages.php:1082 core/options-pages.php:1229
486
- msgid "Assign following taxonomies to Media Library:"
487
- msgstr "Assigner les taxinomies suivantes à la Bibliothèque des Médias&nbsp;:"
488
-
489
- #: core/options-pages.php:1101 core/options-pages.php:1167
490
- #: core/options-pages.php:1248
491
- msgid "Assign Taxonomy"
492
- msgstr "Assigner la taxinomie"
493
-
494
- #: core/options-pages.php:1102 core/options-pages.php:1249
495
- msgid "Edit Taxonomy"
496
- msgstr "Modifier la taxinomie"
497
-
498
- #: core/options-pages.php:1106 core/options-pages.php:1169
499
- msgid "Delete Taxonomy"
500
- msgstr "Supprimer la taxinomie"
501
-
502
- #: core/options-pages.php:1111 core/options-pages.php:1174
503
- msgid "Labels"
504
- msgstr "Libellés"
505
-
506
- #: core/options-pages.php:1113 core/options-pages.php:1176
507
- msgid "Singular"
508
- msgstr "Singulier"
509
-
510
- #: core/options-pages.php:1114 core/options-pages.php:1177
511
- msgid "Plural"
512
- msgstr "Pluriel"
513
-
514
- #: core/options-pages.php:1115 core/options-pages.php:1178
515
- msgid "Menu Name"
516
- msgstr "Nom du menu"
517
-
518
- #: core/options-pages.php:1128 core/options-pages.php:1151
519
- #: core/options-pages.php:1191 core/options-pages.php:1252
520
- msgid "Settings"
521
- msgstr "Réglages"
522
-
523
- #: core/options-pages.php:1130 core/options-pages.php:1193
524
- msgid "Taxonomy Name"
525
- msgstr "Nom de la taxinomie"
526
-
527
- #: core/options-pages.php:1131 core/options-pages.php:1194
528
- msgid "Hierarchical"
529
- msgstr "Hiérarchique"
530
-
531
- #: core/options-pages.php:1132 core/options-pages.php:1195
532
- msgid "Column for List View"
533
- msgstr ""
534
-
535
- #: core/options-pages.php:1133 core/options-pages.php:1153
536
- #: core/options-pages.php:1196 core/options-pages.php:1254
537
- msgid "Filter for List View"
538
- msgstr ""
539
-
540
- #: core/options-pages.php:1134 core/options-pages.php:1154
541
- #: core/options-pages.php:1197 core/options-pages.php:1255
542
- msgid "Filter for Grid View / Media Popup"
543
- msgstr ""
544
-
545
- #: core/options-pages.php:1135 core/options-pages.php:1155
546
- #: core/options-pages.php:1198 core/options-pages.php:1256
547
- msgid "Edit in Media Popup"
548
- msgstr "Modifier dans les Popups des médias"
549
-
550
- #: core/options-pages.php:1136 core/options-pages.php:1199
551
- msgid "Show in Nav Menu"
552
- msgstr "Afficher dans le menu de navigation"
553
-
554
- #: core/options-pages.php:1137 core/options-pages.php:1200
555
- msgid "Remember Terms Order (sort)"
556
- msgstr ""
557
-
558
- #: core/options-pages.php:1138 core/options-pages.php:1201
559
- msgid "Show in REST"
560
- msgstr ""
561
-
562
- #: core/options-pages.php:1139 core/options-pages.php:1202
563
- msgid "Rewrite Slug"
564
- msgstr "Réécrire l’identifiant"
565
-
566
- #: core/options-pages.php:1140 core/options-pages.php:1203
567
- msgid "Slug with Front"
568
- msgstr "Identifiant dans l’URL"
569
-
570
- #: core/options-pages.php:1215
571
- msgid "Add New Taxonomy"
572
- msgstr "Ajout de nouvelle taxinomie"
573
-
574
- #: core/options-pages.php:1225
575
- msgid "Non-Media Taxonomies"
576
- msgstr "Taxinomies pour les non-médias"
577
-
578
- #: core/options-pages.php:1286
579
- msgid "Options"
580
- msgstr "Options"
581
-
582
- #: core/options-pages.php:1296 core/options-pages.php:1299
583
- msgid "Taxonomy archive pages"
584
- msgstr "Taxinomie pour les pages d'archives"
585
-
586
- #: core/options-pages.php:1300
587
- msgid "Turn on media taxonomy archive pages on the front-end"
588
- msgstr ""
589
- "Activer la taxinomie pour les page d’archives de médias sur l’interface "
590
- "publique"
591
-
592
- #: core/options-pages.php:1301
593
- msgid ""
594
- "Re-save your permalink settings after this option change to make it work."
595
- msgstr ""
596
- "Pour que cela fonctionne, enregistrez à nouveau vos réglages de permaliens "
597
- "après avoir changé cette option."
598
-
599
- #: core/options-pages.php:1307 core/options-pages.php:1310
600
- msgid "Assign all like hierarchical"
601
- msgstr "Les rendre tous comme les taxinomies hiérarchiques"
602
-
603
- #: core/options-pages.php:1311
604
- msgid ""
605
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
606
- msgstr ""
607
- "Afficher les taxinomies non-hiérarchiques comme des taxinomies hiérarchiques "
608
- "dans la vue en grille / Popup pour les médias"
609
-
610
- #: core/options-pages.php:1317 core/options-pages.php:1320
611
- msgid "Force filters"
612
- msgstr "Forcer les filtres"
613
-
614
- #: core/options-pages.php:1321
615
- msgid "Show media filters for ANY Media Popup"
616
- msgstr ""
617
-
618
- #: core/options-pages.php:1322
619
- msgid "Try this if filters are not shown for third-party plugins or themes."
620
- msgstr ""
621
-
622
- #: core/options-pages.php:1376
623
- msgid "Add New MIME Type"
624
- msgstr "Ajouter un type de MIME"
625
-
626
- #: core/options-pages.php:1394 core/options-pages.php:1449
627
- msgid "Extension"
628
- msgstr "Extension"
629
-
630
- #: core/options-pages.php:1395 core/options-pages.php:1450
631
- msgid "MIME Type"
632
- msgstr "Type de MIME"
633
-
634
- #: core/options-pages.php:1396 core/options-pages.php:1451
635
- msgid "Singular Label"
636
- msgstr "Libellé pour le singulier"
637
-
638
- #: core/options-pages.php:1397 core/options-pages.php:1452
639
- msgid "Plural Label"
640
- msgstr "Libellé pour le pluriel"
641
-
642
- #: core/options-pages.php:1398 core/options-pages.php:1428
643
- #: core/options-pages.php:1441 core/options-pages.php:1453
644
- msgid "Add Filter"
645
- msgstr "Ajouter un filtre"
646
-
647
- #: core/options-pages.php:1399 core/options-pages.php:1429
648
- #: core/options-pages.php:1442 core/options-pages.php:1454
649
- msgid "Allow Upload"
650
- msgstr "Autoriser la mise en ligne"
651
-
652
- #: core/options-pages.php:1443
653
- msgid "Delete MIME Type"
654
- msgstr "Supprimer le type de MIME"
655
-
656
- #: core/options-pages.php:1460
657
- msgid "Restore WordPress default MIME Types"
658
- msgstr ""
659
-
660
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
661
- msgid "Save Changes"
662
- msgstr ""
663
-
664
- #: core/options-pages.php:1499
665
- msgid "Changelog"
666
- msgstr ""
667
-
668
- #: core/options-pages.php:1500
669
- msgid "What's new in"
670
- msgstr ""
671
-
672
- #: core/options-pages.php:1500
673
- msgid "version"
674
- msgstr ""
675
-
676
- #: core/options-pages.php:1503
677
- msgid "More features under the hood"
678
- msgstr ""
679
-
680
- #: core/options-pages.php:1505
681
- msgid "Support"
682
- msgstr ""
683
-
684
- #: core/options-pages.php:1506
685
- msgid "Feel free to ask for help on"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1506
689
- msgid "Support is free for both versions of the plugin."
690
- msgstr ""
691
-
692
- #: core/options-pages.php:1508
693
- msgid "Plugin rating"
694
- msgstr ""
695
-
696
- #: core/options-pages.php:1509
697
- msgid "Please"
698
- msgstr ""
699
-
700
- #: core/options-pages.php:1509
701
- msgid "vote for the plugin"
702
- msgstr ""
703
-
704
- #: core/options-pages.php:1509
705
- msgid "Thanks!"
706
- msgstr ""
707
-
708
- #: core/options-pages.php:1511
709
- msgid "Other plugins you may find useful"
710
- msgstr ""
711
-
712
- #: core/options-pages.php:1550
713
- msgid "Utility"
714
- msgstr ""
715
-
716
- #: core/options-pages.php:1571
717
- msgid "Vote!"
718
- msgstr ""
719
-
720
- #: core/taxonomies.php:101
721
- msgid "Media Taxonomies settings saved."
722
- msgstr ""
723
-
724
- #: core/taxonomies.php:159
725
- msgid "Media Library settings saved."
726
- msgstr ""
727
-
728
- #: core/taxonomies.php:358 core/taxonomies.php:364
729
- #: enhanced-media-library.php:489
730
- msgid "Filter by"
731
- msgstr "Filtrer par"
732
-
733
- #: core/taxonomies.php:366 enhanced-media-library.php:491
734
- msgid "Not in"
735
- msgstr "Pas dans"
736
-
737
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
738
- msgid "All Uncategorized"
739
- msgstr "Tous sans catégories"
740
-
741
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
742
- msgid "Reset All Filters"
743
- msgstr "Réinitialiser tous les filtres"
744
-
745
- #: enhanced-media-library.php:523
746
- msgid "Uploaded to post #"
747
- msgstr ""
748
-
749
- #: enhanced-media-library.php:524
750
- msgid "Based On"
751
- msgstr ""
752
-
753
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
754
- msgid "Media Categories"
755
- msgstr ""
756
-
757
- #: enhanced-media-library.php:570
758
- msgid "Media Category"
759
- msgstr ""
760
-
761
- #: enhanced-media-library.php:572
762
- msgid "All Media Categories"
763
- msgstr ""
764
-
765
- #: enhanced-media-library.php:573
766
- msgid "Edit Media Category"
767
- msgstr ""
768
-
769
- #: enhanced-media-library.php:574
770
- msgid "View Media Category"
771
- msgstr ""
772
-
773
- #: enhanced-media-library.php:575
774
- msgid "Update Media Category"
775
- msgstr ""
776
-
777
- #: enhanced-media-library.php:576
778
- msgid "Add New Media Category"
779
- msgstr ""
780
-
781
- #: enhanced-media-library.php:577
782
- msgid "New Media Category Name"
783
- msgstr ""
784
-
785
- #: enhanced-media-library.php:578
786
- msgid "Parent Media Category"
787
- msgstr ""
788
-
789
- #: enhanced-media-library.php:579
790
- msgid "Parent Media Category:"
791
- msgstr ""
792
-
793
- #: enhanced-media-library.php:580
794
- msgid "Search Media Categories"
795
- msgstr ""
796
-
797
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
798
- msgid "Remove"
799
- msgstr ""
800
-
801
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
802
- msgid "Deselect"
803
- msgstr ""
804
-
805
- #: pro/core/bulk-edit.php:105
806
- msgid "Caption this image&hellip;"
807
- msgstr ""
808
-
809
- #: pro/core/bulk-edit.php:109
810
- msgid "Describe this video&hellip;"
811
- msgstr ""
812
-
813
- #: pro/core/bulk-edit.php:111
814
- msgid "Describe this audio file&hellip;"
815
- msgstr ""
816
-
817
- #: pro/core/bulk-edit.php:113
818
- msgid "Describe this media file&hellip;"
819
- msgstr ""
820
-
821
- #: pro/core/bulk-edit.php:122
822
- msgid "Attachments Details"
823
- msgstr ""
824
-
825
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
826
- msgid "Select All"
827
- msgstr ""
828
-
829
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
830
- msgid "Edit Selection"
831
- msgstr ""
832
-
833
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
834
- msgid "Deselect All"
835
- msgstr ""
836
-
837
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
838
- msgid "Delete Selected"
839
- msgstr ""
840
-
841
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
842
- msgid "Order By"
843
- msgstr ""
844
-
845
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
846
- msgid "Date"
847
- msgstr ""
848
-
849
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
850
- msgid "Title"
851
- msgstr ""
852
-
853
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
854
- msgid "Custom Order"
855
- msgstr ""
856
-
857
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
858
- msgid "Random"
859
- msgstr ""
860
-
861
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
862
- msgid "Order"
863
- msgstr ""
864
-
865
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
866
- msgid "Ascending"
867
- msgstr ""
868
-
869
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
870
- msgid "Descending"
871
- msgstr ""
872
-
873
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
874
- msgid "Limit"
875
- msgstr ""
876
-
877
- #: pro/core/options-pages.php:78
878
- msgid "Your license has been deactivated."
879
- msgstr ""
880
-
881
- #: pro/core/options-pages.php:88
882
- msgid "Please check if your license key is correct and try again."
883
- msgstr ""
884
-
885
- #: pro/core/options-pages.php:101
886
- msgid ""
887
- "Wrong license key or a server error occured. Please check your license key "
888
- "and try again."
889
- msgstr ""
890
-
891
- #: pro/core/options-pages.php:111
892
- msgid "You license has been activated."
893
- msgstr ""
894
-
895
- #: pro/core/options-pages.php:164
896
- #, php-format
897
- msgid "Auto-assign media items to parent %s %s on upload"
898
- msgstr ""
899
-
900
- #: pro/core/options-pages.php:165
901
- #, php-format
902
- msgid ""
903
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
904
- "attached to a %s will be assigned to %s of their parent %s. Currently "
905
- "assigned %s will not be saved. Media items that are not attached to any %s "
906
- "will not be affected."
907
- msgstr ""
908
-
909
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
910
- msgid "Bulk Edit"
911
- msgstr ""
912
-
913
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
914
- msgid "Turn off 'Save Changes' button"
915
- msgstr ""
916
-
917
- #: pro/core/options-pages.php:200
918
- msgid "Save changes on the fly"
919
- msgstr ""
920
-
921
- #: pro/core/options-pages.php:201
922
- msgid ""
923
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
924
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
925
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
926
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
927
- "files / taxonomies with this option turned on."
928
- msgstr ""
929
-
930
- #: pro/core/options-pages.php:202
931
- msgid ""
932
- "Strongly NOT recommended option if you work with more than hundred of files "
933
- "at a time."
934
- msgstr ""
935
-
936
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
937
- msgid "License Key"
938
- msgstr ""
939
-
940
- #: pro/core/options-pages.php:252
941
- #, php-format
942
- msgid ""
943
- "To unlock updates please enter your license key below. You can get your "
944
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
945
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
946
- msgstr ""
947
-
948
- #: pro/core/options-pages.php:262
949
- msgid "Activate License"
950
- msgstr ""
951
-
952
- #: pro/core/options-pages.php:269
953
- msgid "Your license is active!"
954
- msgstr ""
955
-
956
- #: pro/core/options-pages.php:273
957
- msgid "Deactivate License"
958
- msgstr ""
959
-
960
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
961
- msgid ""
962
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
963
- "this server&#8217;s configuration. If you continue to have problems, please "
964
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
965
- msgstr ""
966
-
967
- #: pro/core/update.php:113
968
- msgid ""
969
- "(WordPress could not establish a secure connection to WordPress.org. Please "
970
- "contact your server administrator.)"
971
- msgstr ""
972
-
973
- #: pro/core/update.php:180
974
- #, php-format
975
- msgid ""
976
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
977
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
978
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
979
- msgstr ""
980
-
981
- #: pro/enhanced-media-library-pro.php:119
982
- msgid "ALL files belong to this item"
983
- msgstr ""
984
-
985
- #: pro/enhanced-media-library-pro.php:120
986
- msgid "SOME files belong to this item"
987
- msgstr ""
988
-
989
- #: pro/enhanced-media-library-pro.php:121
990
- msgid "NO files belong to this item"
991
- msgstr ""
992
-
993
- #: pro/enhanced-media-library-pro.php:122
994
- msgid "Changes saved."
995
- msgstr ""
996
-
997
- #: pro/enhanced-media-library-pro.php:123
998
- msgid "Something went wrong."
999
- msgstr ""
1000
-
1001
- #: pro/enhanced-media-library-pro.php:126
1002
- msgid "Edit Media Files"
1003
- msgstr ""
1004
-
1005
- #: pro/enhanced-media-library-pro.php:151
1006
- msgid "Create a filter-based gallery"
1007
- msgstr ""
1008
-
1009
- #: pro/enhanced-media-library-pro.php:152
1010
- msgid "Create a filter-based playlist"
1011
- msgstr ""
1012
-
1013
- #: pro/enhanced-media-library-pro.php:153
1014
- msgid "Create a filter-based video playlist"
1015
- msgstr ""
1016
-
1017
- #: pro/enhanced-media-library-pro.php:231
1018
- msgid ""
1019
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1020
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1021
- "will remain intact."
1022
- msgstr ""
1023
-
1024
- #: pro/enhanced-media-library-pro.php:231
1025
- msgid "Return to Plugins"
1026
- msgstr ""
1027
-
1028
- #: pro/enhanced-media-library-pro.php:282
1029
- msgid ""
1030
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1031
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1032
- "be active. Please network deactivate and delete the free versions of the "
1033
- "plugin. All your data will remain intact."
1034
- msgstr ""
1035
-
1036
- #: pro/enhanced-media-library-pro.php:299
1037
- msgid ""
1038
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1039
- "be active. Please deactivate and delete the free version of the plugin. All "
1040
- "your data will remain intact."
1041
- msgstr ""
1042
-
1043
- #: pro/enhanced-media-library-pro.php:315
1044
- msgid ""
1045
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1046
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1047
- "version to be active. Please deactivate (or network deactivate) and delete "
1048
- "the free version of the plugin for this site. All your data will remail "
1049
- "intact."
1050
- msgstr ""
1051
-
1052
- #. Description of the plugin/theme
1053
- msgid ""
1054
- "This plugin will be handy for those who need to manage a lot of media files."
1055
- msgstr ""
1056
- "Cette extension sera utile pour ceux qui ont besoin de gérer beaucoup de "
1057
- "fichiers média"
1058
-
1059
- #~ msgid ""
1060
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1061
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1062
- #~ "be lost."
1063
- #~ msgstr ""
1064
- #~ "La taxonomie va être supprimée de manière permanente&nbsp;! Tous les "
1065
- #~ "fichiers médias seront intacts, mais toutes les connexions avec cette "
1066
- #~ "taxinomie et ses termes seront perdus."
1067
-
1068
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1069
- #~ msgstr ""
1070
- #~ "Merci de choisir les noms singuliers et pluriels de toutes vos nouvelles "
1071
- #~ "taxinomies."
1072
-
1073
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1074
- #~ msgstr ""
1075
- #~ "Merci de choisir un nom singulier pour toutes vos nouvelles taxinomies."
1076
-
1077
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1078
- #~ msgstr ""
1079
- #~ "Merci de choisir un nom au pluriel pour toutes vos nouvelles taxinomies."
1080
-
1081
- #~ msgid ""
1082
- #~ "There is already a taxonomy with the same name. Please chose other one."
1083
- #~ msgstr ""
1084
- #~ "Il y a déjà une taxinomie avec le même nom. Merci d’en choisir un autre."
1085
-
1086
- #~ msgid "Filter by "
1087
- #~ msgstr "Filtrer par"
1088
-
1089
- #~ msgid "Not in "
1090
- #~ msgstr "Pas dans"
1091
-
1092
- #~ msgctxt "uploaded files"
1093
- #~ msgid "All (%s)"
1094
- #~ msgid_plural "All (%s)"
1095
- #~ msgstr[0] "Tout (%s)"
1096
- #~ msgstr[1] "Tous (%s)"
1097
-
1098
- #~ msgctxt "detached files"
1099
- #~ msgid "Unattached (%s)"
1100
- #~ msgid_plural "Unattached (%s)"
1101
- #~ msgstr[0] "Détaché (%s)"
1102
- #~ msgstr[1] "Détachés (%s)"
1103
-
1104
- #~ msgctxt "uploaded files"
1105
- #~ msgid "Trash (%s)"
1106
- #~ msgid_plural "Trash (%s)"
1107
- #~ msgstr[0] "Corbeille (%s)"
1108
- #~ msgstr[1] "Corbeille (%s)"
1109
-
1110
- #~ msgid "Filter"
1111
- #~ msgstr "Filtre"
1112
-
1113
- #~ msgid "Empty Trash"
1114
- #~ msgstr "Vider la Corbeille"
1115
-
1116
- #~ msgid "You do not have permission to upload files."
1117
- #~ msgstr "Vous n’avez pas les droits pour mettre en ligne des fichiers."
1118
-
1119
- #~ msgid "Overview"
1120
- #~ msgstr "Vue d'ensemble"
1121
-
1122
- #~ msgid ""
1123
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1124
- #~ "the most recent uploads listed first."
1125
- #~ msgstr ""
1126
- #~ "Tous les fichiers que vous avez envoyés sont listés dans la Bibliothèque "
1127
- #~ "des Médias, classés par ordre chronologique."
1128
-
1129
- #~ msgid ""
1130
- #~ "You can view your media in a simple visual grid or a list with columns. "
1131
- #~ "Switch between these views using the icons to the left above the media."
1132
- #~ msgstr ""
1133
- #~ "Vous pouvez voir vos médias dans une grille ou dans une liste avec "
1134
- #~ "colonnes. Vous pouvez passer d'une vue à l'autre avec l’icône à gauche au "
1135
- #~ "dessus des médias."
1136
-
1137
- #~ msgid ""
1138
- #~ "To delete media items, click the Bulk Select button at the top of the "
1139
- #~ "screen. Select any items you wish to delete, then click the Delete "
1140
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1141
- #~ "viewing your media."
1142
- #~ msgstr ""
1143
- #~ "Pour supprimer des médias, cliquez le bouton \"Séleciton en vrac\" en "
1144
- #~ "haut de l'écran. Sélectionnez les médias que vous voulez supprimer, puis "
1145
- #~ "cliquez le bouton \"Supprimer la sélection\". En cliquant sur \"Annuler"
1146
- #~ "\", vous retournerez à la vue des médias. "
1147
-
1148
- #~ msgid "Attachment Details"
1149
- #~ msgstr "Détails du fichier joint"
1150
-
1151
- #~ msgid ""
1152
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1153
- #~ "you to preview media and make quick edits. Any changes you make to the "
1154
- #~ "attachment details will be automatically saved."
1155
- #~ msgstr ""
1156
- #~ "Cliquer sur un élément affichera une fenêtre avec les détails du fichier "
1157
- #~ "joint, ce qui vous permettra de prévisualiser le média et réaliser de "
1158
- #~ "rapides modifications. Toutes les modifications que vous ferez dans les "
1159
- #~ "détails du fichier joint seront automatiquement enregistrées."
1160
-
1161
- #~ msgid ""
1162
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1163
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1164
- #~ msgstr ""
1165
- #~ "Utilisez les flèches en haut de la boîte de dialogue, ou les flèches "
1166
- #~ "gauche et droite de votre clavier pour naviguer rapidement entre les "
1167
- #~ "éléments."
1168
-
1169
- #~ msgid ""
1170
- #~ "You can also delete individual items and access the extended edit screen "
1171
- #~ "from the details dialog."
1172
- #~ msgstr ""
1173
- #~ "Vous pouvez aussi effacer des éléments individuellement, et accéder à "
1174
- #~ "l'écran étendu de modification depuis la boîte de dialogue des détails."
1175
-
1176
- #~ msgid "For more information:"
1177
- #~ msgstr "Pour plus d'informations :"
1178
-
1179
- #~ msgid ""
1180
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1181
- #~ "\"_blank\">Documentation on Media Library</a>"
1182
- #~ msgstr ""
1183
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1184
- #~ "\"_blank\">Documentation sur la Bibliothèque des Médias (Anglais)</a>"
1185
-
1186
- #~ msgid ""
1187
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1188
- #~ "Forums</a>"
1189
- #~ msgstr ""
1190
- #~ "<a href=\"http://www.wordpress-fr.net/support/\" target=\"_blank\">Forums "
1191
- #~ "d&rsquo;entraide</a>"
1192
-
1193
- #~ msgctxt "file"
1194
- #~ msgid "Add New"
1195
- #~ msgstr "Ajout de fichier"
1196
-
1197
- #~ msgid ""
1198
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1199
- #~ "php?mode=list\">Switch to the list view</a>."
1200
- #~ msgstr ""
1201
- #~ "La vue en grille de la Bibliothèque des Médias nécessite du JavaScript. "
1202
- #~ "<a href=\"upload.php?mode=list\">Basculer vers la vue en liste</a>."
1203
-
1204
- #~ msgid "You are not allowed to edit this post."
1205
- #~ msgstr "Vous n'êtes pas autorisé à modifier cet article."
1206
-
1207
- #~ msgid "You are not allowed to move this post to the trash."
1208
- #~ msgstr "Vous n'êtes pas autorisé à déplacer cet article dans la corbeille."
1209
-
1210
- #~ msgid "Error in moving to trash."
1211
- #~ msgstr "Erreur lors du déplacement dans la Corbeille."
1212
-
1213
- #~ msgid "You are not allowed to move this post out of the trash."
1214
- #~ msgstr "Vous n'êtes pas autorisé à sortir cet article de la corbeille."
1215
-
1216
- #~ msgid "Error in restoring from trash."
1217
- #~ msgstr "Erreur lors de la restauration depuis la Corbeille."
1218
-
1219
- #~ msgid "You are not allowed to delete this post."
1220
- #~ msgstr "Vous n’êtes pas autorisé à supprimer cet article."
1221
-
1222
- #~ msgid "Error in deleting."
1223
- #~ msgstr "Erreur lors de la suppression."
1224
-
1225
- #~ msgctxt "items per page (screen options)"
1226
- #~ msgid "Media items"
1227
- #~ msgstr "Éléments médias"
1228
-
1229
- #~ msgid ""
1230
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1231
- #~ "the most recent uploads listed first. You can use the Screen Options tab "
1232
- #~ "to customize the display of this screen."
1233
- #~ msgstr ""
1234
- #~ "Tous les fichiers que vous avez uploadé sont listés dans la Bibliothèque "
1235
- #~ "des Médias, organisé par ordre chronologique. Vous pouvez utiliser le tab "
1236
- #~ "\"Option d'affichage\" pour personnaliser la vue de cette page."
1237
-
1238
- #~ msgid ""
1239
- #~ "You can narrow the list by file type/status using the text link filters "
1240
- #~ "at the top of the screen. You also can refine the list by date using the "
1241
- #~ "dropdown menu above the media table."
1242
- #~ msgstr ""
1243
- #~ "Vous pouvez préciser la liste par type/status des fichiers en utilisant "
1244
- #~ "le filtre de recherche en haut de la page. Vous pouvez également affiner "
1245
- #~ "la liste par date en utilisant le menu déroulant au dessus de la table "
1246
- #~ "des médias."
1247
-
1248
- #~ msgid "Available Actions"
1249
- #~ msgstr "Actions disponibles"
1250
-
1251
- #~ msgid ""
1252
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1253
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1254
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1255
- #~ "Permanently will delete the file from the media library (as well as from "
1256
- #~ "any posts to which it is currently attached). View will take you to the "
1257
- #~ "display page for that file."
1258
- #~ msgstr ""
1259
- #~ "Les actions de modification, suppression permanente et visualisation sont "
1260
- #~ "affichées au survol de la souris. Cliquez \"modifier\" ou sur le nom du "
1261
- #~ "fichier pour afficher une simple page de modification. Cliquez sur "
1262
- #~ "\"suppression permanente\" pour supprimer définitivement l'élément de la "
1263
- #~ "Bibliothèque des Médias (tout comme de tout posts dans lequel l'élément "
1264
- #~ "est utilisé). Cliquez sur \"visualisation\" pour la page d'affichage de "
1265
- #~ "ce fichier."
1266
-
1267
- #~ msgid "Attaching Files"
1268
- #~ msgstr "Attacher les fichiers"
1269
-
1270
- #~ msgid ""
1271
- #~ "If a media file has not been attached to any post, you will see that in "
1272
- #~ "the Attached To column, and can click on Attach File to launch a small "
1273
- #~ "popup that will allow you to search for a post and attach the file."
1274
- #~ msgstr ""
1275
- #~ "Si un fichier média n'a été attaché à aucun article, vous le verrez dans "
1276
- #~ "la colonne \"Attaché à\". En cliquant sur l'élément vous pourrez "
1277
- #~ "rapidement rechercher un article et y attacher l'élément."
1278
-
1279
- #~ msgid "Search results for &#8220;%s&#8221;"
1280
- #~ msgstr "Résultats de la recherche pour &#8220;%s&#8221;"
1281
-
1282
- #~ msgid "Media attachment updated."
1283
- #~ msgstr "Fichier média joint mis à jour."
1284
-
1285
- #~ msgid "Reattached %d attachment."
1286
- #~ msgid_plural "Reattached %d attachments."
1287
- #~ msgstr[0] "%d fichier joint rattaché."
1288
- #~ msgstr[1] "%d fichiers joints rattachés."
1289
-
1290
- #~ msgid "Media attachment permanently deleted."
1291
- #~ msgid_plural "%d media attachments permanently deleted."
1292
- #~ msgstr[0] "Fichier média joint supprimé définitivement."
1293
- #~ msgstr[1] "%d fichiers médias joints supprimés définitivement."
1294
-
1295
- #~ msgid "Media attachment moved to the trash."
1296
- #~ msgid_plural "%d media attachments moved to the trash."
1297
- #~ msgstr[0] "Fichier média joint déplacé dans la Corbeille."
1298
- #~ msgstr[1] "%d fichiers médias joints déplacés dans la Corbeille."
1299
-
1300
- #~ msgid "Undo"
1301
- #~ msgstr "Annuler"
1302
-
1303
- #~ msgid "Media attachment restored from the trash."
1304
- #~ msgid_plural "%d media attachments restored from the trash."
1305
- #~ msgstr[0] "Fichier média joint restauré de la Corbeille."
1306
- #~ msgstr[1] "%d fichiers médias joints restaurés de la Corbeille."
1307
-
1308
- #~ msgid "Media permanently deleted."
1309
- #~ msgstr "Média effacé définitivement."
1310
-
1311
- #~ msgid "Error saving media attachment."
1312
- #~ msgstr "Erreur d'enregistrement du fichier média joint."
1313
-
1314
- #~ msgid "Media moved to the trash."
1315
- #~ msgstr "Média déplacé dans la Corbeille."
1316
-
1317
- #~ msgid "Media restored from the trash."
1318
- #~ msgstr "Média restauré de la Corbeille."
1319
-
1320
- #~ msgid ""
1321
- #~ "<a href=\"https://codex.wordpress.org/Media_Library_Screen\" target="
1322
- #~ "\"_blank\">Documentation on Media Library</a>"
1323
- #~ msgstr ""
1324
- #~ "<a href=\"https://codex.wordpress.org/Media_Library_Screen\" target="
1325
- #~ "\"_blank\">Documentation sur la Bibliothèque des Médias (Anglais)</a>"
1326
-
1327
- #~ msgid "Detached %d attachment."
1328
- #~ msgid_plural "Detached %d attachments."
1329
- #~ msgstr[0] "%d fichier joint détaché."
1330
- #~ msgstr[1] "%d fichiers joints détachés."
1331
-
1332
- #~ msgid "%d media attachment permanently deleted."
1333
- #~ msgid_plural "%d media attachments permanently deleted."
1334
- #~ msgstr[0] "%d fichier média joint supprimé définitivement. "
1335
- #~ msgstr[1] "%d fichiers médias joints supprimés définitivement. "
1336
-
1337
- #~ msgid "%d media attachment moved to the trash."
1338
- #~ msgid_plural "%d media attachments moved to the trash."
1339
- #~ msgstr[0] "%d fichier média joint déplacé dans la Corbeille. "
1340
- #~ msgstr[1] "%d fichiers médias joints déplacés dans la Corbeille."
1341
-
1342
- #~ msgid "%d media attachment restored from the trash."
1343
- #~ msgid_plural "%d media attachments restored from the trash."
1344
- #~ msgstr[0] "%d fichier média joint restauré de la Corbeille. "
1345
- #~ msgstr[1] "%d fichiers médias joints restaurés de la Corbeille. "
1346
-
1347
- #~ msgid "Column in List View"
1348
- #~ msgstr "Colonnes dans la vue en liste"
1349
-
1350
- #~ msgid "Filter in List View"
1351
- #~ msgstr "Filtrer dans la vue en liste"
1352
-
1353
- #~ msgid "Filter in Grid View / Media Popup"
1354
- #~ msgstr "Filtrer dans la présentation en grille / Popup pour les médias"
1355
-
1356
- #~ msgid "Remember terms order (sort)"
1357
- #~ msgstr "Se souvenir de l'ordre des termes (tri)"
1358
-
1359
- #~ msgid "Show media filters for ANY Media Popup."
1360
- #~ msgstr "Montrer les filtres de média dans toutes les popup de médias."
1361
-
1362
- #~ msgid ""
1363
- #~ "May be useful for those who need forcing filters for third-party plugins "
1364
- #~ "or themes."
1365
- #~ msgstr ""
1366
- #~ "Peut être utile pour ceux qui ont besoin de forcer les filtres pour les "
1367
- #~ "extensions ou thèmes externes."
1368
-
1369
- #~ msgid "Restore default MIME Types"
1370
- #~ msgstr "Restaurer les types de MIME par défaut"
1371
-
1372
- #~ msgid "http://wpUXsolutions.com"
1373
- #~ msgstr "http://wpUXsolutions.com"
1374
-
1375
- #~ msgid "wpUXsolutions"
1376
- #~ msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-30 12:51+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: \n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -36,13 +36,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:217
40
- #: core/options-pages.php:932 core/options-pages.php:1057
41
- #: core/options-pages.php:1370 core/options-pages.php:1547
42
  msgid "Media Settings"
43
  msgstr "הגדרות מדיה"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:189
46
  msgid "Media Library"
47
  msgstr "ספריית מדיה"
48
 
@@ -50,269 +50,270 @@ msgstr "ספריית מדיה"
50
  msgid "Taxonomies"
51
  msgstr "תוית מיון"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:191
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 "ספרית מדיה משופרת"
60
 
61
- #: core/options-pages.php:188
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:190 core/options-pages.php:1078
66
  msgid "Media Taxonomies"
67
  msgstr "תויות מיון למדיה"
68
 
69
- #: core/options-pages.php:214 core/options-pages.php:520
70
- #: core/options-pages.php:928 core/options-pages.php:1053
71
- #: core/options-pages.php:1366
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
74
 
75
- #: core/options-pages.php:228
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:229
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:233
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:235
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:237
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:240
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:245 core/options-pages.php:246
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:247 core/options-pages.php:257
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:249 core/options-pages.php:259
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:255 core/options-pages.php:256
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:272
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:279
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:286
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:290
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:296
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:298
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:306
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:378 core/options-pages.php:1102
148
- #: core/options-pages.php:1117 core/options-pages.php:1180
149
- #: core/options-pages.php:1249
150
  msgid "Edit"
151
  msgstr "ערוך"
152
 
153
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
154
  msgid "Close"
155
  msgstr "סגור"
156
 
157
- #: core/options-pages.php:380 core/options-pages.php:1118
158
- #: core/options-pages.php:1181
159
  msgid "View"
160
  msgstr "צפה"
161
 
162
- #: core/options-pages.php:381 core/options-pages.php:1119
163
- #: core/options-pages.php:1182
164
  msgid "Update"
165
  msgstr "עדכן"
166
 
167
- #: core/options-pages.php:382 core/options-pages.php:1120
168
- #: core/options-pages.php:1183
169
  msgid "Add New"
170
  msgstr "הוסף חדש"
171
 
172
- #: core/options-pages.php:383 core/options-pages.php:1121
173
- #: core/options-pages.php:1184
174
  msgid "New"
175
  msgstr "חדש"
176
 
177
- #: core/options-pages.php:384
178
  msgid "Name"
179
  msgstr "שם"
180
 
181
- #: core/options-pages.php:385 core/options-pages.php:1122
182
- #: core/options-pages.php:1185
183
  msgid "Parent"
184
  msgstr "הורה"
185
 
186
- #: core/options-pages.php:386 core/options-pages.php:616
187
- #: core/options-pages.php:1116 core/options-pages.php:1179
188
- #: core/taxonomies.php:365 enhanced-media-library.php:490
189
  msgid "All"
190
  msgstr "הכל"
191
 
192
- #: core/options-pages.php:387 core/options-pages.php:1123
193
- #: core/options-pages.php:1186
194
  msgid "Search"
195
  msgstr "חיפוש"
196
 
197
- #: core/options-pages.php:389 core/options-pages.php:1167
198
  msgid "New Taxonomy"
199
  msgstr "תוית מיון חדשה"
200
 
201
- #: core/options-pages.php:391
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:392
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:393
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:394
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:395
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:396
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:398
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:399
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
235
 
236
- #: core/options-pages.php:401
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:402
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:403
245
- msgid "Please choose Singilar name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:404
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:406
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:407 core/options-pages.php:412
257
- #: core/options-pages.php:495
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:409 pro/core/options-pages.php:165
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:410 core/options-pages.php:492
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:411
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:413
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:451
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
280
 
281
- #: core/options-pages.php:452
282
  msgid "Please fill into all fields."
283
  msgstr "אנא הזן את כל השדות"
284
 
285
- #: core/options-pages.php:453
286
  msgid "Duplicate extensions or MIME types. Please chose other one."
287
  msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
288
 
289
- #: core/options-pages.php:490 core/options-pages.php:607
290
  msgid "Complete Cleanup"
291
  msgstr ""
292
 
293
- #: core/options-pages.php:491
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:493
300
  msgid "Yes, delete all data"
301
  msgstr ""
302
 
303
- #: core/options-pages.php:494
304
  msgid "Cleaning..."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:525
308
  msgid "Enhanced Media Library Settings"
309
  msgstr ""
310
 
311
- #: core/options-pages.php:535
312
  msgid "Export"
313
  msgstr ""
314
 
315
- #: core/options-pages.php:539
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 +321,15 @@ msgid ""
320
  "another website."
321
  msgstr ""
322
 
323
- #: core/options-pages.php:544
324
  msgid "Export Plugin Settings"
325
  msgstr ""
326
 
327
- #: core/options-pages.php:554
328
  msgid "Import"
329
  msgstr ""
330
 
331
- #: core/options-pages.php:558
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,148 +337,168 @@ msgid ""
336
  "another website using the export button above."
337
  msgstr ""
338
 
339
- #: core/options-pages.php:559
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:566
347
  msgid "Import Plugin Settings"
348
  msgstr ""
349
 
350
- #: core/options-pages.php:578
351
  msgid "Restore"
352
  msgstr ""
353
 
354
- #: core/options-pages.php:584
355
  msgid "No backup available at the moment."
356
  msgstr ""
357
 
358
- #: core/options-pages.php:586
359
  msgid "Backup will be created automatically before any import operation."
360
  msgstr ""
361
 
362
- #: core/options-pages.php:590
363
  msgid ""
364
  "The backup has been automatically created before the latest import operation."
365
  msgstr ""
366
 
367
- #: core/options-pages.php:594
368
  msgid "Restore Settings from the Backup"
369
  msgstr ""
370
 
371
- #: core/options-pages.php:614
372
  msgid "What will be deleted:"
373
  msgstr ""
374
 
375
- #: core/options-pages.php:619
376
  msgid "All plugin options"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:620
380
  msgid "All plugin backups stored in database"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:624
384
  msgid "What will remain intact:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:625
388
  msgid "All media items"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:626
392
  msgid "All taxonomies not listed above"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:629
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:631
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:637
408
  msgid "Delete All Data & Deactivate"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:742
412
  msgid "Please upload a file to import settings."
413
  msgstr ""
414
 
415
- #: core/options-pages.php:762
416
  msgid "Plugin settings imported."
417
  msgstr ""
418
 
419
- #: core/options-pages.php:809
420
  msgid "Plugin settings restored from the backup."
421
  msgstr ""
422
 
423
- #: core/options-pages.php:953
424
  msgid "Media Items Order"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:960
428
  msgid "Order media items by"
429
  msgstr ""
430
 
431
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgid "For media library and media popups"
433
  msgstr ""
434
 
435
- #: core/options-pages.php:968
436
  msgid "Option allows to change order by drag and drop with Custom Order value."
437
  msgstr ""
438
 
439
- #: core/options-pages.php:973
440
  msgid "Sort order"
441
  msgstr ""
442
 
443
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
444
  msgid "Media Shortcodes"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:999 core/options-pages.php:1002
448
  msgid "Enhanced media shortcodes"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:1003
452
  msgid ""
453
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
454
  "upload date, and media items number limit"
455
  msgstr ""
456
 
457
- #: core/options-pages.php:1004
458
  msgid "Gallery example:"
459
  msgstr ""
460
 
461
- #: core/options-pages.php:1005
462
  msgid "Audio playlist example:"
463
  msgstr ""
464
 
465
- #: core/options-pages.php:1006
466
  msgid "Video playlist example:"
467
  msgstr ""
468
 
469
- #: core/options-pages.php:1008
470
  #, php-format
471
  msgid ""
472
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
473
  msgstr ""
474
 
475
- #: core/options-pages.php:1010
476
  #, php-format
477
  msgid "%sLearn more%s."
478
  msgstr ""
479
 
480
- #: core/options-pages.php:1012
481
  #, php-format
482
  msgid ""
483
  "Please check out your gallery front-end and back-end functionality once this "
@@ -485,233 +506,241 @@ msgid ""
485
  "%s."
486
  msgstr ""
487
 
488
- #: core/options-pages.php:1082 core/options-pages.php:1229
489
  msgid "Assign following taxonomies to Media Library:"
490
  msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
491
 
492
- #: core/options-pages.php:1101 core/options-pages.php:1167
493
- #: core/options-pages.php:1248
494
  msgid "Assign Taxonomy"
495
  msgstr "הקצא תוית מיון"
496
 
497
- #: core/options-pages.php:1102 core/options-pages.php:1249
498
  msgid "Edit Taxonomy"
499
  msgstr "ערוך תוית מיון"
500
 
501
- #: core/options-pages.php:1106 core/options-pages.php:1169
502
  msgid "Delete Taxonomy"
503
  msgstr "מחק תוית מיון"
504
 
505
- #: core/options-pages.php:1111 core/options-pages.php:1174
506
  msgid "Labels"
507
  msgstr "תויות"
508
 
509
- #: core/options-pages.php:1113 core/options-pages.php:1176
510
  msgid "Singular"
511
  msgstr "יחיד"
512
 
513
- #: core/options-pages.php:1114 core/options-pages.php:1177
514
  msgid "Plural"
515
  msgstr "רבים"
516
 
517
- #: core/options-pages.php:1115 core/options-pages.php:1178
518
  msgid "Menu Name"
519
  msgstr "שם התפריט"
520
 
521
- #: core/options-pages.php:1128 core/options-pages.php:1151
522
- #: core/options-pages.php:1191 core/options-pages.php:1252
523
  msgid "Settings"
524
  msgstr "הגדרות"
525
 
526
- #: core/options-pages.php:1130 core/options-pages.php:1193
527
  msgid "Taxonomy Name"
528
  msgstr "שם תוית המיון"
529
 
530
- #: core/options-pages.php:1131 core/options-pages.php:1194
531
  msgid "Hierarchical"
532
  msgstr "היררכי"
533
 
534
- #: core/options-pages.php:1132 core/options-pages.php:1195
535
  msgid "Column for List View"
536
  msgstr ""
537
 
538
- #: core/options-pages.php:1133 core/options-pages.php:1153
539
- #: core/options-pages.php:1196 core/options-pages.php:1254
540
  msgid "Filter for List View"
541
  msgstr ""
542
 
543
- #: core/options-pages.php:1134 core/options-pages.php:1154
544
- #: core/options-pages.php:1197 core/options-pages.php:1255
545
  msgid "Filter for Grid View / Media Popup"
546
  msgstr ""
547
 
548
- #: core/options-pages.php:1135 core/options-pages.php:1155
549
- #: core/options-pages.php:1198 core/options-pages.php:1256
550
  msgid "Edit in Media Popup"
551
  msgstr "עריכה בחלון מדיה"
552
 
553
- #: core/options-pages.php:1136 core/options-pages.php:1199
554
  msgid "Show in Nav Menu"
555
  msgstr "הצג בתפריט הניווט"
556
 
557
- #: core/options-pages.php:1137 core/options-pages.php:1200
558
  msgid "Remember Terms Order (sort)"
559
  msgstr ""
560
 
561
- #: core/options-pages.php:1138 core/options-pages.php:1201
562
  msgid "Show in REST"
563
  msgstr ""
564
 
565
- #: core/options-pages.php:1139 core/options-pages.php:1202
566
  msgid "Rewrite Slug"
567
  msgstr "שכתב סלוגן"
568
 
569
- #: core/options-pages.php:1140 core/options-pages.php:1203
570
  msgid "Slug with Front"
571
  msgstr "סלוגן עם הקדמה"
572
 
573
- #: core/options-pages.php:1215
574
  msgid "Add New Taxonomy"
575
  msgstr "הוסף תוית מיון חדשה"
576
 
577
- #: core/options-pages.php:1225
578
  msgid "Non-Media Taxonomies"
579
  msgstr "תויות מיון ללא-מדיה"
580
 
581
- #: core/options-pages.php:1286
582
  msgid "Options"
583
  msgstr "אפשרויות"
584
 
585
- #: core/options-pages.php:1296 core/options-pages.php:1299
586
  msgid "Taxonomy archive pages"
587
  msgstr "ארכיון עמודי תויות מיון"
588
 
589
- #: core/options-pages.php:1300
590
  msgid "Turn on media taxonomy archive pages on the front-end"
591
  msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
592
 
593
- #: core/options-pages.php:1301
594
  msgid ""
595
  "Re-save your permalink settings after this option change to make it work."
596
  msgstr ""
597
  "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
598
 
599
- #: core/options-pages.php:1307 core/options-pages.php:1310
600
  msgid "Assign all like hierarchical"
601
  msgstr "הקצא הכל באופן היררכי"
602
 
603
- #: core/options-pages.php:1311
604
  msgid ""
605
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
606
  msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
607
 
608
- #: core/options-pages.php:1317 core/options-pages.php:1320
609
  msgid "Force filters"
610
  msgstr "כפה מסננים"
611
 
612
- #: core/options-pages.php:1321
613
  msgid "Show media filters for ANY Media Popup"
614
  msgstr ""
615
 
616
- #: core/options-pages.php:1322
617
  msgid "Try this if filters are not shown for third-party plugins or themes."
618
  msgstr ""
619
 
620
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
621
  msgid "Add New MIME Type"
622
  msgstr "הוסף סוג קובץ חדש"
623
 
624
- #: core/options-pages.php:1394 core/options-pages.php:1449
625
  msgid "Extension"
626
  msgstr "הרחבה"
627
 
628
- #: core/options-pages.php:1395 core/options-pages.php:1450
629
  msgid "MIME Type"
630
  msgstr "סוג קובץ (MIME Type)"
631
 
632
- #: core/options-pages.php:1396 core/options-pages.php:1451
633
  msgid "Singular Label"
634
  msgstr "תוית יחידה"
635
 
636
- #: core/options-pages.php:1397 core/options-pages.php:1452
637
  msgid "Plural Label"
638
  msgstr "תויות רבות"
639
 
640
- #: core/options-pages.php:1398 core/options-pages.php:1428
641
- #: core/options-pages.php:1441 core/options-pages.php:1453
642
  msgid "Add Filter"
643
  msgstr "הוסף מסנן"
644
 
645
- #: core/options-pages.php:1399 core/options-pages.php:1429
646
- #: core/options-pages.php:1442 core/options-pages.php:1454
647
  msgid "Allow Upload"
648
  msgstr "אפשר העלאה"
649
 
650
- #: core/options-pages.php:1443
651
  msgid "Delete MIME Type"
652
  msgstr "מחק סוג קובץ"
653
 
654
- #: core/options-pages.php:1460
655
  msgid "Restore WordPress default MIME Types"
656
  msgstr ""
657
 
658
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
659
  msgid "Save Changes"
660
  msgstr "שמור שינויים"
661
 
662
- #: core/options-pages.php:1499
663
  msgid "Changelog"
664
  msgstr ""
665
 
666
- #: core/options-pages.php:1500
667
  msgid "What's new in"
668
  msgstr ""
669
 
670
- #: core/options-pages.php:1500
671
  msgid "version"
672
  msgstr ""
673
 
674
- #: core/options-pages.php:1503
675
  msgid "More features under the hood"
676
  msgstr ""
677
 
678
- #: core/options-pages.php:1505
679
  msgid "Support"
680
  msgstr ""
681
 
682
- #: core/options-pages.php:1506
683
  msgid "Feel free to ask for help on"
684
  msgstr ""
685
 
686
- #: core/options-pages.php:1506
687
  msgid "Support is free for both versions of the plugin."
688
  msgstr ""
689
 
690
- #: core/options-pages.php:1508
691
  msgid "Plugin rating"
692
  msgstr ""
693
 
694
- #: core/options-pages.php:1509
695
  msgid "Please"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1509
699
  msgid "vote for the plugin"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1509
703
  msgid "Thanks!"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1511
707
  msgid "Other plugins you may find useful"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1550
711
  msgid "Utility"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1571
715
  msgid "Vote!"
716
  msgstr ""
717
 
@@ -723,333 +752,78 @@ msgstr ""
723
  msgid "Media Library settings saved."
724
  msgstr ""
725
 
726
- #: core/taxonomies.php:358 core/taxonomies.php:364
727
- #: enhanced-media-library.php:489
728
  msgid "Filter by"
729
  msgstr "סנן על-פי"
730
 
731
- #: core/taxonomies.php:366 enhanced-media-library.php:491
732
  msgid "Not in"
733
  msgstr "לא ב-"
734
 
735
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
736
  msgid "All Uncategorized"
737
  msgstr "הכל לא ממויין"
738
 
739
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
740
  msgid "Reset All Filters"
741
  msgstr "אפס את כל המסננים"
742
 
743
- #: enhanced-media-library.php:523
744
  msgid "Uploaded to post #"
745
  msgstr ""
746
 
747
- #: enhanced-media-library.php:524
748
  msgid "Based On"
749
  msgstr ""
750
 
751
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
752
  msgid "Media Categories"
753
  msgstr ""
754
 
755
- #: enhanced-media-library.php:570
756
  msgid "Media Category"
757
  msgstr ""
758
 
759
- #: enhanced-media-library.php:572
760
  msgid "All Media Categories"
761
  msgstr ""
762
 
763
- #: enhanced-media-library.php:573
764
  msgid "Edit Media Category"
765
  msgstr ""
766
 
767
- #: enhanced-media-library.php:574
768
  msgid "View Media Category"
769
  msgstr ""
770
 
771
- #: enhanced-media-library.php:575
772
  msgid "Update Media Category"
773
  msgstr ""
774
 
775
- #: enhanced-media-library.php:576
776
  msgid "Add New Media Category"
777
  msgstr ""
778
 
779
- #: enhanced-media-library.php:577
780
  msgid "New Media Category Name"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:578
784
  msgid "Parent Media Category"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:579
788
  msgid "Parent Media Category:"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:580
792
  msgid "Search Media Categories"
793
  msgstr ""
794
 
795
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
796
- msgid "Remove"
797
- msgstr "הסר"
798
-
799
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
800
- msgid "Deselect"
801
- msgstr "בטל בחירה"
802
-
803
- #: pro/core/bulk-edit.php:105
804
- msgid "Caption this image&hellip;"
805
- msgstr "תאר תמונה זו&hellip;"
806
-
807
- #: pro/core/bulk-edit.php:109
808
- msgid "Describe this video&hellip;"
809
- msgstr "תאר וידיאו זה&hellip;"
810
-
811
- #: pro/core/bulk-edit.php:111
812
- msgid "Describe this audio file&hellip;"
813
- msgstr "תאר אודיו זה&hellip;"
814
-
815
- #: pro/core/bulk-edit.php:113
816
- msgid "Describe this media file&hellip;"
817
- msgstr "תאר מדיה זו&hellip;"
818
-
819
- #: pro/core/bulk-edit.php:122
820
- msgid "Attachments Details"
821
- msgstr "פרטי הנספח"
822
-
823
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
824
- msgid "Select All"
825
- msgstr "בחר הכל"
826
-
827
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
828
- msgid "Edit Selection"
829
- msgstr "ערוך בחירה"
830
-
831
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
832
- msgid "Deselect All"
833
- msgstr "בטל בחירה מהכל"
834
-
835
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
836
- msgid "Delete Selected"
837
- msgstr "מחק בחירה"
838
-
839
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
840
- msgid "Order By"
841
- msgstr ""
842
-
843
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
844
- msgid "Date"
845
- msgstr ""
846
-
847
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
848
- msgid "Title"
849
- msgstr ""
850
-
851
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
852
- msgid "Custom Order"
853
- msgstr ""
854
-
855
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
856
- msgid "Random"
857
- msgstr ""
858
-
859
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
860
- msgid "Order"
861
- msgstr ""
862
-
863
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
864
- msgid "Ascending"
865
- msgstr ""
866
-
867
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
868
- msgid "Descending"
869
- msgstr ""
870
-
871
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
872
- msgid "Limit"
873
- msgstr ""
874
-
875
- #: pro/core/options-pages.php:78
876
- msgid "Your license has been deactivated."
877
- msgstr ""
878
-
879
- #: pro/core/options-pages.php:88
880
- msgid "Please check if your license key is correct and try again."
881
- msgstr ""
882
-
883
- #: pro/core/options-pages.php:101
884
- msgid ""
885
- "Wrong license key or a server error occured. Please check your license key "
886
- "and try again."
887
- msgstr ""
888
-
889
- #: pro/core/options-pages.php:111
890
- msgid "You license has been activated."
891
- msgstr ""
892
-
893
- #: pro/core/options-pages.php:164
894
- #, php-format
895
- msgid "Auto-assign media items to parent %s %s on upload"
896
- msgstr ""
897
-
898
- #: pro/core/options-pages.php:165
899
- #, php-format
900
- msgid ""
901
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
902
- "attached to a %s will be assigned to %s of their parent %s. Currently "
903
- "assigned %s will not be saved. Media items that are not attached to any %s "
904
- "will not be affected."
905
- msgstr ""
906
-
907
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
908
- msgid "Bulk Edit"
909
- msgstr "עריכה קבוצתית"
910
-
911
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
912
- msgid "Turn off 'Save Changes' button"
913
- msgstr "כבה את כפתור \"שמור שינויים\""
914
-
915
- #: pro/core/options-pages.php:200
916
- msgid "Save changes on the fly"
917
- msgstr "שמור שינויים תוך כדי ביצועם"
918
-
919
- #: pro/core/options-pages.php:201
920
- msgid ""
921
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
922
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
923
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
924
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
925
- "files / taxonomies with this option turned on."
926
- msgstr ""
927
-
928
- #: pro/core/options-pages.php:202
929
- msgid ""
930
- "Strongly NOT recommended option if you work with more than hundred of files "
931
- "at a time."
932
- msgstr "אפשרות לא מומלצת במידה והנך עובד עם למעלה ממאה קבצים בכל פעם."
933
-
934
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
935
- msgid "License Key"
936
- msgstr "מספר רישיון"
937
-
938
- #: pro/core/options-pages.php:252
939
- #, php-format
940
- msgid ""
941
- "To unlock updates please enter your license key below. You can get your "
942
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
943
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
944
- msgstr ""
945
-
946
- #: pro/core/options-pages.php:262
947
- msgid "Activate License"
948
- msgstr "הפעל רישיון"
949
-
950
- #: pro/core/options-pages.php:269
951
- msgid "Your license is active!"
952
- msgstr "הרישיון שלך פעיל!"
953
-
954
- #: pro/core/options-pages.php:273
955
- msgid "Deactivate License"
956
- msgstr ""
957
-
958
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
959
- msgid ""
960
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
961
- "this server&#8217;s configuration. If you continue to have problems, please "
962
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
963
- msgstr ""
964
- "שגיאה לא צפויה ארעה. משהו עשוי להיות לא כשורה עם WordPress.org או עם הגדרות "
965
- "השרת. אם הנך ממשיך לחוות בעיות אנא נסה למצוא פתרון ב-<a href=\"https://"
966
- "wordpress.org/support/\">פורומי התמיכה</a>."
967
-
968
- #: pro/core/update.php:113
969
- msgid ""
970
- "(WordPress could not establish a secure connection to WordPress.org. Please "
971
- "contact your server administrator.)"
972
- msgstr ""
973
- "(וורדפרס לא הצליחה ליצור חיבור מאובטח אל WordPress.org . אנא צור קשר עם מנהל "
974
- "השרת.)"
975
-
976
- #: pro/core/update.php:180
977
- #, php-format
978
- msgid ""
979
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
980
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
981
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
982
- msgstr ""
983
-
984
- #: pro/enhanced-media-library-pro.php:119
985
- msgid "ALL files belong to this item"
986
- msgstr "כל הקבצים שייכים לפריט זה"
987
-
988
- #: pro/enhanced-media-library-pro.php:120
989
- msgid "SOME files belong to this item"
990
- msgstr "מספר קבצים שייכים לפריט זה"
991
-
992
- #: pro/enhanced-media-library-pro.php:121
993
- msgid "NO files belong to this item"
994
- msgstr "אין קבצים השייכים לפריט זה"
995
-
996
- #: pro/enhanced-media-library-pro.php:122
997
- msgid "Changes saved."
998
- msgstr "השינויים נשמרו."
999
-
1000
- #: pro/enhanced-media-library-pro.php:123
1001
- msgid "Something went wrong."
1002
- msgstr "משהו השתבש."
1003
-
1004
- #: pro/enhanced-media-library-pro.php:126
1005
- msgid "Edit Media Files"
1006
- msgstr "ערוך קבצי מדיה"
1007
-
1008
- #: pro/enhanced-media-library-pro.php:151
1009
- msgid "Create a filter-based gallery"
1010
- msgstr ""
1011
-
1012
- #: pro/enhanced-media-library-pro.php:152
1013
- msgid "Create a filter-based playlist"
1014
- msgstr ""
1015
-
1016
- #: pro/enhanced-media-library-pro.php:153
1017
- msgid "Create a filter-based video playlist"
1018
- msgstr ""
1019
-
1020
- #: pro/enhanced-media-library-pro.php:231
1021
- msgid ""
1022
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1023
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1024
- "will remain intact."
1025
- msgstr ""
1026
-
1027
- #: pro/enhanced-media-library-pro.php:231
1028
- msgid "Return to Plugins"
1029
- msgstr "חזור לתוספים"
1030
-
1031
- #: pro/enhanced-media-library-pro.php:282
1032
- msgid ""
1033
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1034
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1035
- "be active. Please network deactivate and delete the free versions of the "
1036
- "plugin. All your data will remain intact."
1037
- msgstr ""
1038
-
1039
- #: pro/enhanced-media-library-pro.php:299
1040
- msgid ""
1041
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1042
- "be active. Please deactivate and delete the free version of the plugin. All "
1043
- "your data will remain intact."
1044
- msgstr ""
1045
-
1046
- #: pro/enhanced-media-library-pro.php:315
1047
- msgid ""
1048
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1049
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1050
- "version to be active. Please deactivate (or network deactivate) and delete "
1051
- "the free version of the plugin for this site. All your data will remail "
1052
- "intact."
1053
  msgstr ""
1054
 
1055
  #. Description of the plugin/theme
@@ -1057,339 +831,6 @@ msgid ""
1057
  "This plugin will be handy for those who need to manage a lot of media files."
1058
  msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם קבצים רבים."
1059
 
1060
- #~ msgid ""
1061
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1062
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1063
- #~ "be lost."
1064
- #~ msgstr ""
1065
- #~ "תוית המיון תמחק לצמיתות! קבצי המדיה ישארו כפי שהם, אך הקשרים התלויים "
1066
- #~ "בתוית המיון יאבדו."
1067
-
1068
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1069
- #~ msgstr "אנא בחר שמות לכל תויות המיון החדשות שלך עבור יחיד ורבים."
1070
-
1071
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1072
- #~ msgstr "אנא בחר שם ביחיד עבור כל תויות המיון החדשות שלך."
1073
-
1074
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1075
- #~ msgstr "אנא בחר שם ברבים עבור כל תויות המיון החדשות שלך."
1076
-
1077
- #~ msgid ""
1078
- #~ "There is already a taxonomy with the same name. Please chose other one."
1079
- #~ msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
1080
-
1081
- #~ msgid "Filter by "
1082
- #~ msgstr "סנן על-פי "
1083
-
1084
- #~ msgid "Not in "
1085
- #~ msgstr "לא ב-"
1086
-
1087
- #~ msgid ""
1088
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1089
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1090
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1091
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1092
- #~ "of your media files / taxonomies with this option turned on."
1093
- #~ msgstr ""
1094
- #~ "כל לחיצה על תיבת סימון עבור תוית מיון בעת עריכה קבוצתית של קבצי מדיה "
1095
- #~ "תגרום ל-<strong style=\"color:red\">שמירה מיידית</strong> של המידע. אנא "
1096
- #~ "הזהר! קיים סיכוי רב יותר לביצוע <strong style=\"color:red\">הקצאה מחדש "
1097
- #~ "שגויה בטעות</strong> של המון קבצי מדיה / תויות מיון כאשר אפשרות זאת "
1098
- #~ "מאופשרת."
1099
-
1100
- #~ msgctxt "detached files"
1101
- #~ msgid "Unattached (%s)"
1102
- #~ msgid_plural "Unattached (%s)"
1103
- #~ msgstr[0] "לא מקושר (%s)"
1104
- #~ msgstr[1] "לא מקושרים (%s)"
1105
-
1106
- #~ msgctxt "uploaded files"
1107
- #~ msgid "Trash (%s)"
1108
- #~ msgid_plural "Trash (%s)"
1109
- #~ msgstr[0] "פח (%s)"
1110
- #~ msgstr[1] "פח (%s)"
1111
-
1112
- #~ msgid "Filter"
1113
- #~ msgstr "סנן"
1114
-
1115
- #~ msgid "Empty Trash"
1116
- #~ msgstr "רוקן פח"
1117
-
1118
- #~ msgid "You do not have permission to upload files."
1119
- #~ msgstr "אין לך הרשאות להעלאת קבצים"
1120
-
1121
- #~ msgid "Overview"
1122
- #~ msgstr "סקירה"
1123
-
1124
- #~ msgid ""
1125
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1126
- #~ "the most recent uploads listed first."
1127
- #~ msgstr ""
1128
- #~ "כל הקבצים שהעלאת רשומים בספרית המדיה, עם רשימת ההעלאות האחרונות תחילה. "
1129
-
1130
- #~ msgid ""
1131
- #~ "You can view your media in a simple visual grid or a list with columns. "
1132
- #~ "Switch between these views using the icons to the left above the media."
1133
- #~ msgstr ""
1134
- #~ "תוכל לצפות בקבצי המידה שלך בתצוגת פריסה או בתצוגת רשימה עם עמודות. החלף "
1135
- #~ "בין מצבי תצוגה אלו על-ידי שימוש בסמלים מעל ועל יד המדיה."
1136
-
1137
- #~ msgid ""
1138
- #~ "To delete media items, click the Bulk Select button at the top of the "
1139
- #~ "screen. Select any items you wish to delete, then click the Delete "
1140
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1141
- #~ "viewing your media."
1142
- #~ msgstr ""
1143
- #~ "על מנת למחוק קבצי מדיה, לחץ על כפתור העריכה הקבוצתית בראש המסך. בחר אילו "
1144
- #~ "קבצים ברצונך למחוק, לאחר מכן לחץ על כפתור מחיקת הבחירה. לחץ בטל לביטול "
1145
- #~ "הבחירה וחזרה לצפיה במדיה."
1146
-
1147
- #~ msgid "Attachment Details"
1148
- #~ msgstr "פרטי הנספח"
1149
-
1150
- #~ msgid ""
1151
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1152
- #~ "you to preview media and make quick edits. Any changes you make to the "
1153
- #~ "attachment details will be automatically saved."
1154
- #~ msgstr ""
1155
- #~ "לחיצה על פריט תציג חלון פרטים אשר יאפשר לך תצוגה מקדימה למדיה ולבצע "
1156
- #~ "עריכות מהירות, כל שינוי שתבצע ישמר באופן אוטומטי."
1157
-
1158
- #~ msgid ""
1159
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1160
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1161
- #~ msgstr ""
1162
- #~ "השתמש בכפתורים שלמעלה ובחצי הצדדים במקלדת על מנת לנווט בין פריטי המדיה "
1163
- #~ "במהירות."
1164
-
1165
- #~ msgid ""
1166
- #~ "You can also delete individual items and access the extended edit screen "
1167
- #~ "from the details dialog."
1168
- #~ msgstr ""
1169
- #~ "בנוסף אתה יכול למחוק פריטים אינדיווידואלים ולגשת לעמוד העריכה הנרחב ממסך "
1170
- #~ "חלון הפרטים."
1171
-
1172
- #~ msgid "For more information:"
1173
- #~ msgstr "למידע נוסף:"
1174
-
1175
- #~ msgid ""
1176
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1177
- #~ "\"_blank\">Documentation on Media Library</a>"
1178
- #~ msgstr ""
1179
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1180
- #~ "\"_blank\">תיעוד ספרית המדיה</a>"
1181
-
1182
- #~ msgid ""
1183
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1184
- #~ "Forums</a>"
1185
- #~ msgstr ""
1186
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">פורמי תמיכה</"
1187
- #~ "a>"
1188
-
1189
- #~ msgctxt "file"
1190
- #~ msgid "Add New"
1191
- #~ msgstr "הוסף קובץ"
1192
-
1193
- #~ msgid ""
1194
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1195
- #~ "php?mode=list\">Switch to the list view</a>."
1196
- #~ msgstr ""
1197
- #~ "תצוגת הפריסה עבור ספריית המדיה זקוקה לג'אווה סקריפט על מנת לפעול כהלכה. "
1198
- #~ "<a href=\"upload.php?mode=list\">עבור למצב תצוגת רשימה</a>."
1199
-
1200
- #~ msgid "You are not allowed to edit this post."
1201
- #~ msgstr "אינך מורשה לערוך את הפוסט הנוכחי."
1202
-
1203
- #~ msgid "You are not allowed to move this post to the trash."
1204
- #~ msgstr "אינך מורשה להעביר פוסט זה לפח."
1205
-
1206
- #~ msgid "Error in moving to trash."
1207
- #~ msgstr "שגיאה בהעברה לפח."
1208
-
1209
- #~ msgid "You are not allowed to move this post out of the trash."
1210
- #~ msgstr "אינך מורשה להוציע את הפוסט מחוץ לפח."
1211
-
1212
- #~ msgid "Error in restoring from trash."
1213
- #~ msgstr "שגיאה בשחזור מהפח."
1214
-
1215
- #~ msgid "You are not allowed to delete this post."
1216
- #~ msgstr "אינך מורשה למחוק פוסט זה."
1217
-
1218
- #~ msgid "Error in deleting."
1219
- #~ msgstr "שגיאה במחיקה"
1220
-
1221
- #~ msgctxt "items per page (screen options)"
1222
- #~ msgid "Media items"
1223
- #~ msgstr "קבצי מדיה"
1224
-
1225
- #~ msgid ""
1226
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1227
- #~ "the most recent uploads listed first. You can use the Screen Options tab "
1228
- #~ "to customize the display of this screen."
1229
- #~ msgstr ""
1230
- #~ "כל הקבצים שהעלאת רשומים בספרית המדיה, עם רשימת ההעלאות האחרונות תחילה. "
1231
- #~ "תוכל להשתמש בלשונית אפשרויות התצוגה על מנת להתאים את התצוגה לצג."
1232
-
1233
- #~ msgid ""
1234
- #~ "You can narrow the list by file type/status using the text link filters "
1235
- #~ "at the top of the screen. You also can refine the list by date using the "
1236
- #~ "dropdown menu above the media table."
1237
- #~ msgstr ""
1238
- #~ "ניתן לצמצם את הרשימה באמצעות סוג/סטטוס על-ידי שימוש במסננים המופיעים "
1239
- #~ "למעלה. בנוסף ניתן להשתמש ברשימה הנגללת מעל טבלת המדיה."
1240
-
1241
- #~ msgid "Available Actions"
1242
- #~ msgstr "פעולות זמינות"
1243
-
1244
- #~ msgid ""
1245
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1246
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1247
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1248
- #~ "Permanently will delete the file from the media library (as well as from "
1249
- #~ "any posts to which it is currently attached). View will take you to the "
1250
- #~ "display page for that file."
1251
- #~ msgstr ""
1252
- #~ "מעבר על שורות מגלה קישורי פעולות: עריכה, מחיקה לצמיתות, וצפיה. לחיצה על "
1253
- #~ "עריכה או על קבצי מדיה תציג מסך פשוט המאפשר עריכה פרטנית של המאפיינים. "
1254
- #~ "לחיצה על מחיקה לצמיתות תגרום למחיקה מספרית המדיה (בנוסף מכל פוסט אליו "
1255
- #~ "התבצע קישור של המדיה). צפיה תאפשר לצפות בעמוד עבור אותו הקובץ מדיה."
1256
-
1257
- #~ msgid "Attaching Files"
1258
- #~ msgstr "צירוף קבצים"
1259
-
1260
- #~ msgid ""
1261
- #~ "If a media file has not been attached to any post, you will see that in "
1262
- #~ "the Attached To column, and can click on Attach File to launch a small "
1263
- #~ "popup that will allow you to search for a post and attach the file."
1264
- #~ msgstr ""
1265
- #~ "אם קובץ מדיה לא קושר לאף פוסט, תוכל לראות זאת בעמודת הפריטים שצורפו "
1266
- #~ "(קושרו) ותוכל ללחוץ על מנת לפתוח חלון חיפוש שיאפשר לך לחפש פוסט ולקשר "
1267
- #~ "אליו את הקובץ."
1268
-
1269
- #~ msgid "Search results for &#8220;%s&#8221;"
1270
- #~ msgstr "תוצאות חיפוש עבור &#8220;%s&#8221;"
1271
-
1272
- #~ msgid "Media attachment updated."
1273
- #~ msgstr "נספח מדיה עודכן."
1274
-
1275
- #~ msgid "Reattached %d attachment."
1276
- #~ msgid_plural "Reattached %d attachments."
1277
- #~ msgstr[0] "קושר נספח %d"
1278
- #~ msgstr[1] "קושרו נספחים %d"
1279
-
1280
- #~ msgid "Media attachment permanently deleted."
1281
- #~ msgid_plural "%d media attachments permanently deleted."
1282
- #~ msgstr[0] "נספח המדיה נמחק לצמיתות"
1283
- #~ msgstr[1] "%d נספחי מדיה נמחקו לצמיתות"
1284
-
1285
- #~ msgid "Media attachment moved to the trash."
1286
- #~ msgid_plural "%d media attachments moved to the trash."
1287
- #~ msgstr[0] "נספח המדיה עבר לפח."
1288
- #~ msgstr[1] "%d נספחי המדיה עברו לפח."
1289
-
1290
- #~ msgid "Undo"
1291
- #~ msgstr "בטל"
1292
-
1293
- #~ msgid "Media attachment restored from the trash."
1294
- #~ msgid_plural "%d media attachments restored from the trash."
1295
- #~ msgstr[0] "נספח המדיה שוחזר מהפח."
1296
- #~ msgstr[1] "%d נספחי מדיה שוחזרו מהפח."
1297
-
1298
- #~ msgid "Media permanently deleted."
1299
- #~ msgstr "המדיה נמחקה לצמיתות."
1300
-
1301
- #~ msgid "Error saving media attachment."
1302
- #~ msgstr "שגיאה בשמירת נספח המדיה."
1303
-
1304
- #~ msgid "Media moved to the trash."
1305
- #~ msgstr "המדיה הועברה לפח."
1306
-
1307
- #~ msgid "Media restored from the trash."
1308
- #~ msgstr "המדיה שוחזרה מהפח."
1309
-
1310
- #~ msgid "Column in List View"
1311
- #~ msgstr "עמודה בתצוגת רשימה"
1312
-
1313
- #~ msgid "Filter in List View"
1314
- #~ msgstr "סנן בתצוגת רשימה"
1315
-
1316
- #~ msgid "Filter in Grid View / Media Popup"
1317
- #~ msgstr "סנן בתצוגת פריסה / חלון מדיה"
1318
-
1319
- #~ msgid "Remember terms order (sort)"
1320
- #~ msgstr "זכור תנאי מיון"
1321
-
1322
- #~ msgid "Show media filters for ANY Media Popup."
1323
- #~ msgstr "הצג מסנני מדיה עבור כל חלון מדיה שנפתח"
1324
-
1325
- #~ msgid ""
1326
- #~ "May be useful for those who need forcing filters for third-party plugins "
1327
- #~ "or themes."
1328
- #~ msgstr ""
1329
- #~ "עשוי להיות שימושי עבור אלו הרוצים לכפות סינון עבור תוספי צד-שלישי או "
1330
- #~ "תבניות."
1331
-
1332
- #~ msgid "Restore default MIME Types"
1333
- #~ msgstr "שחזר ברירת מחדל עבור סוגי קבצים"
1334
-
1335
- #~ msgid ""
1336
- #~ "Please deactivate and <strong>remove</strong> the old version prior to "
1337
- #~ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1338
- #~ "will remain intact."
1339
- #~ msgstr ""
1340
- #~ "אנא נטרל ו-<strong>הסר</strong> את הגרסה הישנה טרם הפעלת ורישוי "
1341
- #~ "<strong>Enhanced Media Library PRO</strong>. כל המידע ישמר."
1342
-
1343
- #~ msgid "EML PRO Updates"
1344
- #~ msgstr "עדכוני EML PRO"
1345
-
1346
- #~ msgid "Updates"
1347
- #~ msgstr "עדכונים"
1348
-
1349
- #~ msgid "Enhanced Media Library PRO License"
1350
- #~ msgstr "רישוי Enhanced Media Library PRO"
1351
-
1352
- #~ msgid ""
1353
- #~ "To unlock updates, please enter your license key below. You can see your "
1354
- #~ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
1355
- #~ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
1356
- #~ "href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
1357
- #~ msgstr ""
1358
- #~ "על מנת לפתוח את אפשרות העדכונים, אנא הזן את קוד הרישוי שלך בעמוד ה-<a "
1359
- #~ "href=\"%s\">עדכונים</a>. תוכל לראות את קוד הרישוי ב-<a href=\"%s\">החשבון "
1360
- #~ "שלך</a>. אם אין ברשותך קוד רישוי, הינך מוזמן <a href=\"%s\">לרכוש אותו</"
1361
- #~ "a>."
1362
-
1363
- #~ msgid ""
1364
- #~ "To unlock updates, please enter your license key on the <a href=\"%s"
1365
- #~ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
1366
- #~ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
1367
- #~ "href=\"%s\">purchase it</a>."
1368
- #~ msgstr ""
1369
- #~ "על מנת לפתוח את אפשרות העדכונים, אנא הזן את קוד הרישוי שלך בעמוד ה-<a "
1370
- #~ "href=\"%s\">עדכונים</a>. תוכל לראות את קוד הרישוי ב-<a href=\"%s\">החשבון "
1371
- #~ "שלך</a>. אם אין ברשותך קוד רישוי, הינך מוזמן <a href=\"%s\">לרכוש אותו</"
1372
- #~ "a>."
1373
-
1374
- #~ msgid "Expand Details"
1375
- #~ msgstr "הצג פרטים"
1376
-
1377
- #~ msgid "Collapse Details"
1378
- #~ msgstr "פרטים והרחבה"
1379
-
1380
- #~ msgid "Validation Failed. One or more fields below are required."
1381
- #~ msgstr "האימות נכשל. אחד או יותר מהשדות הנ\"ל נדרשים."
1382
-
1383
- #~ msgid ""
1384
- #~ "The changes you made will be lost if you navigate away from this page"
1385
- #~ msgstr "השינויים שביצעת יאבדו אם תעבור מעמוד זה"
1386
-
1387
- #~ msgid ""
1388
- #~ "<strong>Enhanced Media Library PRO</strong> does not require free version "
1389
- #~ "to be active. Please deactivate and remove the free version of the plugin."
1390
- #~ msgstr ""
1391
- #~ "<strong>Enhanced Media Library PRO</strong> אינו זקוק לגרסה החינמית על "
1392
- #~ "מנת לפעול. אנא נטרל והסר את הגרסא החינמית של התוסף."
1393
-
1394
- #~ msgid "Enhanced Media Library PRO"
1395
- #~ msgstr "Enhanced Media Library PRO"
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"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
+ #: core/options-pages.php:97 core/options-pages.php:236
40
+ #: core/options-pages.php:997 core/options-pages.php:1122
41
+ #: core/options-pages.php:1445 core/options-pages.php:1622
42
  msgid "Media Settings"
43
  msgstr "הגדרות מדיה"
44
 
45
+ #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "ספריית מדיה"
48
 
50
  msgid "Taxonomies"
51
  msgstr "תוית מיון"
52
 
53
+ #: core/options-pages.php:124 core/options-pages.php:210
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 "ספרית מדיה משופרת"
61
 
62
+ #: core/options-pages.php:207
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
 
76
+ #: core/options-pages.php:247
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:248
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:252
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:254
91
  msgid "Width"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:256
95
  msgid "Height"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:259
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:264 core/options-pages.php:265
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:266 core/options-pages.php:276
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:268 core/options-pages.php:278
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:274 core/options-pages.php:275
116
  msgid "Large size"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:291
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:298
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:305
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:309
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:315
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:317
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:325
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
+ #: core/options-pages.php:397 core/options-pages.php:1167
149
+ #: core/options-pages.php:1182 core/options-pages.php:1245
150
+ #: core/options-pages.php:1314
151
  msgid "Edit"
152
  msgstr "ערוך"
153
 
154
+ #: core/options-pages.php:398
155
  msgid "Close"
156
  msgstr "סגור"
157
 
158
+ #: core/options-pages.php:399 core/options-pages.php: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
 
178
+ #: core/options-pages.php:403
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
 
202
+ #: core/options-pages.php:410
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:411
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
+ #: core/options-pages.php:412
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:413
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:414
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:415
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:417
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:418
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
236
 
237
+ #: core/options-pages.php:420
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:421
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:422
246
+ msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:423
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:425
254
  msgid "Ok"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:426 core/options-pages.php:431
258
+ #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:428
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:430
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:432
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:470
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
  "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
  "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
  "%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
 
752
  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
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-it_IT.mo ADDED
Binary file
languages/enhanced-media-library-it_IT.po ADDED
@@ -0,0 +1,891 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Enhanced Media Library PRO
2
+ # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library PRO\n"
6
+ "POT-Creation-Date: 2016-06-27 20:48+0300\n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
+ "Language-Team: \n"
10
+ "Language: it_IT\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: core/mime-types.php:30
25
+ msgid "MIME Types settings restored."
26
+ msgstr "Impostazioni tipi MIME ripristinate."
27
+
28
+ #: core/mime-types.php:39
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>"
36
+ msgstr[0] " <span class=\"count\">(%s)</span>"
37
+ msgstr[1] " <span class=\"count\">(%s)</span>"
38
+
39
+ #: core/options-pages.php:97 core/options-pages.php:236
40
+ #: core/options-pages.php: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
+
45
+ #: core/options-pages.php:106 core/options-pages.php:208
46
+ msgid "Media Library"
47
+ msgstr "Libreria Media"
48
+
49
+ #: core/options-pages.php:115
50
+ msgid "Taxonomies"
51
+ msgstr "Tassonomie"
52
+
53
+ #: core/options-pages.php:124 core/options-pages.php:210
54
+ msgid "MIME Types"
55
+ msgstr "Tipi MIME"
56
+
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"
61
+
62
+ #: core/options-pages.php:207
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
+
76
+ #: core/options-pages.php:247
77
+ msgid "Image sizes"
78
+ msgstr "Dimensioni immagine"
79
+
80
+ #: core/options-pages.php:248
81
+ msgid ""
82
+ "The sizes listed below determine the maximum dimensions in pixels to use "
83
+ "when adding an image to the Media Library."
84
+ msgstr ""
85
+ "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
86
+ "quando si aggiunge un'immagine alla Libreria Media."
87
+
88
+ #: core/options-pages.php:252
89
+ msgid "Thumbnail size"
90
+ msgstr "Dimensioni della miniatura"
91
+
92
+ #: core/options-pages.php:254
93
+ msgid "Width"
94
+ msgstr "Larghezza"
95
+
96
+ #: core/options-pages.php:256
97
+ msgid "Height"
98
+ msgstr "Altezza"
99
+
100
+ #: core/options-pages.php:259
101
+ msgid ""
102
+ "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
103
+ msgstr ""
104
+ "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
105
+ "proporzionali)"
106
+
107
+ #: core/options-pages.php:264 core/options-pages.php:265
108
+ msgid "Medium size"
109
+ msgstr "Dimensioni medie"
110
+
111
+ #: core/options-pages.php:266 core/options-pages.php:276
112
+ msgid "Max Width"
113
+ msgstr "Larghezza massima"
114
+
115
+ #: core/options-pages.php:268 core/options-pages.php:278
116
+ msgid "Max Height"
117
+ msgstr "Altezza massima"
118
+
119
+ #: core/options-pages.php:274 core/options-pages.php:275
120
+ msgid "Large size"
121
+ msgstr "Dimensioni grandi"
122
+
123
+ #: core/options-pages.php:291
124
+ msgid "Embeds"
125
+ msgstr "Incorporamenti"
126
+
127
+ #: core/options-pages.php:298
128
+ msgid "Uploading Files"
129
+ msgstr "Caricamento file"
130
+
131
+ #: core/options-pages.php:305
132
+ msgid "Store uploads in this folder"
133
+ msgstr "Caricamento file"
134
+
135
+ #: core/options-pages.php:309
136
+ #, php-format
137
+ msgid "Default is %s"
138
+ msgstr "Il valore di default &egrave; %s"
139
+
140
+ #: core/options-pages.php:315
141
+ msgid "Full URL path to files"
142
+ msgstr "URL completo dei file"
143
+
144
+ #: core/options-pages.php:317
145
+ msgid "Configuring this is optional. By default, it should be blank."
146
+ msgstr ""
147
+ "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
148
+ "essere vuoto."
149
+
150
+ #: core/options-pages.php:325
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
+
160
+ #: core/options-pages.php:398
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
+
184
+ #: core/options-pages.php:403
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
+
208
+ #: core/options-pages.php:410
209
+ msgid "Remove Taxonomy"
210
+ msgstr "Elimina tassonomia"
211
+
212
+ #: core/options-pages.php:411
213
+ msgid "Taxonomy will be removed."
214
+ msgstr "La tassonomia verr&agrave; rimossa."
215
+
216
+ #: core/options-pages.php:412
217
+ msgid ""
218
+ "Taxonomy terms (categories) will remain intact in the database. If you "
219
+ "create a taxonomy with the same name in the future, its terms (categories) "
220
+ "will be available again."
221
+ msgstr ""
222
+ "I termini (categorie) di questa tassonomia rimarranno intatti nel database. "
223
+ "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
224
+ "termini (categorie) saranno nuovamente disponibili."
225
+
226
+ #: core/options-pages.php:413
227
+ msgid "Media items will remain intact."
228
+ msgstr "Gli elementi Media rimarranno invariati."
229
+
230
+ #: core/options-pages.php:414
231
+ msgid "Are you still sure?"
232
+ msgstr "Sei ancora sicuro?"
233
+
234
+ #: core/options-pages.php:415
235
+ msgid "Yes, remove taxonomy"
236
+ msgstr "S&igrave;, rimuovi la tassonomia"
237
+
238
+ #: core/options-pages.php:417
239
+ msgid "Duplicate"
240
+ msgstr "Doppione"
241
+
242
+ #: core/options-pages.php:418
243
+ msgid "Taxonomy with the same name already exists. Please chose other one."
244
+ msgstr ""
245
+ "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
246
+ "altro."
247
+
248
+ #: core/options-pages.php:420
249
+ msgid "Empty Fields"
250
+ msgstr "Campi vuoti"
251
+
252
+ #: core/options-pages.php:421
253
+ msgid "Please choose Singular and Plural names for all new taxomonies."
254
+ msgstr ""
255
+ "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
256
+ "tassonomie."
257
+
258
+ #: core/options-pages.php:422
259
+ msgid "Please choose Singular name for all new taxomonies."
260
+ msgstr ""
261
+
262
+ #: core/options-pages.php:423
263
+ msgid "Please choose Plural Name for all new taxomonies."
264
+ msgstr "Si prega di scegliere il nome plurale per tutte le nuove tassonomie."
265
+
266
+ #: core/options-pages.php:425
267
+ 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
+
275
+ #: core/options-pages.php:428
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
+
283
+ #: core/options-pages.php:430
284
+ msgid "Synchronize"
285
+ msgstr "Sincronizza"
286
+
287
+ #: core/options-pages.php:432
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."
313
+ 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 "
337
+ "configuration file. It allows you to easily import the configuration into "
338
+ "another website."
339
+ msgstr ""
340
+ "Le impostazioni del plugin dei tab <strong>Libreria Media</strong>, "
341
+ "<strong>Tassonomie Media</strong> e <strong>Tipi MIME</strong> saranno "
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 "
357
+ "configuration file which can be obtained by exporting the settings on "
358
+ "another website using the export button above."
359
+ msgstr ""
360
+ "Le impostazioni del plugin dei tab <strong>Libreria Media</strong>, "
361
+ "<strong>Tassonomie Media</strong> e <strong>Tipi MIME</strong> verranno "
362
+ "importate da un file di configurazione che pu&ograve; essere ottenuto "
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 "
370
+ "satisfied with the result of the import."
371
+ msgstr ""
372
+ "Tutte le impostazioni del plugin saranno sovrascritte dall'importazione. "
373
+ "Avrete la possibilità di ripristinare le impostazioni correnti da un backup "
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."
434
+ 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!"
442
+ 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"
516
+ 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!"
536
+ 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 "
549
+ "option activated. If you find an issue please inform plugin authors at %s or "
550
+ "%s."
551
+ msgstr ""
552
+ "Si prega di controllare la funzionalità vostra galleria di front-end e back-"
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
+
800
+ #: core/taxonomies.php:101
801
+ msgid "Media Taxonomies settings saved."
802
+ msgstr "Impostazioni Tassonomie Media salvate."
803
+
804
+ #: core/taxonomies.php:159
805
+ 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 ""
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-04-30 12:51+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: \n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -35,13 +35,13 @@ 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:217
39
- #: core/options-pages.php:932 core/options-pages.php:1057
40
- #: core/options-pages.php:1370 core/options-pages.php:1547
41
  msgid "Media Settings"
42
  msgstr "メディア設定"
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:189
45
  msgid "Media Library"
46
  msgstr "メディアライブラリー"
47
 
@@ -49,270 +49,271 @@ msgstr "メディアライブラリー"
49
  msgid "Taxonomies"
50
  msgstr "タクソノミー"
51
 
52
- #: core/options-pages.php:124 core/options-pages.php:191
53
  msgid "MIME Types"
54
  msgstr "MIME タイプ"
55
 
 
56
  #: core/options-pages.php:135 core/options-pages.php:136
57
  msgid "Enhanced Media Library"
58
  msgstr "Enhanced Media Library"
59
 
60
- #: core/options-pages.php:188
61
  msgid "General"
62
  msgstr "一般"
63
 
64
- #: core/options-pages.php:190 core/options-pages.php:1078
65
  msgid "Media Taxonomies"
66
  msgstr "メディアタクソノミー(分類法)"
67
 
68
- #: core/options-pages.php:214 core/options-pages.php:520
69
- #: core/options-pages.php:928 core/options-pages.php:1053
70
- #: core/options-pages.php:1366
71
  msgid "You do not have sufficient permissions to access this page."
72
  msgstr "このページにアクセスするための十分な権限がありません。"
73
 
74
- #: core/options-pages.php:228
75
  msgid "Image sizes"
76
  msgstr ""
77
 
78
- #: core/options-pages.php:229
79
  msgid ""
80
  "The sizes listed below determine the maximum dimensions in pixels to use "
81
  "when adding an image to the Media Library."
82
  msgstr ""
83
 
84
- #: core/options-pages.php:233
85
  msgid "Thumbnail size"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:235
89
  msgid "Width"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:237
93
  msgid "Height"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:240
97
  msgid ""
98
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:245 core/options-pages.php:246
102
  msgid "Medium size"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:247 core/options-pages.php:257
106
  msgid "Max Width"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:249 core/options-pages.php:259
110
  msgid "Max Height"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:255 core/options-pages.php:256
114
  msgid "Large size"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:272
118
  msgid "Embeds"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:279
122
  msgid "Uploading Files"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:286
126
  msgid "Store uploads in this folder"
127
  msgstr ""
128
 
129
- #: core/options-pages.php:290
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:296
135
  msgid "Full URL path to files"
136
  msgstr ""
137
 
138
- #: core/options-pages.php:298
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
 
142
- #: core/options-pages.php:306
143
  msgid "Organize my uploads into month- and year-based folders"
144
  msgstr ""
145
 
146
- #: core/options-pages.php:378 core/options-pages.php:1102
147
- #: core/options-pages.php:1117 core/options-pages.php:1180
148
- #: core/options-pages.php:1249
149
  msgid "Edit"
150
  msgstr "編集"
151
 
152
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
153
  msgid "Close"
154
  msgstr "閉じる"
155
 
156
- #: core/options-pages.php:380 core/options-pages.php:1118
157
- #: core/options-pages.php:1181
158
  msgid "View"
159
  msgstr "表示"
160
 
161
- #: core/options-pages.php:381 core/options-pages.php:1119
162
- #: core/options-pages.php:1182
163
  msgid "Update"
164
  msgstr "更新"
165
 
166
- #: core/options-pages.php:382 core/options-pages.php:1120
167
- #: core/options-pages.php:1183
168
  msgid "Add New"
169
  msgstr "新規追加"
170
 
171
- #: core/options-pages.php:383 core/options-pages.php:1121
172
- #: core/options-pages.php:1184
173
  msgid "New"
174
  msgstr "新規"
175
 
176
- #: core/options-pages.php:384
177
  msgid "Name"
178
  msgstr "名前"
179
 
180
- #: core/options-pages.php:385 core/options-pages.php:1122
181
- #: core/options-pages.php:1185
182
  msgid "Parent"
183
  msgstr "親カテゴリー"
184
 
185
- #: core/options-pages.php:386 core/options-pages.php:616
186
- #: core/options-pages.php:1116 core/options-pages.php:1179
187
- #: core/taxonomies.php:365 enhanced-media-library.php:490
188
  msgid "All"
189
  msgstr "全て"
190
 
191
- #: core/options-pages.php:387 core/options-pages.php:1123
192
- #: core/options-pages.php:1186
193
  msgid "Search"
194
  msgstr "検索"
195
 
196
- #: core/options-pages.php:389 core/options-pages.php:1167
197
  msgid "New Taxonomy"
198
  msgstr "新しいタクソノミー (分類)"
199
 
200
- #: core/options-pages.php:391
201
  msgid "Remove Taxonomy"
202
  msgstr ""
203
 
204
- #: core/options-pages.php:392
205
  msgid "Taxonomy will be removed."
206
  msgstr ""
207
 
208
- #: core/options-pages.php:393
209
  msgid ""
210
  "Taxonomy terms (categories) will remain intact in the database. If you "
211
  "create a taxonomy with the same name in the future, its terms (categories) "
212
  "will be available again."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:394
216
  msgid "Media items will remain intact."
217
  msgstr ""
218
 
219
- #: core/options-pages.php:395
220
  msgid "Are you still sure?"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:396
224
  msgid "Yes, remove taxonomy"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:398
228
  msgid "Duplicate"
229
  msgstr ""
230
 
231
- #: core/options-pages.php:399
232
  msgid "Taxonomy with the same name already exists. Please chose other one."
233
  msgstr ""
234
  "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
235
 
236
- #: core/options-pages.php:401
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
- #: core/options-pages.php:402
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
- #: core/options-pages.php:403
245
- msgid "Please choose Singilar name for all new taxomonies."
246
  msgstr ""
247
 
248
- #: core/options-pages.php:404
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
- #: core/options-pages.php:406
253
  msgid "Ok"
254
  msgstr ""
255
 
256
- #: core/options-pages.php:407 core/options-pages.php:412
257
- #: core/options-pages.php:495
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
- #: core/options-pages.php:409 pro/core/options-pages.php:165
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
- #: core/options-pages.php:410 core/options-pages.php:492
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
- #: core/options-pages.php:411
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
- #: core/options-pages.php:413
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
- #: core/options-pages.php:451
278
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
279
  msgstr "警告!すべてのカスタムMIMEタイプは、この操作によって削除されます。"
280
 
281
- #: core/options-pages.php:452
282
  msgid "Please fill into all fields."
283
  msgstr "すべてのフィールドに記入してください。"
284
 
285
- #: core/options-pages.php:453
286
  msgid "Duplicate extensions or MIME types. Please chose other one."
287
  msgstr "拡張子やMIMEタイプを複製します。別のものをお選びください。"
288
 
289
- #: core/options-pages.php:490 core/options-pages.php:607
290
  msgid "Complete Cleanup"
291
  msgstr ""
292
 
293
- #: core/options-pages.php:491
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:493
300
  msgid "Yes, delete all data"
301
  msgstr ""
302
 
303
- #: core/options-pages.php:494
304
  msgid "Cleaning..."
305
  msgstr ""
306
 
307
- #: core/options-pages.php:525
308
  msgid "Enhanced Media Library Settings"
309
  msgstr "Enhanced Media Library 設定"
310
 
311
- #: core/options-pages.php:535
312
  msgid "Export"
313
  msgstr "エクスポート"
314
 
315
- #: core/options-pages.php:539
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 +321,15 @@ msgid ""
320
  "another website."
321
  msgstr ""
322
 
323
- #: core/options-pages.php:544
324
  msgid "Export Plugin Settings"
325
  msgstr "プラグイン設定をエクスポート"
326
 
327
- #: core/options-pages.php:554
328
  msgid "Import"
329
  msgstr "インポート"
330
 
331
- #: core/options-pages.php:558
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,121 +337,141 @@ msgid ""
336
  "another website using the export button above."
337
  msgstr ""
338
 
339
- #: core/options-pages.php:559
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:566
347
  msgid "Import Plugin Settings"
348
  msgstr "プラグイン設定をインポート"
349
 
350
- #: core/options-pages.php:578
351
  msgid "Restore"
352
  msgstr "リストア(復元する)"
353
 
354
- #: core/options-pages.php:584
355
  msgid "No backup available at the moment."
356
  msgstr "現在利用できるバックアップはありません。"
357
 
358
- #: core/options-pages.php:586
359
  msgid "Backup will be created automatically before any import operation."
360
  msgstr "バックアップは、任意のインポート操作の前に自動的に作成されます。"
361
 
362
- #: core/options-pages.php:590
363
  msgid ""
364
  "The backup has been automatically created before the latest import operation."
365
  msgstr ""
366
 
367
- #: core/options-pages.php:594
368
  msgid "Restore Settings from the Backup"
369
  msgstr "バックアップから設定を復元させて下さい。"
370
 
371
- #: core/options-pages.php:614
372
  msgid "What will be deleted:"
373
  msgstr ""
374
 
375
- #: core/options-pages.php:619
376
  msgid "All plugin options"
377
  msgstr ""
378
 
379
- #: core/options-pages.php:620
380
  msgid "All plugin backups stored in database"
381
  msgstr ""
382
 
383
- #: core/options-pages.php:624
384
  msgid "What will remain intact:"
385
  msgstr ""
386
 
387
- #: core/options-pages.php:625
388
  msgid "All media items"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:626
392
  msgid "All taxonomies not listed above"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:629
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:631
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:637
408
  msgid "Delete All Data & Deactivate"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:742
412
  msgid "Please upload a file to import settings."
413
  msgstr "設定をインポートするファイルをアップロードしてください。"
414
 
415
- #: core/options-pages.php:762
416
  msgid "Plugin settings imported."
417
  msgstr "プラグインの設定がインポートされました。"
418
 
419
- #: core/options-pages.php:809
420
  msgid "Plugin settings restored from the backup."
421
  msgstr "プラグインの設定は、バックアップから復元させて下さい。"
422
 
423
- #: core/options-pages.php:953
424
  msgid "Media Items Order"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:960
428
  msgid "Order media items by"
429
  msgstr "メディアアイテムの順番"
430
 
431
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgid "For media library and media popups"
433
  msgstr "メディアライブラリとメディアポップアップについて"
434
 
435
- #: core/options-pages.php:968
436
  msgid "Option allows to change order by drag and drop with Custom Order value."
437
  msgstr ""
438
  "オプションは、ドラッグすることによって順序を変更し、カスタムオーダーの値でド"
439
  "ロップすることができます。"
440
 
441
- #: core/options-pages.php:973
442
  msgid "Sort order"
443
  msgstr "ソート順"
444
 
445
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
446
  msgid "Media Shortcodes"
447
  msgstr "メディアのショートコード"
448
 
449
- #: core/options-pages.php:999 core/options-pages.php:1002
450
  msgid "Enhanced media shortcodes"
451
  msgstr "強化されたメディアのショートコード"
452
 
453
- #: core/options-pages.php:1003
454
  msgid ""
455
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
456
  "upload date, and media items number limit"
@@ -458,30 +479,30 @@ msgstr ""
458
  "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日付と"
459
  "メディア・アイテム数の上限を取得させます。"
460
 
461
- #: core/options-pages.php:1004
462
  msgid "Gallery example:"
463
  msgstr "ギャラリーの例:"
464
 
465
- #: core/options-pages.php:1005
466
  msgid "Audio playlist example:"
467
  msgstr "オーディオプレイリストの例:"
468
 
469
- #: core/options-pages.php:1006
470
  msgid "Video playlist example:"
471
  msgstr "ビデオプレイリストの例:"
472
 
473
- #: core/options-pages.php:1008
474
  #, php-format
475
  msgid ""
476
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
477
  msgstr "%s警告:%s 他のギャラリープラグイン又はテーマとの非互換性の可能性!"
478
 
479
- #: core/options-pages.php:1010
480
  #, php-format
481
  msgid "%sLearn more%s."
482
  msgstr "%sもっと詳しく%s."
483
 
484
- #: core/options-pages.php:1012
485
  #, php-format
486
  msgid ""
487
  "Please check out your gallery front-end and back-end functionality once this "
@@ -492,239 +513,247 @@ msgstr ""
492
  "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
493
  "イン作者までご連絡ください %s か %s."
494
 
495
- #: core/options-pages.php:1082 core/options-pages.php:1229
496
  msgid "Assign following taxonomies to Media Library:"
497
  msgstr "メディアライブラリに次のタクソノミー(分類法)を割り当てます:"
498
 
499
- #: core/options-pages.php:1101 core/options-pages.php:1167
500
- #: core/options-pages.php:1248
501
  msgid "Assign Taxonomy"
502
  msgstr "タクソノミーを割り当て"
503
 
504
- #: core/options-pages.php:1102 core/options-pages.php:1249
505
  msgid "Edit Taxonomy"
506
  msgstr "タクソノミーの編集"
507
 
508
- #: core/options-pages.php:1106 core/options-pages.php:1169
509
  msgid "Delete Taxonomy"
510
  msgstr "タクソノミーを削除します"
511
 
512
- #: core/options-pages.php:1111 core/options-pages.php:1174
513
  msgid "Labels"
514
  msgstr "ラベル"
515
 
516
- #: core/options-pages.php:1113 core/options-pages.php:1176
517
  msgid "Singular"
518
  msgstr "単数"
519
 
520
- #: core/options-pages.php:1114 core/options-pages.php:1177
521
  msgid "Plural"
522
  msgstr "複数"
523
 
524
- #: core/options-pages.php:1115 core/options-pages.php:1178
525
  msgid "Menu Name"
526
  msgstr "メニュー名"
527
 
528
- #: core/options-pages.php:1128 core/options-pages.php:1151
529
- #: core/options-pages.php:1191 core/options-pages.php:1252
530
  msgid "Settings"
531
  msgstr "設定"
532
 
533
- #: core/options-pages.php:1130 core/options-pages.php:1193
534
  msgid "Taxonomy Name"
535
  msgstr "タクソノミー名"
536
 
537
- #: core/options-pages.php:1131 core/options-pages.php:1194
538
  msgid "Hierarchical"
539
  msgstr "階層"
540
 
541
- #: core/options-pages.php:1132 core/options-pages.php:1195
542
  msgid "Column for List View"
543
  msgstr "リスト表示の列"
544
 
545
- #: core/options-pages.php:1133 core/options-pages.php:1153
546
- #: core/options-pages.php:1196 core/options-pages.php:1254
547
  msgid "Filter for List View"
548
  msgstr "リスト表示のフィルター"
549
 
550
- #: core/options-pages.php:1134 core/options-pages.php:1154
551
- #: core/options-pages.php:1197 core/options-pages.php:1255
552
  msgid "Filter for Grid View / Media Popup"
553
  msgstr "グリット表示/メディアポップアップのフィルター"
554
 
555
- #: core/options-pages.php:1135 core/options-pages.php:1155
556
- #: core/options-pages.php:1198 core/options-pages.php:1256
557
  msgid "Edit in Media Popup"
558
  msgstr "メディアポップアップの編集"
559
 
560
- #: core/options-pages.php:1136 core/options-pages.php:1199
561
  msgid "Show in Nav Menu"
562
  msgstr "ナビゲーションメニューに表示"
563
 
564
- #: core/options-pages.php:1137 core/options-pages.php:1200
565
  msgid "Remember Terms Order (sort)"
566
  msgstr ""
567
 
568
- #: core/options-pages.php:1138 core/options-pages.php:1201
569
  msgid "Show in REST"
570
  msgstr "リストに表示"
571
 
572
- #: core/options-pages.php:1139 core/options-pages.php:1202
573
  msgid "Rewrite Slug"
574
  msgstr "スラッグを書き換え"
575
 
576
- #: core/options-pages.php:1140 core/options-pages.php:1203
577
  msgid "Slug with Front"
578
  msgstr "フロントとスラッグ"
579
 
580
- #: core/options-pages.php:1215
581
  msgid "Add New Taxonomy"
582
  msgstr "新しいタクソノミーを追加"
583
 
584
- #: core/options-pages.php:1225
585
  msgid "Non-Media Taxonomies"
586
  msgstr "非メディアタクソノミー(記事カテゴリー及びタグで分類)"
587
 
588
- #: core/options-pages.php:1286
589
  msgid "Options"
590
  msgstr "オプション"
591
 
592
- #: core/options-pages.php:1296 core/options-pages.php:1299
593
  msgid "Taxonomy archive pages"
594
  msgstr "タクソノミーのアーカイブページ"
595
 
596
- #: core/options-pages.php:1300
597
  msgid "Turn on media taxonomy archive pages on the front-end"
598
  msgstr ""
599
  "フロントエンドのメディアタクソノミー(分類)のアーカイブページをオンにします"
600
 
601
- #: core/options-pages.php:1301
602
  msgid ""
603
  "Re-save your permalink settings after this option change to make it work."
604
  msgstr ""
605
  "これを動作させるには、このオプションを変更した後、パーマリンクの設定を再保存"
606
  "しましょう。"
607
 
608
- #: core/options-pages.php:1307 core/options-pages.php:1310
609
  msgid "Assign all like hierarchical"
610
  msgstr "階層のように全て割り当てます"
611
 
612
- #: core/options-pages.php:1311
613
  msgid ""
614
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
615
  msgstr ""
616
  "グリット表示の/メディアポップアップで、階層のような非階層的タクソノミーを表示"
617
  "する"
618
 
619
- #: core/options-pages.php:1317 core/options-pages.php:1320
620
  msgid "Force filters"
621
  msgstr "フォースフィルター"
622
 
623
- #: core/options-pages.php:1321
624
  msgid "Show media filters for ANY Media Popup"
625
  msgstr "あらゆるメディアにポップアップするフィルターを表示します。"
626
 
627
- #: core/options-pages.php:1322
628
  msgid "Try this if filters are not shown for third-party plugins or themes."
629
  msgstr ""
630
  "フィルタが、サードパーティ製のプラグインやテーマの為に示されていない場合は、"
631
  "試してみてください。"
632
 
633
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
634
  msgid "Add New MIME Type"
635
  msgstr "MIMEタイプ新規追加"
636
 
637
- #: core/options-pages.php:1394 core/options-pages.php:1449
638
  msgid "Extension"
639
  msgstr "拡張子"
640
 
641
- #: core/options-pages.php:1395 core/options-pages.php:1450
642
  msgid "MIME Type"
643
  msgstr "MIMEタイプ"
644
 
645
- #: core/options-pages.php:1396 core/options-pages.php:1451
646
  msgid "Singular Label"
647
  msgstr "単数のラベル"
648
 
649
- #: core/options-pages.php:1397 core/options-pages.php:1452
650
  msgid "Plural Label"
651
  msgstr "複数のラベル"
652
 
653
- #: core/options-pages.php:1398 core/options-pages.php:1428
654
- #: core/options-pages.php:1441 core/options-pages.php:1453
655
  msgid "Add Filter"
656
  msgstr "フィルタを追加"
657
 
658
- #: core/options-pages.php:1399 core/options-pages.php:1429
659
- #: core/options-pages.php:1442 core/options-pages.php:1454
660
  msgid "Allow Upload"
661
  msgstr "アップロードを許可"
662
 
663
- #: core/options-pages.php:1443
664
  msgid "Delete MIME Type"
665
  msgstr "MIMEタイプを削除します"
666
 
667
- #: core/options-pages.php:1460
668
  msgid "Restore WordPress default MIME Types"
669
  msgstr "WordPressのデフォルトのMIMEタイプを復元"
670
 
671
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
672
  msgid "Save Changes"
673
  msgstr "変更内容を保存"
674
 
675
- #: core/options-pages.php:1499
676
  msgid "Changelog"
677
  msgstr ""
678
 
679
- #: core/options-pages.php:1500
680
  msgid "What's new in"
681
  msgstr ""
682
 
683
- #: core/options-pages.php:1500
684
  msgid "version"
685
  msgstr ""
686
 
687
- #: core/options-pages.php:1503
688
  msgid "More features under the hood"
689
  msgstr ""
690
 
691
- #: core/options-pages.php:1505
692
  msgid "Support"
693
  msgstr ""
694
 
695
- #: core/options-pages.php:1506
696
  msgid "Feel free to ask for help on"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1506
700
  msgid "Support is free for both versions of the plugin."
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1508
704
  msgid "Plugin rating"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1509
708
  msgid "Please"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1509
712
  msgid "vote for the plugin"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1509
716
  msgid "Thanks!"
717
  msgstr ""
718
 
719
- #: core/options-pages.php:1511
720
  msgid "Other plugins you may find useful"
721
  msgstr ""
722
 
723
- #: core/options-pages.php:1550
724
  msgid "Utility"
725
  msgstr ""
726
 
727
- #: core/options-pages.php:1571
728
  msgid "Vote!"
729
  msgstr ""
730
 
@@ -736,742 +765,85 @@ msgstr ""
736
  msgid "Media Library settings saved."
737
  msgstr ""
738
 
739
- #: core/taxonomies.php:358 core/taxonomies.php:364
740
- #: enhanced-media-library.php:489
741
  msgid "Filter by"
742
  msgstr ""
743
 
744
- #: core/taxonomies.php:366 enhanced-media-library.php:491
745
  msgid "Not in"
746
  msgstr ""
747
 
748
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
749
  msgid "All Uncategorized"
750
  msgstr "未分類"
751
 
752
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
753
  msgid "Reset All Filters"
754
  msgstr "絞り込みを解除"
755
 
756
- #: enhanced-media-library.php:523
757
  msgid "Uploaded to post #"
758
  msgstr "投稿をアップロード #"
759
 
760
- #: enhanced-media-library.php:524
761
  msgid "Based On"
762
  msgstr ""
763
 
764
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
765
  msgid "Media Categories"
766
  msgstr ""
767
 
768
- #: enhanced-media-library.php:570
769
  msgid "Media Category"
770
  msgstr ""
771
 
772
- #: enhanced-media-library.php:572
773
  msgid "All Media Categories"
774
  msgstr ""
775
 
776
- #: enhanced-media-library.php:573
777
  msgid "Edit Media Category"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:574
781
  msgid "View Media Category"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:575
785
  msgid "Update Media Category"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:576
789
  msgid "Add New Media Category"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:577
793
  msgid "New Media Category Name"
794
  msgstr ""
795
 
796
- #: enhanced-media-library.php:578
797
  msgid "Parent Media Category"
798
  msgstr ""
799
 
800
- #: enhanced-media-library.php:579
801
  msgid "Parent Media Category:"
802
  msgstr ""
803
 
804
- #: enhanced-media-library.php:580
805
  msgid "Search Media Categories"
806
  msgstr ""
807
 
808
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
809
- msgid "Remove"
810
- msgstr "削除"
811
-
812
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
813
- msgid "Deselect"
814
- msgstr "選択を解除"
815
-
816
- #: pro/core/bulk-edit.php:105
817
- msgid "Caption this image&hellip;"
818
- msgstr "この画像をキャプション&hellip;"
819
-
820
- #: pro/core/bulk-edit.php:109
821
- msgid "Describe this video&hellip;"
822
- msgstr "このビデオを説明してください&hellip;"
823
-
824
- #: pro/core/bulk-edit.php:111
825
- msgid "Describe this audio file&hellip;"
826
- msgstr "このオーディオファイルを説明してください&hellip;"
827
-
828
- #: pro/core/bulk-edit.php:113
829
- msgid "Describe this media file&hellip;"
830
- msgstr "このメディアファイルを記述します&hellip;"
831
-
832
- #: pro/core/bulk-edit.php:122
833
- msgid "Attachments Details"
834
- msgstr "添付ファイルの詳細"
835
-
836
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
837
- msgid "Select All"
838
- msgstr "全て選択"
839
-
840
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
841
- msgid "Edit Selection"
842
- msgstr "編集選択"
843
-
844
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
845
- msgid "Deselect All"
846
- msgstr "全ての選択を解除"
847
-
848
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
849
- msgid "Delete Selected"
850
- msgstr "選択を削除します"
851
-
852
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
853
- msgid "Order By"
854
  msgstr ""
855
 
856
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
857
- msgid "Date"
858
- msgstr "日付"
859
-
860
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
861
- msgid "Title"
862
- msgstr "タイトル"
863
-
864
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
865
- msgid "Custom Order"
866
- msgstr "カスタムオーダー"
867
-
868
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
869
- msgid "Random"
870
- msgstr "ランダム"
871
-
872
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
873
- msgid "Order"
874
- msgstr " 並び順"
875
-
876
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
877
- msgid "Ascending"
878
- msgstr "昇順"
879
-
880
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
881
- msgid "Descending"
882
- msgstr "降順"
883
-
884
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
885
- msgid "Limit"
886
- msgstr "制限"
887
-
888
- #: pro/core/options-pages.php:78
889
- msgid "Your license has been deactivated."
890
- msgstr "あなたのライセンスが無効になっています。"
891
-
892
- #: pro/core/options-pages.php:88
893
- msgid "Please check if your license key is correct and try again."
894
- msgstr "ライセンスキーが正しいかどうかを確認して、もう一度お試しください。"
895
-
896
- #: pro/core/options-pages.php:101
897
- msgid ""
898
- "Wrong license key or a server error occured. Please check your license key "
899
- "and try again."
900
- msgstr ""
901
- "間違ったライセンスキーまたはサーバーエラーが発生しました。ライセンスキーを確"
902
- "認してもう一度お試しください。"
903
-
904
- #: pro/core/options-pages.php:111
905
- msgid "You license has been activated."
906
- msgstr "活性化されているライセンスを許諾します。"
907
-
908
- #: pro/core/options-pages.php:164
909
- #, php-format
910
- msgid "Auto-assign media items to parent %s %s on upload"
911
- msgstr ""
912
-
913
- #: pro/core/options-pages.php:165
914
- #, php-format
915
- msgid ""
916
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
917
- "attached to a %s will be assigned to %s of their parent %s. Currently "
918
- "assigned %s will not be saved. Media items that are not attached to any %s "
919
- "will not be affected."
920
- msgstr ""
921
-
922
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
923
- msgid "Bulk Edit"
924
- msgstr "一括編集"
925
-
926
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
927
- msgid "Turn off 'Save Changes' button"
928
- msgstr "[変更を保存]ボタンオフ"
929
-
930
- #: pro/core/options-pages.php:200
931
- msgid "Save changes on the fly"
932
- msgstr "変更内容を保存"
933
-
934
- #: pro/core/options-pages.php:201
935
- msgid ""
936
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
937
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
938
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
939
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
940
- "files / taxonomies with this option turned on."
941
- msgstr ""
942
- "メディアの間に分類するチェックボックス上の任意のクリックは、バルク版に繋がる"
943
- "ファイルデータを<strong style=\"color:red\">即時保存する</strong>ので 気を付"
944
- "けてください!あなたには大きなチャンスがあります<strong style=\"color:red\">"
945
- "間違っても再割り当てを行います</strong> 多くのメディアファイル/このオプション"
946
- "を指定したタクソノミーをオンにします。"
947
-
948
- #: pro/core/options-pages.php:202
949
- msgid ""
950
- "Strongly NOT recommended option if you work with more than hundred of files "
951
- "at a time."
952
- msgstr "一度に100以上のファイルで作業する場合オプションを推奨しません。"
953
-
954
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
955
- msgid "License Key"
956
- msgstr "ライセンスキー"
957
-
958
- #: pro/core/options-pages.php:252
959
- #, php-format
960
- msgid ""
961
- "To unlock updates please enter your license key below. You can get your "
962
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
963
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
964
- msgstr ""
965
- "アップデートのロックを解除するには、以下のライセンスキーを入力してください。"
966
- "あなたのライセンスキーを取得することができます<a href=\"%s\">あなたのアカウン"
967
- "ト</a>に。ライセンスをお持ちでない場合は、歓迎しています<a href=\"%s\">購入</"
968
- "a>に。"
969
-
970
- #: pro/core/options-pages.php:262
971
- msgid "Activate License"
972
- msgstr "ライセンスを有効化"
973
-
974
- #: pro/core/options-pages.php:269
975
- msgid "Your license is active!"
976
- msgstr "ライセンスがアクティブになっています!"
977
-
978
- #: pro/core/options-pages.php:273
979
- msgid "Deactivate License"
980
- msgstr "ライセンスを無効化"
981
-
982
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
983
- msgid ""
984
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
985
- "this server&#8217;s configuration. If you continue to have problems, please "
986
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
987
- msgstr ""
988
- "予期しないエラーが発生しました。WordPress.orgまたは、このサーバーで何かが間"
989
- "違っている可能性があります&#8217;s 設定。問題が解決しない場合は、試してみてく"
990
- "ださい<a href=\"https://wordpress.org/support/\">サポートフォーラム</a>."
991
-
992
- #: pro/core/update.php:113
993
- msgid ""
994
- "(WordPress could not establish a secure connection to WordPress.org. Please "
995
- "contact your server administrator.)"
996
- msgstr ""
997
- "(WordPressはWordPress.orgへの安全な接続を確立できませんでした。サーバー管理"
998
- "者に問い合わせてください。)"
999
-
1000
- #: pro/core/update.php:180
1001
- #, php-format
1002
- msgid ""
1003
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1004
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1005
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1006
- msgstr ""
1007
- "アップデートのロックを解除するには、 <a href=\"%s\">ライセンス</a>を活性化さ"
1008
- "せる<a href=\"%s\">あなたはライセンスキーはアカウント</a>を得ることができま"
1009
- "す。ライセンスをお持ちでない場合は、<a href=\"%s\">が購入を歓迎しています。</"
1010
- "a>"
1011
-
1012
- #: pro/enhanced-media-library-pro.php:119
1013
- msgid "ALL files belong to this item"
1014
- msgstr "全てのファイルはこの項目に属しています"
1015
-
1016
- #: pro/enhanced-media-library-pro.php:120
1017
- msgid "SOME files belong to this item"
1018
- msgstr "いくつかのファイルは、この項目に属しています"
1019
-
1020
- #: pro/enhanced-media-library-pro.php:121
1021
- msgid "NO files belong to this item"
1022
- msgstr "ファイルなし この項目に属していません"
1023
-
1024
- #: pro/enhanced-media-library-pro.php:122
1025
- msgid "Changes saved."
1026
- msgstr "変更が保存されました。"
1027
-
1028
- #: pro/enhanced-media-library-pro.php:123
1029
- msgid "Something went wrong."
1030
- msgstr "何かが間違っています。"
1031
-
1032
- #: pro/enhanced-media-library-pro.php:126
1033
- msgid "Edit Media Files"
1034
- msgstr "メディアファイル編集"
1035
-
1036
- #: pro/enhanced-media-library-pro.php:151
1037
- msgid "Create a filter-based gallery"
1038
- msgstr "フィルターベースのギャラリーを作成します。"
1039
-
1040
- #: pro/enhanced-media-library-pro.php:152
1041
- msgid "Create a filter-based playlist"
1042
- msgstr "フィルターベースのプレイリストを作成します。"
1043
-
1044
- #: pro/enhanced-media-library-pro.php:153
1045
- msgid "Create a filter-based video playlist"
1046
- msgstr "フィルターベースのビデオプレイリストを作成します。"
1047
-
1048
- #: pro/enhanced-media-library-pro.php:231
1049
- msgid ""
1050
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1051
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1052
- "will remain intact."
1053
- msgstr ""
1054
- "無効化してください<strong>削除</strong>の前に古い無料版を。<strong>Enhanced "
1055
- "Media Library PRO</ strong>の活性化。すべてのデータはそのまま残ります。"
1056
-
1057
- #: pro/enhanced-media-library-pro.php:231
1058
- msgid "Return to Plugins"
1059
- msgstr "プラグインに戻ります"
1060
-
1061
- #: pro/enhanced-media-library-pro.php:282
1062
- msgid ""
1063
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1064
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1065
- "be active. Please network deactivate and delete the free versions of the "
1066
- "plugin. All your data will remain intact."
1067
- msgstr ""
1068
-
1069
- #: pro/enhanced-media-library-pro.php:299
1070
- msgid ""
1071
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1072
- "be active. Please deactivate and delete the free version of the plugin. All "
1073
- "your data will remain intact."
1074
- msgstr ""
1075
- "<strong>Enhanced Media Library PRO</strong> は無料版を必要としません。有効化"
1076
- "します。無効化し、プラグインの無料版を削除してください。全てのデータはそのま"
1077
- "ま残ります。"
1078
-
1079
- #: pro/enhanced-media-library-pro.php:315
1080
- msgid ""
1081
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1082
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1083
- "version to be active. Please deactivate (or network deactivate) and delete "
1084
- "the free version of the plugin for this site. All your data will remail "
1085
- "intact."
1086
- msgstr ""
1087
- "Enhanced Media Library の無料版とPROバージョンでは、どちらもこのサイトの有効"
1088
- "です。 <strong>Enhanced Media Library PRO</strong>を有効化にする場合無料版を"
1089
- "必要としません。無効化(またはネットワーク無効化)し、このサイトのプラグイン"
1090
- "の無料版を削除してください。全てのデータはそのまま残ります。"
1091
-
1092
  #. Description of the plugin/theme
1093
  msgid ""
1094
  "This plugin will be handy for those who need to manage a lot of media files."
1095
  msgstr ""
1096
 
1097
- #~ msgid ""
1098
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1099
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1100
- #~ "be lost."
1101
- #~ msgstr ""
1102
- #~ "タクソノミーは完全に削除されます!あなたのメディアファイルはそのまま残りま"
1103
- #~ "すが、この分類法とその条件の全てが失われます。"
1104
-
1105
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1106
- #~ msgstr "全ての新しいタクソノミーの単数形と複数形の名前を選択してください。"
1107
-
1108
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1109
- #~ msgstr "全ての新しいタクソノミーの単数名前を選択して下さい。"
1110
-
1111
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1112
- #~ msgstr "全ての新しいタクソノミーの複数の名前を選択してください。"
1113
-
1114
- #~ msgctxt "uploaded files"
1115
- #~ msgid "All (%s)"
1116
- #~ msgid_plural "All (%s)"
1117
- #~ msgstr[0] "全て(%s)"
1118
-
1119
- #~ msgctxt "detached files"
1120
- #~ msgid "Unattached (%s)"
1121
- #~ msgid_plural "Unattached (%s)"
1122
- #~ msgstr[0] "未添付 (%s)"
1123
-
1124
- #~ msgctxt "uploaded files"
1125
- #~ msgid "Trash (%s)"
1126
- #~ msgid_plural "Trash (%s)"
1127
- #~ msgstr[0] "ごみ箱 (%s)"
1128
-
1129
- #~ msgid "Filter"
1130
- #~ msgstr "フィルター"
1131
-
1132
- #~ msgid "Empty Trash"
1133
- #~ msgstr "ごみ箱を空に"
1134
-
1135
- #~ msgid "You do not have permission to upload files."
1136
- #~ msgstr "ファイルをアップロードする権限がありません。"
1137
-
1138
- #~ msgid "Overview"
1139
- #~ msgstr "概要"
1140
-
1141
- #~ msgid ""
1142
- #~ "You can view your media in a simple visual grid or a list with columns. "
1143
- #~ "Switch between these views using the icons to the left above the media."
1144
- #~ msgstr ""
1145
- #~ "単純な視覚的なグリッドまたは列のリストにメディアを表示することができます。"
1146
- #~ "メディアの左上のアイコンを使用して、これらのビューを切り替えることができま"
1147
- #~ "す。"
1148
-
1149
- #~ msgid ""
1150
- #~ "To delete media items, click the Bulk Select button at the top of the "
1151
- #~ "screen. Select any items you wish to delete, then click the Delete "
1152
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1153
- #~ "viewing your media."
1154
- #~ msgstr ""
1155
- #~ "メディア項目を削除するには、画面上部の一括選択]ボタンをクリックします。削"
1156
- #~ "除したい項目を選択し、[選択項目の削除]ボタンをクリックします。セレクション"
1157
- #~ "[キャンセル]ボタンをクリックすると、メディアの表示に戻ります。"
1158
-
1159
- #~ msgid "Attachment Details"
1160
- #~ msgstr "添付ファイルの詳細"
1161
-
1162
- #~ msgid ""
1163
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1164
- #~ "you to preview media and make quick edits. Any changes you make to the "
1165
- #~ "attachment details will be automatically saved."
1166
- #~ msgstr ""
1167
- #~ "項目をクリックすると、メディアをプレビューし、迅速な編集を行うことができま"
1168
- #~ "す。添付ファイルの詳細]ダイアログが表示されます。添付ファイルの詳細に加え"
1169
- #~ "た変更は全て、自動的に保存されます。"
1170
-
1171
- #~ msgid ""
1172
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1173
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1174
- #~ msgstr ""
1175
- #~ "すぐにメディア項目間を移動するには、ダイアログ、またはキーボードの左右の矢"
1176
- #~ "印キーの上部にある矢印ボタンを使用します。"
1177
-
1178
- #~ msgid ""
1179
- #~ "You can also delete individual items and access the extended edit screen "
1180
- #~ "from the details dialog."
1181
- #~ msgstr ""
1182
- #~ "個々 のアイテムを削除し、[詳細] ダイアログから拡張編集画面にアクセスできま"
1183
- #~ "す。"
1184
-
1185
- #~ msgid "For more information:"
1186
- #~ msgstr "詳細はこちら:"
1187
-
1188
- #~ msgid ""
1189
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1190
- #~ "\"_blank\">Documentation on Media Library</a>"
1191
- #~ msgstr ""
1192
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1193
- #~ "\"_blank\">メディアライブラリのドキュメント</a>"
1194
-
1195
- #~ msgid ""
1196
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1197
- #~ "Forums</a>"
1198
- #~ msgstr ""
1199
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">サポート"
1200
- #~ "フォーラム</a>"
1201
-
1202
- #~ msgctxt "file"
1203
- #~ msgid "Add New"
1204
- #~ msgstr "新規追加"
1205
-
1206
- #~ msgid ""
1207
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1208
- #~ "php?mode=list\">Switch to the list view</a>."
1209
- #~ msgstr ""
1210
- #~ "メディアライブラリのためのグリッドビューにはJavaScriptが必要です。<a href="
1211
- #~ "\"upload.php?mode=list\">リストビューに切り替えます。</a>."
1212
-
1213
- #~ msgid "You are not allowed to edit this post."
1214
- #~ msgstr "この投稿を編集することはできません。"
1215
-
1216
- #~ msgid "You are not allowed to move this post to the trash."
1217
- #~ msgstr "ゴミ箱にこの投稿を移動することはできません。"
1218
-
1219
- #~ msgid "Error in moving to trash."
1220
- #~ msgstr "ゴミ箱に移動中にエラーが発生しました。"
1221
-
1222
- #~ msgid "You are not allowed to move this post out of the trash."
1223
- #~ msgstr "ゴミ箱にこの投稿を移動することはできません。"
1224
-
1225
- #~ msgid "Error in restoring from trash."
1226
- #~ msgstr "ごみ箱からの復元中にエラーが発生しました。"
1227
-
1228
- #~ msgid "You are not allowed to delete this post."
1229
- #~ msgstr "この投稿を削除することはできません。"
1230
-
1231
- #~ msgid "Error in deleting."
1232
- #~ msgstr "削除中にエラーが発生しました。"
1233
-
1234
- #~ msgctxt "items per page (screen options)"
1235
- #~ msgid "Media items"
1236
- #~ msgstr "メディアアイテム"
1237
-
1238
- #~ msgid ""
1239
- #~ "You can narrow the list by file type/status using the text link filters "
1240
- #~ "at the top of the screen. You also can refine the list by date using the "
1241
- #~ "dropdown menu above the media table."
1242
- #~ msgstr ""
1243
- #~ "画面の上部にあるテキストリンクのフィルタを使用してファイルの種類/状態でリ"
1244
- #~ "ストを絞り込むことができます。また、メディアテーブルの上にあるドロップダウ"
1245
- #~ "ンメニューを使用して日付でリストを絞り込むことができます。"
1246
-
1247
- #~ msgid "Available Actions"
1248
- #~ msgstr "利用可能なアクション"
1249
-
1250
- #~ msgid ""
1251
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1252
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1253
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1254
- #~ "Permanently will delete the file from the media library (as well as from "
1255
- #~ "any posts to which it is currently attached). View will take you to the "
1256
- #~ "display page for that file."
1257
- #~ msgstr ""
1258
- #~ "行の上に置くと、アクションリンクを明らかにします。編集は、完全に削除、及び"
1259
- #~ "表示。メディアファイルを編集又はクリックします&#8217;s その個々の名は、"
1260
- #~ "ファイルを編集する為の簡単な画面が表示されます&#8217;s のメタデータ。メ"
1261
- #~ "ディアライブラリからファイルを削除します[完全に削除]をクリック(投稿からだ"
1262
- #~ "けでなく、それが現在接続されているため)。ビューは、そのファイルの表示ペー"
1263
- #~ "ジが表示されます。"
1264
-
1265
- #~ msgid "Attaching Files"
1266
- #~ msgstr "ファイルの添付"
1267
-
1268
- #~ msgid ""
1269
- #~ "If a media file has not been attached to any post, you will see that in "
1270
- #~ "the Attached To column, and can click on Attach File to launch a small "
1271
- #~ "popup that will allow you to search for a post and attach the file."
1272
- #~ msgstr ""
1273
- #~ "メディアファイルが、任意の投稿に添付されていない場合、列に未添付と表示さ"
1274
- #~ "れ、投稿を検索し、ファイルを添付することが出来ます。小さなポップアップを起"
1275
- #~ "動するファイルでも添付をクリックすることが可能です。"
1276
-
1277
- #~ msgid "Search results for &#8220;%s&#8221;"
1278
- #~ msgstr "検索結果の &#8220;%s&#8221;"
1279
-
1280
- #~ msgid "Media attachment updated."
1281
- #~ msgstr "メディア添付ファイルを更新しました。"
1282
-
1283
- #~ msgid "Reattached %d attachment."
1284
- #~ msgid_plural "Reattached %d attachments."
1285
- #~ msgstr[0] "再接続 %d 添付ファイル。"
1286
-
1287
- #~ msgid "Undo"
1288
- #~ msgstr "元に戻す"
1289
-
1290
- #~ msgid "Media permanently deleted."
1291
- #~ msgstr "メディアを完全に削除。"
1292
-
1293
- #~ msgid "Error saving media attachment."
1294
- #~ msgstr "エラー メディアの添付ファイルを保存します。"
1295
-
1296
- #~ msgid "Media moved to the trash."
1297
- #~ msgstr "メディアを、ゴミ箱に移動しました。"
1298
-
1299
- #~ msgid "Media restored from the trash."
1300
- #~ msgstr "メディアをゴミ箱から復元。"
1301
-
1302
- #~ msgid ""
1303
- #~ "<a href=\"https://codex.wordpress.org/Media_Library_Screen\" target="
1304
- #~ "\"_blank\">Documentation on Media Library</a>"
1305
- #~ msgstr ""
1306
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1307
- #~ "\"_blank\">メディアライブラリのドキュメント</a>"
1308
-
1309
- #~ msgid "You are not allowed to move this item to the Trash."
1310
- #~ msgstr "ゴミ箱にこのアイテムを移動することはできません。"
1311
-
1312
- #~ msgid "You are not allowed to move this item out of the Trash."
1313
- #~ msgstr "ゴミ箱からこのアイテムを移動することはできません。"
1314
-
1315
- #~ msgid "You are not allowed to delete this item."
1316
- #~ msgstr "この項目を削除することはできません。"
1317
-
1318
- #~ msgid "Filter media items list"
1319
- #~ msgstr "フィルターメディア項目リスト"
1320
-
1321
- #~ msgid "Media items list navigation"
1322
- #~ msgstr "メディア項目リストナビゲーション"
1323
-
1324
- #~ msgid "Media items list"
1325
- #~ msgstr "メディア項目リスト"
1326
-
1327
- #~ msgid "Detached %d attachment."
1328
- #~ msgid_plural "Detached %d attachments."
1329
- #~ msgstr[0] "切り離す %d 添付ファイル。"
1330
-
1331
- #~ msgid "%d media attachment permanently deleted."
1332
- #~ msgid_plural "%d media attachments permanently deleted."
1333
- #~ msgstr[0] "%d メディア添付ファイルを完全に削除。"
1334
-
1335
- #~ msgid "%d media attachment moved to the trash."
1336
- #~ msgid_plural "%d media attachments moved to the trash."
1337
- #~ msgstr[0] "%d メディア添付ファイルはゴミ箱に移動しました。"
1338
-
1339
- #~ msgid "%d media attachment restored from the trash."
1340
- #~ msgid_plural "%d media attachments restored from the trash."
1341
- #~ msgstr[0] "%d メディア添付ファイルをごみ箱から復元。"
1342
-
1343
- #~ msgid "MIME type settings restored."
1344
- #~ msgstr "MIMEタイプの設定を復元しました。"
1345
-
1346
- #~ msgid "MIME type settings saved."
1347
- #~ msgstr "MIMEタイプの設定が保存されました。"
1348
-
1349
- #~ msgid ""
1350
- #~ "There is already a taxonomy with the same name. Please chose other one."
1351
- #~ msgstr ""
1352
- #~ "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
1353
-
1354
- #~ msgid ""
1355
- #~ "The plugin settings <strong>Media Settings > Taxonomies</strong> and "
1356
- #~ "<strong>Media Settings > MIME Types</strong> will be exported to a "
1357
- #~ "configuration file. It allows you to easily import the configuration into "
1358
- #~ "another website."
1359
- #~ msgstr ""
1360
- #~ "プラグイン設定の<strong>メディア設定 > タクソノミー </strong>と<strong>メ"
1361
- #~ "ディア設定 > MIMEタイプ</strong>の設定ファイルをエクスポートします。それは"
1362
- #~ "別のウェブサイトに設定をインポートする事が可能です。"
1363
-
1364
- #~ msgid ""
1365
- #~ "The plugin settings <strong>Media Settings > Taxonomies</strong> and "
1366
- #~ "<strong>Media Settings > MIME Types</strong> will be imported from a "
1367
- #~ "configuration file which can be obtained by exporting the settings on "
1368
- #~ "another website using the export button above."
1369
- #~ msgstr ""
1370
- #~ "プラグインの設定は、<strong>メディア設定 > タクソノミー </strong>と"
1371
- #~ "<strong>メディア設定 > MIMEタイプ</strong>で上記のエクスポートボタンを使用"
1372
- #~ "して別のWebサイトの設定を利用することができますが、コンフィギュレーション"
1373
- #~ "ファイルからインポートされます。"
1374
-
1375
- #~ msgid ""
1376
- #~ "All plugin settings will be overriden by the import. You will have a "
1377
- #~ "chance to restore current data from an automatic backup in case you are "
1378
- #~ "not satisfied with the result of the import."
1379
- #~ msgstr ""
1380
- #~ "全てのプラグインの設定は、インポートによって上書きされます。あなたがイン"
1381
- #~ "ポートの結果に満足していない場合には、自動バックアップから現在のデータを復"
1382
- #~ "元するチャンスがあります。"
1383
-
1384
- #~ msgid ""
1385
- #~ "The backup had been automatically created before the latest import "
1386
- #~ "opetarion."
1387
- #~ msgstr "バックアップは自動的に最新のインポート操作の前に作成されています。"
1388
-
1389
- #~ msgid "Column in List View"
1390
- #~ msgstr "リスト表示の列"
1391
-
1392
- #~ msgid "Filter in List View"
1393
- #~ msgstr "リスト表示のフィルター"
1394
-
1395
- #~ msgid "Filter in Grid View / Media Popup"
1396
- #~ msgstr "グリット表示/メディアポップアップのフィルター"
1397
-
1398
- #~ msgid "Filters"
1399
- #~ msgstr "フィルタ"
1400
-
1401
- #~ msgid ""
1402
- #~ "Enhance WordPress media shortcodes to make them understand media "
1403
- #~ "taxonomies, uploade date, and media items number limit"
1404
- #~ msgstr ""
1405
- #~ "WordPressのメディアショートコードでメディアタクソノミー、アップロードの日"
1406
- #~ "付とメディア・アイテム数の上限を取得させます。"
1407
-
1408
- #~ msgid ""
1409
- #~ "Gallery example: [gallery media_category=\"5\" limit=\"10\" monthnum="
1410
- #~ "\"12\" year=\"2015\"]"
1411
- #~ msgstr ""
1412
- #~ "ギャラリーの例: [gallery media_category=\"5\" limit=\"10\" monthnum="
1413
- #~ "\"12\" year=\"2015\"]"
1414
-
1415
- #~ msgid ""
1416
- #~ "Audio playlist example: [playlist media_category=\"5\" limit=\"10\" "
1417
- #~ "monthnum=\"12\" year=\"2015\"]"
1418
- #~ msgstr ""
1419
- #~ "オーディオプレイリストの例: [playlist media_category=\"5\" limit=\"10\" "
1420
- #~ "monthnum=\"12\" year=\"2015\"]"
1421
-
1422
- #~ msgid ""
1423
- #~ "Video playlist example: [playlist type=\"video\" media_category=\"5\" "
1424
- #~ "limit=\"10\" monthnum=\"12\" year=\"2015\"]"
1425
- #~ msgstr ""
1426
- #~ "ビデオプレイリストの例: [playlist type=\"video\" media_category=\"5\" "
1427
- #~ "limit=\"10\" monthnum=\"12\" year=\"2015\"]"
1428
-
1429
- #~ msgid "Taxonomy settings saved."
1430
- #~ msgstr "タクソノミーの設定が保存されました。"
1431
-
1432
- #~ msgid "Filter by "
1433
- #~ msgstr "フィルター"
1434
-
1435
- #~ msgid "All "
1436
- #~ msgstr "全ての"
1437
-
1438
- #~ msgid "Not in "
1439
- #~ msgstr "添付なし"
1440
-
1441
- #~ msgid ""
1442
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1443
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1444
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1445
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1446
- #~ "of your media files / taxonomies with this option turned on."
1447
- #~ msgstr ""
1448
- #~ "メディアの間に分類するチェックボックス上の任意のクリックは、バルク版に繋が"
1449
- #~ "るファイルデータを<strong style=\"color:red\">即時保存する</strong>ので 気"
1450
- #~ "を付けてください!あなたには大きなチャンスがあります<strong style=\"color:"
1451
- #~ "red\">間違っても再割り当てを行います</strong> 多くのメディアファイル/この"
1452
- #~ "オプションを指定したタクソノミーをオンにします。"
1453
-
1454
- #~ msgid "Expand Details"
1455
- #~ msgstr "詳細を展開します"
1456
-
1457
- #~ msgid "Collapse Details"
1458
- #~ msgstr "折りたたみの詳細"
1459
-
1460
- #~ msgid "Validation Failed. One or more fields below are required."
1461
- #~ msgstr "検証に失敗しました。以下の1つ以上のフィールドが必要です。"
1462
-
1463
- #~ msgid ""
1464
- #~ "The changes you made will be lost if you navigate away from this page"
1465
- #~ msgstr ""
1466
- #~ "このページから移動した場合は、変更内容が失われます。セーブして下さい。"
1467
-
1468
- #~ msgid ""
1469
- #~ "Both FREE and PRO versions of the Enhanced Media Library are network "
1470
- #~ "active. <strong>Enhanced Media Library PRO</strong> does not require free "
1471
- #~ "version to be active. Please network deactivate and delete the free "
1472
- #~ "versions of the plugin. All your data will remail intact."
1473
- #~ msgstr ""
1474
- #~ "Enhanced Media Libraryの無料版とPROバージョンでは両方で、ネットワークが有"
1475
- #~ "効化になっています。 <strong>Enhanced Media Library PRO</ strong>を有効化"
1476
- #~ "する場合無料版は必要ありません。無効化し、プラグインの無料版を削除してくだ"
1477
- #~ "さい。全てのデータはそのまま残ります。"
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"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
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
 
44
+ #: core/options-pages.php:106 core/options-pages.php:208
45
  msgid "Media Library"
46
  msgstr "メディアライブラリー"
47
 
49
  msgid "Taxonomies"
50
  msgstr "タクソノミー"
51
 
52
+ #: core/options-pages.php:124 core/options-pages.php:210
53
  msgid "MIME Types"
54
  msgstr "MIME タイプ"
55
 
56
+ #. Plugin Name of the plugin/theme
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr "Enhanced Media Library"
60
 
61
+ #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr "一般"
64
 
65
+ #: core/options-pages.php:209 core/options-pages.php: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
 
75
+ #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
+ #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
+ #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
+ #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
+ #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
+ #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
+ #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
+ #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
+ #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
+ #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
+ #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
+ #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
+ #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
+ #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
+ #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
+ #: core/options-pages.php:397 core/options-pages.php:1167
148
+ #: core/options-pages.php:1182 core/options-pages.php:1245
149
+ #: core/options-pages.php:1314
150
  msgid "Edit"
151
  msgstr "編集"
152
 
153
+ #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr "閉じる"
156
 
157
+ #: core/options-pages.php:399 core/options-pages.php: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
 
177
+ #: core/options-pages.php:403
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
 
201
+ #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
+ #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
+ #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
+ #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
+ #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
+ #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
  "同じ名前のタクソノミー(分類法)は既に存在します。別のものを選んで下さい。"
236
 
237
+ #: core/options-pages.php:420
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
+ #: core/options-pages.php:421
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
+ #: core/options-pages.php:422
246
+ msgid "Please choose Singular name for all new taxomonies."
247
  msgstr ""
248
 
249
+ #: core/options-pages.php:423
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
+ #: core/options-pages.php:425
254
  msgid "Ok"
255
  msgstr ""
256
 
257
+ #: core/options-pages.php:426 core/options-pages.php:431
258
+ #: core/options-pages.php:514
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
+ #: core/options-pages.php:428
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
+ #: core/options-pages.php:429 core/options-pages.php:511
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
+ #: core/options-pages.php:430
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
+ #: core/options-pages.php:432
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
+ #: core/options-pages.php:470
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
  "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
  "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
  "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
  "ション機能を一旦バックエンドして下さい。あなたが問題を見つけた場合は、プラグ"
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
 
765
  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
 
837
+ #. Plugin URI of the plugin/theme
838
+ #. Author URI of the plugin/theme
839
+ msgid "http://wpUXsolutions.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
840
  msgstr ""
841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
842
  #. Description of the plugin/theme
843
  msgid ""
844
  "This plugin will be handy for those who need to manage a lot of media files."
845
  msgstr ""
846
 
847
+ #. Author of the plugin/theme
848
+ msgid "wpUXsolutions"
849
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-30 12:52+0300\n"
6
- "PO-Revision-Date: 2016-04-30 12:52+0300\n"
7
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: ko\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.8.7\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
@@ -37,13 +37,13 @@ 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:217
41
- #: core/options-pages.php:932 core/options-pages.php:1057
42
- #: core/options-pages.php:1370 core/options-pages.php:1547
43
  msgid "Media Settings"
44
  msgstr "미디어 설정"
45
 
46
- #: core/options-pages.php:106 core/options-pages.php:189
47
  msgid "Media Library"
48
  msgstr "미디어 라이브러리"
49
 
@@ -51,269 +51,270 @@ msgstr "미디어 라이브러리"
51
  msgid "Taxonomies"
52
  msgstr "카테고리"
53
 
54
- #: core/options-pages.php:124 core/options-pages.php:191
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"
61
 
62
- #: core/options-pages.php:188
63
  msgid "General"
64
  msgstr ""
65
 
66
- #: core/options-pages.php:190 core/options-pages.php:1078
67
  msgid "Media Taxonomies"
68
  msgstr "미디어 카테고리"
69
 
70
- #: core/options-pages.php:214 core/options-pages.php:520
71
- #: core/options-pages.php:928 core/options-pages.php:1053
72
- #: core/options-pages.php:1366
73
  msgid "You do not have sufficient permissions to access this page."
74
  msgstr "이 페이지에 접근할 권한이 없습니다."
75
 
76
- #: core/options-pages.php:228
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
- #: core/options-pages.php:229
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
- #: core/options-pages.php:233
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
- #: core/options-pages.php:235
91
  msgid "Width"
92
  msgstr ""
93
 
94
- #: core/options-pages.php:237
95
  msgid "Height"
96
  msgstr ""
97
 
98
- #: core/options-pages.php:240
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
- #: core/options-pages.php:245 core/options-pages.php:246
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
- #: core/options-pages.php:247 core/options-pages.php:257
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
- #: core/options-pages.php:249 core/options-pages.php:259
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
- #: core/options-pages.php:255 core/options-pages.php:256
116
  msgid "Large size"
117
  msgstr ""
118
 
119
- #: core/options-pages.php:272
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
- #: core/options-pages.php:279
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
- #: core/options-pages.php:286
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
- #: core/options-pages.php:290
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
- #: core/options-pages.php:296
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
- #: core/options-pages.php:298
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
- #: core/options-pages.php:306
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:378 core/options-pages.php:1102
149
- #: core/options-pages.php:1117 core/options-pages.php:1180
150
- #: core/options-pages.php:1249
151
  msgid "Edit"
152
  msgstr "편집"
153
 
154
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
155
  msgid "Close"
156
  msgstr "닫기"
157
 
158
- #: core/options-pages.php:380 core/options-pages.php:1118
159
- #: core/options-pages.php:1181
160
  msgid "View"
161
  msgstr "보기"
162
 
163
- #: core/options-pages.php:381 core/options-pages.php:1119
164
- #: core/options-pages.php:1182
165
  msgid "Update"
166
  msgstr "업데이트"
167
 
168
- #: core/options-pages.php:382 core/options-pages.php:1120
169
- #: core/options-pages.php:1183
170
  msgid "Add New"
171
  msgstr "새로 추가하기"
172
 
173
- #: core/options-pages.php:383 core/options-pages.php:1121
174
- #: core/options-pages.php:1184
175
  msgid "New"
176
  msgstr "신규"
177
 
178
- #: core/options-pages.php:384
179
  msgid "Name"
180
  msgstr "이름"
181
 
182
- #: core/options-pages.php:385 core/options-pages.php:1122
183
- #: core/options-pages.php:1185
184
  msgid "Parent"
185
  msgstr "부모"
186
 
187
- #: core/options-pages.php:386 core/options-pages.php:616
188
- #: core/options-pages.php:1116 core/options-pages.php:1179
189
- #: core/taxonomies.php:365 enhanced-media-library.php:490
190
  msgid "All"
191
  msgstr "모두"
192
 
193
- #: core/options-pages.php:387 core/options-pages.php:1123
194
- #: core/options-pages.php:1186
195
  msgid "Search"
196
  msgstr "검색"
197
 
198
- #: core/options-pages.php:389 core/options-pages.php:1167
199
  msgid "New Taxonomy"
200
  msgstr "새로운 카테고리"
201
 
202
- #: core/options-pages.php:391
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
- #: core/options-pages.php:392
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
- #: core/options-pages.php:393
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
- #: core/options-pages.php:394
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
- #: core/options-pages.php:395
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
- #: core/options-pages.php:396
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
- #: core/options-pages.php:398
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
- #: core/options-pages.php:399
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr ""
236
 
237
- #: core/options-pages.php:401
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
- #: core/options-pages.php:402
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:403
246
- msgid "Please choose Singilar name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:404
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
- #: core/options-pages.php:406
254
  msgid "Ok"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:407 core/options-pages.php:412
258
- #: core/options-pages.php:495
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:409 pro/core/options-pages.php:165
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:410 core/options-pages.php:492
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:411
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
- #: core/options-pages.php:413
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:451
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
281
 
282
- #: core/options-pages.php:452
283
  msgid "Please fill into all fields."
284
  msgstr "모든 필드에 입력해주세요."
285
 
286
- #: core/options-pages.php:453
287
  msgid "Duplicate extensions or MIME types. Please chose other one."
288
  msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
289
 
290
- #: core/options-pages.php:490 core/options-pages.php:607
291
  msgid "Complete Cleanup"
292
  msgstr ""
293
 
294
- #: core/options-pages.php:491
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:493
301
  msgid "Yes, delete all data"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:494
305
  msgid "Cleaning..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:525
309
  msgid "Enhanced Media Library Settings"
310
  msgstr ""
311
 
312
- #: core/options-pages.php:535
313
  msgid "Export"
314
  msgstr ""
315
 
316
- #: core/options-pages.php:539
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 +322,15 @@ msgid ""
321
  "another website."
322
  msgstr ""
323
 
324
- #: core/options-pages.php:544
325
  msgid "Export Plugin Settings"
326
  msgstr ""
327
 
328
- #: core/options-pages.php:554
329
  msgid "Import"
330
  msgstr ""
331
 
332
- #: core/options-pages.php:558
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,148 +338,168 @@ msgid ""
337
  "another website using the export button above."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:559
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:566
348
  msgid "Import Plugin Settings"
349
  msgstr ""
350
 
351
- #: core/options-pages.php:578
352
  msgid "Restore"
353
  msgstr ""
354
 
355
- #: core/options-pages.php:584
356
  msgid "No backup available at the moment."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:586
360
  msgid "Backup will be created automatically before any import operation."
361
  msgstr ""
362
 
363
- #: core/options-pages.php:590
364
  msgid ""
365
  "The backup has been automatically created before the latest import operation."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:594
369
  msgid "Restore Settings from the Backup"
370
  msgstr ""
371
 
372
- #: core/options-pages.php:614
373
  msgid "What will be deleted:"
374
  msgstr ""
375
 
376
- #: core/options-pages.php:619
377
  msgid "All plugin options"
378
  msgstr ""
379
 
380
- #: core/options-pages.php:620
381
  msgid "All plugin backups stored in database"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:624
385
  msgid "What will remain intact:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:625
389
  msgid "All media items"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:626
393
  msgid "All taxonomies not listed above"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:629
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:631
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:637
409
  msgid "Delete All Data & Deactivate"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:742
413
  msgid "Please upload a file to import settings."
414
  msgstr ""
415
 
416
- #: core/options-pages.php:762
417
  msgid "Plugin settings imported."
418
  msgstr ""
419
 
420
- #: core/options-pages.php:809
421
  msgid "Plugin settings restored from the backup."
422
  msgstr ""
423
 
424
- #: core/options-pages.php:953
425
  msgid "Media Items Order"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:960
429
  msgid "Order media items by"
430
  msgstr ""
431
 
432
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
433
  msgid "For media library and media popups"
434
  msgstr ""
435
 
436
- #: core/options-pages.php:968
437
  msgid "Option allows to change order by drag and drop with Custom Order value."
438
  msgstr ""
439
 
440
- #: core/options-pages.php:973
441
  msgid "Sort order"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
445
  msgid "Media Shortcodes"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:999 core/options-pages.php:1002
449
  msgid "Enhanced media shortcodes"
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1003
453
  msgid ""
454
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
455
  "upload date, and media items number limit"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1004
459
  msgid "Gallery example:"
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1005
463
  msgid "Audio playlist example:"
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1006
467
  msgid "Video playlist example:"
468
  msgstr ""
469
 
470
- #: core/options-pages.php:1008
471
  #, php-format
472
  msgid ""
473
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1010
477
  #, php-format
478
  msgid "%sLearn more%s."
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1012
482
  #, php-format
483
  msgid ""
484
  "Please check out your gallery front-end and back-end functionality once this "
@@ -486,233 +507,241 @@ msgid ""
486
  "%s."
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1082 core/options-pages.php:1229
490
  msgid "Assign following taxonomies to Media Library:"
491
  msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
492
 
493
- #: core/options-pages.php:1101 core/options-pages.php:1167
494
- #: core/options-pages.php:1248
495
  msgid "Assign Taxonomy"
496
  msgstr "카테고리 할당"
497
 
498
- #: core/options-pages.php:1102 core/options-pages.php:1249
499
  msgid "Edit Taxonomy"
500
  msgstr "카테고리 편집"
501
 
502
- #: core/options-pages.php:1106 core/options-pages.php:1169
503
  msgid "Delete Taxonomy"
504
  msgstr "카테고리 삭제"
505
 
506
- #: core/options-pages.php:1111 core/options-pages.php:1174
507
  msgid "Labels"
508
  msgstr "라벨"
509
 
510
- #: core/options-pages.php:1113 core/options-pages.php:1176
511
  msgid "Singular"
512
  msgstr "단수"
513
 
514
- #: core/options-pages.php:1114 core/options-pages.php:1177
515
  msgid "Plural"
516
  msgstr "복수"
517
 
518
- #: core/options-pages.php:1115 core/options-pages.php:1178
519
  msgid "Menu Name"
520
  msgstr "메뉴명"
521
 
522
- #: core/options-pages.php:1128 core/options-pages.php:1151
523
- #: core/options-pages.php:1191 core/options-pages.php:1252
524
  msgid "Settings"
525
  msgstr "설정"
526
 
527
- #: core/options-pages.php:1130 core/options-pages.php:1193
528
  msgid "Taxonomy Name"
529
  msgstr "카테고리명"
530
 
531
- #: core/options-pages.php:1131 core/options-pages.php:1194
532
  msgid "Hierarchical"
533
  msgstr "계층 구조"
534
 
535
- #: core/options-pages.php:1132 core/options-pages.php:1195
536
  msgid "Column for List View"
537
  msgstr ""
538
 
539
- #: core/options-pages.php:1133 core/options-pages.php:1153
540
- #: core/options-pages.php:1196 core/options-pages.php:1254
541
  msgid "Filter for List View"
542
  msgstr ""
543
 
544
- #: core/options-pages.php:1134 core/options-pages.php:1154
545
- #: core/options-pages.php:1197 core/options-pages.php:1255
546
  msgid "Filter for Grid View / Media Popup"
547
  msgstr ""
548
 
549
- #: core/options-pages.php:1135 core/options-pages.php:1155
550
- #: core/options-pages.php:1198 core/options-pages.php:1256
551
  msgid "Edit in Media Popup"
552
  msgstr "미디어 팝업에서 편집"
553
 
554
- #: core/options-pages.php:1136 core/options-pages.php:1199
555
  msgid "Show in Nav Menu"
556
  msgstr "탐색 메뉴에서 표시"
557
 
558
- #: core/options-pages.php:1137 core/options-pages.php:1200
559
  msgid "Remember Terms Order (sort)"
560
  msgstr ""
561
 
562
- #: core/options-pages.php:1138 core/options-pages.php:1201
563
  msgid "Show in REST"
564
  msgstr ""
565
 
566
- #: core/options-pages.php:1139 core/options-pages.php:1202
567
  msgid "Rewrite Slug"
568
  msgstr "슬러그 다시 쓰기"
569
 
570
- #: core/options-pages.php:1140 core/options-pages.php:1203
571
  msgid "Slug with Front"
572
  msgstr "프런트를 포함한 슬러그"
573
 
574
- #: core/options-pages.php:1215
575
  msgid "Add New Taxonomy"
576
  msgstr "새로운 카테고리 추가"
577
 
578
- #: core/options-pages.php:1225
579
  msgid "Non-Media Taxonomies"
580
  msgstr "비 미디어 카테고리"
581
 
582
- #: core/options-pages.php:1286
583
  msgid "Options"
584
  msgstr "옵션"
585
 
586
- #: core/options-pages.php:1296 core/options-pages.php:1299
587
  msgid "Taxonomy archive pages"
588
  msgstr "카테고리 보관 페이지"
589
 
590
- #: core/options-pages.php:1300
591
  msgid "Turn on media taxonomy archive pages on the front-end"
592
  msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
593
 
594
- #: core/options-pages.php:1301
595
  msgid ""
596
  "Re-save your permalink settings after this option change to make it work."
597
  msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
598
 
599
- #: core/options-pages.php:1307 core/options-pages.php:1310
600
  msgid "Assign all like hierarchical"
601
  msgstr "모두 계층 구조와 같이 할당"
602
 
603
- #: core/options-pages.php:1311
604
  msgid ""
605
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
606
  msgstr ""
607
  "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
608
 
609
- #: core/options-pages.php:1317 core/options-pages.php:1320
610
  msgid "Force filters"
611
  msgstr "필터 강제 적용"
612
 
613
- #: core/options-pages.php:1321
614
  msgid "Show media filters for ANY Media Popup"
615
  msgstr ""
616
 
617
- #: core/options-pages.php:1322
618
  msgid "Try this if filters are not shown for third-party plugins or themes."
619
  msgstr ""
620
 
621
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
622
  msgid "Add New MIME Type"
623
  msgstr "새로운 MIME 유형 추가"
624
 
625
- #: core/options-pages.php:1394 core/options-pages.php:1449
626
  msgid "Extension"
627
  msgstr "확장자"
628
 
629
- #: core/options-pages.php:1395 core/options-pages.php:1450
630
  msgid "MIME Type"
631
  msgstr "MIME 유형"
632
 
633
- #: core/options-pages.php:1396 core/options-pages.php:1451
634
  msgid "Singular Label"
635
  msgstr "단수 라벨"
636
 
637
- #: core/options-pages.php:1397 core/options-pages.php:1452
638
  msgid "Plural Label"
639
  msgstr "복수 라벨"
640
 
641
- #: core/options-pages.php:1398 core/options-pages.php:1428
642
- #: core/options-pages.php:1441 core/options-pages.php:1453
643
  msgid "Add Filter"
644
  msgstr "필터 추가"
645
 
646
- #: core/options-pages.php:1399 core/options-pages.php:1429
647
- #: core/options-pages.php:1442 core/options-pages.php:1454
648
  msgid "Allow Upload"
649
  msgstr "업로드 허용"
650
 
651
- #: core/options-pages.php:1443
652
  msgid "Delete MIME Type"
653
  msgstr "MIME 유형 삭제"
654
 
655
- #: core/options-pages.php:1460
656
  msgid "Restore WordPress default MIME Types"
657
  msgstr ""
658
 
659
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
660
  msgid "Save Changes"
661
  msgstr "변경 사항 저장"
662
 
663
- #: core/options-pages.php:1499
664
  msgid "Changelog"
665
  msgstr ""
666
 
667
- #: core/options-pages.php:1500
668
  msgid "What's new in"
669
  msgstr ""
670
 
671
- #: core/options-pages.php:1500
672
  msgid "version"
673
  msgstr ""
674
 
675
- #: core/options-pages.php:1503
676
  msgid "More features under the hood"
677
  msgstr ""
678
 
679
- #: core/options-pages.php:1505
680
  msgid "Support"
681
  msgstr ""
682
 
683
- #: core/options-pages.php:1506
684
  msgid "Feel free to ask for help on"
685
  msgstr ""
686
 
687
- #: core/options-pages.php:1506
688
  msgid "Support is free for both versions of the plugin."
689
  msgstr ""
690
 
691
- #: core/options-pages.php:1508
692
  msgid "Plugin rating"
693
  msgstr ""
694
 
695
- #: core/options-pages.php:1509
696
  msgid "Please"
697
  msgstr ""
698
 
699
- #: core/options-pages.php:1509
700
  msgid "vote for the plugin"
701
  msgstr ""
702
 
703
- #: core/options-pages.php:1509
704
  msgid "Thanks!"
705
  msgstr ""
706
 
707
- #: core/options-pages.php:1511
708
  msgid "Other plugins you may find useful"
709
  msgstr ""
710
 
711
- #: core/options-pages.php:1550
712
  msgid "Utility"
713
  msgstr ""
714
 
715
- #: core/options-pages.php:1571
716
  msgid "Vote!"
717
  msgstr ""
718
 
@@ -724,334 +753,78 @@ msgstr ""
724
  msgid "Media Library settings saved."
725
  msgstr ""
726
 
727
- #: core/taxonomies.php:358 core/taxonomies.php:364
728
- #: enhanced-media-library.php:489
729
  msgid "Filter by"
730
  msgstr "필터 적용:"
731
 
732
- #: core/taxonomies.php:366 enhanced-media-library.php:491
733
  msgid "Not in"
734
  msgstr "포함되지 않음:"
735
 
736
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
737
  msgid "All Uncategorized"
738
  msgstr "모두 미분류됨"
739
 
740
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
741
  msgid "Reset All Filters"
742
  msgstr "모든 필터 재설정"
743
 
744
- #: enhanced-media-library.php:523
745
  msgid "Uploaded to post #"
746
  msgstr ""
747
 
748
- #: enhanced-media-library.php:524
749
  msgid "Based On"
750
  msgstr ""
751
 
752
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
753
  msgid "Media Categories"
754
  msgstr ""
755
 
756
- #: enhanced-media-library.php:570
757
  msgid "Media Category"
758
  msgstr ""
759
 
760
- #: enhanced-media-library.php:572
761
  msgid "All Media Categories"
762
  msgstr ""
763
 
764
- #: enhanced-media-library.php:573
765
  msgid "Edit Media Category"
766
  msgstr ""
767
 
768
- #: enhanced-media-library.php:574
769
  msgid "View Media Category"
770
  msgstr ""
771
 
772
- #: enhanced-media-library.php:575
773
  msgid "Update Media Category"
774
  msgstr ""
775
 
776
- #: enhanced-media-library.php:576
777
  msgid "Add New Media Category"
778
  msgstr ""
779
 
780
- #: enhanced-media-library.php:577
781
  msgid "New Media Category Name"
782
  msgstr ""
783
 
784
- #: enhanced-media-library.php:578
785
  msgid "Parent Media Category"
786
  msgstr ""
787
 
788
- #: enhanced-media-library.php:579
789
  msgid "Parent Media Category:"
790
  msgstr ""
791
 
792
- #: enhanced-media-library.php:580
793
  msgid "Search Media Categories"
794
  msgstr ""
795
 
796
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
797
- msgid "Remove"
798
- msgstr "제거"
799
-
800
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
801
- msgid "Deselect"
802
- msgstr "선택 해제"
803
-
804
- #: pro/core/bulk-edit.php:105
805
- msgid "Caption this image&hellip;"
806
- msgstr "이 이미지에 캡션을 추가..."
807
-
808
- #: pro/core/bulk-edit.php:109
809
- msgid "Describe this video&hellip;"
810
- msgstr "이 비디오를 설명..."
811
-
812
- #: pro/core/bulk-edit.php:111
813
- msgid "Describe this audio file&hellip;"
814
- msgstr "이 오디오 파일을 설명..."
815
-
816
- #: pro/core/bulk-edit.php:113
817
- msgid "Describe this media file&hellip;"
818
- msgstr "이 미디어 파일을 설명..."
819
-
820
- #: pro/core/bulk-edit.php:122
821
- msgid "Attachments Details"
822
- msgstr "첨부 파일 세부 정보"
823
-
824
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
825
- msgid "Select All"
826
- msgstr "모두 선택"
827
-
828
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
829
- msgid "Edit Selection"
830
- msgstr "선택 편집"
831
-
832
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
833
- msgid "Deselect All"
834
- msgstr "모두 선택 해제"
835
-
836
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
837
- msgid "Delete Selected"
838
- msgstr "선택 삭제"
839
-
840
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
841
- msgid "Order By"
842
- msgstr ""
843
-
844
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
845
- msgid "Date"
846
- msgstr ""
847
-
848
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
849
- msgid "Title"
850
- msgstr ""
851
-
852
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
853
- msgid "Custom Order"
854
- msgstr ""
855
-
856
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
857
- msgid "Random"
858
- msgstr ""
859
-
860
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
861
- msgid "Order"
862
- msgstr ""
863
-
864
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
865
- msgid "Ascending"
866
- msgstr ""
867
-
868
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
869
- msgid "Descending"
870
- msgstr ""
871
-
872
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
873
- msgid "Limit"
874
- msgstr ""
875
-
876
- #: pro/core/options-pages.php:78
877
- msgid "Your license has been deactivated."
878
- msgstr ""
879
-
880
- #: pro/core/options-pages.php:88
881
- msgid "Please check if your license key is correct and try again."
882
- msgstr ""
883
-
884
- #: pro/core/options-pages.php:101
885
- msgid ""
886
- "Wrong license key or a server error occured. Please check your license key "
887
- "and try again."
888
- msgstr ""
889
-
890
- #: pro/core/options-pages.php:111
891
- msgid "You license has been activated."
892
- msgstr ""
893
-
894
- #: pro/core/options-pages.php:164
895
- #, php-format
896
- msgid "Auto-assign media items to parent %s %s on upload"
897
- msgstr ""
898
-
899
- #: pro/core/options-pages.php:165
900
- #, php-format
901
- msgid ""
902
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
903
- "attached to a %s will be assigned to %s of their parent %s. Currently "
904
- "assigned %s will not be saved. Media items that are not attached to any %s "
905
- "will not be affected."
906
- msgstr ""
907
-
908
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
909
- msgid "Bulk Edit"
910
- msgstr "일괄 편집"
911
-
912
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
913
- msgid "Turn off 'Save Changes' button"
914
- msgstr "'변경 사항 저장' 버튼 해제"
915
-
916
- #: pro/core/options-pages.php:200
917
- msgid "Save changes on the fly"
918
- msgstr "변경 사항 즉시 저장"
919
-
920
- #: pro/core/options-pages.php:201
921
- msgid ""
922
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
923
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
924
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
925
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
926
- "files / taxonomies with this option turned on."
927
- msgstr ""
928
-
929
- #: pro/core/options-pages.php:202
930
- msgid ""
931
- "Strongly NOT recommended option if you work with more than hundred of files "
932
- "at a time."
933
- msgstr ""
934
- "한 번에 100 개 이상의 파일을 작업을하는 경우 절대로 권장하지 않는 옵션임."
935
-
936
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
937
- msgid "License Key"
938
- msgstr "라이센스 키"
939
-
940
- #: pro/core/options-pages.php:252
941
- #, php-format
942
- msgid ""
943
- "To unlock updates please enter your license key below. You can get your "
944
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
945
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
946
- msgstr ""
947
-
948
- #: pro/core/options-pages.php:262
949
- msgid "Activate License"
950
- msgstr "라이센스 활성화"
951
-
952
- #: pro/core/options-pages.php:269
953
- msgid "Your license is active!"
954
- msgstr "라이센스가 활성화되었습니다!"
955
-
956
- #: pro/core/options-pages.php:273
957
- msgid "Deactivate License"
958
- msgstr ""
959
-
960
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
961
- msgid ""
962
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
963
- "this server&#8217;s configuration. If you continue to have problems, please "
964
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
965
- msgstr ""
966
- "예기치 않은 오류가 발생했습니다. WordPress.org 또는 이 서버의 구성에 문제가 "
967
- "있을 수 있습니다. 문제가 계속될 경우, <a href=\"https://wordpress.org/"
968
- "support/\">지원 포럼</a>을 시도해 보시기 바랍니다."
969
-
970
- #: pro/core/update.php:113
971
- msgid ""
972
- "(WordPress could not establish a secure connection to WordPress.org. Please "
973
- "contact your server administrator.)"
974
- msgstr ""
975
- "(워드프레스가 WordPress.org에 보안 연결을 설정할 수 없습니다. 서버 관리자에"
976
- "게 문의하세요.)"
977
-
978
- #: pro/core/update.php:180
979
- #, php-format
980
- msgid ""
981
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
982
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
983
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
984
- msgstr ""
985
-
986
- #: pro/enhanced-media-library-pro.php:119
987
- msgid "ALL files belong to this item"
988
- msgstr "이 항목에 모든 파일이 속합니다"
989
-
990
- #: pro/enhanced-media-library-pro.php:120
991
- msgid "SOME files belong to this item"
992
- msgstr "이 항목에 SOME 파일이 속합니다"
993
-
994
- #: pro/enhanced-media-library-pro.php:121
995
- msgid "NO files belong to this item"
996
- msgstr "이 항목에 속한 파일이 없습니다"
997
-
998
- #: pro/enhanced-media-library-pro.php:122
999
- msgid "Changes saved."
1000
- msgstr "변경 사항이 저장됨."
1001
-
1002
- #: pro/enhanced-media-library-pro.php:123
1003
- msgid "Something went wrong."
1004
- msgstr "문제가 발생했습니다."
1005
-
1006
- #: pro/enhanced-media-library-pro.php:126
1007
- msgid "Edit Media Files"
1008
- msgstr "미디어 파일 편집"
1009
-
1010
- #: pro/enhanced-media-library-pro.php:151
1011
- msgid "Create a filter-based gallery"
1012
- msgstr ""
1013
-
1014
- #: pro/enhanced-media-library-pro.php:152
1015
- msgid "Create a filter-based playlist"
1016
- msgstr ""
1017
-
1018
- #: pro/enhanced-media-library-pro.php:153
1019
- msgid "Create a filter-based video playlist"
1020
- msgstr ""
1021
-
1022
- #: pro/enhanced-media-library-pro.php:231
1023
- msgid ""
1024
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1025
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1026
- "will remain intact."
1027
- msgstr ""
1028
-
1029
- #: pro/enhanced-media-library-pro.php:231
1030
- msgid "Return to Plugins"
1031
- msgstr "플러그인으로 돌아가기"
1032
-
1033
- #: pro/enhanced-media-library-pro.php:282
1034
- msgid ""
1035
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1036
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1037
- "be active. Please network deactivate and delete the free versions of the "
1038
- "plugin. All your data will remain intact."
1039
- msgstr ""
1040
-
1041
- #: pro/enhanced-media-library-pro.php:299
1042
- msgid ""
1043
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1044
- "be active. Please deactivate and delete the free version of the plugin. All "
1045
- "your data will remain intact."
1046
- msgstr ""
1047
-
1048
- #: pro/enhanced-media-library-pro.php:315
1049
- msgid ""
1050
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1051
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1052
- "version to be active. Please deactivate (or network deactivate) and delete "
1053
- "the free version of the plugin for this site. All your data will remail "
1054
- "intact."
1055
  msgstr ""
1056
 
1057
  #. Description of the plugin/theme
@@ -1059,344 +832,6 @@ msgid ""
1059
  "This plugin will be handy for those who need to manage a lot of media files."
1060
  msgstr "이 플러그인은 많은 미디어 파일을 관리해야 하는 사용자에게 유용합니다."
1061
 
1062
- #~ msgid ""
1063
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1064
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1065
- #~ "be lost."
1066
- #~ msgstr ""
1067
- #~ "카테고리가 영구적으로 삭제됩니다. 미디어 파일은 보존되지만, 이 카테고리 "
1068
- #~ "및 용어와의 모든 연결은 손실됩니다."
1069
-
1070
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1071
- #~ msgstr "모든 새로운 카테고리에 대한 단수 및 복수 이름을 선택해주세요."
1072
-
1073
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1074
- #~ msgstr "모든 새로운 카테고리에 대한 단수 이름을 선택해주세요."
1075
-
1076
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1077
- #~ msgstr "모든 새로운 카테고리에 대한 복수 이름을 선택해주세요."
1078
-
1079
- #~ msgid ""
1080
- #~ "There is already a taxonomy with the same name. Please chose other one."
1081
- #~ msgstr "동일한 이름의 카테고리가 이미 존재합니다. 다른 것을 선택해주세요."
1082
-
1083
- #~ msgid "Filter by "
1084
- #~ msgstr "필터 적용: "
1085
-
1086
- #~ msgid "All "
1087
- #~ msgstr "모든 "
1088
-
1089
- #~ msgid "Not in "
1090
- #~ msgstr "포함되지 않음: "
1091
-
1092
- #~ msgid ""
1093
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1094
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1095
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1096
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1097
- #~ "of your media files / taxonomies with this option turned on."
1098
- #~ msgstr ""
1099
- #~ "미디어 파일 일괄 편집 도중 카테고리 확인란에 클릭하면 데이터를 <strong "
1100
- #~ "style=\"color:red\">즉시 저장</strong>하게 됩니다. 조심해주세요! 이 옵션"
1101
- #~ "을 켜면 다수의 미디어 파일 / 카테고리에 <strong style=\"color:red\">실수"
1102
- #~ "로 재할당을 잘못 수행</strong>할 가능성이 훨씬 더 높습니다."
1103
-
1104
- #~ msgctxt "uploaded files"
1105
- #~ msgid "All (%s)"
1106
- #~ msgid_plural "All (%s)"
1107
- #~ msgstr[0] "모든 (%s)"
1108
-
1109
- #~ msgctxt "detached files"
1110
- #~ msgid "Unattached (%s)"
1111
- #~ msgid_plural "Unattached (%s)"
1112
- #~ msgstr[0] "첨부되지 않음 (%s)"
1113
-
1114
- #~ msgctxt "uploaded files"
1115
- #~ msgid "Trash (%s)"
1116
- #~ msgid_plural "Trash (%s)"
1117
- #~ msgstr[0] "휴지통 (%s)"
1118
-
1119
- #~ msgid "Filter"
1120
- #~ msgstr "필터"
1121
-
1122
- #~ msgid "Empty Trash"
1123
- #~ msgstr "휴지통 비우기"
1124
-
1125
- #~ msgid "You do not have permission to upload files."
1126
- #~ msgstr "파일을 업로드할 권한이 없습니다."
1127
-
1128
- #~ msgid "Overview"
1129
- #~ msgstr "개요"
1130
-
1131
- #~ msgid ""
1132
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1133
- #~ "the most recent uploads listed first."
1134
- #~ msgstr ""
1135
- #~ "업로드한 모든 파일은 미디어 라이브러리 내에 나열되며 가장 최근 업로드한 목"
1136
- #~ "록을 먼저 표시합니다."
1137
-
1138
- #~ msgid ""
1139
- #~ "You can view your media in a simple visual grid or a list with columns. "
1140
- #~ "Switch between these views using the icons to the left above the media."
1141
- #~ msgstr ""
1142
- #~ "미디어를 간단한 비주얼 그리드 또는 열이 있는 목록으로 볼 수 있습니다. 미디"
1143
- #~ "어 좌측 상단에 있는 아이콘을 이용하여 화면을 변경할 수 있습니다."
1144
-
1145
- #~ msgid ""
1146
- #~ "To delete media items, click the Bulk Select button at the top of the "
1147
- #~ "screen. Select any items you wish to delete, then click the Delete "
1148
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1149
- #~ "viewing your media."
1150
- #~ msgstr ""
1151
- #~ "미디어 항목을 삭제하려면, 화면 상단의 일괄 선택 버튼을 클릭하세요. 삭제할 "
1152
- #~ "모든 파일을 선택한 다음, 선택 삭제 버튼을 클릭하세요. 선택 해제 버튼을 클"
1153
- #~ "릭하면 미디어 화면으로 돌아갑니다."
1154
-
1155
- #~ msgid "Attachment Details"
1156
- #~ msgstr "첨부 파일 세부 정보"
1157
-
1158
- #~ msgid ""
1159
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1160
- #~ "you to preview media and make quick edits. Any changes you make to the "
1161
- #~ "attachment details will be automatically saved."
1162
- #~ msgstr ""
1163
- #~ "항목을 클릭하면 미디어를 미리 보고 빠르게 편집할 수 있는 첨부 파일 상세 정"
1164
- #~ "보 대화창이 표시됩니다. 첨부 파일 상세 정보에서의 모든 변경 사항은 자동으"
1165
- #~ "로 저장됩니다."
1166
-
1167
- #~ msgid ""
1168
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1169
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1170
- #~ msgstr ""
1171
- #~ "대화창 상단의 화살표 버튼을 사용하거나, 키보드의 왼쪽 및 오른쪽 화살표 키"
1172
- #~ "를 이용하여 미디어 항목을 신속하게 탐색할 수 있습니다."
1173
-
1174
- #~ msgid ""
1175
- #~ "You can also delete individual items and access the extended edit screen "
1176
- #~ "from the details dialog."
1177
- #~ msgstr ""
1178
- #~ "상세 정보 대화에서 개별 항목을 삭제하고 확장 편집 화면에 접근할 수 있습니"
1179
- #~ "다."
1180
-
1181
- #~ msgid "For more information:"
1182
- #~ msgstr "더 많은 정보:"
1183
-
1184
- #~ msgid ""
1185
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1186
- #~ "\"_blank\">Documentation on Media Library</a>"
1187
- #~ msgstr ""
1188
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1189
- #~ "\"_blank\">미디어 라이브러리에 대한 문서</a>"
1190
-
1191
- #~ msgid ""
1192
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1193
- #~ "Forums</a>"
1194
- #~ msgstr "지원 포럼"
1195
-
1196
- #~ msgctxt "file"
1197
- #~ msgid "Add New"
1198
- #~ msgstr "새로 추가"
1199
-
1200
- #~ msgid ""
1201
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1202
- #~ "php?mode=list\">Switch to the list view</a>."
1203
- #~ msgstr ""
1204
- #~ "미디어 라이브러리에 대한 그리드 화면은 자바 스크립트가 필요합니다. <a "
1205
- #~ "href=\"upload.php?mode=list\">목록 화면으로 전환</a>."
1206
-
1207
- #~ msgid "You are not allowed to edit this post."
1208
- #~ msgstr "이 글을 편집할 권한이 없습니다."
1209
-
1210
- #~ msgid "You are not allowed to move this post to the trash."
1211
- #~ msgstr "이 글을 휴지통으로 이동할 권한이 없습니다."
1212
-
1213
- #~ msgid "Error in moving to trash."
1214
- #~ msgstr "휴지통으로 이동하는 도중 오류가 발생함."
1215
-
1216
- #~ msgid "You are not allowed to move this post out of the trash."
1217
- #~ msgstr "이 글을 휴지통으로부터 이동할 권한이 없습니다."
1218
-
1219
- #~ msgid "Error in restoring from trash."
1220
- #~ msgstr "휴지통으로부터 복구하는 도중 오류가 발생함."
1221
-
1222
- #~ msgid "You are not allowed to delete this post."
1223
- #~ msgstr "이 글을 삭제할 권한이 없습니다."
1224
-
1225
- #~ msgid "Error in deleting."
1226
- #~ msgstr "삭제하는 도중 오류가 발생함."
1227
-
1228
- #~ msgctxt "items per page (screen options)"
1229
- #~ msgid "Media items"
1230
- #~ msgstr "미디어 항목"
1231
-
1232
- #~ msgid ""
1233
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1234
- #~ "the most recent uploads listed first. You can use the Screen Options tab "
1235
- #~ "to customize the display of this screen."
1236
- #~ msgstr ""
1237
- #~ "업로드한 모든 파일은 미디어 라이브러리 내에 나열되며 가장 최근 업로드한 목"
1238
- #~ "록을 먼저 표시합니다. 화면 옵션 탭을 사용해 이 화면의 표시를 설정할 수 있"
1239
- #~ "습니다."
1240
-
1241
- #~ msgid ""
1242
- #~ "You can narrow the list by file type/status using the text link filters "
1243
- #~ "at the top of the screen. You also can refine the list by date using the "
1244
- #~ "dropdown menu above the media table."
1245
- #~ msgstr ""
1246
- #~ "화면 상단에 있는 텍스트 링크 필터를 사용하여 파일 유형/상태 기준으로 목록"
1247
- #~ "을 좁힐 수 있습니다. 또한 미디어 표 위의 드롭 다운 메뉴를 사용하여 날짜 별"
1248
- #~ "로 목록을 구체화 할 수 있습니다."
1249
-
1250
- #~ msgid "Available Actions"
1251
- #~ msgstr "사용 가능한 동작"
1252
-
1253
- #~ msgid ""
1254
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1255
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1256
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1257
- #~ "Permanently will delete the file from the media library (as well as from "
1258
- #~ "any posts to which it is currently attached). View will take you to the "
1259
- #~ "display page for that file."
1260
- #~ msgstr ""
1261
- #~ "행에 마우스를 올리면 다음의 작업 링크가 나타납니다 : 편집, 영구 삭제, 그리"
1262
- #~ "고 보기. 편집이나 미디어 파일의 이름을 클릭하면 개별 파일의 메타 데이터를 "
1263
- #~ "편집하는 간단한 화면이 표시됩니다. 영구 삭제를 클릭하면 미디어 라이브러리"
1264
- #~ "(뿐만 아니라 그것이 현재 첨부된 모든 글에서도)에서 파일을 삭제합니다. 보기"
1265
- #~ "는 파일이 사용된 페이지로 이동합니다."
1266
-
1267
- #~ msgid "Attaching Files"
1268
- #~ msgstr "파일을 첨부하는 중"
1269
-
1270
- #~ msgid ""
1271
- #~ "If a media file has not been attached to any post, you will see that in "
1272
- #~ "the Attached To column, and can click on Attach File to launch a small "
1273
- #~ "popup that will allow you to search for a post and attach the file."
1274
- #~ msgstr ""
1275
- #~ "미디어 파일이 모든 글에 첨부되지 않은 경우, 다음에 첨부됨 열에 표시되고, "
1276
- #~ "파일 첨부를 클릭하면 글을 검색하고 파일을 첨부할 수 있는 작은 팝업이 나타"
1277
- #~ "납니다."
1278
-
1279
- #~ msgid "Search results for &#8220;%s&#8221;"
1280
- #~ msgstr "&#8220;%s&#8221;에 대한 검색 결과"
1281
-
1282
- #~ msgid "Media attachment updated."
1283
- #~ msgstr "미디어 첨부파일이 업데이트 됨."
1284
-
1285
- #~ msgid "Reattached %d attachment."
1286
- #~ msgid_plural "Reattached %d attachments."
1287
- #~ msgstr[0] "%d 첨부파일을 다시 첨부함."
1288
-
1289
- #~ msgid "Media attachment permanently deleted."
1290
- #~ msgid_plural "%d media attachments permanently deleted."
1291
- #~ msgstr[0] "미디어 첨부 파일을 영구적으로 삭제함."
1292
-
1293
- #~ msgid "Media attachment moved to the trash."
1294
- #~ msgid_plural "%d media attachments moved to the trash."
1295
- #~ msgstr[0] "미디어 첨부 파일을 휴지통으로 이동함."
1296
-
1297
- #~ msgid "Undo"
1298
- #~ msgstr "실행 취소"
1299
-
1300
- #~ msgid "Media attachment restored from the trash."
1301
- #~ msgid_plural "%d media attachments restored from the trash."
1302
- #~ msgstr[0] "미디어 첨부 파일을 휴지통으로부터 복구함."
1303
-
1304
- #~ msgid "Media permanently deleted."
1305
- #~ msgstr "미디어를 영구적으로 삭제함."
1306
-
1307
- #~ msgid "Error saving media attachment."
1308
- #~ msgstr "미디어 첨부 파일을 저장하는 중 오류 발생."
1309
-
1310
- #~ msgid "Media moved to the trash."
1311
- #~ msgstr "미디어가 휴지통으로 이동함."
1312
-
1313
- #~ msgid "Media restored from the trash."
1314
- #~ msgstr "미디어를 휴지통에서 복구함."
1315
-
1316
- #~ msgid "Column in List View"
1317
- #~ msgstr "목록 화면에서 열 표시"
1318
-
1319
- #~ msgid "Filter in List View"
1320
- #~ msgstr "목록 화면에서 필터 적용"
1321
-
1322
- #~ msgid "Filter in Grid View / Media Popup"
1323
- #~ msgstr "그리드 화면 / 미디어 팝업에서 필터 적용"
1324
-
1325
- #~ msgid "Remember terms order (sort)"
1326
- #~ msgstr "용어 순서 기억 (정렬)"
1327
-
1328
- #~ msgid "Show media filters for ANY Media Popup."
1329
- #~ msgstr "모든 미디어 팝업에 대한 미디어 필터 표시"
1330
-
1331
- #~ msgid ""
1332
- #~ "May be useful for those who need forcing filters for third-party plugins "
1333
- #~ "or themes."
1334
- #~ msgstr ""
1335
- #~ "제3자 플러그인 또는 테마에 대한 필터에 대한 강제 적용이 필요할 때 유용할 "
1336
- #~ "수 있음."
1337
-
1338
- #~ msgid "Restore default MIME Types"
1339
- #~ msgstr "기본 MIME 유형 복구"
1340
-
1341
- #~ msgid ""
1342
- #~ "Please deactivate and <strong>remove</strong> the old version prior to "
1343
- #~ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1344
- #~ "will remain intact."
1345
- #~ msgstr ""
1346
- #~ "<strong>Enhanced Media Library PRO</strong>를 활성화하기 전에 오래된 버전"
1347
- #~ "을 비활성화 및 <strong>제거</strong>해주세요. 모든 데이터는 보존됩니다."
1348
-
1349
- #~ msgid "EML PRO Updates"
1350
- #~ msgstr "EML PRO 업데이트"
1351
-
1352
- #~ msgid "Updates"
1353
- #~ msgstr "업데이트"
1354
-
1355
- #~ msgid "Enhanced Media Library PRO License"
1356
- #~ msgstr "Enhanced Media Library PRO 라이센스"
1357
-
1358
- #~ msgid ""
1359
- #~ "To unlock updates, please enter your license key below. You can see your "
1360
- #~ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
1361
- #~ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
1362
- #~ "href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
1363
- #~ msgstr ""
1364
- #~ "업데이트를 잠금 해제하려면, 아래 라이센스 키를 입력해주세요. <a href="
1365
- #~ "\"http://www.wpuxsolutions.com/account/\">Your Account</a>에서 라이센스 키"
1366
- #~ "를 확인할 수 있습니다. 라이센스 키가 없을 경우, <a href=\"http://www."
1367
- #~ "wpuxsolutions.com/pricing/\">구입</a>하실 수 있습니다."
1368
-
1369
- #~ msgid ""
1370
- #~ "To unlock updates, please enter your license key on the <a href=\"%s"
1371
- #~ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
1372
- #~ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
1373
- #~ "href=\"%s\">purchase it</a>."
1374
- #~ msgstr ""
1375
- #~ "업데이트를 잠금 해제하려면, <a href=\"%s\">업데이트</a> 페이지에서 라이센"
1376
- #~ "스 키를 입력해주세요. <a href=\"http://www.wpuxsolutions.com/account/"
1377
- #~ "\">Your Account</a>에서 라이센스 키를 확인할 수 있습니다. 라이센스 키가 없"
1378
- #~ "을 경우, <a href=\"http://www.wpuxsolutions.com/pricing/\">구입</a>하실 "
1379
- #~ "수 있습니다."
1380
-
1381
- #~ msgid "Expand Details"
1382
- #~ msgstr "세부 정보 펼치기"
1383
-
1384
- #~ msgid "Collapse Details"
1385
- #~ msgstr "세부 정보 접기"
1386
-
1387
- #~ msgid "Validation Failed. One or more fields below are required."
1388
- #~ msgstr "검증에 실패함. 아래 하나 이상의 필드가 필요합니다."
1389
-
1390
- #~ msgid ""
1391
- #~ "The changes you made will be lost if you navigate away from this page"
1392
- #~ msgstr "이 페이지에서 벗어나면 변경 사항을 잃게 됩니다."
1393
-
1394
- #~ msgid ""
1395
- #~ "<strong>Enhanced Media Library PRO</strong> does not require free version "
1396
- #~ "to be active. Please deactivate and remove the free version of the plugin."
1397
- #~ msgstr ""
1398
- #~ "<strong>Enhanced Media Library PRO</strong>는 활성화 시 무료 버전이 필요없"
1399
- #~ "습니다. 플러그인의 무료 버전을 비활성화 및 제거해주세요. "
1400
-
1401
- #~ msgid "Enhanced Media Library PRO"
1402
- #~ msgstr "Enhanced Media Library PRO"
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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=1; plural=0;\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.8.8\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
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
 
46
+ #: core/options-pages.php:106 core/options-pages.php:208
47
  msgid "Media Library"
48
  msgstr "미디어 라이브러리"
49
 
51
  msgid "Taxonomies"
52
  msgstr "카테고리"
53
 
54
+ #: core/options-pages.php:124 core/options-pages.php:210
55
  msgid "MIME Types"
56
  msgstr "MIME 유형"
57
 
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"
62
 
63
+ #: core/options-pages.php:207
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
 
77
+ #: core/options-pages.php:247
78
  msgid "Image sizes"
79
  msgstr ""
80
 
81
+ #: core/options-pages.php:248
82
  msgid ""
83
  "The sizes listed below determine the maximum dimensions in pixels to use "
84
  "when adding an image to the Media Library."
85
  msgstr ""
86
 
87
+ #: core/options-pages.php:252
88
  msgid "Thumbnail size"
89
  msgstr ""
90
 
91
+ #: core/options-pages.php:254
92
  msgid "Width"
93
  msgstr ""
94
 
95
+ #: core/options-pages.php:256
96
  msgid "Height"
97
  msgstr ""
98
 
99
+ #: core/options-pages.php:259
100
  msgid ""
101
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
102
  msgstr ""
103
 
104
+ #: core/options-pages.php:264 core/options-pages.php:265
105
  msgid "Medium size"
106
  msgstr ""
107
 
108
+ #: core/options-pages.php:266 core/options-pages.php:276
109
  msgid "Max Width"
110
  msgstr ""
111
 
112
+ #: core/options-pages.php:268 core/options-pages.php:278
113
  msgid "Max Height"
114
  msgstr ""
115
 
116
+ #: core/options-pages.php:274 core/options-pages.php:275
117
  msgid "Large size"
118
  msgstr ""
119
 
120
+ #: core/options-pages.php:291
121
  msgid "Embeds"
122
  msgstr ""
123
 
124
+ #: core/options-pages.php:298
125
  msgid "Uploading Files"
126
  msgstr ""
127
 
128
+ #: core/options-pages.php:305
129
  msgid "Store uploads in this folder"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:309
133
  #, php-format
134
  msgid "Default is %s"
135
  msgstr ""
136
 
137
+ #: core/options-pages.php:315
138
  msgid "Full URL path to files"
139
  msgstr ""
140
 
141
+ #: core/options-pages.php:317
142
  msgid "Configuring this is optional. By default, it should be blank."
143
  msgstr ""
144
 
145
+ #: core/options-pages.php:325
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
 
155
+ #: core/options-pages.php:398
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
 
179
+ #: core/options-pages.php:403
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
 
203
+ #: core/options-pages.php:410
204
  msgid "Remove Taxonomy"
205
  msgstr ""
206
 
207
+ #: core/options-pages.php:411
208
  msgid "Taxonomy will be removed."
209
  msgstr ""
210
 
211
+ #: core/options-pages.php:412
212
  msgid ""
213
  "Taxonomy terms (categories) will remain intact in the database. If you "
214
  "create a taxonomy with the same name in the future, its terms (categories) "
215
  "will be available again."
216
  msgstr ""
217
 
218
+ #: core/options-pages.php:413
219
  msgid "Media items will remain intact."
220
  msgstr ""
221
 
222
+ #: core/options-pages.php:414
223
  msgid "Are you still sure?"
224
  msgstr ""
225
 
226
+ #: core/options-pages.php:415
227
  msgid "Yes, remove taxonomy"
228
  msgstr ""
229
 
230
+ #: core/options-pages.php:417
231
  msgid "Duplicate"
232
  msgstr ""
233
 
234
+ #: core/options-pages.php:418
235
  msgid "Taxonomy with the same name already exists. Please chose other one."
236
  msgstr ""
237
 
238
+ #: core/options-pages.php:420
239
  msgid "Empty Fields"
240
  msgstr ""
241
 
242
+ #: core/options-pages.php:421
243
  msgid "Please choose Singular and Plural names for all new taxomonies."
244
  msgstr ""
245
 
246
+ #: core/options-pages.php:422
247
+ msgid "Please choose Singular name for all new taxomonies."
248
  msgstr ""
249
 
250
+ #: core/options-pages.php:423
251
  msgid "Please choose Plural Name for all new taxomonies."
252
  msgstr ""
253
 
254
+ #: core/options-pages.php:425
255
  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
 
263
+ #: core/options-pages.php:428
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
 
271
+ #: core/options-pages.php:430
272
  msgid "Synchronize"
273
  msgstr ""
274
 
275
+ #: core/options-pages.php:432
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
  "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
  "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
  "%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
 
753
  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
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-30 12:53+0300\n"
6
- "PO-Revision-Date: 2016-04-30 12: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"
@@ -11,7 +11,7 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
@@ -35,13 +35,13 @@ msgstr[0] ""
35
  msgstr[1] ""
36
 
37
  # @ eml
38
- #: core/options-pages.php:97 core/options-pages.php:217
39
- #: core/options-pages.php:932 core/options-pages.php:1057
40
- #: core/options-pages.php:1370 core/options-pages.php:1547
41
  msgid "Media Settings"
42
  msgstr "Media Instellingen"
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:189
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -51,288 +51,289 @@ msgid "Taxonomies"
51
  msgstr "Taxonomies"
52
 
53
  # @ eml
54
- #: core/options-pages.php:124 core/options-pages.php:191
55
  msgid "MIME Types"
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 ""
62
 
63
- #: core/options-pages.php:188
64
  msgid "General"
65
  msgstr ""
66
 
67
  # @ eml
68
- #: core/options-pages.php:190 core/options-pages.php:1078
69
  msgid "Media Taxonomies"
70
  msgstr "Media Taxonomies"
71
 
72
  # @ eml
73
- #: core/options-pages.php:214 core/options-pages.php:520
74
- #: core/options-pages.php:928 core/options-pages.php:1053
75
- #: core/options-pages.php:1366
76
  msgid "You do not have sufficient permissions to access this page."
77
  msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
78
 
79
- #: core/options-pages.php:228
80
  msgid "Image sizes"
81
  msgstr ""
82
 
83
- #: core/options-pages.php:229
84
  msgid ""
85
  "The sizes listed below determine the maximum dimensions in pixels to use "
86
  "when adding an image to the Media Library."
87
  msgstr ""
88
 
89
- #: core/options-pages.php:233
90
  msgid "Thumbnail size"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:235
94
  msgid "Width"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:237
98
  msgid "Height"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:240
102
  msgid ""
103
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:245 core/options-pages.php:246
107
  msgid "Medium size"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:247 core/options-pages.php:257
111
  msgid "Max Width"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:249 core/options-pages.php:259
115
  msgid "Max Height"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:255 core/options-pages.php:256
119
  msgid "Large size"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:272
123
  msgid "Embeds"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:279
127
  msgid "Uploading Files"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:286
131
  msgid "Store uploads in this folder"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:290
135
  #, php-format
136
  msgid "Default is %s"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:296
140
  msgid "Full URL path to files"
141
  msgstr ""
142
 
143
- #: core/options-pages.php:298
144
  msgid "Configuring this is optional. By default, it should be blank."
145
  msgstr ""
146
 
147
- #: core/options-pages.php:306
148
  msgid "Organize my uploads into month- and year-based folders"
149
  msgstr ""
150
 
151
  # @ eml
152
- #: core/options-pages.php:378 core/options-pages.php:1102
153
- #: core/options-pages.php:1117 core/options-pages.php:1180
154
- #: core/options-pages.php:1249
155
  msgid "Edit"
156
  msgstr "Bewerk"
157
 
158
  # @ eml
159
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
160
  msgid "Close"
161
  msgstr "Sluit"
162
 
163
  # @ eml
164
- #: core/options-pages.php:380 core/options-pages.php:1118
165
- #: core/options-pages.php:1181
166
  msgid "View"
167
  msgstr "Bekijk"
168
 
169
  # @ eml
170
- #: core/options-pages.php:381 core/options-pages.php:1119
171
- #: core/options-pages.php:1182
172
  msgid "Update"
173
  msgstr "Werk bij"
174
 
175
  # @ eml
176
- #: core/options-pages.php:382 core/options-pages.php:1120
177
- #: core/options-pages.php:1183
178
  msgid "Add New"
179
  msgstr "Voeg Nieuw Toe"
180
 
181
  # @ eml
182
- #: core/options-pages.php:383 core/options-pages.php:1121
183
- #: core/options-pages.php:1184
184
  msgid "New"
185
  msgstr "Nieuw"
186
 
187
  # @ eml
188
- #: core/options-pages.php:384
189
  msgid "Name"
190
  msgstr "Naam"
191
 
192
  # @ eml
193
- #: core/options-pages.php:385 core/options-pages.php:1122
194
- #: core/options-pages.php:1185
195
  msgid "Parent"
196
  msgstr "Parent"
197
 
198
  # @ eml
199
- #: core/options-pages.php:386 core/options-pages.php:616
200
- #: core/options-pages.php:1116 core/options-pages.php:1179
201
- #: core/taxonomies.php:365 enhanced-media-library.php:490
202
  msgid "All"
203
  msgstr "Allemaal"
204
 
205
  # @ eml
206
- #: core/options-pages.php:387 core/options-pages.php:1123
207
- #: core/options-pages.php:1186
208
  msgid "Search"
209
  msgstr "Zoek"
210
 
211
  # @ eml
212
- #: core/options-pages.php:389 core/options-pages.php:1167
213
  msgid "New Taxonomy"
214
  msgstr "Nieuwe Taxonomy"
215
 
216
- #: core/options-pages.php:391
217
  msgid "Remove Taxonomy"
218
  msgstr ""
219
 
220
- #: core/options-pages.php:392
221
  msgid "Taxonomy will be removed."
222
  msgstr ""
223
 
224
- #: core/options-pages.php:393
225
  msgid ""
226
  "Taxonomy terms (categories) will remain intact in the database. If you "
227
  "create a taxonomy with the same name in the future, its terms (categories) "
228
  "will be available again."
229
  msgstr ""
230
 
231
- #: core/options-pages.php:394
232
  msgid "Media items will remain intact."
233
  msgstr ""
234
 
235
- #: core/options-pages.php:395
236
  msgid "Are you still sure?"
237
  msgstr ""
238
 
239
- #: core/options-pages.php:396
240
  msgid "Yes, remove taxonomy"
241
  msgstr ""
242
 
243
- #: core/options-pages.php:398
244
  msgid "Duplicate"
245
  msgstr ""
246
 
247
- #: core/options-pages.php:399
248
  msgid "Taxonomy with the same name already exists. Please chose other one."
249
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
250
 
251
- #: core/options-pages.php:401
252
  msgid "Empty Fields"
253
  msgstr ""
254
 
255
- #: core/options-pages.php:402
256
  msgid "Please choose Singular and Plural names for all new taxomonies."
257
  msgstr ""
258
 
259
- #: core/options-pages.php:403
260
- msgid "Please choose Singilar name for all new taxomonies."
261
  msgstr ""
262
 
263
- #: core/options-pages.php:404
264
  msgid "Please choose Plural Name for all new taxomonies."
265
  msgstr ""
266
 
267
- #: core/options-pages.php:406
268
  msgid "Ok"
269
  msgstr ""
270
 
271
- #: core/options-pages.php:407 core/options-pages.php:412
272
- #: core/options-pages.php:495
273
  msgid "Cancel"
274
  msgstr ""
275
 
276
- #: core/options-pages.php:409 pro/core/options-pages.php:165
277
  msgid "Synchronize Now"
278
  msgstr ""
279
 
280
- #: core/options-pages.php:410 core/options-pages.php:492
281
  msgid "This operation cannot be canceled! Are you still sure?"
282
  msgstr ""
283
 
284
- #: core/options-pages.php:411
285
  msgid "Synchronize"
286
  msgstr ""
287
 
288
- #: core/options-pages.php:413
289
  msgid "Synchronizing..."
290
  msgstr ""
291
 
292
  # @ eml
293
- #: core/options-pages.php:451
294
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
295
  msgstr ""
296
  "Waarschuwing! Al je persoonlijke MIME Types zullen door deze operatie "
297
  "verwijderd worden."
298
 
299
  # @ eml
300
- #: core/options-pages.php:452
301
  msgid "Please fill into all fields."
302
  msgstr "Vul aub alle velden in."
303
 
304
  # @ eml
305
- #: core/options-pages.php:453
306
  msgid "Duplicate extensions or MIME types. Please chose other one."
307
  msgstr "Dubbele extensies of MIME types. Kies aub een andere."
308
 
309
- #: core/options-pages.php:490 core/options-pages.php:607
310
  msgid "Complete Cleanup"
311
  msgstr ""
312
 
313
- #: core/options-pages.php:491
314
  msgid ""
315
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
316
  "plugin data</strong> from the database including backups."
317
  msgstr ""
318
 
319
- #: core/options-pages.php:493
320
  msgid "Yes, delete all data"
321
  msgstr ""
322
 
323
- #: core/options-pages.php:494
324
  msgid "Cleaning..."
325
  msgstr ""
326
 
327
- #: core/options-pages.php:525
328
  msgid "Enhanced Media Library Settings"
329
  msgstr ""
330
 
331
- #: core/options-pages.php:535
332
  msgid "Export"
333
  msgstr ""
334
 
335
- #: core/options-pages.php:539
336
  msgid ""
337
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
338
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -340,15 +341,15 @@ msgid ""
340
  "another website."
341
  msgstr ""
342
 
343
- #: core/options-pages.php:544
344
  msgid "Export Plugin Settings"
345
  msgstr ""
346
 
347
- #: core/options-pages.php:554
348
  msgid "Import"
349
  msgstr ""
350
 
351
- #: core/options-pages.php:558
352
  msgid ""
353
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
354
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -356,148 +357,168 @@ msgid ""
356
  "another website using the export button above."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:559
360
  msgid ""
361
  "All plugin settings will be overridden by the import. You will have a chance "
362
  "to restore current data from an automatic backup in case you are not "
363
  "satisfied with the result of the import."
364
  msgstr ""
365
 
366
- #: core/options-pages.php:566
367
  msgid "Import Plugin Settings"
368
  msgstr ""
369
 
370
- #: core/options-pages.php:578
371
  msgid "Restore"
372
  msgstr ""
373
 
374
- #: core/options-pages.php:584
375
  msgid "No backup available at the moment."
376
  msgstr ""
377
 
378
- #: core/options-pages.php:586
379
  msgid "Backup will be created automatically before any import operation."
380
  msgstr ""
381
 
382
- #: core/options-pages.php:590
383
  msgid ""
384
  "The backup has been automatically created before the latest import operation."
385
  msgstr ""
386
 
387
- #: core/options-pages.php:594
388
  msgid "Restore Settings from the Backup"
389
  msgstr ""
390
 
391
- #: core/options-pages.php:614
392
  msgid "What will be deleted:"
393
  msgstr ""
394
 
395
- #: core/options-pages.php:619
396
  msgid "All plugin options"
397
  msgstr ""
398
 
399
- #: core/options-pages.php:620
400
  msgid "All plugin backups stored in database"
401
  msgstr ""
402
 
403
- #: core/options-pages.php:624
404
  msgid "What will remain intact:"
405
  msgstr ""
406
 
407
- #: core/options-pages.php:625
408
  msgid "All media items"
409
  msgstr ""
410
 
411
- #: core/options-pages.php:626
412
  msgid "All taxonomies not listed above"
413
  msgstr ""
414
 
415
- #: core/options-pages.php:629
416
  msgid ""
417
  "The plugin cannot delete itself because of security reason. Please delete it "
418
  "manually from plugin list after cleanup."
419
  msgstr ""
420
 
421
- #: core/options-pages.php:631
422
  msgid ""
423
  "If you are not sure about this operation please create a backup of your "
424
  "database prior to cleanup!"
425
  msgstr ""
426
 
427
- #: core/options-pages.php:637
428
  msgid "Delete All Data & Deactivate"
429
  msgstr ""
430
 
431
- #: core/options-pages.php:742
432
  msgid "Please upload a file to import settings."
433
  msgstr ""
434
 
435
- #: core/options-pages.php:762
436
  msgid "Plugin settings imported."
437
  msgstr ""
438
 
439
- #: core/options-pages.php:809
440
  msgid "Plugin settings restored from the backup."
441
  msgstr ""
442
 
443
- #: core/options-pages.php:953
444
  msgid "Media Items Order"
445
  msgstr ""
446
 
447
- #: core/options-pages.php:960
448
  msgid "Order media items by"
449
  msgstr ""
450
 
451
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
452
  msgid "For media library and media popups"
453
  msgstr ""
454
 
455
- #: core/options-pages.php:968
456
  msgid "Option allows to change order by drag and drop with Custom Order value."
457
  msgstr ""
458
 
459
- #: core/options-pages.php:973
460
  msgid "Sort order"
461
  msgstr ""
462
 
463
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
464
  msgid "Media Shortcodes"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:999 core/options-pages.php:1002
468
  msgid "Enhanced media shortcodes"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1003
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:1004
478
  msgid "Gallery example:"
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1005
482
  msgid "Audio playlist example:"
483
  msgstr ""
484
 
485
- #: core/options-pages.php:1006
486
  msgid "Video playlist example:"
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1008
490
  #, php-format
491
  msgid ""
492
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
493
  msgstr ""
494
 
495
- #: core/options-pages.php:1010
496
  #, php-format
497
  msgid "%sLearn more%s."
498
  msgstr ""
499
 
500
- #: core/options-pages.php:1012
501
  #, php-format
502
  msgid ""
503
  "Please check out your gallery front-end and back-end functionality once this "
@@ -506,252 +527,260 @@ msgid ""
506
  msgstr ""
507
 
508
  # @ eml
509
- #: core/options-pages.php:1082 core/options-pages.php:1229
510
  msgid "Assign following taxonomies to Media Library:"
511
  msgstr "Ken de volgende taxonomies toe aan de Media Library:"
512
 
513
  # @ eml
514
- #: core/options-pages.php:1101 core/options-pages.php:1167
515
- #: core/options-pages.php:1248
516
  msgid "Assign Taxonomy"
517
  msgstr "Toekennen Taxonomie"
518
 
519
  # @ eml
520
- #: core/options-pages.php:1102 core/options-pages.php:1249
521
  msgid "Edit Taxonomy"
522
  msgstr "Bewerk Taxonomie"
523
 
524
  # @ eml
525
- #: core/options-pages.php:1106 core/options-pages.php:1169
526
  msgid "Delete Taxonomy"
527
  msgstr "Verwijder Taxonomie"
528
 
529
  # @ eml
530
- #: core/options-pages.php:1111 core/options-pages.php:1174
531
  msgid "Labels"
532
  msgstr "Labels"
533
 
534
  # @ eml
535
- #: core/options-pages.php:1113 core/options-pages.php:1176
536
  msgid "Singular"
537
  msgstr "Enkelvoud"
538
 
539
  # @ eml
540
- #: core/options-pages.php:1114 core/options-pages.php:1177
541
  msgid "Plural"
542
  msgstr "Meervoud"
543
 
544
  # @ eml
545
- #: core/options-pages.php:1115 core/options-pages.php:1178
546
  msgid "Menu Name"
547
  msgstr "Menu Naam"
548
 
549
  # @ eml
550
- #: core/options-pages.php:1128 core/options-pages.php:1151
551
- #: core/options-pages.php:1191 core/options-pages.php:1252
552
  msgid "Settings"
553
  msgstr "Instellingen"
554
 
555
- #: core/options-pages.php:1130 core/options-pages.php:1193
556
  msgid "Taxonomy Name"
557
  msgstr ""
558
 
559
  # @ eml
560
- #: core/options-pages.php:1131 core/options-pages.php:1194
561
  msgid "Hierarchical"
562
  msgstr "Hiërarchisch"
563
 
564
- #: core/options-pages.php:1132 core/options-pages.php:1195
565
  msgid "Column for List View"
566
  msgstr ""
567
 
568
- #: core/options-pages.php:1133 core/options-pages.php:1153
569
- #: core/options-pages.php:1196 core/options-pages.php:1254
570
  msgid "Filter for List View"
571
  msgstr ""
572
 
573
- #: core/options-pages.php:1134 core/options-pages.php:1154
574
- #: core/options-pages.php:1197 core/options-pages.php:1255
575
  msgid "Filter for Grid View / Media Popup"
576
  msgstr ""
577
 
578
- #: core/options-pages.php:1135 core/options-pages.php:1155
579
- #: core/options-pages.php:1198 core/options-pages.php:1256
580
  msgid "Edit in Media Popup"
581
  msgstr ""
582
 
583
  # @ eml
584
- #: core/options-pages.php:1136 core/options-pages.php:1199
585
  msgid "Show in Nav Menu"
586
  msgstr "Toon in Nav Menu"
587
 
588
- #: core/options-pages.php:1137 core/options-pages.php:1200
589
  msgid "Remember Terms Order (sort)"
590
  msgstr ""
591
 
592
- #: core/options-pages.php:1138 core/options-pages.php:1201
593
  msgid "Show in REST"
594
  msgstr ""
595
 
596
- #: core/options-pages.php:1139 core/options-pages.php:1202
597
  msgid "Rewrite Slug"
598
  msgstr ""
599
 
600
- #: core/options-pages.php:1140 core/options-pages.php:1203
601
  msgid "Slug with Front"
602
  msgstr ""
603
 
604
  # @ eml
605
- #: core/options-pages.php:1215
606
  msgid "Add New Taxonomy"
607
  msgstr "Voeg Nieuwe Taxonomie Toe"
608
 
609
  # @ eml
610
- #: core/options-pages.php:1225
611
  msgid "Non-Media Taxonomies"
612
  msgstr "Niet-Media Taxonomies"
613
 
614
- #: core/options-pages.php:1286
615
  msgid "Options"
616
  msgstr ""
617
 
618
- #: core/options-pages.php:1296 core/options-pages.php:1299
619
  msgid "Taxonomy archive pages"
620
  msgstr ""
621
 
622
- #: core/options-pages.php:1300
623
  msgid "Turn on media taxonomy archive pages on the front-end"
624
  msgstr ""
625
 
626
- #: core/options-pages.php:1301
627
  msgid ""
628
  "Re-save your permalink settings after this option change to make it work."
629
  msgstr ""
630
 
631
- #: core/options-pages.php:1307 core/options-pages.php:1310
632
  msgid "Assign all like hierarchical"
633
  msgstr ""
634
 
635
- #: core/options-pages.php:1311
636
  msgid ""
637
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
638
  msgstr ""
639
 
640
- #: core/options-pages.php:1317 core/options-pages.php:1320
641
  msgid "Force filters"
642
  msgstr ""
643
 
644
- #: core/options-pages.php:1321
645
  msgid "Show media filters for ANY Media Popup"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1322
649
  msgid "Try this if filters are not shown for third-party plugins or themes."
650
  msgstr ""
651
 
 
 
 
 
 
 
 
 
652
  # @ eml
653
- #: core/options-pages.php:1376
654
  msgid "Add New MIME Type"
655
  msgstr "Voeg Nieuw MIME Type Toe"
656
 
657
  # @ eml
658
- #: core/options-pages.php:1394 core/options-pages.php:1449
659
  msgid "Extension"
660
  msgstr "Extensie"
661
 
662
  # @ eml
663
- #: core/options-pages.php:1395 core/options-pages.php:1450
664
  msgid "MIME Type"
665
  msgstr "MIME Type"
666
 
667
  # @ eml
668
- #: core/options-pages.php:1396 core/options-pages.php:1451
669
  msgid "Singular Label"
670
  msgstr "Enkelvoud Label"
671
 
672
  # @ eml
673
- #: core/options-pages.php:1397 core/options-pages.php:1452
674
  msgid "Plural Label"
675
  msgstr "Meervoud Label"
676
 
677
  # @ eml
678
- #: core/options-pages.php:1398 core/options-pages.php:1428
679
- #: core/options-pages.php:1441 core/options-pages.php:1453
680
  msgid "Add Filter"
681
  msgstr "Voeg Filter Toe"
682
 
683
  # @ eml
684
- #: core/options-pages.php:1399 core/options-pages.php:1429
685
- #: core/options-pages.php:1442 core/options-pages.php:1454
686
  msgid "Allow Upload"
687
  msgstr "Sta Upload Toe"
688
 
689
  # @ eml
690
- #: core/options-pages.php:1443
691
  msgid "Delete MIME Type"
692
  msgstr "Verwijder MIME Type"
693
 
694
- #: core/options-pages.php:1460
695
  msgid "Restore WordPress default MIME Types"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
699
  msgid "Save Changes"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1499
703
  msgid "Changelog"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1500
707
  msgid "What's new in"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1500
711
  msgid "version"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1503
715
  msgid "More features under the hood"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1505
719
  msgid "Support"
720
  msgstr ""
721
 
722
- #: core/options-pages.php:1506
723
  msgid "Feel free to ask for help on"
724
  msgstr ""
725
 
726
- #: core/options-pages.php:1506
727
  msgid "Support is free for both versions of the plugin."
728
  msgstr ""
729
 
730
- #: core/options-pages.php:1508
731
  msgid "Plugin rating"
732
  msgstr ""
733
 
734
- #: core/options-pages.php:1509
735
  msgid "Please"
736
  msgstr ""
737
 
738
- #: core/options-pages.php:1509
739
  msgid "vote for the plugin"
740
  msgstr ""
741
 
742
- #: core/options-pages.php:1509
743
  msgid "Thanks!"
744
  msgstr ""
745
 
746
- #: core/options-pages.php:1511
747
  msgid "Other plugins you may find useful"
748
  msgstr ""
749
 
750
- #: core/options-pages.php:1550
751
  msgid "Utility"
752
  msgstr ""
753
 
754
- #: core/options-pages.php:1571
755
  msgid "Vote!"
756
  msgstr ""
757
 
@@ -763,328 +792,78 @@ msgstr ""
763
  msgid "Media Library settings saved."
764
  msgstr ""
765
 
766
- #: core/taxonomies.php:358 core/taxonomies.php:364
767
- #: enhanced-media-library.php:489
768
  msgid "Filter by"
769
  msgstr ""
770
 
771
- #: core/taxonomies.php:366 enhanced-media-library.php:491
772
  msgid "Not in"
773
  msgstr ""
774
 
775
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
776
  msgid "All Uncategorized"
777
  msgstr ""
778
 
779
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
780
  msgid "Reset All Filters"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:523
784
  msgid "Uploaded to post #"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:524
788
  msgid "Based On"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
792
  msgid "Media Categories"
793
  msgstr ""
794
 
795
- #: enhanced-media-library.php:570
796
  msgid "Media Category"
797
  msgstr ""
798
 
799
- #: enhanced-media-library.php:572
800
  msgid "All Media Categories"
801
  msgstr ""
802
 
803
- #: enhanced-media-library.php:573
804
  msgid "Edit Media Category"
805
  msgstr ""
806
 
807
- #: enhanced-media-library.php:574
808
  msgid "View Media Category"
809
  msgstr ""
810
 
811
- #: enhanced-media-library.php:575
812
  msgid "Update Media Category"
813
  msgstr ""
814
 
815
- #: enhanced-media-library.php:576
816
  msgid "Add New Media Category"
817
  msgstr ""
818
 
819
- #: enhanced-media-library.php:577
820
  msgid "New Media Category Name"
821
  msgstr ""
822
 
823
- #: enhanced-media-library.php:578
824
  msgid "Parent Media Category"
825
  msgstr ""
826
 
827
- #: enhanced-media-library.php:579
828
  msgid "Parent Media Category:"
829
  msgstr ""
830
 
831
- #: enhanced-media-library.php:580
832
  msgid "Search Media Categories"
833
  msgstr ""
834
 
835
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
836
- msgid "Remove"
837
- msgstr ""
838
-
839
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
840
- msgid "Deselect"
841
- msgstr ""
842
-
843
- #: pro/core/bulk-edit.php:105
844
- msgid "Caption this image&hellip;"
845
- msgstr ""
846
-
847
- #: pro/core/bulk-edit.php:109
848
- msgid "Describe this video&hellip;"
849
- msgstr ""
850
-
851
- #: pro/core/bulk-edit.php:111
852
- msgid "Describe this audio file&hellip;"
853
- msgstr ""
854
-
855
- #: pro/core/bulk-edit.php:113
856
- msgid "Describe this media file&hellip;"
857
- msgstr ""
858
-
859
- #: pro/core/bulk-edit.php:122
860
- msgid "Attachments Details"
861
- msgstr ""
862
-
863
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
864
- msgid "Select All"
865
- msgstr ""
866
-
867
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
868
- msgid "Edit Selection"
869
- msgstr ""
870
-
871
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
872
- msgid "Deselect All"
873
- msgstr ""
874
-
875
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
876
- msgid "Delete Selected"
877
- msgstr ""
878
-
879
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
880
- msgid "Order By"
881
- msgstr ""
882
-
883
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
884
- msgid "Date"
885
- msgstr ""
886
-
887
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
888
- msgid "Title"
889
- msgstr ""
890
-
891
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
892
- msgid "Custom Order"
893
- msgstr ""
894
-
895
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
896
- msgid "Random"
897
- msgstr ""
898
-
899
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
900
- msgid "Order"
901
- msgstr ""
902
-
903
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
904
- msgid "Ascending"
905
- msgstr ""
906
-
907
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
908
- msgid "Descending"
909
- msgstr ""
910
-
911
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
912
- msgid "Limit"
913
- msgstr ""
914
-
915
- #: pro/core/options-pages.php:78
916
- msgid "Your license has been deactivated."
917
- msgstr ""
918
-
919
- #: pro/core/options-pages.php:88
920
- msgid "Please check if your license key is correct and try again."
921
- msgstr ""
922
-
923
- #: pro/core/options-pages.php:101
924
- msgid ""
925
- "Wrong license key or a server error occured. Please check your license key "
926
- "and try again."
927
- msgstr ""
928
-
929
- #: pro/core/options-pages.php:111
930
- msgid "You license has been activated."
931
- msgstr ""
932
-
933
- #: pro/core/options-pages.php:164
934
- #, php-format
935
- msgid "Auto-assign media items to parent %s %s on upload"
936
- msgstr ""
937
-
938
- #: pro/core/options-pages.php:165
939
- #, php-format
940
- msgid ""
941
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
942
- "attached to a %s will be assigned to %s of their parent %s. Currently "
943
- "assigned %s will not be saved. Media items that are not attached to any %s "
944
- "will not be affected."
945
- msgstr ""
946
-
947
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
948
- msgid "Bulk Edit"
949
- msgstr ""
950
-
951
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
952
- msgid "Turn off 'Save Changes' button"
953
- msgstr ""
954
-
955
- #: pro/core/options-pages.php:200
956
- msgid "Save changes on the fly"
957
- msgstr ""
958
-
959
- #: pro/core/options-pages.php:201
960
- msgid ""
961
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
962
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
963
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
964
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
965
- "files / taxonomies with this option turned on."
966
- msgstr ""
967
-
968
- #: pro/core/options-pages.php:202
969
- msgid ""
970
- "Strongly NOT recommended option if you work with more than hundred of files "
971
- "at a time."
972
- msgstr ""
973
-
974
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
975
- msgid "License Key"
976
- msgstr ""
977
-
978
- #: pro/core/options-pages.php:252
979
- #, php-format
980
- msgid ""
981
- "To unlock updates please enter your license key below. You can get your "
982
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
983
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
984
- msgstr ""
985
-
986
- #: pro/core/options-pages.php:262
987
- msgid "Activate License"
988
- msgstr ""
989
-
990
- #: pro/core/options-pages.php:269
991
- msgid "Your license is active!"
992
- msgstr ""
993
-
994
- #: pro/core/options-pages.php:273
995
- msgid "Deactivate License"
996
- msgstr ""
997
-
998
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
999
- msgid ""
1000
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1001
- "this server&#8217;s configuration. If you continue to have problems, please "
1002
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1003
- msgstr ""
1004
-
1005
- #: pro/core/update.php:113
1006
- msgid ""
1007
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1008
- "contact your server administrator.)"
1009
- msgstr ""
1010
-
1011
- #: pro/core/update.php:180
1012
- #, php-format
1013
- msgid ""
1014
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1015
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1016
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1017
- msgstr ""
1018
-
1019
- #: pro/enhanced-media-library-pro.php:119
1020
- msgid "ALL files belong to this item"
1021
- msgstr ""
1022
-
1023
- #: pro/enhanced-media-library-pro.php:120
1024
- msgid "SOME files belong to this item"
1025
- msgstr ""
1026
-
1027
- #: pro/enhanced-media-library-pro.php:121
1028
- msgid "NO files belong to this item"
1029
- msgstr ""
1030
-
1031
- #: pro/enhanced-media-library-pro.php:122
1032
- msgid "Changes saved."
1033
- msgstr ""
1034
-
1035
- #: pro/enhanced-media-library-pro.php:123
1036
- msgid "Something went wrong."
1037
- msgstr ""
1038
-
1039
- #: pro/enhanced-media-library-pro.php:126
1040
- msgid "Edit Media Files"
1041
- msgstr ""
1042
-
1043
- #: pro/enhanced-media-library-pro.php:151
1044
- msgid "Create a filter-based gallery"
1045
- msgstr ""
1046
-
1047
- #: pro/enhanced-media-library-pro.php:152
1048
- msgid "Create a filter-based playlist"
1049
- msgstr ""
1050
-
1051
- #: pro/enhanced-media-library-pro.php:153
1052
- msgid "Create a filter-based video playlist"
1053
- msgstr ""
1054
-
1055
- #: pro/enhanced-media-library-pro.php:231
1056
- msgid ""
1057
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1058
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1059
- "will remain intact."
1060
- msgstr ""
1061
-
1062
- #: pro/enhanced-media-library-pro.php:231
1063
- msgid "Return to Plugins"
1064
- msgstr ""
1065
-
1066
- #: pro/enhanced-media-library-pro.php:282
1067
- msgid ""
1068
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1069
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1070
- "be active. Please network deactivate and delete the free versions of the "
1071
- "plugin. All your data will remain intact."
1072
- msgstr ""
1073
-
1074
- #: pro/enhanced-media-library-pro.php:299
1075
- msgid ""
1076
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1077
- "be active. Please deactivate and delete the free version of the plugin. All "
1078
- "your data will remain intact."
1079
- msgstr ""
1080
-
1081
- #: pro/enhanced-media-library-pro.php:315
1082
- msgid ""
1083
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1084
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1085
- "version to be active. Please deactivate (or network deactivate) and delete "
1086
- "the free version of the plugin for this site. All your data will remail "
1087
- "intact."
1088
  msgstr ""
1089
 
1090
  # @ eml
@@ -1094,70 +873,6 @@ msgid ""
1094
  msgstr ""
1095
  "Deze plug-in is handig voor iedereen die veel media bestanden moet beheren."
1096
 
1097
- # @ eml
1098
- #~ msgid ""
1099
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1100
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1101
- #~ "be lost."
1102
- #~ msgstr ""
1103
- #~ "Taxonomy wordt voorgoed verwijderd! Je media bestanden blijven bestaan, "
1104
- #~ "maar alle connecties met deze taxonomy en de termen zullen verdwenen zijn."
1105
-
1106
- # @ eml
1107
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1108
- #~ msgstr ""
1109
- #~ "Kies aub Enkelvoudige en Meervoudige namen voor al je nieuwe taxonomies."
1110
-
1111
- # @ eml
1112
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1113
- #~ msgstr "Kies aub Enkelvoudige naam voor al je nieuwe taxonomies."
1114
-
1115
- # @ eml
1116
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1117
- #~ msgstr "Kies aub Meervoudige naam voor al je nieuwe taxonomies."
1118
-
1119
- # @ eml
1120
- #~ msgid ""
1121
- #~ "There is already a taxonomy with the same name. Please chose other one."
1122
- #~ msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
1123
-
1124
- # @ eml
1125
- #~ msgid "Remember terms order (sort)"
1126
- #~ msgstr "Onthoudt termen volgorde (sorteer)"
1127
-
1128
- # @ eml
1129
- #~ msgid "Restore default MIME Types"
1130
- #~ msgstr "Herstel default MIME Types"
1131
-
1132
- # @ eml
1133
- #~ msgid "Enhanced Media Library Options"
1134
- #~ msgstr "Enhanced Media Library Opties"
1135
-
1136
- # @ eml
1137
- #~ msgid "Column in Media Library"
1138
- #~ msgstr "Kolom in Media Library"
1139
-
1140
- # @ eml
1141
- #~ msgid "Filter in Media Library"
1142
- #~ msgstr "Filter in Media Library"
1143
-
1144
- # @ eml
1145
- #, fuzzy
1146
- #~ msgid "Filter in Media Popup / Grid View"
1147
- #~ msgstr "Filter in Media Uploader"
1148
-
1149
- # @ eml
1150
- #~ msgid "Slug"
1151
- #~ msgstr "Slug"
1152
-
1153
- # @ eml
1154
- #~ msgid "http://wordpressuxsolutions.com"
1155
- #~ msgstr "http://wordpressuxsolutions.com"
1156
-
1157
- # @ eml
1158
- #~ msgid "WordPress UX Solutions"
1159
- #~ msgstr "WordPress UX Solutions"
1160
-
1161
- # @ eml
1162
- #~ msgid "1.0.4"
1163
- #~ msgstr "1.0.4"
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"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
35
  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
 
44
+ #: core/options-pages.php:106 core/options-pages.php:208
45
  msgid "Media Library"
46
  msgstr ""
47
 
51
  msgstr "Taxonomies"
52
 
53
  # @ eml
54
+ #: core/options-pages.php:124 core/options-pages.php:210
55
  msgid "MIME Types"
56
  msgstr "MIME Types"
57
 
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 ""
63
 
64
+ #: core/options-pages.php:207
65
  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
 
80
+ #: core/options-pages.php:247
81
  msgid "Image sizes"
82
  msgstr ""
83
 
84
+ #: core/options-pages.php:248
85
  msgid ""
86
  "The sizes listed below determine the maximum dimensions in pixels to use "
87
  "when adding an image to the Media Library."
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:252
91
  msgid "Thumbnail size"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:254
95
  msgid "Width"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:256
99
  msgid "Height"
100
  msgstr ""
101
 
102
+ #: core/options-pages.php:259
103
  msgid ""
104
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:264 core/options-pages.php:265
108
  msgid "Medium size"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:266 core/options-pages.php:276
112
  msgid "Max Width"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:268 core/options-pages.php:278
116
  msgid "Max Height"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:274 core/options-pages.php:275
120
  msgid "Large size"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:291
124
  msgid "Embeds"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:298
128
  msgid "Uploading Files"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:305
132
  msgid "Store uploads in this folder"
133
  msgstr ""
134
 
135
+ #: core/options-pages.php:309
136
  #, php-format
137
  msgid "Default is %s"
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:315
141
  msgid "Full URL path to files"
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:317
145
  msgid "Configuring this is optional. By default, it should be blank."
146
  msgstr ""
147
 
148
+ #: core/options-pages.php:325
149
  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
 
159
  # @ eml
160
+ #: core/options-pages.php:398
161
  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
 
188
  # @ eml
189
+ #: core/options-pages.php:403
190
  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
 
217
+ #: core/options-pages.php:410
218
  msgid "Remove Taxonomy"
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:411
222
  msgid "Taxonomy will be removed."
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:412
226
  msgid ""
227
  "Taxonomy terms (categories) will remain intact in the database. If you "
228
  "create a taxonomy with the same name in the future, its terms (categories) "
229
  "will be available again."
230
  msgstr ""
231
 
232
+ #: core/options-pages.php:413
233
  msgid "Media items will remain intact."
234
  msgstr ""
235
 
236
+ #: core/options-pages.php:414
237
  msgid "Are you still sure?"
238
  msgstr ""
239
 
240
+ #: core/options-pages.php:415
241
  msgid "Yes, remove taxonomy"
242
  msgstr ""
243
 
244
+ #: core/options-pages.php:417
245
  msgid "Duplicate"
246
  msgstr ""
247
 
248
+ #: core/options-pages.php:418
249
  msgid "Taxonomy with the same name already exists. Please chose other one."
250
  msgstr "Er is al een taxonomy met deze naam. Kies aub een andere."
251
 
252
+ #: core/options-pages.php:420
253
  msgid "Empty Fields"
254
  msgstr ""
255
 
256
+ #: core/options-pages.php:421
257
  msgid "Please choose Singular and Plural names for all new taxomonies."
258
  msgstr ""
259
 
260
+ #: core/options-pages.php:422
261
+ msgid "Please choose Singular name for all new taxomonies."
262
  msgstr ""
263
 
264
+ #: core/options-pages.php:423
265
  msgid "Please choose Plural Name for all new taxomonies."
266
  msgstr ""
267
 
268
+ #: core/options-pages.php:425
269
  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
 
277
+ #: core/options-pages.php:428
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
 
285
+ #: core/options-pages.php:430
286
  msgid "Synchronize"
287
  msgstr ""
288
 
289
+ #: core/options-pages.php:432
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
  "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
  "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
  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
 
792
  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
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-30 12:53+0300\n"
8
- "PO-Revision-Date: 2016-04-30 12:53+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"
@@ -14,7 +14,7 @@ msgstr ""
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
16
  "|| n%100>=20) ? 1 : 2);\n"
17
- "X-Generator: Poedit 1.8.7\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
  #: core/mime-types.php:30
@@ -33,13 +33,13 @@ msgstr[0] ""
33
  msgstr[1] ""
34
  msgstr[2] ""
35
 
36
- #: core/options-pages.php:97 core/options-pages.php:217
37
- #: core/options-pages.php:932 core/options-pages.php:1057
38
- #: core/options-pages.php:1370 core/options-pages.php:1547
39
  msgid "Media Settings"
40
  msgstr "Ustawienia Mediów"
41
 
42
- #: core/options-pages.php:106 core/options-pages.php:189
43
  msgid "Media Library"
44
  msgstr ""
45
 
@@ -47,273 +47,274 @@ msgstr ""
47
  msgid "Taxonomies"
48
  msgstr "Taksonomie"
49
 
50
- #: core/options-pages.php:124 core/options-pages.php:191
51
  msgid "MIME Types"
52
  msgstr "Typy MIME"
53
 
 
54
  #: core/options-pages.php:135 core/options-pages.php:136
55
  msgid "Enhanced Media Library"
56
  msgstr "Rozszerzona Biblioteka Mediów"
57
 
58
- #: core/options-pages.php:188
59
  msgid "General"
60
  msgstr ""
61
 
62
- #: core/options-pages.php:190 core/options-pages.php:1078
63
  msgid "Media Taxonomies"
64
  msgstr "Taksonomie mediów"
65
 
66
- #: core/options-pages.php:214 core/options-pages.php:520
67
- #: core/options-pages.php:928 core/options-pages.php:1053
68
- #: core/options-pages.php:1366
69
  msgid "You do not have sufficient permissions to access this page."
70
  msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
71
 
72
- #: core/options-pages.php:228
73
  msgid "Image sizes"
74
  msgstr ""
75
 
76
- #: core/options-pages.php:229
77
  msgid ""
78
  "The sizes listed below determine the maximum dimensions in pixels to use "
79
  "when adding an image to the Media Library."
80
  msgstr ""
81
 
82
- #: core/options-pages.php:233
83
  msgid "Thumbnail size"
84
  msgstr ""
85
 
86
- #: core/options-pages.php:235
87
  msgid "Width"
88
  msgstr ""
89
 
90
- #: core/options-pages.php:237
91
  msgid "Height"
92
  msgstr ""
93
 
94
- #: core/options-pages.php:240
95
  msgid ""
96
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
97
  msgstr ""
98
 
99
- #: core/options-pages.php:245 core/options-pages.php:246
100
  msgid "Medium size"
101
  msgstr ""
102
 
103
- #: core/options-pages.php:247 core/options-pages.php:257
104
  msgid "Max Width"
105
  msgstr ""
106
 
107
- #: core/options-pages.php:249 core/options-pages.php:259
108
  msgid "Max Height"
109
  msgstr ""
110
 
111
- #: core/options-pages.php:255 core/options-pages.php:256
112
  msgid "Large size"
113
  msgstr ""
114
 
115
- #: core/options-pages.php:272
116
  msgid "Embeds"
117
  msgstr ""
118
 
119
- #: core/options-pages.php:279
120
  msgid "Uploading Files"
121
  msgstr ""
122
 
123
- #: core/options-pages.php:286
124
  msgid "Store uploads in this folder"
125
  msgstr ""
126
 
127
- #: core/options-pages.php:290
128
  #, php-format
129
  msgid "Default is %s"
130
  msgstr ""
131
 
132
- #: core/options-pages.php:296
133
  msgid "Full URL path to files"
134
  msgstr ""
135
 
136
- #: core/options-pages.php:298
137
  msgid "Configuring this is optional. By default, it should be blank."
138
  msgstr ""
139
 
140
- #: core/options-pages.php:306
141
  msgid "Organize my uploads into month- and year-based folders"
142
  msgstr ""
143
 
144
- #: core/options-pages.php:378 core/options-pages.php:1102
145
- #: core/options-pages.php:1117 core/options-pages.php:1180
146
- #: core/options-pages.php:1249
147
  msgid "Edit"
148
  msgstr "Edytuj"
149
 
150
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
151
  msgid "Close"
152
  msgstr "Zamknij"
153
 
154
- #: core/options-pages.php:380 core/options-pages.php:1118
155
- #: core/options-pages.php:1181
156
  msgid "View"
157
  msgstr "Zobacz"
158
 
159
- #: core/options-pages.php:381 core/options-pages.php:1119
160
- #: core/options-pages.php:1182
161
  msgid "Update"
162
  msgstr "Aktualizuj"
163
 
164
- #: core/options-pages.php:382 core/options-pages.php:1120
165
- #: core/options-pages.php:1183
166
  msgid "Add New"
167
  msgstr "Dodaj nowy"
168
 
169
- #: core/options-pages.php:383 core/options-pages.php:1121
170
- #: core/options-pages.php:1184
171
  msgid "New"
172
  msgstr "Nowy"
173
 
174
- #: core/options-pages.php:384
175
  msgid "Name"
176
  msgstr "Nazwa"
177
 
178
- #: core/options-pages.php:385 core/options-pages.php:1122
179
- #: core/options-pages.php:1185
180
  msgid "Parent"
181
  msgstr "Rodzic"
182
 
183
- #: core/options-pages.php:386 core/options-pages.php:616
184
- #: core/options-pages.php:1116 core/options-pages.php:1179
185
- #: core/taxonomies.php:365 enhanced-media-library.php:490
186
  msgid "All"
187
  msgstr "Wszystkie"
188
 
189
- #: core/options-pages.php:387 core/options-pages.php:1123
190
- #: core/options-pages.php:1186
191
  msgid "Search"
192
  msgstr "Szukaj"
193
 
194
- #: core/options-pages.php:389 core/options-pages.php:1167
195
  msgid "New Taxonomy"
196
  msgstr "Nowa taksonomia"
197
 
198
- #: core/options-pages.php:391
199
  msgid "Remove Taxonomy"
200
  msgstr ""
201
 
202
- #: core/options-pages.php:392
203
  msgid "Taxonomy will be removed."
204
  msgstr ""
205
 
206
- #: core/options-pages.php:393
207
  msgid ""
208
  "Taxonomy terms (categories) will remain intact in the database. If you "
209
  "create a taxonomy with the same name in the future, its terms (categories) "
210
  "will be available again."
211
  msgstr ""
212
 
213
- #: core/options-pages.php:394
214
  msgid "Media items will remain intact."
215
  msgstr ""
216
 
217
- #: core/options-pages.php:395
218
  msgid "Are you still sure?"
219
  msgstr ""
220
 
221
- #: core/options-pages.php:396
222
  msgid "Yes, remove taxonomy"
223
  msgstr ""
224
 
225
- #: core/options-pages.php:398
226
  msgid "Duplicate"
227
  msgstr ""
228
 
229
- #: core/options-pages.php:399
230
  msgid "Taxonomy with the same name already exists. Please chose other one."
231
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
232
 
233
- #: core/options-pages.php:401
234
  msgid "Empty Fields"
235
  msgstr ""
236
 
237
- #: core/options-pages.php:402
238
  msgid "Please choose Singular and Plural names for all new taxomonies."
239
  msgstr ""
240
 
241
- #: core/options-pages.php:403
242
- msgid "Please choose Singilar name for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:404
246
  msgid "Please choose Plural Name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:406
250
  msgid "Ok"
251
  msgstr ""
252
 
253
- #: core/options-pages.php:407 core/options-pages.php:412
254
- #: core/options-pages.php:495
255
  msgid "Cancel"
256
  msgstr ""
257
 
258
- #: core/options-pages.php:409 pro/core/options-pages.php:165
259
  msgid "Synchronize Now"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:410 core/options-pages.php:492
263
  msgid "This operation cannot be canceled! Are you still sure?"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:411
267
  msgid "Synchronize"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:413
271
  msgid "Synchronizing..."
272
  msgstr ""
273
 
274
- #: core/options-pages.php:451
275
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
276
  msgstr ""
277
  "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
278
  "operację. "
279
 
280
- #: core/options-pages.php:452
281
  msgid "Please fill into all fields."
282
  msgstr "Proszę wypełnić wszystkie pola"
283
 
284
- #: core/options-pages.php:453
285
  msgid "Duplicate extensions or MIME types. Please chose other one."
286
  msgstr ""
287
  "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
288
  "pliku"
289
 
290
- #: core/options-pages.php:490 core/options-pages.php:607
291
  msgid "Complete Cleanup"
292
  msgstr ""
293
 
294
- #: core/options-pages.php:491
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:493
301
  msgid "Yes, delete all data"
302
  msgstr ""
303
 
304
- #: core/options-pages.php:494
305
  msgid "Cleaning..."
306
  msgstr ""
307
 
308
- #: core/options-pages.php:525
309
  msgid "Enhanced Media Library Settings"
310
  msgstr ""
311
 
312
- #: core/options-pages.php:535
313
  msgid "Export"
314
  msgstr ""
315
 
316
- #: core/options-pages.php:539
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 +322,15 @@ msgid ""
321
  "another website."
322
  msgstr ""
323
 
324
- #: core/options-pages.php:544
325
  msgid "Export Plugin Settings"
326
  msgstr ""
327
 
328
- #: core/options-pages.php:554
329
  msgid "Import"
330
  msgstr ""
331
 
332
- #: core/options-pages.php:558
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,148 +338,168 @@ msgid ""
337
  "another website using the export button above."
338
  msgstr ""
339
 
340
- #: core/options-pages.php:559
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:566
348
  msgid "Import Plugin Settings"
349
  msgstr ""
350
 
351
- #: core/options-pages.php:578
352
  msgid "Restore"
353
  msgstr ""
354
 
355
- #: core/options-pages.php:584
356
  msgid "No backup available at the moment."
357
  msgstr ""
358
 
359
- #: core/options-pages.php:586
360
  msgid "Backup will be created automatically before any import operation."
361
  msgstr ""
362
 
363
- #: core/options-pages.php:590
364
  msgid ""
365
  "The backup has been automatically created before the latest import operation."
366
  msgstr ""
367
 
368
- #: core/options-pages.php:594
369
  msgid "Restore Settings from the Backup"
370
  msgstr ""
371
 
372
- #: core/options-pages.php:614
373
  msgid "What will be deleted:"
374
  msgstr ""
375
 
376
- #: core/options-pages.php:619
377
  msgid "All plugin options"
378
  msgstr ""
379
 
380
- #: core/options-pages.php:620
381
  msgid "All plugin backups stored in database"
382
  msgstr ""
383
 
384
- #: core/options-pages.php:624
385
  msgid "What will remain intact:"
386
  msgstr ""
387
 
388
- #: core/options-pages.php:625
389
  msgid "All media items"
390
  msgstr ""
391
 
392
- #: core/options-pages.php:626
393
  msgid "All taxonomies not listed above"
394
  msgstr ""
395
 
396
- #: core/options-pages.php:629
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:631
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:637
409
  msgid "Delete All Data & Deactivate"
410
  msgstr ""
411
 
412
- #: core/options-pages.php:742
413
  msgid "Please upload a file to import settings."
414
  msgstr ""
415
 
416
- #: core/options-pages.php:762
417
  msgid "Plugin settings imported."
418
  msgstr ""
419
 
420
- #: core/options-pages.php:809
421
  msgid "Plugin settings restored from the backup."
422
  msgstr ""
423
 
424
- #: core/options-pages.php:953
425
  msgid "Media Items Order"
426
  msgstr ""
427
 
428
- #: core/options-pages.php:960
429
  msgid "Order media items by"
430
  msgstr ""
431
 
432
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
433
  msgid "For media library and media popups"
434
  msgstr ""
435
 
436
- #: core/options-pages.php:968
437
  msgid "Option allows to change order by drag and drop with Custom Order value."
438
  msgstr ""
439
 
440
- #: core/options-pages.php:973
441
  msgid "Sort order"
442
  msgstr ""
443
 
444
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
445
  msgid "Media Shortcodes"
446
  msgstr ""
447
 
448
- #: core/options-pages.php:999 core/options-pages.php:1002
449
  msgid "Enhanced media shortcodes"
450
  msgstr ""
451
 
452
- #: core/options-pages.php:1003
453
  msgid ""
454
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
455
  "upload date, and media items number limit"
456
  msgstr ""
457
 
458
- #: core/options-pages.php:1004
459
  msgid "Gallery example:"
460
  msgstr ""
461
 
462
- #: core/options-pages.php:1005
463
  msgid "Audio playlist example:"
464
  msgstr ""
465
 
466
- #: core/options-pages.php:1006
467
  msgid "Video playlist example:"
468
  msgstr ""
469
 
470
- #: core/options-pages.php:1008
471
  #, php-format
472
  msgid ""
473
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
474
  msgstr ""
475
 
476
- #: core/options-pages.php:1010
477
  #, php-format
478
  msgid "%sLearn more%s."
479
  msgstr ""
480
 
481
- #: core/options-pages.php:1012
482
  #, php-format
483
  msgid ""
484
  "Please check out your gallery front-end and back-end functionality once this "
@@ -486,232 +507,240 @@ msgid ""
486
  "%s."
487
  msgstr ""
488
 
489
- #: core/options-pages.php:1082 core/options-pages.php:1229
490
  msgid "Assign following taxonomies to Media Library:"
491
  msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
492
 
493
- #: core/options-pages.php:1101 core/options-pages.php:1167
494
- #: core/options-pages.php:1248
495
  msgid "Assign Taxonomy"
496
  msgstr "Przypisz taksonomię"
497
 
498
- #: core/options-pages.php:1102 core/options-pages.php:1249
499
  msgid "Edit Taxonomy"
500
  msgstr "Edytuj taksonomię"
501
 
502
- #: core/options-pages.php:1106 core/options-pages.php:1169
503
  msgid "Delete Taxonomy"
504
  msgstr "Usuń taksonomię"
505
 
506
- #: core/options-pages.php:1111 core/options-pages.php:1174
507
  msgid "Labels"
508
  msgstr "Etykiety"
509
 
510
- #: core/options-pages.php:1113 core/options-pages.php:1176
511
  msgid "Singular"
512
  msgstr "Liczba pojedyncza"
513
 
514
- #: core/options-pages.php:1114 core/options-pages.php:1177
515
  msgid "Plural"
516
  msgstr "Liczba mnoga"
517
 
518
- #: core/options-pages.php:1115 core/options-pages.php:1178
519
  msgid "Menu Name"
520
  msgstr "Nazwa w menu"
521
 
522
- #: core/options-pages.php:1128 core/options-pages.php:1151
523
- #: core/options-pages.php:1191 core/options-pages.php:1252
524
  msgid "Settings"
525
  msgstr "Ustawienia"
526
 
527
- #: core/options-pages.php:1130 core/options-pages.php:1193
528
  msgid "Taxonomy Name"
529
  msgstr ""
530
 
531
- #: core/options-pages.php:1131 core/options-pages.php:1194
532
  msgid "Hierarchical"
533
  msgstr "Hierachicznie"
534
 
535
- #: core/options-pages.php:1132 core/options-pages.php:1195
536
  msgid "Column for List View"
537
  msgstr ""
538
 
539
- #: core/options-pages.php:1133 core/options-pages.php:1153
540
- #: core/options-pages.php:1196 core/options-pages.php:1254
541
  msgid "Filter for List View"
542
  msgstr ""
543
 
544
- #: core/options-pages.php:1134 core/options-pages.php:1154
545
- #: core/options-pages.php:1197 core/options-pages.php:1255
546
  msgid "Filter for Grid View / Media Popup"
547
  msgstr ""
548
 
549
- #: core/options-pages.php:1135 core/options-pages.php:1155
550
- #: core/options-pages.php:1198 core/options-pages.php:1256
551
  msgid "Edit in Media Popup"
552
  msgstr ""
553
 
554
- #: core/options-pages.php:1136 core/options-pages.php:1199
555
  msgid "Show in Nav Menu"
556
  msgstr "Pokaż w menu nawigacyjnym"
557
 
558
- #: core/options-pages.php:1137 core/options-pages.php:1200
559
  msgid "Remember Terms Order (sort)"
560
  msgstr ""
561
 
562
- #: core/options-pages.php:1138 core/options-pages.php:1201
563
  msgid "Show in REST"
564
  msgstr ""
565
 
566
- #: core/options-pages.php:1139 core/options-pages.php:1202
567
  msgid "Rewrite Slug"
568
  msgstr ""
569
 
570
- #: core/options-pages.php:1140 core/options-pages.php:1203
571
  msgid "Slug with Front"
572
  msgstr ""
573
 
574
- #: core/options-pages.php:1215
575
  msgid "Add New Taxonomy"
576
  msgstr "Dodaj nową taksonomię"
577
 
578
- #: core/options-pages.php:1225
579
  msgid "Non-Media Taxonomies"
580
  msgstr "Pozostałe taksonomie"
581
 
582
- #: core/options-pages.php:1286
583
  msgid "Options"
584
  msgstr ""
585
 
586
- #: core/options-pages.php:1296 core/options-pages.php:1299
587
  msgid "Taxonomy archive pages"
588
  msgstr ""
589
 
590
- #: core/options-pages.php:1300
591
  msgid "Turn on media taxonomy archive pages on the front-end"
592
  msgstr ""
593
 
594
- #: core/options-pages.php:1301
595
  msgid ""
596
  "Re-save your permalink settings after this option change to make it work."
597
  msgstr ""
598
 
599
- #: core/options-pages.php:1307 core/options-pages.php:1310
600
  msgid "Assign all like hierarchical"
601
  msgstr ""
602
 
603
- #: core/options-pages.php:1311
604
  msgid ""
605
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
606
  msgstr ""
607
 
608
- #: core/options-pages.php:1317 core/options-pages.php:1320
609
  msgid "Force filters"
610
  msgstr ""
611
 
612
- #: core/options-pages.php:1321
613
  msgid "Show media filters for ANY Media Popup"
614
  msgstr ""
615
 
616
- #: core/options-pages.php:1322
617
  msgid "Try this if filters are not shown for third-party plugins or themes."
618
  msgstr ""
619
 
620
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
621
  msgid "Add New MIME Type"
622
  msgstr "Dodaj nowy typ MIME"
623
 
624
- #: core/options-pages.php:1394 core/options-pages.php:1449
625
  msgid "Extension"
626
  msgstr "Rozszerzenie"
627
 
628
- #: core/options-pages.php:1395 core/options-pages.php:1450
629
  msgid "MIME Type"
630
  msgstr "Typ MIME"
631
 
632
- #: core/options-pages.php:1396 core/options-pages.php:1451
633
  msgid "Singular Label"
634
  msgstr "Etykieta dla liczby pojedynczej"
635
 
636
- #: core/options-pages.php:1397 core/options-pages.php:1452
637
  msgid "Plural Label"
638
  msgstr "Etykieta dla liczby mnogiej"
639
 
640
- #: core/options-pages.php:1398 core/options-pages.php:1428
641
- #: core/options-pages.php:1441 core/options-pages.php:1453
642
  msgid "Add Filter"
643
  msgstr "Dodaj filtr"
644
 
645
- #: core/options-pages.php:1399 core/options-pages.php:1429
646
- #: core/options-pages.php:1442 core/options-pages.php:1454
647
  msgid "Allow Upload"
648
  msgstr "Zezwól na przesyłanie"
649
 
650
- #: core/options-pages.php:1443
651
  msgid "Delete MIME Type"
652
  msgstr "Usuń typ MIME"
653
 
654
- #: core/options-pages.php:1460
655
  msgid "Restore WordPress default MIME Types"
656
  msgstr ""
657
 
658
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
659
  msgid "Save Changes"
660
  msgstr ""
661
 
662
- #: core/options-pages.php:1499
663
  msgid "Changelog"
664
  msgstr ""
665
 
666
- #: core/options-pages.php:1500
667
  msgid "What's new in"
668
  msgstr ""
669
 
670
- #: core/options-pages.php:1500
671
  msgid "version"
672
  msgstr ""
673
 
674
- #: core/options-pages.php:1503
675
  msgid "More features under the hood"
676
  msgstr ""
677
 
678
- #: core/options-pages.php:1505
679
  msgid "Support"
680
  msgstr ""
681
 
682
- #: core/options-pages.php:1506
683
  msgid "Feel free to ask for help on"
684
  msgstr ""
685
 
686
- #: core/options-pages.php:1506
687
  msgid "Support is free for both versions of the plugin."
688
  msgstr ""
689
 
690
- #: core/options-pages.php:1508
691
  msgid "Plugin rating"
692
  msgstr ""
693
 
694
- #: core/options-pages.php:1509
695
  msgid "Please"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1509
699
  msgid "vote for the plugin"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1509
703
  msgid "Thanks!"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1511
707
  msgid "Other plugins you may find useful"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1550
711
  msgid "Utility"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1571
715
  msgid "Vote!"
716
  msgstr ""
717
 
@@ -723,328 +752,78 @@ msgstr ""
723
  msgid "Media Library settings saved."
724
  msgstr ""
725
 
726
- #: core/taxonomies.php:358 core/taxonomies.php:364
727
- #: enhanced-media-library.php:489
728
  msgid "Filter by"
729
  msgstr ""
730
 
731
- #: core/taxonomies.php:366 enhanced-media-library.php:491
732
  msgid "Not in"
733
  msgstr ""
734
 
735
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
736
  msgid "All Uncategorized"
737
  msgstr ""
738
 
739
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
740
  msgid "Reset All Filters"
741
  msgstr ""
742
 
743
- #: enhanced-media-library.php:523
744
  msgid "Uploaded to post #"
745
  msgstr ""
746
 
747
- #: enhanced-media-library.php:524
748
  msgid "Based On"
749
  msgstr ""
750
 
751
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
752
  msgid "Media Categories"
753
  msgstr ""
754
 
755
- #: enhanced-media-library.php:570
756
  msgid "Media Category"
757
  msgstr ""
758
 
759
- #: enhanced-media-library.php:572
760
  msgid "All Media Categories"
761
  msgstr ""
762
 
763
- #: enhanced-media-library.php:573
764
  msgid "Edit Media Category"
765
  msgstr ""
766
 
767
- #: enhanced-media-library.php:574
768
  msgid "View Media Category"
769
  msgstr ""
770
 
771
- #: enhanced-media-library.php:575
772
  msgid "Update Media Category"
773
  msgstr ""
774
 
775
- #: enhanced-media-library.php:576
776
  msgid "Add New Media Category"
777
  msgstr ""
778
 
779
- #: enhanced-media-library.php:577
780
  msgid "New Media Category Name"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:578
784
  msgid "Parent Media Category"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:579
788
  msgid "Parent Media Category:"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:580
792
  msgid "Search Media Categories"
793
  msgstr ""
794
 
795
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
796
- msgid "Remove"
797
- msgstr ""
798
-
799
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
800
- msgid "Deselect"
801
- msgstr ""
802
-
803
- #: pro/core/bulk-edit.php:105
804
- msgid "Caption this image&hellip;"
805
- msgstr ""
806
-
807
- #: pro/core/bulk-edit.php:109
808
- msgid "Describe this video&hellip;"
809
- msgstr ""
810
-
811
- #: pro/core/bulk-edit.php:111
812
- msgid "Describe this audio file&hellip;"
813
- msgstr ""
814
-
815
- #: pro/core/bulk-edit.php:113
816
- msgid "Describe this media file&hellip;"
817
- msgstr ""
818
-
819
- #: pro/core/bulk-edit.php:122
820
- msgid "Attachments Details"
821
- msgstr ""
822
-
823
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
824
- msgid "Select All"
825
- msgstr ""
826
-
827
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
828
- msgid "Edit Selection"
829
- msgstr ""
830
-
831
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
832
- msgid "Deselect All"
833
- msgstr ""
834
-
835
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
836
- msgid "Delete Selected"
837
- msgstr ""
838
-
839
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
840
- msgid "Order By"
841
- msgstr ""
842
-
843
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
844
- msgid "Date"
845
- msgstr ""
846
-
847
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
848
- msgid "Title"
849
- msgstr ""
850
-
851
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
852
- msgid "Custom Order"
853
- msgstr ""
854
-
855
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
856
- msgid "Random"
857
- msgstr ""
858
-
859
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
860
- msgid "Order"
861
- msgstr ""
862
-
863
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
864
- msgid "Ascending"
865
- msgstr ""
866
-
867
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
868
- msgid "Descending"
869
- msgstr ""
870
-
871
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
872
- msgid "Limit"
873
- msgstr ""
874
-
875
- #: pro/core/options-pages.php:78
876
- msgid "Your license has been deactivated."
877
- msgstr ""
878
-
879
- #: pro/core/options-pages.php:88
880
- msgid "Please check if your license key is correct and try again."
881
- msgstr ""
882
-
883
- #: pro/core/options-pages.php:101
884
- msgid ""
885
- "Wrong license key or a server error occured. Please check your license key "
886
- "and try again."
887
- msgstr ""
888
-
889
- #: pro/core/options-pages.php:111
890
- msgid "You license has been activated."
891
- msgstr ""
892
-
893
- #: pro/core/options-pages.php:164
894
- #, php-format
895
- msgid "Auto-assign media items to parent %s %s on upload"
896
- msgstr ""
897
-
898
- #: pro/core/options-pages.php:165
899
- #, php-format
900
- msgid ""
901
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
902
- "attached to a %s will be assigned to %s of their parent %s. Currently "
903
- "assigned %s will not be saved. Media items that are not attached to any %s "
904
- "will not be affected."
905
- msgstr ""
906
-
907
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
908
- msgid "Bulk Edit"
909
- msgstr ""
910
-
911
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
912
- msgid "Turn off 'Save Changes' button"
913
- msgstr ""
914
-
915
- #: pro/core/options-pages.php:200
916
- msgid "Save changes on the fly"
917
- msgstr ""
918
-
919
- #: pro/core/options-pages.php:201
920
- msgid ""
921
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
922
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
923
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
924
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
925
- "files / taxonomies with this option turned on."
926
- msgstr ""
927
-
928
- #: pro/core/options-pages.php:202
929
- msgid ""
930
- "Strongly NOT recommended option if you work with more than hundred of files "
931
- "at a time."
932
- msgstr ""
933
-
934
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
935
- msgid "License Key"
936
- msgstr ""
937
-
938
- #: pro/core/options-pages.php:252
939
- #, php-format
940
- msgid ""
941
- "To unlock updates please enter your license key below. You can get your "
942
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
943
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
944
- msgstr ""
945
-
946
- #: pro/core/options-pages.php:262
947
- msgid "Activate License"
948
- msgstr ""
949
-
950
- #: pro/core/options-pages.php:269
951
- msgid "Your license is active!"
952
- msgstr ""
953
-
954
- #: pro/core/options-pages.php:273
955
- msgid "Deactivate License"
956
- msgstr ""
957
-
958
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
959
- msgid ""
960
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
961
- "this server&#8217;s configuration. If you continue to have problems, please "
962
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
963
- msgstr ""
964
-
965
- #: pro/core/update.php:113
966
- msgid ""
967
- "(WordPress could not establish a secure connection to WordPress.org. Please "
968
- "contact your server administrator.)"
969
- msgstr ""
970
-
971
- #: pro/core/update.php:180
972
- #, php-format
973
- msgid ""
974
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
975
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
976
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
977
- msgstr ""
978
-
979
- #: pro/enhanced-media-library-pro.php:119
980
- msgid "ALL files belong to this item"
981
- msgstr ""
982
-
983
- #: pro/enhanced-media-library-pro.php:120
984
- msgid "SOME files belong to this item"
985
- msgstr ""
986
-
987
- #: pro/enhanced-media-library-pro.php:121
988
- msgid "NO files belong to this item"
989
- msgstr ""
990
-
991
- #: pro/enhanced-media-library-pro.php:122
992
- msgid "Changes saved."
993
- msgstr ""
994
-
995
- #: pro/enhanced-media-library-pro.php:123
996
- msgid "Something went wrong."
997
- msgstr ""
998
-
999
- #: pro/enhanced-media-library-pro.php:126
1000
- msgid "Edit Media Files"
1001
- msgstr ""
1002
-
1003
- #: pro/enhanced-media-library-pro.php:151
1004
- msgid "Create a filter-based gallery"
1005
- msgstr ""
1006
-
1007
- #: pro/enhanced-media-library-pro.php:152
1008
- msgid "Create a filter-based playlist"
1009
- msgstr ""
1010
-
1011
- #: pro/enhanced-media-library-pro.php:153
1012
- msgid "Create a filter-based video playlist"
1013
- msgstr ""
1014
-
1015
- #: pro/enhanced-media-library-pro.php:231
1016
- msgid ""
1017
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1018
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1019
- "will remain intact."
1020
- msgstr ""
1021
-
1022
- #: pro/enhanced-media-library-pro.php:231
1023
- msgid "Return to Plugins"
1024
- msgstr ""
1025
-
1026
- #: pro/enhanced-media-library-pro.php:282
1027
- msgid ""
1028
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1029
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1030
- "be active. Please network deactivate and delete the free versions of the "
1031
- "plugin. All your data will remain intact."
1032
- msgstr ""
1033
-
1034
- #: pro/enhanced-media-library-pro.php:299
1035
- msgid ""
1036
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1037
- "be active. Please deactivate and delete the free version of the plugin. All "
1038
- "your data will remain intact."
1039
- msgstr ""
1040
-
1041
- #: pro/enhanced-media-library-pro.php:315
1042
- msgid ""
1043
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1044
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1045
- "version to be active. Please deactivate (or network deactivate) and delete "
1046
- "the free version of the plugin for this site. All your data will remail "
1047
- "intact."
1048
  msgstr ""
1049
 
1050
  #. Description of the plugin/theme
@@ -1054,50 +833,6 @@ msgstr ""
1054
  "Wtyczka ta będzie przydatna tym, którzy muszą zarządzać wieloma plikami "
1055
  "multimedialnymi."
1056
 
1057
- #~ msgid ""
1058
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1059
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1060
- #~ "be lost."
1061
- #~ msgstr ""
1062
- #~ "Taksonomia zostanie trwale usunięta. Pliki mediów pozostaną nietknięte, "
1063
- #~ "ale wszystkie ich połączenia z tą taksonomią i warunki zostaną utracone."
1064
-
1065
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1066
- #~ msgstr ""
1067
- #~ "Proszę wybrać nazwy w liczbie pojedynczej oraz mnogiej dla nowej "
1068
- #~ "taksonomii"
1069
-
1070
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1071
- #~ msgstr "Proszę wybrać nazwę w liczbie pojedynczej dla nowej taksonomii"
1072
-
1073
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1074
- #~ msgstr "Prosze wybrać nazwę w liczbie mnogiej dla nowej taksonomii"
1075
-
1076
- #~ msgid ""
1077
- #~ "There is already a taxonomy with the same name. Please chose other one."
1078
- #~ msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
1079
-
1080
- #~ msgid "Remember terms order (sort)"
1081
- #~ msgstr "Pamiętaj kolejność (sortowanie)"
1082
-
1083
- #~ msgid "Restore default MIME Types"
1084
- #~ msgstr "Przywróć domyślne typy MIME"
1085
-
1086
- #~ msgid "Enhanced Media Library PRO"
1087
- #~ msgstr "Rozszerzona Biblioteka Mediów PRO"
1088
-
1089
- #~ msgid "Enhanced Media Library Options"
1090
- #~ msgstr "Rozszerzona Biblioteka Mediów - Opcje"
1091
-
1092
- #~ msgid "Column in Media Library"
1093
- #~ msgstr "Kolumna w bibliotece mediów"
1094
-
1095
- #~ msgid "Filter in Media Library"
1096
- #~ msgstr "Filtr w bibliotece mediów"
1097
-
1098
- #~ msgid "Filter in Media Popup / Grid View"
1099
- #~ msgstr "Filtr w wyskakującym oknie mediów / widoku siatki"
1100
-
1101
- #, fuzzy
1102
- #~ msgid "Slug"
1103
- #~ msgstr "Slug"
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"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
16
  "|| n%100>=20) ? 1 : 2);\n"
17
+ "X-Generator: Poedit 1.8.8\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
  #: core/mime-types.php:30
33
  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
 
42
+ #: core/options-pages.php:106 core/options-pages.php:208
43
  msgid "Media Library"
44
  msgstr ""
45
 
47
  msgid "Taxonomies"
48
  msgstr "Taksonomie"
49
 
50
+ #: core/options-pages.php:124 core/options-pages.php:210
51
  msgid "MIME Types"
52
  msgstr "Typy MIME"
53
 
54
+ #. Plugin Name of the plugin/theme
55
  #: core/options-pages.php:135 core/options-pages.php:136
56
  msgid "Enhanced Media Library"
57
  msgstr "Rozszerzona Biblioteka Mediów"
58
 
59
+ #: core/options-pages.php:207
60
  msgid "General"
61
  msgstr ""
62
 
63
+ #: core/options-pages.php:209 core/options-pages.php: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
 
73
+ #: core/options-pages.php:247
74
  msgid "Image sizes"
75
  msgstr ""
76
 
77
+ #: core/options-pages.php:248
78
  msgid ""
79
  "The sizes listed below determine the maximum dimensions in pixels to use "
80
  "when adding an image to the Media Library."
81
  msgstr ""
82
 
83
+ #: core/options-pages.php:252
84
  msgid "Thumbnail size"
85
  msgstr ""
86
 
87
+ #: core/options-pages.php:254
88
  msgid "Width"
89
  msgstr ""
90
 
91
+ #: core/options-pages.php:256
92
  msgid "Height"
93
  msgstr ""
94
 
95
+ #: core/options-pages.php:259
96
  msgid ""
97
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
98
  msgstr ""
99
 
100
+ #: core/options-pages.php:264 core/options-pages.php:265
101
  msgid "Medium size"
102
  msgstr ""
103
 
104
+ #: core/options-pages.php:266 core/options-pages.php:276
105
  msgid "Max Width"
106
  msgstr ""
107
 
108
+ #: core/options-pages.php:268 core/options-pages.php:278
109
  msgid "Max Height"
110
  msgstr ""
111
 
112
+ #: core/options-pages.php:274 core/options-pages.php:275
113
  msgid "Large size"
114
  msgstr ""
115
 
116
+ #: core/options-pages.php:291
117
  msgid "Embeds"
118
  msgstr ""
119
 
120
+ #: core/options-pages.php:298
121
  msgid "Uploading Files"
122
  msgstr ""
123
 
124
+ #: core/options-pages.php:305
125
  msgid "Store uploads in this folder"
126
  msgstr ""
127
 
128
+ #: core/options-pages.php:309
129
  #, php-format
130
  msgid "Default is %s"
131
  msgstr ""
132
 
133
+ #: core/options-pages.php:315
134
  msgid "Full URL path to files"
135
  msgstr ""
136
 
137
+ #: core/options-pages.php:317
138
  msgid "Configuring this is optional. By default, it should be blank."
139
  msgstr ""
140
 
141
+ #: core/options-pages.php:325
142
  msgid "Organize my uploads into month- and year-based folders"
143
  msgstr ""
144
 
145
+ #: core/options-pages.php:397 core/options-pages.php: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
 
151
+ #: core/options-pages.php:398
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
 
175
+ #: core/options-pages.php:403
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
 
199
+ #: core/options-pages.php:410
200
  msgid "Remove Taxonomy"
201
  msgstr ""
202
 
203
+ #: core/options-pages.php:411
204
  msgid "Taxonomy will be removed."
205
  msgstr ""
206
 
207
+ #: core/options-pages.php:412
208
  msgid ""
209
  "Taxonomy terms (categories) will remain intact in the database. If you "
210
  "create a taxonomy with the same name in the future, its terms (categories) "
211
  "will be available again."
212
  msgstr ""
213
 
214
+ #: core/options-pages.php:413
215
  msgid "Media items will remain intact."
216
  msgstr ""
217
 
218
+ #: core/options-pages.php:414
219
  msgid "Are you still sure?"
220
  msgstr ""
221
 
222
+ #: core/options-pages.php:415
223
  msgid "Yes, remove taxonomy"
224
  msgstr ""
225
 
226
+ #: core/options-pages.php:417
227
  msgid "Duplicate"
228
  msgstr ""
229
 
230
+ #: core/options-pages.php:418
231
  msgid "Taxonomy with the same name already exists. Please chose other one."
232
  msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
233
 
234
+ #: core/options-pages.php:420
235
  msgid "Empty Fields"
236
  msgstr ""
237
 
238
+ #: core/options-pages.php:421
239
  msgid "Please choose Singular and Plural names for all new taxomonies."
240
  msgstr ""
241
 
242
+ #: core/options-pages.php:422
243
+ msgid "Please choose Singular name for all new taxomonies."
244
  msgstr ""
245
 
246
+ #: core/options-pages.php:423
247
  msgid "Please choose Plural Name for all new taxomonies."
248
  msgstr ""
249
 
250
+ #: core/options-pages.php:425
251
  msgid "Ok"
252
  msgstr ""
253
 
254
+ #: core/options-pages.php:426 core/options-pages.php:431
255
+ #: core/options-pages.php:514
256
  msgid "Cancel"
257
  msgstr ""
258
 
259
+ #: core/options-pages.php:428
260
  msgid "Synchronize Now"
261
  msgstr ""
262
 
263
+ #: core/options-pages.php:429 core/options-pages.php:511
264
  msgid "This operation cannot be canceled! Are you still sure?"
265
  msgstr ""
266
 
267
+ #: core/options-pages.php:430
268
  msgid "Synchronize"
269
  msgstr ""
270
 
271
+ #: core/options-pages.php:432
272
  msgid "Synchronizing..."
273
  msgstr ""
274
 
275
+ #: core/options-pages.php:470
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
  "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
  "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
  "%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
 
752
  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
833
  "Wtyczka ta będzie przydatna tym, którzy muszą zarządzać wieloma plikami "
834
  "multimedialnymi."
835
 
836
+ #. Author of the plugin/theme
837
+ msgid "wpUXsolutions"
838
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-04-30 12:53+0300\n"
7
  "PO-Revision-Date: \n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: P. E.\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
@@ -36,13 +36,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
- #: core/options-pages.php:97 core/options-pages.php:217
40
- #: core/options-pages.php:932 core/options-pages.php:1057
41
- #: core/options-pages.php:1370 core/options-pages.php:1547
42
  msgid "Media Settings"
43
  msgstr "Mediainställningar"
44
 
45
- #: core/options-pages.php:106 core/options-pages.php:189
46
  msgid "Media Library"
47
  msgstr "Mediabiblioteket"
48
 
@@ -50,271 +50,272 @@ msgstr "Mediabiblioteket"
50
  msgid "Taxonomies"
51
  msgstr "Taxonomier"
52
 
53
- #: core/options-pages.php:124 core/options-pages.php:191
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"
60
 
61
- #: core/options-pages.php:188
62
  msgid "General"
63
  msgstr ""
64
 
65
- #: core/options-pages.php:190 core/options-pages.php:1078
66
  msgid "Media Taxonomies"
67
  msgstr "Mediataxonomier"
68
 
69
- #: core/options-pages.php:214 core/options-pages.php:520
70
- #: core/options-pages.php:928 core/options-pages.php:1053
71
- #: core/options-pages.php:1366
72
  msgid "You do not have sufficient permissions to access this page."
73
  msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
74
 
75
- #: core/options-pages.php:228
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
- #: core/options-pages.php:229
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
- #: core/options-pages.php:233
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
- #: core/options-pages.php:235
90
  msgid "Width"
91
  msgstr ""
92
 
93
- #: core/options-pages.php:237
94
  msgid "Height"
95
  msgstr ""
96
 
97
- #: core/options-pages.php:240
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
- #: core/options-pages.php:245 core/options-pages.php:246
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
- #: core/options-pages.php:247 core/options-pages.php:257
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
- #: core/options-pages.php:249 core/options-pages.php:259
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
- #: core/options-pages.php:255 core/options-pages.php:256
115
  msgid "Large size"
116
  msgstr ""
117
 
118
- #: core/options-pages.php:272
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
- #: core/options-pages.php:279
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
- #: core/options-pages.php:286
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
- #: core/options-pages.php:290
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
- #: core/options-pages.php:296
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
- #: core/options-pages.php:298
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
- #: core/options-pages.php:306
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
- #: core/options-pages.php:378 core/options-pages.php:1102
148
- #: core/options-pages.php:1117 core/options-pages.php:1180
149
- #: core/options-pages.php:1249
150
  msgid "Edit"
151
  msgstr "Redigera"
152
 
153
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
154
  msgid "Close"
155
  msgstr "Stäng"
156
 
157
- #: core/options-pages.php:380 core/options-pages.php:1118
158
- #: core/options-pages.php:1181
159
  msgid "View"
160
  msgstr "Visa"
161
 
162
- #: core/options-pages.php:381 core/options-pages.php:1119
163
- #: core/options-pages.php:1182
164
  msgid "Update"
165
  msgstr "Uppdatera"
166
 
167
- #: core/options-pages.php:382 core/options-pages.php:1120
168
- #: core/options-pages.php:1183
169
  msgid "Add New"
170
  msgstr "Lägg Till Ny"
171
 
172
- #: core/options-pages.php:383 core/options-pages.php:1121
173
- #: core/options-pages.php:1184
174
  msgid "New"
175
  msgstr "Ny"
176
 
177
- #: core/options-pages.php:384
178
  msgid "Name"
179
  msgstr "Namn"
180
 
181
- #: core/options-pages.php:385 core/options-pages.php:1122
182
- #: core/options-pages.php:1185
183
  msgid "Parent"
184
  msgstr "Förälder"
185
 
186
- #: core/options-pages.php:386 core/options-pages.php:616
187
- #: core/options-pages.php:1116 core/options-pages.php:1179
188
- #: core/taxonomies.php:365 enhanced-media-library.php:490
189
  msgid "All"
190
  msgstr "Alla"
191
 
192
- #: core/options-pages.php:387 core/options-pages.php:1123
193
- #: core/options-pages.php:1186
194
  msgid "Search"
195
  msgstr "Sök"
196
 
197
- #: core/options-pages.php:389 core/options-pages.php:1167
198
  msgid "New Taxonomy"
199
  msgstr "Ny Taxonomi"
200
 
201
- #: core/options-pages.php:391
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
- #: core/options-pages.php:392
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
- #: core/options-pages.php:393
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
- #: core/options-pages.php:394
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
- #: core/options-pages.php:395
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
- #: core/options-pages.php:396
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:398
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
- #: core/options-pages.php:399
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
236
 
237
- #: core/options-pages.php:401
238
  msgid "Empty Fields"
239
  msgstr ""
240
 
241
- #: core/options-pages.php:402
242
  msgid "Please choose Singular and Plural names for all new taxomonies."
243
  msgstr ""
244
 
245
- #: core/options-pages.php:403
246
- msgid "Please choose Singilar name for all new taxomonies."
247
  msgstr ""
248
 
249
- #: core/options-pages.php:404
250
  msgid "Please choose Plural Name for all new taxomonies."
251
  msgstr ""
252
 
253
- #: core/options-pages.php:406
254
  msgid "Ok"
255
  msgstr ""
256
 
257
- #: core/options-pages.php:407 core/options-pages.php:412
258
- #: core/options-pages.php:495
259
  msgid "Cancel"
260
  msgstr ""
261
 
262
- #: core/options-pages.php:409 pro/core/options-pages.php:165
263
  msgid "Synchronize Now"
264
  msgstr ""
265
 
266
- #: core/options-pages.php:410 core/options-pages.php:492
267
  msgid "This operation cannot be canceled! Are you still sure?"
268
  msgstr ""
269
 
270
- #: core/options-pages.php:411
271
  msgid "Synchronize"
272
  msgstr ""
273
 
274
- #: core/options-pages.php:413
275
  msgid "Synchronizing..."
276
  msgstr ""
277
 
278
- #: core/options-pages.php:451
279
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
  msgstr ""
281
  "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
282
 
283
- #: core/options-pages.php:452
284
  msgid "Please fill into all fields."
285
  msgstr "Var god fyll i alla fält."
286
 
287
- #: core/options-pages.php:453
288
  msgid "Duplicate extensions or MIME types. Please chose other one."
289
  msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
290
 
291
- #: core/options-pages.php:490 core/options-pages.php:607
292
  msgid "Complete Cleanup"
293
  msgstr ""
294
 
295
- #: core/options-pages.php:491
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:493
302
  msgid "Yes, delete all data"
303
  msgstr ""
304
 
305
- #: core/options-pages.php:494
306
  msgid "Cleaning..."
307
  msgstr ""
308
 
309
- #: core/options-pages.php:525
310
  msgid "Enhanced Media Library Settings"
311
  msgstr ""
312
 
313
- #: core/options-pages.php:535
314
  msgid "Export"
315
  msgstr ""
316
 
317
- #: core/options-pages.php:539
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 +323,15 @@ msgid ""
322
  "another website."
323
  msgstr ""
324
 
325
- #: core/options-pages.php:544
326
  msgid "Export Plugin Settings"
327
  msgstr ""
328
 
329
- #: core/options-pages.php:554
330
  msgid "Import"
331
  msgstr ""
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 imported from a "
@@ -338,148 +339,168 @@ msgid ""
338
  "another website using the export button above."
339
  msgstr ""
340
 
341
- #: core/options-pages.php:559
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:566
349
  msgid "Import Plugin Settings"
350
  msgstr ""
351
 
352
- #: core/options-pages.php:578
353
  msgid "Restore"
354
  msgstr ""
355
 
356
- #: core/options-pages.php:584
357
  msgid "No backup available at the moment."
358
  msgstr ""
359
 
360
- #: core/options-pages.php:586
361
  msgid "Backup will be created automatically before any import operation."
362
  msgstr ""
363
 
364
- #: core/options-pages.php:590
365
  msgid ""
366
  "The backup has been automatically created before the latest import operation."
367
  msgstr ""
368
 
369
- #: core/options-pages.php:594
370
  msgid "Restore Settings from the Backup"
371
  msgstr ""
372
 
373
- #: core/options-pages.php:614
374
  msgid "What will be deleted:"
375
  msgstr ""
376
 
377
- #: core/options-pages.php:619
378
  msgid "All plugin options"
379
  msgstr ""
380
 
381
- #: core/options-pages.php:620
382
  msgid "All plugin backups stored in database"
383
  msgstr ""
384
 
385
- #: core/options-pages.php:624
386
  msgid "What will remain intact:"
387
  msgstr ""
388
 
389
- #: core/options-pages.php:625
390
  msgid "All media items"
391
  msgstr ""
392
 
393
- #: core/options-pages.php:626
394
  msgid "All taxonomies not listed above"
395
  msgstr ""
396
 
397
- #: core/options-pages.php:629
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:631
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:637
410
  msgid "Delete All Data & Deactivate"
411
  msgstr ""
412
 
413
- #: core/options-pages.php:742
414
  msgid "Please upload a file to import settings."
415
  msgstr ""
416
 
417
- #: core/options-pages.php:762
418
  msgid "Plugin settings imported."
419
  msgstr ""
420
 
421
- #: core/options-pages.php:809
422
  msgid "Plugin settings restored from the backup."
423
  msgstr ""
424
 
425
- #: core/options-pages.php:953
426
  msgid "Media Items Order"
427
  msgstr ""
428
 
429
- #: core/options-pages.php:960
430
  msgid "Order media items by"
431
  msgstr ""
432
 
433
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "For media library and media popups"
435
  msgstr ""
436
 
437
- #: core/options-pages.php:968
438
  msgid "Option allows to change order by drag and drop with Custom Order value."
439
  msgstr ""
440
 
441
- #: core/options-pages.php:973
442
  msgid "Sort order"
443
  msgstr ""
444
 
445
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
446
  msgid "Media Shortcodes"
447
  msgstr ""
448
 
449
- #: core/options-pages.php:999 core/options-pages.php:1002
450
  msgid "Enhanced media shortcodes"
451
  msgstr ""
452
 
453
- #: core/options-pages.php:1003
454
  msgid ""
455
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
456
  "upload date, and media items number limit"
457
  msgstr ""
458
 
459
- #: core/options-pages.php:1004
460
  msgid "Gallery example:"
461
  msgstr ""
462
 
463
- #: core/options-pages.php:1005
464
  msgid "Audio playlist example:"
465
  msgstr ""
466
 
467
- #: core/options-pages.php:1006
468
  msgid "Video playlist example:"
469
  msgstr ""
470
 
471
- #: core/options-pages.php:1008
472
  #, php-format
473
  msgid ""
474
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
475
  msgstr ""
476
 
477
- #: core/options-pages.php:1010
478
  #, php-format
479
  msgid "%sLearn more%s."
480
  msgstr ""
481
 
482
- #: core/options-pages.php:1012
483
  #, php-format
484
  msgid ""
485
  "Please check out your gallery front-end and back-end functionality once this "
@@ -487,235 +508,243 @@ msgid ""
487
  "%s."
488
  msgstr ""
489
 
490
- #: core/options-pages.php:1082 core/options-pages.php:1229
491
  msgid "Assign following taxonomies to Media Library:"
492
  msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
493
 
494
- #: core/options-pages.php:1101 core/options-pages.php:1167
495
- #: core/options-pages.php:1248
496
  msgid "Assign Taxonomy"
497
  msgstr "Tilldela Taxonomi"
498
 
499
- #: core/options-pages.php:1102 core/options-pages.php:1249
500
  msgid "Edit Taxonomy"
501
  msgstr "Redigera Taxonomi"
502
 
503
- #: core/options-pages.php:1106 core/options-pages.php:1169
504
  msgid "Delete Taxonomy"
505
  msgstr "Ta Bort Taxonomi"
506
 
507
- #: core/options-pages.php:1111 core/options-pages.php:1174
508
  msgid "Labels"
509
  msgstr "Etiketter"
510
 
511
- #: core/options-pages.php:1113 core/options-pages.php:1176
512
  msgid "Singular"
513
  msgstr "Singular"
514
 
515
- #: core/options-pages.php:1114 core/options-pages.php:1177
516
  msgid "Plural"
517
  msgstr "Plural"
518
 
519
- #: core/options-pages.php:1115 core/options-pages.php:1178
520
  msgid "Menu Name"
521
  msgstr "Menynamn"
522
 
523
- #: core/options-pages.php:1128 core/options-pages.php:1151
524
- #: core/options-pages.php:1191 core/options-pages.php:1252
525
  msgid "Settings"
526
  msgstr "Inställningar"
527
 
528
- #: core/options-pages.php:1130 core/options-pages.php:1193
529
  msgid "Taxonomy Name"
530
  msgstr "Taxonominamn"
531
 
532
- #: core/options-pages.php:1131 core/options-pages.php:1194
533
  msgid "Hierarchical"
534
  msgstr "Hierarkisk"
535
 
536
- #: core/options-pages.php:1132 core/options-pages.php:1195
537
  msgid "Column for List View"
538
  msgstr ""
539
 
540
- #: core/options-pages.php:1133 core/options-pages.php:1153
541
- #: core/options-pages.php:1196 core/options-pages.php:1254
542
  msgid "Filter for List View"
543
  msgstr ""
544
 
545
- #: core/options-pages.php:1134 core/options-pages.php:1154
546
- #: core/options-pages.php:1197 core/options-pages.php:1255
547
  msgid "Filter for Grid View / Media Popup"
548
  msgstr ""
549
 
550
- #: core/options-pages.php:1135 core/options-pages.php:1155
551
- #: core/options-pages.php:1198 core/options-pages.php:1256
552
  msgid "Edit in Media Popup"
553
  msgstr "Redigera i Media-popup"
554
 
555
- #: core/options-pages.php:1136 core/options-pages.php:1199
556
  msgid "Show in Nav Menu"
557
  msgstr "Visa i Nav Menu"
558
 
559
- #: core/options-pages.php:1137 core/options-pages.php:1200
560
  msgid "Remember Terms Order (sort)"
561
  msgstr ""
562
 
563
- #: core/options-pages.php:1138 core/options-pages.php:1201
564
  msgid "Show in REST"
565
  msgstr ""
566
 
567
- #: core/options-pages.php:1139 core/options-pages.php:1202
568
  msgid "Rewrite Slug"
569
  msgstr "Skriv Om Slug"
570
 
571
- #: core/options-pages.php:1140 core/options-pages.php:1203
572
  msgid "Slug with Front"
573
  msgstr "Slug med Framsida"
574
 
575
- #: core/options-pages.php:1215
576
  msgid "Add New Taxonomy"
577
  msgstr "Lägg Till Ny Taxonomi"
578
 
579
- #: core/options-pages.php:1225
580
  msgid "Non-Media Taxonomies"
581
  msgstr "Icke-Media-taxonomier"
582
 
583
- #: core/options-pages.php:1286
584
  msgid "Options"
585
  msgstr "Alternativ"
586
 
587
- #: core/options-pages.php:1296 core/options-pages.php:1299
588
  msgid "Taxonomy archive pages"
589
  msgstr "Arkivsidor för Taxonomier"
590
 
591
- #: core/options-pages.php:1300
592
  msgid "Turn on media taxonomy archive pages on the front-end"
593
  msgstr "Slå på arkivsidor för mediataxonomier i frontend"
594
 
595
- #: core/options-pages.php:1301
596
  msgid ""
597
  "Re-save your permalink settings after this option change to make it work."
598
  msgstr ""
599
  "Återspara inställningarna för permalänkar efter en ändring av detta "
600
  "alternativ för att få det att fungera."
601
 
602
- #: core/options-pages.php:1307 core/options-pages.php:1310
603
  msgid "Assign all like hierarchical"
604
  msgstr "Tilldela alla som hierarkiska"
605
 
606
- #: core/options-pages.php:1311
607
  msgid ""
608
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
609
  msgstr ""
610
  "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
611
 
612
- #: core/options-pages.php:1317 core/options-pages.php:1320
613
  msgid "Force filters"
614
  msgstr "Tvinga filter"
615
 
616
- #: core/options-pages.php:1321
617
  msgid "Show media filters for ANY Media Popup"
618
  msgstr ""
619
 
620
- #: core/options-pages.php:1322
621
  msgid "Try this if filters are not shown for third-party plugins or themes."
622
  msgstr ""
623
 
624
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
625
  msgid "Add New MIME Type"
626
  msgstr "Lägg Till Ny MIME-typ"
627
 
628
- #: core/options-pages.php:1394 core/options-pages.php:1449
629
  msgid "Extension"
630
  msgstr "Utökning"
631
 
632
- #: core/options-pages.php:1395 core/options-pages.php:1450
633
  msgid "MIME Type"
634
  msgstr "MIME-typ"
635
 
636
- #: core/options-pages.php:1396 core/options-pages.php:1451
637
  msgid "Singular Label"
638
  msgstr "Singular-etikett"
639
 
640
- #: core/options-pages.php:1397 core/options-pages.php:1452
641
  msgid "Plural Label"
642
  msgstr "Plural-etikett"
643
 
644
- #: core/options-pages.php:1398 core/options-pages.php:1428
645
- #: core/options-pages.php:1441 core/options-pages.php:1453
646
  msgid "Add Filter"
647
  msgstr "Lägg Till Filter"
648
 
649
- #: core/options-pages.php:1399 core/options-pages.php:1429
650
- #: core/options-pages.php:1442 core/options-pages.php:1454
651
  msgid "Allow Upload"
652
  msgstr "Tillåt Uppladdning"
653
 
654
- #: core/options-pages.php:1443
655
  msgid "Delete MIME Type"
656
  msgstr "Ta Bort MIME-typ"
657
 
658
- #: core/options-pages.php:1460
659
  msgid "Restore WordPress default MIME Types"
660
  msgstr ""
661
 
662
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
663
  msgid "Save Changes"
664
  msgstr "Spara Ändringar"
665
 
666
- #: core/options-pages.php:1499
667
  msgid "Changelog"
668
  msgstr ""
669
 
670
- #: core/options-pages.php:1500
671
  msgid "What's new in"
672
  msgstr ""
673
 
674
- #: core/options-pages.php:1500
675
  msgid "version"
676
  msgstr ""
677
 
678
- #: core/options-pages.php:1503
679
  msgid "More features under the hood"
680
  msgstr ""
681
 
682
- #: core/options-pages.php:1505
683
  msgid "Support"
684
  msgstr ""
685
 
686
- #: core/options-pages.php:1506
687
  msgid "Feel free to ask for help on"
688
  msgstr ""
689
 
690
- #: core/options-pages.php:1506
691
  msgid "Support is free for both versions of the plugin."
692
  msgstr ""
693
 
694
- #: core/options-pages.php:1508
695
  msgid "Plugin rating"
696
  msgstr ""
697
 
698
- #: core/options-pages.php:1509
699
  msgid "Please"
700
  msgstr ""
701
 
702
- #: core/options-pages.php:1509
703
  msgid "vote for the plugin"
704
  msgstr ""
705
 
706
- #: core/options-pages.php:1509
707
  msgid "Thanks!"
708
  msgstr ""
709
 
710
- #: core/options-pages.php:1511
711
  msgid "Other plugins you may find useful"
712
  msgstr ""
713
 
714
- #: core/options-pages.php:1550
715
  msgid "Utility"
716
  msgstr ""
717
 
718
- #: core/options-pages.php:1571
719
  msgid "Vote!"
720
  msgstr ""
721
 
@@ -727,335 +756,78 @@ msgstr ""
727
  msgid "Media Library settings saved."
728
  msgstr ""
729
 
730
- #: core/taxonomies.php:358 core/taxonomies.php:364
731
- #: enhanced-media-library.php:489
732
  msgid "Filter by"
733
  msgstr "Filtrera efter"
734
 
735
- #: core/taxonomies.php:366 enhanced-media-library.php:491
736
  msgid "Not in"
737
  msgstr "Ej i"
738
 
739
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
740
  msgid "All Uncategorized"
741
  msgstr "Alla Okategoriserade"
742
 
743
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
744
  msgid "Reset All Filters"
745
  msgstr "Återställ alla filter"
746
 
747
- #: enhanced-media-library.php:523
748
  msgid "Uploaded to post #"
749
  msgstr ""
750
 
751
- #: enhanced-media-library.php:524
752
  msgid "Based On"
753
  msgstr ""
754
 
755
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
756
  msgid "Media Categories"
757
  msgstr ""
758
 
759
- #: enhanced-media-library.php:570
760
  msgid "Media Category"
761
  msgstr ""
762
 
763
- #: enhanced-media-library.php:572
764
  msgid "All Media Categories"
765
  msgstr ""
766
 
767
- #: enhanced-media-library.php:573
768
  msgid "Edit Media Category"
769
  msgstr ""
770
 
771
- #: enhanced-media-library.php:574
772
  msgid "View Media Category"
773
  msgstr ""
774
 
775
- #: enhanced-media-library.php:575
776
  msgid "Update Media Category"
777
  msgstr ""
778
 
779
- #: enhanced-media-library.php:576
780
  msgid "Add New Media Category"
781
  msgstr ""
782
 
783
- #: enhanced-media-library.php:577
784
  msgid "New Media Category Name"
785
  msgstr ""
786
 
787
- #: enhanced-media-library.php:578
788
  msgid "Parent Media Category"
789
  msgstr ""
790
 
791
- #: enhanced-media-library.php:579
792
  msgid "Parent Media Category:"
793
  msgstr ""
794
 
795
- #: enhanced-media-library.php:580
796
  msgid "Search Media Categories"
797
  msgstr ""
798
 
799
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
800
- msgid "Remove"
801
- msgstr "Ta Bort"
802
-
803
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
804
- msgid "Deselect"
805
- msgstr "Avmarkera"
806
-
807
- #: pro/core/bulk-edit.php:105
808
- msgid "Caption this image&hellip;"
809
- msgstr "Rubricera denna bild&hellip;"
810
-
811
- #: pro/core/bulk-edit.php:109
812
- msgid "Describe this video&hellip;"
813
- msgstr "Beskriv denna video&hellip;"
814
-
815
- #: pro/core/bulk-edit.php:111
816
- msgid "Describe this audio file&hellip;"
817
- msgstr "Beskriv denna audiofil&hellip;"
818
-
819
- #: pro/core/bulk-edit.php:113
820
- msgid "Describe this media file&hellip;"
821
- msgstr "Beskriv denna mediafil&hellip;"
822
-
823
- #: pro/core/bulk-edit.php:122
824
- msgid "Attachments Details"
825
- msgstr "Detaljer För Bilaga"
826
-
827
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
828
- msgid "Select All"
829
- msgstr "Välj Alla"
830
-
831
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
832
- msgid "Edit Selection"
833
- msgstr "Redigera Valda"
834
-
835
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
836
- msgid "Deselect All"
837
- msgstr "Avmarkera Alla"
838
-
839
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
840
- msgid "Delete Selected"
841
- msgstr "Ta Bort Valda"
842
-
843
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
844
- msgid "Order By"
845
- msgstr ""
846
-
847
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
848
- msgid "Date"
849
- msgstr ""
850
-
851
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
852
- msgid "Title"
853
- msgstr ""
854
-
855
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
856
- msgid "Custom Order"
857
- msgstr ""
858
-
859
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
860
- msgid "Random"
861
- msgstr ""
862
-
863
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
864
- msgid "Order"
865
- msgstr ""
866
-
867
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
868
- msgid "Ascending"
869
- msgstr ""
870
-
871
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
872
- msgid "Descending"
873
- msgstr ""
874
-
875
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
876
- msgid "Limit"
877
- msgstr ""
878
-
879
- #: pro/core/options-pages.php:78
880
- msgid "Your license has been deactivated."
881
- msgstr ""
882
-
883
- #: pro/core/options-pages.php:88
884
- msgid "Please check if your license key is correct and try again."
885
- msgstr ""
886
-
887
- #: pro/core/options-pages.php:101
888
- msgid ""
889
- "Wrong license key or a server error occured. Please check your license key "
890
- "and try again."
891
- msgstr ""
892
-
893
- #: pro/core/options-pages.php:111
894
- msgid "You license has been activated."
895
- msgstr ""
896
-
897
- #: pro/core/options-pages.php:164
898
- #, php-format
899
- msgid "Auto-assign media items to parent %s %s on upload"
900
- msgstr ""
901
-
902
- #: pro/core/options-pages.php:165
903
- #, php-format
904
- msgid ""
905
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
906
- "attached to a %s will be assigned to %s of their parent %s. Currently "
907
- "assigned %s will not be saved. Media items that are not attached to any %s "
908
- "will not be affected."
909
- msgstr ""
910
-
911
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
912
- msgid "Bulk Edit"
913
- msgstr "Bulkredigering"
914
-
915
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
916
- msgid "Turn off 'Save Changes' button"
917
- msgstr "Stäng av knappen 'Spara Ändringar'"
918
-
919
- #: pro/core/options-pages.php:200
920
- msgid "Save changes on the fly"
921
- msgstr "Spara ändringar direkt"
922
-
923
- #: pro/core/options-pages.php:201
924
- msgid ""
925
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
926
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
927
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
928
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
929
- "files / taxonomies with this option turned on."
930
- msgstr ""
931
-
932
- #: pro/core/options-pages.php:202
933
- msgid ""
934
- "Strongly NOT recommended option if you work with more than hundred of files "
935
- "at a time."
936
- msgstr ""
937
- "Detta alternativ rekommenderas INTE om du arbetar med fler än hundra filer "
938
- "åt gången."
939
-
940
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
941
- msgid "License Key"
942
- msgstr "Licensnyckel"
943
-
944
- #: pro/core/options-pages.php:252
945
- #, php-format
946
- msgid ""
947
- "To unlock updates please enter your license key below. You can get your "
948
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
949
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
950
- msgstr ""
951
-
952
- #: pro/core/options-pages.php:262
953
- msgid "Activate License"
954
- msgstr "Aktivera Licens"
955
-
956
- #: pro/core/options-pages.php:269
957
- msgid "Your license is active!"
958
- msgstr "Din licens är aktiv!"
959
-
960
- #: pro/core/options-pages.php:273
961
- msgid "Deactivate License"
962
- msgstr ""
963
-
964
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
965
- msgid ""
966
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
967
- "this server&#8217;s configuration. If you continue to have problems, please "
968
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
969
- msgstr ""
970
- "Ett oväntat fel uppstod. Någonting kanske är fel på WordPress.org eller med "
971
- "denna servers konfigurering. Om du fortsätter att stöta på problem, var god "
972
- "prova <a href=\"https://wordpress.org/support/\">WordPress supportforum</a>."
973
-
974
- #: pro/core/update.php:113
975
- msgid ""
976
- "(WordPress could not establish a secure connection to WordPress.org. Please "
977
- "contact your server administrator.)"
978
- msgstr ""
979
- "(WordPress kunde inte etablera en säker uppkoppling till WordPress.org. Var "
980
- "god kontakta din serveradministratör)"
981
-
982
- #: pro/core/update.php:180
983
- #, php-format
984
- msgid ""
985
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
986
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
987
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
988
- msgstr ""
989
-
990
- #: pro/enhanced-media-library-pro.php:119
991
- msgid "ALL files belong to this item"
992
- msgstr "ALLA filer tillhör detta objekt"
993
-
994
- #: pro/enhanced-media-library-pro.php:120
995
- msgid "SOME files belong to this item"
996
- msgstr "NÅGRA filer tillhör detta objekt"
997
-
998
- #: pro/enhanced-media-library-pro.php:121
999
- msgid "NO files belong to this item"
1000
- msgstr "INGA filer tillhör detta objekt"
1001
-
1002
- #: pro/enhanced-media-library-pro.php:122
1003
- msgid "Changes saved."
1004
- msgstr "Ändringar sparade."
1005
-
1006
- #: pro/enhanced-media-library-pro.php:123
1007
- msgid "Something went wrong."
1008
- msgstr "Någonting gick fel."
1009
-
1010
- #: pro/enhanced-media-library-pro.php:126
1011
- msgid "Edit Media Files"
1012
- msgstr "Redigera Mediafiler"
1013
-
1014
- #: pro/enhanced-media-library-pro.php:151
1015
- msgid "Create a filter-based gallery"
1016
- msgstr ""
1017
-
1018
- #: pro/enhanced-media-library-pro.php:152
1019
- msgid "Create a filter-based playlist"
1020
- msgstr ""
1021
-
1022
- #: pro/enhanced-media-library-pro.php:153
1023
- msgid "Create a filter-based video playlist"
1024
- msgstr ""
1025
-
1026
- #: pro/enhanced-media-library-pro.php:231
1027
- msgid ""
1028
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1029
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1030
- "will remain intact."
1031
- msgstr ""
1032
-
1033
- #: pro/enhanced-media-library-pro.php:231
1034
- msgid "Return to Plugins"
1035
- msgstr "Återgå till Tillägg"
1036
-
1037
- #: pro/enhanced-media-library-pro.php:282
1038
- msgid ""
1039
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1040
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1041
- "be active. Please network deactivate and delete the free versions of the "
1042
- "plugin. All your data will remain intact."
1043
- msgstr ""
1044
-
1045
- #: pro/enhanced-media-library-pro.php:299
1046
- msgid ""
1047
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1048
- "be active. Please deactivate and delete the free version of the plugin. All "
1049
- "your data will remain intact."
1050
- msgstr ""
1051
-
1052
- #: pro/enhanced-media-library-pro.php:315
1053
- msgid ""
1054
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1055
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1056
- "version to be active. Please deactivate (or network deactivate) and delete "
1057
- "the free version of the plugin for this site. All your data will remail "
1058
- "intact."
1059
  msgstr ""
1060
 
1061
  #. Description of the plugin/theme
@@ -1064,361 +836,6 @@ msgid ""
1064
  msgstr ""
1065
  "Detta är ett praktiskt tillägg för de som behöver hantera många mediafiler."
1066
 
1067
- #~ msgid ""
1068
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1069
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1070
- #~ "be lost."
1071
- #~ msgstr ""
1072
- #~ "Taxonomin kommer att tas bort permanent! Dina mediafiler påverkas inte, "
1073
- #~ "men alla kopplingar till denna taxonomi kommer att gå förlorade."
1074
-
1075
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1076
- #~ msgstr "Var god välj Singular- och Plural-namn åt alla dina nya taxonomier."
1077
-
1078
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1079
- #~ msgstr "Var god välj Singular-namn åt alla dina nya taxonomier."
1080
-
1081
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1082
- #~ msgstr "Var god välj Plural-namn åt alla dina nya taxonomier."
1083
-
1084
- #~ msgid ""
1085
- #~ "There is already a taxonomy with the same name. Please chose other one."
1086
- #~ msgstr ""
1087
- #~ "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
1088
-
1089
- #~ msgid "Filter by "
1090
- #~ msgstr "Filtrera efter "
1091
-
1092
- #~ msgid "All "
1093
- #~ msgstr "Alla "
1094
-
1095
- #~ msgid "Not in "
1096
- #~ msgstr "Ej i "
1097
-
1098
- #~ msgid ""
1099
- #~ "Any click on a taxonomy checkbox during media files bulk edition will "
1100
- #~ "lead to an <strong style=\"color:red\">immediate saving</strong> of the "
1101
- #~ "data. Please, be careful! You have much greater chance to <strong style="
1102
- #~ "\"color:red\">accidentally perform wrong re-assigning</strong> of a lot "
1103
- #~ "of your media files / taxonomies with this option turned on."
1104
- #~ msgstr ""
1105
- #~ "Att klicka i en taxonomis kryssruta under bulkredigering av mediafiler "
1106
- #~ "kommer att leda till <strong style=\"color:red\">direkt nedsparning</"
1107
- #~ "strong> av data. Var god iakta försiktighet! Det är mycket högre risk för "
1108
- #~ "att <strong style=\"color:red\">av misstag felaktigt återtilldela</"
1109
- #~ "strong> flera av dina mediafiler / taxonomier om detta alternativ är "
1110
- #~ "påslaget."
1111
-
1112
- #~ msgctxt "uploaded files"
1113
- #~ msgid "All (%s)"
1114
- #~ msgid_plural "All (%s)"
1115
- #~ msgstr[0] "Alla (%s)"
1116
- #~ msgstr[1] "Alla (%s)"
1117
-
1118
- #~ msgctxt "detached files"
1119
- #~ msgid "Unattached (%s)"
1120
- #~ msgid_plural "Unattached (%s)"
1121
- #~ msgstr[0] "Ej bifogad (%s)"
1122
- #~ msgstr[1] "Ej bifogade (%s)"
1123
-
1124
- #~ msgctxt "uploaded files"
1125
- #~ msgid "Trash (%s)"
1126
- #~ msgid_plural "Trash (%s)"
1127
- #~ msgstr[0] "Släng I Papperskorgen (%s)"
1128
- #~ msgstr[1] "Släng I Papperskorgen (%s)"
1129
-
1130
- #~ msgid "Filter"
1131
- #~ msgstr "Filter"
1132
-
1133
- #~ msgid "Empty Trash"
1134
- #~ msgstr "Töm papperskorgen"
1135
-
1136
- #~ msgid "You do not have permission to upload files."
1137
- #~ msgstr "Du har inte tillstånd att ladda upp filer."
1138
-
1139
- #~ msgid "Overview"
1140
- #~ msgstr "Översikt"
1141
-
1142
- #~ msgid ""
1143
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1144
- #~ "the most recent uploads listed first."
1145
- #~ msgstr ""
1146
- #~ "Alla filer som du laddat upp listas i Mediabiblioteket, med de senast "
1147
- #~ "uppladdade först."
1148
-
1149
- #~ msgid ""
1150
- #~ "You can view your media in a simple visual grid or a list with columns. "
1151
- #~ "Switch between these views using the icons to the left above the media."
1152
- #~ msgstr ""
1153
- #~ "Du kan visa din media i ett enkelt visuellt rutnät eller som en lista med "
1154
- #~ "kolumner. Växla mellan dessa vyer med ikonerna till vänster, ovan "
1155
- #~ "mediafilerna."
1156
-
1157
- #~ msgid ""
1158
- #~ "To delete media items, click the Bulk Select button at the top of the "
1159
- #~ "screen. Select any items you wish to delete, then click the Delete "
1160
- #~ "Selected button. Clicking the Cancel Selection button takes you back to "
1161
- #~ "viewing your media."
1162
- #~ msgstr ""
1163
- #~ "För att ta bort mediaobjekt, klicka på knappen Bulkval högst upp på "
1164
- #~ "skärmen. Välj de objekt du vill ta bort, klicka sedan knappen Ta Bort "
1165
- #~ "Valda. Klick på knappen Ångra Val tar dig tillbaks till visning av media. "
1166
-
1167
- #~ msgid "Attachment Details"
1168
- #~ msgstr "Detaljer För Bilaga"
1169
-
1170
- #~ msgid ""
1171
- #~ "Clicking an item will display an Attachment Details dialog, which allows "
1172
- #~ "you to preview media and make quick edits. Any changes you make to the "
1173
- #~ "attachment details will be automatically saved."
1174
- #~ msgstr ""
1175
- #~ "Om du klickar ett objekt så visas dialogrutan Detaljer För Bilaga. Denna "
1176
- #~ "dialogruta låter dig förhandsvida media samt göra snabbredigeringar. "
1177
- #~ "Ändringar som görs i detaljer för bilaga sparas automatiskt. "
1178
-
1179
- #~ msgid ""
1180
- #~ "Use the arrow buttons at the top of the dialog, or the left and right "
1181
- #~ "arrow keys on your keyboard, to navigate between media items quickly."
1182
- #~ msgstr ""
1183
- #~ "Använd pilknapparna högst upp i dialogrutan, eller pilknapparna vänster/"
1184
- #~ "höger på ditt tangentbord, för att snabbt navigera mellan mediaobjekt."
1185
-
1186
- #~ msgid ""
1187
- #~ "You can also delete individual items and access the extended edit screen "
1188
- #~ "from the details dialog."
1189
- #~ msgstr ""
1190
- #~ "Du kan också ta bort individuella objekt och besöka skärmen för utökad "
1191
- #~ "redigering från dialogrutan för detaljer."
1192
-
1193
- #~ msgid "For more information:"
1194
- #~ msgstr "För ytterligare information:"
1195
-
1196
- #~ msgid ""
1197
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1198
- #~ "\"_blank\">Documentation on Media Library</a>"
1199
- #~ msgstr ""
1200
- #~ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target="
1201
- #~ "\"_blank\">Dokumentation för Mediabiblioteket</a>"
1202
-
1203
- #~ msgid ""
1204
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support "
1205
- #~ "Forums</a>"
1206
- #~ msgstr ""
1207
- #~ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">WordPress "
1208
- #~ "Supportforum</a>"
1209
-
1210
- #~ msgctxt "file"
1211
- #~ msgid "Add New"
1212
- #~ msgstr "Skapa Ny"
1213
-
1214
- #~ msgid ""
1215
- #~ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
1216
- #~ "php?mode=list\">Switch to the list view</a>."
1217
- #~ msgstr ""
1218
- #~ "Rutnätsvyn i Mediabiblioteket kräver JavaScript. <a href=\"upload.php?"
1219
- #~ "mode=list\">Växla till listvy</a>."
1220
-
1221
- #~ msgid "You are not allowed to edit this post."
1222
- #~ msgstr "Du har inte tillstånd att redigera detta inlägg."
1223
-
1224
- #~ msgid "You are not allowed to move this post to the trash."
1225
- #~ msgstr "Du har inte tillstånd att flytta detta inlägg till papperskorgen."
1226
-
1227
- #~ msgid "Error in moving to trash."
1228
- #~ msgstr "Fel vid flyttning till papperskorgen."
1229
-
1230
- #~ msgid "You are not allowed to move this post out of the trash."
1231
- #~ msgstr ""
1232
- #~ "Du har inte tillstånd att återställa detta inlägg från papperskorgen."
1233
-
1234
- #~ msgid "Error in restoring from trash."
1235
- #~ msgstr "Fel vid återställning från papperskorgen."
1236
-
1237
- #~ msgid "You are not allowed to delete this post."
1238
- #~ msgstr "Du har inte tillstånd att ta bort detta inlägg."
1239
-
1240
- #~ msgid "Error in deleting."
1241
- #~ msgstr "Fel vid borttagning."
1242
-
1243
- #~ msgctxt "items per page (screen options)"
1244
- #~ msgid "Media items"
1245
- #~ msgstr "Mediaobjekt"
1246
-
1247
- #~ msgid ""
1248
- #~ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
1249
- #~ "the most recent uploads listed first. You can use the Screen Options tab "
1250
- #~ "to customize the display of this screen."
1251
- #~ msgstr ""
1252
- #~ "Alla filer du laddat upp listas med de senast uppladdade filerna först i "
1253
- #~ "Mediabiblioteket. Du kan ändra detta på tabben Skärmalternativ. "
1254
-
1255
- #~ msgid ""
1256
- #~ "You can narrow the list by file type/status using the text link filters "
1257
- #~ "at the top of the screen. You also can refine the list by date using the "
1258
- #~ "dropdown menu above the media table."
1259
- #~ msgstr ""
1260
- #~ "Du kan filtrera listan efter filtyp/status med hjälp av textlänksfiltren "
1261
- #~ "överst på skärmen. Du kan också filtrera listan efter datum med hjälp av "
1262
- #~ "menyn ovanför mediatabellen."
1263
-
1264
- #~ msgid "Available Actions"
1265
- #~ msgstr "Tillgängliga Åtgärder"
1266
-
1267
- #~ msgid ""
1268
- #~ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
1269
- #~ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
1270
- #~ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
1271
- #~ "Permanently will delete the file from the media library (as well as from "
1272
- #~ "any posts to which it is currently attached). View will take you to the "
1273
- #~ "display page for that file."
1274
- #~ msgstr ""
1275
- #~ "Att föra muspekaren över en rad visar åtgärdslänkarna: Redigera, Ta Bort "
1276
- #~ "Permanent samt Visa. Om du klickar på Redigera eller på mediafilens namn "
1277
- #~ "visar en enkel skärm för redigering av filens metadata. Om du klickar på "
1278
- #~ "Ta Bort Permanent så tas filen bort från mediabiblioteket (samt även från "
1279
- #~ "inlägg som filen är bifogad till). Visa tar dig till visningssidan för "
1280
- #~ "filen."
1281
-
1282
- #~ msgid "Attaching Files"
1283
- #~ msgstr "Bifoga Filer"
1284
-
1285
- #~ msgid ""
1286
- #~ "If a media file has not been attached to any post, you will see that in "
1287
- #~ "the Attached To column, and can click on Attach File to launch a small "
1288
- #~ "popup that will allow you to search for a post and attach the file."
1289
- #~ msgstr ""
1290
- #~ "Om en mediafil ej har bifogats till något inlägg så syns detta i kolumen "
1291
- #~ "Bifogat Till. Du kan då klicka på Bifoga Fil för att öppna en liten popup "
1292
- #~ "som låter dig söka efter ett inlägg att bifoga filen till."
1293
-
1294
- #~ msgid "Search results for &#8220;%s&#8221;"
1295
- #~ msgstr "Sökresultat för &#8220;%s&#8221;"
1296
-
1297
- #~ msgid "Media attachment updated."
1298
- #~ msgstr "Mediabilaga uppdaterad."
1299
-
1300
- #~ msgid "Reattached %d attachment."
1301
- #~ msgid_plural "Reattached %d attachments."
1302
- #~ msgstr[0] "Återbifogade %d bilaga."
1303
- #~ msgstr[1] "Återbifogade %d bilagor."
1304
-
1305
- #~ msgid "Media attachment permanently deleted."
1306
- #~ msgid_plural "%d media attachments permanently deleted."
1307
- #~ msgstr[0] "Mediabilagan togs bort permanent."
1308
- #~ msgstr[1] "%d mediabilagor togs bort permanent."
1309
-
1310
- #~ msgid "Media attachment moved to the trash."
1311
- #~ msgid_plural "%d media attachments moved to the trash."
1312
- #~ msgstr[0] "Mediabilagan flyttades till papperskorgen."
1313
- #~ msgstr[1] "%d mediabilagor flyttades till papperskorgen."
1314
-
1315
- #~ msgid "Undo"
1316
- #~ msgstr "Ångra"
1317
-
1318
- #~ msgid "Media attachment restored from the trash."
1319
- #~ msgid_plural "%d media attachments restored from the trash."
1320
- #~ msgstr[0] "Mediabilagan återställdes från papperskorgen."
1321
- #~ msgstr[1] "%d mediabilagor återställdes från papperskorgen."
1322
-
1323
- #~ msgid "Media permanently deleted."
1324
- #~ msgstr "Media togs bort permanent."
1325
-
1326
- #~ msgid "Error saving media attachment."
1327
- #~ msgstr "Fel vid nedsparning av mediabilaga."
1328
-
1329
- #~ msgid "Media moved to the trash."
1330
- #~ msgstr "Media flyttat till papperskorgen."
1331
-
1332
- #~ msgid "Media restored from the trash."
1333
- #~ msgstr "Media återställd från papperskorgen."
1334
-
1335
- #~ msgid "Column in List View"
1336
- #~ msgstr "Kolumn i Listvy"
1337
-
1338
- #~ msgid "Filter in List View"
1339
- #~ msgstr "Filtrera i Listvy"
1340
-
1341
- #~ msgid "Filter in Grid View / Media Popup"
1342
- #~ msgstr "Filtrera i Rutnätsvy / Media-popup"
1343
-
1344
- #~ msgid "Remember terms order (sort)"
1345
- #~ msgstr "Kom ihåg sorteringsorning för termer (sortering)"
1346
-
1347
- #~ msgid "Show media filters for ANY Media Popup."
1348
- #~ msgstr "Visa mediafilter för ALLA Mediapopuper."
1349
-
1350
- #~ msgid ""
1351
- #~ "May be useful for those who need forcing filters for third-party plugins "
1352
- #~ "or themes."
1353
- #~ msgstr ""
1354
- #~ "Kan vara till hjälp för dem som behöver tvinga filter för "
1355
- #~ "tredjepartstillägg eller teman."
1356
-
1357
- #~ msgid "Restore default MIME Types"
1358
- #~ msgstr "Återställ standard MIME-typer"
1359
-
1360
- #~ msgid ""
1361
- #~ "Please deactivate and <strong>remove</strong> the old version prior to "
1362
- #~ "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1363
- #~ "will remain intact."
1364
- #~ msgstr ""
1365
- #~ "Var god deaktivera och <strong>ta bort</strong> den gamla versionen föra "
1366
- #~ "aktivering av <strong>Enhanced Media Library PRO</strong>. Din data "
1367
- #~ "kommer inte att påverkas."
1368
-
1369
- #~ msgid "EML PRO Updates"
1370
- #~ msgstr "EML PRO-uppdateringar"
1371
-
1372
- #~ msgid "Updates"
1373
- #~ msgstr "Uppdateringar"
1374
-
1375
- #~ msgid "Enhanced Media Library PRO License"
1376
- #~ msgstr "Enhanced Media Library PRO-licens"
1377
-
1378
- #~ msgid ""
1379
- #~ "To unlock updates, please enter your license key below. You can see your "
1380
- #~ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
1381
- #~ "Account</a>. If you don&#8217;t have a licence key, your are welcome to "
1382
- #~ "<a href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
1383
- #~ msgstr ""
1384
- #~ "För att låsa upp uppdateringar, var god ange din licensnyckel på nedan. "
1385
- #~ "Du kan se din licensnyckel i <a href=\"http://www.wpuxsolutions.com/"
1386
- #~ "account/\">Ditt Konto</a>. Om du inte har någon licensnyckel så är du "
1387
- #~ "välkommen att <a href=\"http://www.wpuxsolutions.com/pricing/\">köpa en</"
1388
- #~ "a>."
1389
-
1390
- #~ msgid ""
1391
- #~ "To unlock updates, please enter your license key on the <a href=\"%s"
1392
- #~ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
1393
- #~ "Account</a>. If you don&#8217;t have a licence key, your are welcome to "
1394
- #~ "<a href=\"%s\">purchase it</a>."
1395
- #~ msgstr ""
1396
- #~ "För att låsa upp uppdateringar, var god ange din licensnyckel på sidan "
1397
- #~ "för <a href=\"%s\">Uppdateringar</a>. Du kan se din licensnyckel i <a "
1398
- #~ "href=\"%s\">Ditt Konto</a>. Om du inte har någon licensnyckel så är du "
1399
- #~ "välkommen att <a href=\"%s\">köpa en</a>."
1400
-
1401
- #~ msgid "Expand Details"
1402
- #~ msgstr "Expandera Detaljer"
1403
-
1404
- #~ msgid "Collapse Details"
1405
- #~ msgstr "Fäll Ihop Detaljer"
1406
-
1407
- #~ msgid "Validation Failed. One or more fields below are required."
1408
- #~ msgstr ""
1409
- #~ "Validering Misslyckades. Ett eller flera fält nedan är obligatoriska."
1410
-
1411
- #~ msgid ""
1412
- #~ "The changes you made will be lost if you navigate away from this page"
1413
- #~ msgstr ""
1414
- #~ "Ändringarna du gjort kommer förloras om du navigerar bort från denna sida"
1415
-
1416
- #~ msgid ""
1417
- #~ "<strong>Enhanced Media Library PRO</strong> does not require free version "
1418
- #~ "to be active. Please deactivate and remove the free version of the plugin."
1419
- #~ msgstr ""
1420
- #~ "<strong>Enhanced Media Library PRO</strong> kräver ej att gratisversion "
1421
- #~ "är aktiv. Var god att deaktivera och ta bort gratisversionen av tillägget."
1422
-
1423
- #~ msgid "Enhanced Media Library PRO"
1424
- #~ msgstr "Enhanced Media Library PRO"
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"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.8\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
36
  msgstr[0] " <span class=\"count\">(%s)</span>"
37
  msgstr[1] " <span class=\"count\">(%s)</span>"
38
 
39
+ #: core/options-pages.php:97 core/options-pages.php:236
40
+ #: core/options-pages.php: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
 
45
+ #: core/options-pages.php:106 core/options-pages.php:208
46
  msgid "Media Library"
47
  msgstr "Mediabiblioteket"
48
 
50
  msgid "Taxonomies"
51
  msgstr "Taxonomier"
52
 
53
+ #: core/options-pages.php:124 core/options-pages.php:210
54
  msgid "MIME Types"
55
  msgstr "MIME-typer"
56
 
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"
61
 
62
+ #: core/options-pages.php:207
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
 
76
+ #: core/options-pages.php:247
77
  msgid "Image sizes"
78
  msgstr ""
79
 
80
+ #: core/options-pages.php:248
81
  msgid ""
82
  "The sizes listed below determine the maximum dimensions in pixels to use "
83
  "when adding an image to the Media Library."
84
  msgstr ""
85
 
86
+ #: core/options-pages.php:252
87
  msgid "Thumbnail size"
88
  msgstr ""
89
 
90
+ #: core/options-pages.php:254
91
  msgid "Width"
92
  msgstr ""
93
 
94
+ #: core/options-pages.php:256
95
  msgid "Height"
96
  msgstr ""
97
 
98
+ #: core/options-pages.php:259
99
  msgid ""
100
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
101
  msgstr ""
102
 
103
+ #: core/options-pages.php:264 core/options-pages.php:265
104
  msgid "Medium size"
105
  msgstr ""
106
 
107
+ #: core/options-pages.php:266 core/options-pages.php:276
108
  msgid "Max Width"
109
  msgstr ""
110
 
111
+ #: core/options-pages.php:268 core/options-pages.php:278
112
  msgid "Max Height"
113
  msgstr ""
114
 
115
+ #: core/options-pages.php:274 core/options-pages.php:275
116
  msgid "Large size"
117
  msgstr ""
118
 
119
+ #: core/options-pages.php:291
120
  msgid "Embeds"
121
  msgstr ""
122
 
123
+ #: core/options-pages.php:298
124
  msgid "Uploading Files"
125
  msgstr ""
126
 
127
+ #: core/options-pages.php:305
128
  msgid "Store uploads in this folder"
129
  msgstr ""
130
 
131
+ #: core/options-pages.php:309
132
  #, php-format
133
  msgid "Default is %s"
134
  msgstr ""
135
 
136
+ #: core/options-pages.php:315
137
  msgid "Full URL path to files"
138
  msgstr ""
139
 
140
+ #: core/options-pages.php:317
141
  msgid "Configuring this is optional. By default, it should be blank."
142
  msgstr ""
143
 
144
+ #: core/options-pages.php:325
145
  msgid "Organize my uploads into month- and year-based folders"
146
  msgstr ""
147
 
148
+ #: core/options-pages.php:397 core/options-pages.php: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
 
154
+ #: core/options-pages.php:398
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
 
178
+ #: core/options-pages.php:403
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
 
202
+ #: core/options-pages.php:410
203
  msgid "Remove Taxonomy"
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:411
207
  msgid "Taxonomy will be removed."
208
  msgstr ""
209
 
210
+ #: core/options-pages.php:412
211
  msgid ""
212
  "Taxonomy terms (categories) will remain intact in the database. If you "
213
  "create a taxonomy with the same name in the future, its terms (categories) "
214
  "will be available again."
215
  msgstr ""
216
 
217
+ #: core/options-pages.php:413
218
  msgid "Media items will remain intact."
219
  msgstr ""
220
 
221
+ #: core/options-pages.php:414
222
  msgid "Are you still sure?"
223
  msgstr ""
224
 
225
+ #: core/options-pages.php:415
226
  msgid "Yes, remove taxonomy"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:417
230
  msgid "Duplicate"
231
  msgstr ""
232
 
233
+ #: core/options-pages.php:418
234
  msgid "Taxonomy with the same name already exists. Please chose other one."
235
  msgstr ""
236
  "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
237
 
238
+ #: core/options-pages.php:420
239
  msgid "Empty Fields"
240
  msgstr ""
241
 
242
+ #: core/options-pages.php:421
243
  msgid "Please choose Singular and Plural names for all new taxomonies."
244
  msgstr ""
245
 
246
+ #: core/options-pages.php:422
247
+ msgid "Please choose Singular name for all new taxomonies."
248
  msgstr ""
249
 
250
+ #: core/options-pages.php:423
251
  msgid "Please choose Plural Name for all new taxomonies."
252
  msgstr ""
253
 
254
+ #: core/options-pages.php:425
255
  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
 
263
+ #: core/options-pages.php:428
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
 
271
+ #: core/options-pages.php:430
272
  msgid "Synchronize"
273
  msgstr ""
274
 
275
+ #: core/options-pages.php:432
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
  "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
  "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
  "%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
 
756
  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
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 ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-uk.mo DELETED
Binary file
languages/enhanced-media-library-uk.po DELETED
@@ -1,1215 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: \n"
4
- "POT-Creation-Date: 2016-04-30 12:53+0300\n"
5
- "PO-Revision-Date: 2016-04-30 12:58+0300\n"
6
- "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
7
- "Language-Team: \n"
8
- "Language: uk_UA\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.7\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
15
- "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
16
-
17
- #: core/mime-types.php:30
18
- msgid "MIME Types settings restored."
19
- msgstr "Налаштування MIME-типів відновлені."
20
-
21
- #: core/mime-types.php:39
22
- msgid "MIME Types settings saved."
23
- msgstr "Налаштування MIME-типів збережені."
24
-
25
- #: core/mime-types.php:115
26
- #, php-format
27
- msgid " <span class=\"count\">(%s)</span>"
28
- msgid_plural " <span class=\"count\">(%s)</span>"
29
- msgstr[0] "<span class=\"count\">(%s)</span>"
30
- msgstr[1] "<span class=\"count\">(%s)</span>"
31
- msgstr[2] "<span class=\"count\">(%s)</span>"
32
-
33
- #: core/options-pages.php:97 core/options-pages.php:217
34
- #: core/options-pages.php:932 core/options-pages.php:1057
35
- #: core/options-pages.php:1370 core/options-pages.php:1547
36
- msgid "Media Settings"
37
- msgstr "Налаштування медіа"
38
-
39
- #: core/options-pages.php:106 core/options-pages.php:189
40
- msgid "Media Library"
41
- msgstr "Медіа бібліотека"
42
-
43
- #: core/options-pages.php:115
44
- msgid "Taxonomies"
45
- msgstr "Таксономії"
46
-
47
- #: core/options-pages.php:124 core/options-pages.php:191
48
- msgid "MIME Types"
49
- msgstr "MIME-типи"
50
-
51
- #: core/options-pages.php:135 core/options-pages.php:136
52
- msgid "Enhanced Media Library"
53
- msgstr "Enhanced Media Library"
54
-
55
- #: core/options-pages.php:188
56
- msgid "General"
57
- msgstr "Загальні"
58
-
59
- #: core/options-pages.php:190 core/options-pages.php:1078
60
- msgid "Media Taxonomies"
61
- msgstr "Медіа таксономії"
62
-
63
- #: core/options-pages.php:214 core/options-pages.php:520
64
- #: core/options-pages.php:928 core/options-pages.php:1053
65
- #: core/options-pages.php:1366
66
- msgid "You do not have sufficient permissions to access this page."
67
- msgstr "У вас недостатньо прав для доступу до цієї сторінки."
68
-
69
- #: core/options-pages.php:228
70
- msgid "Image sizes"
71
- msgstr "Розміри зображень"
72
-
73
- #: core/options-pages.php:229
74
- msgid ""
75
- "The sizes listed below determine the maximum dimensions in pixels to use "
76
- "when adding an image to the Media Library."
77
- msgstr ""
78
- "Розміри, перераховані нижче, визначають найбільші розміри в пікселях при "
79
- "додаванні зображення до медіа бібліотеки."
80
-
81
- #: core/options-pages.php:233
82
- msgid "Thumbnail size"
83
- msgstr "Розмір мініатюри"
84
-
85
- #: core/options-pages.php:235
86
- msgid "Width"
87
- msgstr "Ширина"
88
-
89
- #: core/options-pages.php:237
90
- msgid "Height"
91
- msgstr "Висота"
92
-
93
- #: core/options-pages.php:240
94
- msgid ""
95
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
96
- msgstr ""
97
- "Обрізати мініатюри до вказаних розмірів (зазвичай мініатюри пропорційні)"
98
-
99
- #: core/options-pages.php:245 core/options-pages.php:246
100
- msgid "Medium size"
101
- msgstr "Середній розмір"
102
-
103
- #: core/options-pages.php:247 core/options-pages.php:257
104
- msgid "Max Width"
105
- msgstr "Макс. ширина"
106
-
107
- #: core/options-pages.php:249 core/options-pages.php:259
108
- msgid "Max Height"
109
- msgstr "Макс. висота"
110
-
111
- #: core/options-pages.php:255 core/options-pages.php:256
112
- msgid "Large size"
113
- msgstr "Великий розмір"
114
-
115
- #: core/options-pages.php:272
116
- msgid "Embeds"
117
- msgstr "Вбудовування"
118
-
119
- #: core/options-pages.php:279
120
- msgid "Uploading Files"
121
- msgstr "Завантаження файлів"
122
-
123
- #: core/options-pages.php:286
124
- msgid "Store uploads in this folder"
125
- msgstr "Зберігати завантаження у цю папку"
126
-
127
- #: core/options-pages.php:290
128
- #, php-format
129
- msgid "Default is %s"
130
- msgstr "За замовчуванням %s"
131
-
132
- #: core/options-pages.php:296
133
- msgid "Full URL path to files"
134
- msgstr "Повний URL-шлях до файлів"
135
-
136
- #: core/options-pages.php:298
137
- msgid "Configuring this is optional. By default, it should be blank."
138
- msgstr "Налаштування не є обов'язковим. За замовчуванням має бути пустим."
139
-
140
- #: core/options-pages.php:306
141
- msgid "Organize my uploads into month- and year-based folders"
142
- msgstr "Впорядкувати мої завантаження в теки, відповідно до місяця і року."
143
-
144
- #: core/options-pages.php:378 core/options-pages.php:1102
145
- #: core/options-pages.php:1117 core/options-pages.php:1180
146
- #: core/options-pages.php:1249
147
- msgid "Edit"
148
- msgstr "Редагувати"
149
-
150
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
151
- msgid "Close"
152
- msgstr "Закрити"
153
-
154
- #: core/options-pages.php:380 core/options-pages.php:1118
155
- #: core/options-pages.php:1181
156
- msgid "View"
157
- msgstr "Перегляд"
158
-
159
- #: core/options-pages.php:381 core/options-pages.php:1119
160
- #: core/options-pages.php:1182
161
- msgid "Update"
162
- msgstr "Оновити"
163
-
164
- #: core/options-pages.php:382 core/options-pages.php:1120
165
- #: core/options-pages.php:1183
166
- msgid "Add New"
167
- msgstr "Додати новий"
168
-
169
- #: core/options-pages.php:383 core/options-pages.php:1121
170
- #: core/options-pages.php:1184
171
- msgid "New"
172
- msgstr "Новий"
173
-
174
- #: core/options-pages.php:384
175
- msgid "Name"
176
- msgstr "Назва"
177
-
178
- #: core/options-pages.php:385 core/options-pages.php:1122
179
- #: core/options-pages.php:1185
180
- msgid "Parent"
181
- msgstr "Батьківський"
182
-
183
- #: core/options-pages.php:386 core/options-pages.php:616
184
- #: core/options-pages.php:1116 core/options-pages.php:1179
185
- #: core/taxonomies.php:365 enhanced-media-library.php:490
186
- msgid "All"
187
- msgstr "Всі"
188
-
189
- #: core/options-pages.php:387 core/options-pages.php:1123
190
- #: core/options-pages.php:1186
191
- msgid "Search"
192
- msgstr "Пошук"
193
-
194
- #: core/options-pages.php:389 core/options-pages.php:1167
195
- msgid "New Taxonomy"
196
- msgstr "Нова таксономія"
197
-
198
- #: core/options-pages.php:391
199
- msgid "Remove Taxonomy"
200
- msgstr "Видалити таксономію"
201
-
202
- #: core/options-pages.php:392
203
- msgid "Taxonomy will be removed."
204
- msgstr "Таксономію буде видалено."
205
-
206
- #: core/options-pages.php:393
207
- msgid ""
208
- "Taxonomy terms (categories) will remain intact in the database. If you "
209
- "create a taxonomy with the same name in the future, its terms (categories) "
210
- "will be available again."
211
- msgstr ""
212
- "Всі елементи таксономії (категорії) залишаться без змін у базі даних. Якщо у "
213
- "майбутньому ви створите таксономію з такою самою назвою, її елементи "
214
- "(категорії) будуть доступні знову."
215
-
216
- #: core/options-pages.php:394
217
- msgid "Media items will remain intact."
218
- msgstr "Медіафайли залишаться без змін."
219
-
220
- #: core/options-pages.php:395
221
- msgid "Are you still sure?"
222
- msgstr "Ви все ще впевнені?"
223
-
224
- #: core/options-pages.php:396
225
- msgid "Yes, remove taxonomy"
226
- msgstr "Так, видалити таксономію"
227
-
228
- #: core/options-pages.php:398
229
- msgid "Duplicate"
230
- msgstr "Дублікат"
231
-
232
- #: core/options-pages.php:399
233
- msgid "Taxonomy with the same name already exists. Please chose other one."
234
- msgstr "Таксономія з такою назвою вже існує. Будь ласка, виберіть іншу."
235
-
236
- #: core/options-pages.php:401
237
- msgid "Empty Fields"
238
- msgstr "Порожні поля"
239
-
240
- #: core/options-pages.php:402
241
- msgid "Please choose Singular and Plural names for all new taxomonies."
242
- msgstr ""
243
- "Будь ласка, оберіть назву в однині та множині для всіх нових таксономій."
244
-
245
- #: core/options-pages.php:403
246
- msgid "Please choose Singilar name for all new taxomonies."
247
- msgstr "Будь ласка, оберіть назву в однині для всіх нових таксономій."
248
-
249
- #: core/options-pages.php:404
250
- msgid "Please choose Plural Name for all new taxomonies."
251
- msgstr "Будь ласка, оберіть назву в множині для всіх нових таксономій."
252
-
253
- #: core/options-pages.php:406
254
- msgid "Ok"
255
- msgstr "Ok"
256
-
257
- #: core/options-pages.php:407 core/options-pages.php:412
258
- #: core/options-pages.php:495
259
- msgid "Cancel"
260
- msgstr "Скасувати"
261
-
262
- #: core/options-pages.php:409 pro/core/options-pages.php:165
263
- msgid "Synchronize Now"
264
- msgstr "Синхронізувати зараз"
265
-
266
- #: core/options-pages.php:410 core/options-pages.php:492
267
- msgid "This operation cannot be canceled! Are you still sure?"
268
- msgstr "Ця операція не може бути скасована! Ви досі впевнені?"
269
-
270
- #: core/options-pages.php:411
271
- msgid "Synchronize"
272
- msgstr "Синхронізувати"
273
-
274
- #: core/options-pages.php:413
275
- msgid "Synchronizing..."
276
- msgstr "Синхронізація..."
277
-
278
- #: core/options-pages.php:451
279
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
280
- msgstr ""
281
- "Попередження! Всі ваші власні MIME-типи будуть видалені в результаті цієї "
282
- "операції."
283
-
284
- #: core/options-pages.php:452
285
- msgid "Please fill into all fields."
286
- msgstr "Будь ласка, заповніть всі поля."
287
-
288
- #: core/options-pages.php:453
289
- msgid "Duplicate extensions or MIME types. Please chose other one."
290
- msgstr "Такий MIME-тип вже існує. Будь ласка, виберіть інший."
291
-
292
- #: core/options-pages.php:490 core/options-pages.php:607
293
- msgid "Complete Cleanup"
294
- msgstr "Повне очищення"
295
-
296
- #: core/options-pages.php:491
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
- "Ви збираєтеся <strong style=\"text-transform:uppercase\">видалити всі дані "
302
- "плагін</strong> із бази даних, у тому числі резервні копії."
303
-
304
- #: core/options-pages.php:493
305
- msgid "Yes, delete all data"
306
- msgstr "Так, видалити усі дані"
307
-
308
- #: core/options-pages.php:494
309
- msgid "Cleaning..."
310
- msgstr "Очищення..."
311
-
312
- #: core/options-pages.php:525
313
- msgid "Enhanced Media Library Settings"
314
- msgstr "Налаштування Enhanced Media Library"
315
-
316
- #: core/options-pages.php:535
317
- msgid "Export"
318
- msgstr "Експорт"
319
-
320
- #: core/options-pages.php:539
321
- msgid ""
322
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
323
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
324
- "configuration file. It allows you to easily import the configuration into "
325
- "another website."
326
- msgstr ""
327
- "Налаштування плагіна <strong>Медіа бібліотека</strong>, <strong>Медіа "
328
- "таксономії</strong> та <strong>MIME-типи</strong> буде експортовано до "
329
- "файлу конфігурації. Це дає змогу легко імпортувати конфігурацію до іншого "
330
- "веб-сайту."
331
-
332
- #: core/options-pages.php:544
333
- msgid "Export Plugin Settings"
334
- msgstr "Експорт налаштувань плагіну"
335
-
336
- #: core/options-pages.php:554
337
- msgid "Import"
338
- msgstr "Імпорт"
339
-
340
- #: core/options-pages.php:558
341
- msgid ""
342
- "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
343
- "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
344
- "configuration file which can be obtained by exporting the settings on "
345
- "another website using the export button above."
346
- msgstr ""
347
- "Налаштування плагіна <strong>Медіа бібліотека</strong>, <strong>Медіа "
348
- "таксономії</strong> та <strong>MIME-типи</strong> буде імпортовано з файлу "
349
- "конфігурації, який може бути отриманий шляхом експорту налаштувань на іншому "
350
- "веб-сайті за допомогою кнопки \"Експорт\" вище."
351
-
352
- #: core/options-pages.php:559
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
- "відновити поточні дані з автоматичної резервної копії, у випадку якщо ви не "
360
- "задоволені результатом імпорту."
361
-
362
- #: core/options-pages.php:566
363
- msgid "Import Plugin Settings"
364
- msgstr "Імпорт налаштувань плагіна"
365
-
366
- #: core/options-pages.php:578
367
- msgid "Restore"
368
- msgstr "Відновити"
369
-
370
- #: core/options-pages.php:584
371
- msgid "No backup available at the moment."
372
- msgstr "На даний момент резервна копія не доступна."
373
-
374
- #: core/options-pages.php:586
375
- msgid "Backup will be created automatically before any import operation."
376
- msgstr ""
377
- "Резервну копію буде створено автоматично перед будь-якою операцією імпорту."
378
-
379
- #: core/options-pages.php:590
380
- msgid ""
381
- "The backup has been automatically created before the latest import operation."
382
- msgstr ""
383
- "Резервнe копію було автоматично створений перед останньою операцією імпорту."
384
-
385
- #: core/options-pages.php:594
386
- msgid "Restore Settings from the Backup"
387
- msgstr "Відновити налаштування з резервної копії"
388
-
389
- #: core/options-pages.php:614
390
- msgid "What will be deleted:"
391
- msgstr "Що буде видалено:"
392
-
393
- #: core/options-pages.php:619
394
- msgid "All plugin options"
395
- msgstr "Всі налаштування плагіна"
396
-
397
- #: core/options-pages.php:620
398
- msgid "All plugin backups stored in database"
399
- msgstr "Всі резервні копії плагіна, збережені у базі даних"
400
-
401
- #: core/options-pages.php:624
402
- msgid "What will remain intact:"
403
- msgstr "Що лишиться, як є:"
404
-
405
- #: core/options-pages.php:625
406
- msgid "All media items"
407
- msgstr "Всі медіафайли"
408
-
409
- #: core/options-pages.php:626
410
- msgid "All taxonomies not listed above"
411
- msgstr "Всі таксономії, не перераховані вище"
412
-
413
- #: core/options-pages.php:629
414
- msgid ""
415
- "The plugin cannot delete itself because of security reason. Please delete it "
416
- "manually from plugin list after cleanup."
417
- msgstr ""
418
- "Плагін не може видалити сам себе з міркувань безпеки. Будь ласка видаліть "
419
- "його вручну зі списку плагінів після очищення."
420
-
421
- #: core/options-pages.php:631
422
- msgid ""
423
- "If you are not sure about this operation please create a backup of your "
424
- "database prior to cleanup!"
425
- msgstr ""
426
- "Якщо ви не впевнені щодо цієї операції, будь ласка, створіть резервну копію "
427
- "бази даних перед очищенням!"
428
-
429
- #: core/options-pages.php:637
430
- msgid "Delete All Data & Deactivate"
431
- msgstr "Видалити всі дані та деактивувати"
432
-
433
- #: core/options-pages.php:742
434
- msgid "Please upload a file to import settings."
435
- msgstr "Будь ласка, завантажте файл для імпорту налаштувань."
436
-
437
- #: core/options-pages.php:762
438
- msgid "Plugin settings imported."
439
- msgstr "Налаштування плагіну імпортовано."
440
-
441
- #: core/options-pages.php:809
442
- msgid "Plugin settings restored from the backup."
443
- msgstr "Налаштування плагіну відновлено з бази даних."
444
-
445
- #: core/options-pages.php:953
446
- msgid "Media Items Order"
447
- msgstr "Порядок медіафайлів"
448
-
449
- #: core/options-pages.php:960
450
- msgid "Order media items by"
451
- msgstr "Сортувати медіафайли за"
452
-
453
- #: core/options-pages.php:967 core/options-pages.php:979
454
- msgid "For media library and media popups"
455
- msgstr "Для медіа бібліотеки та спливаючих вікон"
456
-
457
- #: core/options-pages.php:968
458
- msgid "Option allows to change order by drag and drop with Custom Order value."
459
- msgstr ""
460
- "Налаштування дозволяють змінювати порядок шляхом перетягування, коли "
461
- "\"Власний порядок\" обрано."
462
-
463
- #: core/options-pages.php:973
464
- msgid "Sort order"
465
- msgstr "Порядок сортування"
466
-
467
- #: core/options-pages.php:992
468
- msgid "Media Shortcodes"
469
- msgstr "Медіа шорткоди"
470
-
471
- #: core/options-pages.php:999 core/options-pages.php:1002
472
- msgid "Enhanced media shortcodes"
473
- msgstr "Розширені медіа шорткоди"
474
-
475
- #: core/options-pages.php:1003
476
- msgid ""
477
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
478
- "upload date, and media items number limit"
479
- msgstr ""
480
- "Розширити WordPress медіа шорткоди таким чином, щоб вони розуміли такі "
481
- "параметри, як медіа таксономії, дату завантаження та обмеження кількості "
482
- "медіафайлів"
483
-
484
- #: core/options-pages.php:1004
485
- msgid "Gallery example:"
486
- msgstr "Приклад галереї:"
487
-
488
- #: core/options-pages.php:1005
489
- msgid "Audio playlist example:"
490
- msgstr "Приклад аудіо плейлиста:"
491
-
492
- #: core/options-pages.php:1006
493
- msgid "Video playlist example:"
494
- msgstr "Приклад відео плейлиста:"
495
-
496
- #: core/options-pages.php:1008
497
- #, php-format
498
- msgid ""
499
- "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
500
- msgstr "%sУвага: %s можлива несумісність з іншими плагінами або темами!"
501
-
502
- #: core/options-pages.php:1010
503
- #, php-format
504
- msgid "%sLearn more%s."
505
- msgstr "%sДетальніше%s."
506
-
507
- #: core/options-pages.php:1012
508
- #, php-format
509
- msgid ""
510
- "Please check out your gallery front-end and back-end functionality once this "
511
- "option activated. If you find an issue please inform plugin authors at %s or "
512
- "%s."
513
- msgstr ""
514
- "Будь ласка, перевірте функціональність вашої галереї для зовнішнього "
515
- "інтерфейсу, та інтерфейсу адмінки як тільки цей параметр активований. Якщо "
516
- "ви виявите проблему, будь ласка, поінформуйте авторів плагіну на %s або %s."
517
-
518
- #: core/options-pages.php:1082 core/options-pages.php:1229
519
- msgid "Assign following taxonomies to Media Library:"
520
- msgstr "Прив'язати наступні таксономії до медіа бібліотеки:"
521
-
522
- #: core/options-pages.php:1101 core/options-pages.php:1167
523
- #: core/options-pages.php:1248
524
- msgid "Assign Taxonomy"
525
- msgstr "Прив'язати таксономію"
526
-
527
- #: core/options-pages.php:1102 core/options-pages.php:1249
528
- msgid "Edit Taxonomy"
529
- msgstr "Редагувати таксономію"
530
-
531
- #: core/options-pages.php:1106 core/options-pages.php:1169
532
- msgid "Delete Taxonomy"
533
- msgstr "Видалити таксономію"
534
-
535
- #: core/options-pages.php:1111 core/options-pages.php:1174
536
- msgid "Labels"
537
- msgstr "Мітки"
538
-
539
- #: core/options-pages.php:1113 core/options-pages.php:1176
540
- msgid "Singular"
541
- msgstr "Однина"
542
-
543
- #: core/options-pages.php:1114 core/options-pages.php:1177
544
- msgid "Plural"
545
- msgstr "Множина"
546
-
547
- #: core/options-pages.php:1115 core/options-pages.php:1178
548
- msgid "Menu Name"
549
- msgstr "Назва меню"
550
-
551
- #: core/options-pages.php:1128 core/options-pages.php:1151
552
- #: core/options-pages.php:1191 core/options-pages.php:1252
553
- msgid "Settings"
554
- msgstr "Налаштування"
555
-
556
- #: core/options-pages.php:1130 core/options-pages.php:1193
557
- msgid "Taxonomy Name"
558
- msgstr "Назва таксономії"
559
-
560
- #: core/options-pages.php:1131 core/options-pages.php:1194
561
- msgid "Hierarchical"
562
- msgstr "Ієрархічна"
563
-
564
- #: core/options-pages.php:1132 core/options-pages.php:1195
565
- msgid "Column for List View"
566
- msgstr "Стовпчик для режиму \"Список\""
567
-
568
- #: core/options-pages.php:1133 core/options-pages.php:1153
569
- #: core/options-pages.php:1196 core/options-pages.php:1254
570
- msgid "Filter for List View"
571
- msgstr "Фільтр для режиму \"Список\""
572
-
573
- #: core/options-pages.php:1134 core/options-pages.php:1154
574
- #: core/options-pages.php:1197 core/options-pages.php:1255
575
- msgid "Filter for Grid View / Media Popup"
576
- msgstr "Фільтр для режиму \"Сітка\" / спливаючого вікна"
577
-
578
- #: core/options-pages.php:1135 core/options-pages.php:1155
579
- #: core/options-pages.php:1198 core/options-pages.php:1256
580
- msgid "Edit in Media Popup"
581
- msgstr "Редагувати у спливаючому вікні"
582
-
583
- #: core/options-pages.php:1136 core/options-pages.php:1199
584
- msgid "Show in Nav Menu"
585
- msgstr "Показати в меню"
586
-
587
- #: core/options-pages.php:1137 core/options-pages.php:1200
588
- msgid "Remember Terms Order (sort)"
589
- msgstr "Пам'ятати порядок елементів (параметр sort)"
590
-
591
- #: core/options-pages.php:1138 core/options-pages.php:1201
592
- msgid "Show in REST"
593
- msgstr "Показати у REST"
594
-
595
- #: core/options-pages.php:1139 core/options-pages.php:1202
596
- msgid "Rewrite Slug"
597
- msgstr "Переписати слаґ"
598
-
599
- #: core/options-pages.php:1140 core/options-pages.php:1203
600
- msgid "Slug with Front"
601
- msgstr "Слаґ з передньою частиною"
602
-
603
- #: core/options-pages.php:1215
604
- msgid "Add New Taxonomy"
605
- msgstr "Додати нову таксономію"
606
-
607
- #: core/options-pages.php:1225
608
- msgid "Non-Media Taxonomies"
609
- msgstr "Не-медіа таксономії"
610
-
611
- #: core/options-pages.php:1286
612
- msgid "Options"
613
- msgstr "Налаштування"
614
-
615
- #: core/options-pages.php:1296 core/options-pages.php:1299
616
- msgid "Taxonomy archive pages"
617
- msgstr "Архіви для таксономій"
618
-
619
- #: core/options-pages.php:1300
620
- msgid "Turn on media taxonomy archive pages on the front-end"
621
- msgstr "Увімкнути архіви для таксономій для зовнішнього інтерфейсу"
622
-
623
- #: core/options-pages.php:1301
624
- msgid ""
625
- "Re-save your permalink settings after this option change to make it work."
626
- msgstr ""
627
- "Для того, щоб це працюівало, збережіть повторно ваші налаштування постійних "
628
- "посилань після того, як цей параметр був змінений."
629
-
630
- #: core/options-pages.php:1307 core/options-pages.php:1310
631
- msgid "Assign all like hierarchical"
632
- msgstr "Призначати всі як ієрархічні"
633
-
634
- #: core/options-pages.php:1311
635
- msgid ""
636
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
637
- msgstr ""
638
- "Показувати не-ієрархічні таксономії, як ієрархічні у режимі \"Сітка\" / "
639
- "спливаючому вікні"
640
-
641
- #: core/options-pages.php:1317 core/options-pages.php:1320
642
- msgid "Force filters"
643
- msgstr "Фільтри примусово"
644
-
645
- #: core/options-pages.php:1321
646
- msgid "Show media filters for ANY Media Popup"
647
- msgstr "Показувати медіа фільтри для будь-якого спливаючого вікна"
648
-
649
- #: core/options-pages.php:1322
650
- msgid "Try this if filters are not shown for third-party plugins or themes."
651
- msgstr ""
652
- "Спробуйте цей спосіб, якщо фільтри не показуються для стороннього плагіну "
653
- "або теми."
654
-
655
- #: core/options-pages.php:1376
656
- msgid "Add New MIME Type"
657
- msgstr "Додати новий MIME-тип"
658
-
659
- #: core/options-pages.php:1394 core/options-pages.php:1449
660
- msgid "Extension"
661
- msgstr "Розширення файлу"
662
-
663
- #: core/options-pages.php:1395 core/options-pages.php:1450
664
- msgid "MIME Type"
665
- msgstr "MIME-тип"
666
-
667
- #: core/options-pages.php:1396 core/options-pages.php:1451
668
- msgid "Singular Label"
669
- msgstr "Мітка у однині"
670
-
671
- #: core/options-pages.php:1397 core/options-pages.php:1452
672
- msgid "Plural Label"
673
- msgstr "Мітка у множині"
674
-
675
- #: core/options-pages.php:1398 core/options-pages.php:1428
676
- #: core/options-pages.php:1441 core/options-pages.php:1453
677
- msgid "Add Filter"
678
- msgstr "Додати фільтр"
679
-
680
- #: core/options-pages.php:1399 core/options-pages.php:1429
681
- #: core/options-pages.php:1442 core/options-pages.php:1454
682
- msgid "Allow Upload"
683
- msgstr "Дозволити завантаження"
684
-
685
- #: core/options-pages.php:1443
686
- msgid "Delete MIME Type"
687
- msgstr "Видалити MIME-тип"
688
-
689
- #: core/options-pages.php:1460
690
- msgid "Restore WordPress default MIME Types"
691
- msgstr "Відновити стандартні MIME-типи WordPress-у"
692
-
693
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
694
- msgid "Save Changes"
695
- msgstr "Зберегти зміни"
696
-
697
- #: core/options-pages.php:1499
698
- msgid "Changelog"
699
- msgstr "Список змін"
700
-
701
- #: core/options-pages.php:1500
702
- msgid "What's new in"
703
- msgstr "Що новенького у"
704
-
705
- #: core/options-pages.php:1500
706
- msgid "version"
707
- msgstr "версії"
708
-
709
- #: core/options-pages.php:1503
710
- msgid "More features under the hood"
711
- msgstr "Більше функцій під капотом"
712
-
713
- #: core/options-pages.php:1505
714
- msgid "Support"
715
- msgstr "Підтримка"
716
-
717
- #: core/options-pages.php:1506
718
- msgid "Feel free to ask for help on"
719
- msgstr "Не соромтеся просити допомоги на"
720
-
721
- #: core/options-pages.php:1506
722
- msgid "Support is free for both versions of the plugin."
723
- msgstr "Підтримка надається безкоштовно для обох версій плагіна."
724
-
725
- #: core/options-pages.php:1508
726
- msgid "Plugin rating"
727
- msgstr "Рейтинг плагіна"
728
-
729
- #: core/options-pages.php:1509
730
- msgid "Please"
731
- msgstr "Будь ласка"
732
-
733
- #: core/options-pages.php:1509
734
- msgid "vote for the plugin"
735
- msgstr "проголосуйте за плагін"
736
-
737
- #: core/options-pages.php:1509
738
- msgid "Thanks!"
739
- msgstr "Дякуємо!"
740
-
741
- #: core/options-pages.php:1511
742
- msgid "Other plugins you may find useful"
743
- msgstr "Інші корисні плагіни"
744
-
745
- #: core/options-pages.php:1550
746
- msgid "Utility"
747
- msgstr ""
748
-
749
- #: core/options-pages.php:1571
750
- msgid "Vote!"
751
- msgstr "Голосуйте!"
752
-
753
- #: core/taxonomies.php:101
754
- msgid "Media Taxonomies settings saved."
755
- msgstr "Налаштування таксономій збережені."
756
-
757
- #: core/taxonomies.php:159
758
- msgid "Media Library settings saved."
759
- msgstr "Налаштування медіа бібліотеки збережені."
760
-
761
- #: core/taxonomies.php:358 core/taxonomies.php:364
762
- #: enhanced-media-library.php:489
763
- msgid "Filter by"
764
- msgstr "Фільтрувати за"
765
-
766
- #: core/taxonomies.php:366 enhanced-media-library.php:491
767
- msgid "Not in"
768
- msgstr "Не в"
769
-
770
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
771
- msgid "All Uncategorized"
772
- msgstr "Всі без категорій"
773
-
774
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
775
- msgid "Reset All Filters"
776
- msgstr "Скинути всі фільтри"
777
-
778
- #: enhanced-media-library.php:523
779
- msgid "Uploaded to post #"
780
- msgstr "Завантажені до посту #"
781
-
782
- #: enhanced-media-library.php:524
783
- msgid "Based On"
784
- msgstr "На основі"
785
-
786
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
787
- msgid "Media Categories"
788
- msgstr "Медіа категорії"
789
-
790
- #: enhanced-media-library.php:570
791
- msgid "Media Category"
792
- msgstr "Медіа категорія"
793
-
794
- #: enhanced-media-library.php:572
795
- msgid "All Media Categories"
796
- msgstr "Всі медіа категорії"
797
-
798
- #: enhanced-media-library.php:573
799
- msgid "Edit Media Category"
800
- msgstr "Редагувати медіа категорію"
801
-
802
- #: enhanced-media-library.php:574
803
- msgid "View Media Category"
804
- msgstr "Переглянуи медіа категорію"
805
-
806
- #: enhanced-media-library.php:575
807
- msgid "Update Media Category"
808
- msgstr "Оновити медіа категорію"
809
-
810
- #: enhanced-media-library.php:576
811
- msgid "Add New Media Category"
812
- msgstr "Додати нову медіа категорію"
813
-
814
- #: enhanced-media-library.php:577
815
- msgid "New Media Category Name"
816
- msgstr "Назва нової медіа категорії"
817
-
818
- #: enhanced-media-library.php:578
819
- msgid "Parent Media Category"
820
- msgstr "Батьківська медіа категорія"
821
-
822
- #: enhanced-media-library.php:579
823
- msgid "Parent Media Category:"
824
- msgstr "Батьківська медіа категорія:"
825
-
826
- #: enhanced-media-library.php:580
827
- msgid "Search Media Categories"
828
- msgstr "Шукати медіа категорії"
829
-
830
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
831
- msgid "Remove"
832
- msgstr "Видалити"
833
-
834
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
835
- msgid "Deselect"
836
- msgstr "Зняти виділення"
837
-
838
- #: pro/core/bulk-edit.php:105
839
- msgid "Caption this image&hellip;"
840
- msgstr "Підпис для цього фото&hellip;"
841
-
842
- #: pro/core/bulk-edit.php:109
843
- msgid "Describe this video&hellip;"
844
- msgstr "Опишіть це відео&hellip;"
845
-
846
- #: pro/core/bulk-edit.php:111
847
- msgid "Describe this audio file&hellip;"
848
- msgstr "Опишіть це аудіо&hellip;"
849
-
850
- #: pro/core/bulk-edit.php:113
851
- msgid "Describe this media file&hellip;"
852
- msgstr "Опишіть цей медіафайл&hellip;"
853
-
854
- #: pro/core/bulk-edit.php:122
855
- msgid "Attachments Details"
856
- msgstr "Деталі медіафайлів"
857
-
858
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
859
- msgid "Select All"
860
- msgstr "Виділити всі"
861
-
862
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
863
- msgid "Edit Selection"
864
- msgstr "Редагувати виділення"
865
-
866
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
867
- msgid "Deselect All"
868
- msgstr "Зняти виділення з усіх"
869
-
870
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
871
- msgid "Delete Selected"
872
- msgstr "Видалити вибране"
873
-
874
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
875
- msgid "Order By"
876
- msgstr "Сортувати за"
877
-
878
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
879
- msgid "Date"
880
- msgstr "Дата"
881
-
882
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
883
- msgid "Title"
884
- msgstr "Заголовок"
885
-
886
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
887
- msgid "Custom Order"
888
- msgstr "Власний порядок"
889
-
890
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
891
- msgid "Random"
892
- msgstr "Випадковий"
893
-
894
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
895
- msgid "Order"
896
- msgstr "Порядок"
897
-
898
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
899
- msgid "Ascending"
900
- msgstr "Зростаючий"
901
-
902
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
903
- msgid "Descending"
904
- msgstr "Спадаючий"
905
-
906
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
907
- msgid "Limit"
908
- msgstr "Обмеження"
909
-
910
- #: pro/core/options-pages.php:78
911
- msgid "Your license has been deactivated."
912
- msgstr "Вашу ліцензію було деактивовано."
913
-
914
- #: pro/core/options-pages.php:88
915
- msgid "Please check if your license key is correct and try again."
916
- msgstr ""
917
- "Будь ласка, перевірте, чи ваш ліцензійний ключ є правильним, та повторіть "
918
- "спробу."
919
-
920
- #: pro/core/options-pages.php:101
921
- msgid ""
922
- "Wrong license key or a server error occured. Please check your license key "
923
- "and try again."
924
- msgstr ""
925
- "Неправильний ліцензійний ключ або сталася помилка сервера. Будь ласка, "
926
- "перевірте ваш ліцензійний ключ і повторіть спробу."
927
-
928
- #: pro/core/options-pages.php:111
929
- msgid "You license has been activated."
930
- msgstr "Вашу ліцензію було активовано."
931
-
932
- #: pro/core/options-pages.php:164
933
- #, php-format
934
- msgid "Auto-assign media items to parent %s %s on upload"
935
- msgstr "Призначати медіафайли до батьківського %s %s під час завантаження"
936
-
937
- #: pro/core/options-pages.php:165
938
- #, php-format
939
- msgid ""
940
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
941
- "attached to a %s will be assigned to %s of their parent %s. Currently "
942
- "assigned %s will not be saved. Media items that are not attached to any %s "
943
- "will not be affected."
944
- msgstr ""
945
- "%sУвага:%s Результатом натискання кнопки \"Синхронізувати зараз\" буде те, "
946
- "що всі медіафайли, призначені до %s будуть також призначені до %s їхнього "
947
- "батківського %s. Ті %s, що є призначені в даний час, не будуть збережені. Це "
948
- "не впливатиме на медіафайли, які не є призначені до будь-якого %s."
949
-
950
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
951
- msgid "Bulk Edit"
952
- msgstr "Пакетне редагування"
953
-
954
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
955
- msgid "Turn off 'Save Changes' button"
956
- msgstr "Вимкнути кнопку \"Зберегти зміни\""
957
-
958
- #: pro/core/options-pages.php:200
959
- msgid "Save changes on the fly"
960
- msgstr "Зберегати зміни на льоту"
961
-
962
- #: pro/core/options-pages.php:201
963
- msgid ""
964
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
965
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
966
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
967
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
968
- "files / taxonomies with this option turned on."
969
- msgstr ""
970
- "Будь-який клік на чекбокс таксономії під час пакетного редагування "
971
- "медіафайлів призведе до <strong style=\"color:red\">негайного збереження</"
972
- "strong> даних. Будь ласка, будьте обережні! У вас є набагато більше шансів "
973
- "<strong style=\"color:red\">випадково здійснити неправильне пере-"
974
- "призначення</strong> для багатьох ваших медіафайлів / таксономій, коли ця "
975
- "опція ввімкнена."
976
-
977
- #: pro/core/options-pages.php:202
978
- msgid ""
979
- "Strongly NOT recommended option if you work with more than hundred of files "
980
- "at a time."
981
- msgstr ""
982
- "Настійно не рекомендована опція, якщо ви працюєте з більш ніж сотнею файлів "
983
- "за один раз."
984
-
985
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
986
- msgid "License Key"
987
- msgstr "Ліцензійний ключ"
988
-
989
- #: pro/core/options-pages.php:252
990
- #, php-format
991
- msgid ""
992
- "To unlock updates please enter your license key below. You can get your "
993
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
994
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
995
- msgstr ""
996
- "Щоб розблокувати оновлення, будь ласка, введіть свій ліцензійний ключ нижче. "
997
- "Ви можете отримати ліцензійний ключ у <a href=\"%s\">Вашому акаунті</a>. "
998
- "Якщо ви не маєте ліцензію, ми щиро запрошуємо вас <a href=\"%s\">придбати "
999
- "її</a>."
1000
-
1001
- #: pro/core/options-pages.php:262
1002
- msgid "Activate License"
1003
- msgstr "Активувати ліцензію"
1004
-
1005
- #: pro/core/options-pages.php:269
1006
- msgid "Your license is active!"
1007
- msgstr "Вашу ліцензію активовано!"
1008
-
1009
- #: pro/core/options-pages.php:273
1010
- msgid "Deactivate License"
1011
- msgstr "Деактивувати ліцензію"
1012
-
1013
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
1014
- msgid ""
1015
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
1016
- "this server&#8217;s configuration. If you continue to have problems, please "
1017
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
1018
- msgstr ""
1019
- "Сталася неочікувана помилка. Щось може бути не так з WordPress.org або "
1020
- "конфігурацією цього сервера. Якщо ви постійно маєте таку проблему, будь "
1021
- "ласка, спробуйте <a href=«https://wordpress.org/support/«>форум підтримки.</"
1022
- "a>"
1023
-
1024
- #: pro/core/update.php:113
1025
- msgid ""
1026
- "(WordPress could not establish a secure connection to WordPress.org. Please "
1027
- "contact your server administrator.)"
1028
- msgstr ""
1029
- "(WordPress не вдалося встановити безпечне підключення до WordPress.org. Будь "
1030
- "ласка, зверніться до адміністратора сервера.)"
1031
-
1032
- #: pro/core/update.php:180
1033
- #, php-format
1034
- msgid ""
1035
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
1036
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
1037
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
1038
- msgstr ""
1039
- "Щоб розблокувати оновлення, будь-ласка, <a href=\"%s\">активуйте вашу "
1040
- "ліцензію</a>. Ви можете отримати ліцензійний ключ у <a href=\"%s\">Вашому "
1041
- "акаунті</a>. Якщо ви не маєте ліцензію, ми щиро запрошуємо вас <a href=\"%s"
1042
- "\">придбати її</a>."
1043
-
1044
- #: pro/enhanced-media-library-pro.php:119
1045
- msgid "ALL files belong to this item"
1046
- msgstr "ВСІ файли, що належать до цього елемента"
1047
-
1048
- #: pro/enhanced-media-library-pro.php:120
1049
- msgid "SOME files belong to this item"
1050
- msgstr "ДЕЯКІ файли, що належать до цього елемента"
1051
-
1052
- #: pro/enhanced-media-library-pro.php:121
1053
- msgid "NO files belong to this item"
1054
- msgstr "НЕМАЄ файлві, що належать до цього елемента"
1055
-
1056
- #: pro/enhanced-media-library-pro.php:122
1057
- msgid "Changes saved."
1058
- msgstr "Зміни збережено."
1059
-
1060
- #: pro/enhanced-media-library-pro.php:123
1061
- msgid "Something went wrong."
1062
- msgstr "Щось пішло не так."
1063
-
1064
- #: pro/enhanced-media-library-pro.php:126
1065
- msgid "Edit Media Files"
1066
- msgstr "Редагувати медіафайли"
1067
-
1068
- #: pro/enhanced-media-library-pro.php:151
1069
- msgid "Create a filter-based gallery"
1070
- msgstr "Створити галерею на основі фільтрів"
1071
-
1072
- #: pro/enhanced-media-library-pro.php:152
1073
- msgid "Create a filter-based playlist"
1074
- msgstr "Створити плейлист на основі фільтрів"
1075
-
1076
- #: pro/enhanced-media-library-pro.php:153
1077
- msgid "Create a filter-based video playlist"
1078
- msgstr "Створити відео-плейлист на основі фільтрів"
1079
-
1080
- #: pro/enhanced-media-library-pro.php:231
1081
- msgid ""
1082
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1083
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1084
- "will remain intact."
1085
- msgstr ""
1086
- "Будь ласка деактивуйте та <strong>видаліть</strong> стару безкоштовну версію "
1087
- "до активації <strong>Enhanced Media Library PRO</strong> . Всі ваші дані "
1088
- "лишаться недоторканими."
1089
-
1090
- #: pro/enhanced-media-library-pro.php:231
1091
- msgid "Return to Plugins"
1092
- msgstr "Повернутися до плагінів"
1093
-
1094
- #: pro/enhanced-media-library-pro.php:282
1095
- msgid ""
1096
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1097
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1098
- "be active. Please network deactivate and delete the free versions of the "
1099
- "plugin. All your data will remain intact."
1100
- msgstr ""
1101
- "Обидві безкоштовна і PRO версії Enhanced Media Library активовані у мережі. "
1102
- "<strong>Enhanced Media Library PRO</strong> не потребує безкоштовної версії "
1103
- "для роботи. Будь ласка, деактивуйте та видаліть безкоштовну версію плагіна. "
1104
- "Всі ваші дані лишаться недоторканими."
1105
-
1106
- #: pro/enhanced-media-library-pro.php:299
1107
- msgid ""
1108
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1109
- "be active. Please deactivate and delete the free version of the plugin. All "
1110
- "your data will remain intact."
1111
- msgstr ""
1112
- "<strong>Enhanced Media Library PRO</strong> не потребує безкоштовної версії "
1113
- "для роботи. Будь ласка, деактивуйте та видаліть безкоштовну версію плагіна. "
1114
- "Всі ваші дані лишаться недоторканими."
1115
-
1116
- #: pro/enhanced-media-library-pro.php:315
1117
- msgid ""
1118
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1119
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1120
- "version to be active. Please deactivate (or network deactivate) and delete "
1121
- "the free version of the plugin for this site. All your data will remail "
1122
- "intact."
1123
- msgstr ""
1124
- "Обидві безкоштовна і PRO версії Enhanced Media Library активовані на цьому "
1125
- "сайті. <strong>Enhanced Media Library PRO</strong> не потребує безкоштовної "
1126
- "версії для роботи. Будь ласка, деактивуйте та видаліть безкоштовну версію "
1127
- "плагіна. Всі ваші дані лишаться недоторканими."
1128
-
1129
- #. Description of the plugin/theme
1130
- msgid ""
1131
- "This plugin will be handy for those who need to manage a lot of media files."
1132
- msgstr ""
1133
- "Плагін буде корисний для того, кому потрібно вправлятися з багатьма "
1134
- "медіафайлами."
1135
-
1136
- #~ msgid ""
1137
- #~ "Taxonomy will be deleted permanently! Your media files will remain "
1138
- #~ "intacted, but all the connections with this taxonomy and its terms will "
1139
- #~ "be lost."
1140
- #~ msgstr ""
1141
- #~ "Таксономію буде видалено без можливості відновлення! Ваші медіафайли "
1142
- #~ "залишаться незмінні, але всі зв'язки з цією таксономією та її елементами "
1143
- #~ "будуть втрачені."
1144
-
1145
- #~ msgid "Please choose Singular and Plural names for all your new taxomonies."
1146
- #~ msgstr ""
1147
- #~ "Будь ласка, виберіть назву в однині та множині для всіх своїх нових "
1148
- #~ "таксономій."
1149
-
1150
- #~ msgid "Please choose Singilar name for all your new taxomonies."
1151
- #~ msgstr ""
1152
- #~ "Будь ласка, виберіть назву в однині для всіх своїх нових таксономій."
1153
-
1154
- #~ msgid "Please choose Plural Name for all your new taxomonies."
1155
- #~ msgstr ""
1156
- #~ "Будь ласка, виберіть назву в множині для всіх своїх нових таксономій."
1157
-
1158
- #~ msgid ""
1159
- #~ "Both FREE and PRO versions of the Enhanced Media Library are network "
1160
- #~ "active. <strong>Enhanced Media Library PRO</strong> does not require free "
1161
- #~ "version to be active. Please network deactivate and delete the free "
1162
- #~ "versions of the plugin. All your data will remail intact."
1163
- #~ msgstr ""
1164
- #~ "Обидві безкоштовна і PRO версії Enhanced Media Library активовані у "
1165
- #~ "мережі. <strong>Enhanced Media Library PRO</strong> не потребує "
1166
- #~ "безкоштовної версіяї. Будь ласка, деактивуйте та видаліть безкоштовну "
1167
- #~ "версію плагіна. Ваші дані будуть remail недоторканим."
1168
-
1169
- #~ msgid ""
1170
- #~ "Gallery example: [gallery media_category=\"5\" limit=\"10\" monthnum="
1171
- #~ "\"12\" year=\"2015\"]"
1172
- #~ msgstr ""
1173
- #~ "Gallery example: [gallery media_category=\"5\" limit=\"10\" monthnum="
1174
- #~ "\"12\" year=\"2015\"]"
1175
-
1176
- #~ msgid ""
1177
- #~ "Enhance WordPress media shortcodes to make them understand media "
1178
- #~ "taxonomies, uploade date, and media items number limit"
1179
- #~ msgstr "Розширити WordPress медіа шорткоди, щоб"
1180
-
1181
- #~ msgid ""
1182
- #~ "All plugin settings will be overriden by the import. You will have a "
1183
- #~ "chance to restore current data from an automatic backup in case you are "
1184
- #~ "not satisfied with the result of the import."
1185
- #~ msgstr ""
1186
- #~ "Всі налаштування плагіна будуть перевизначені через імпорт. У вас є "
1187
- #~ "можливість відновити поточні дані з автоматичної резервної копії, у "
1188
- #~ "випадку якщо ви не задоволені результатом імпорту."
1189
-
1190
- #~ msgid ""
1191
- #~ "The backup had been automatically created before the latest import "
1192
- #~ "opetarion."
1193
- #~ msgstr ""
1194
- #~ "Резервну копію було створено автоматично перед останнім opetarion імпорту."
1195
-
1196
- #~ msgid "This operation cannot be canceled. Are you still sure?"
1197
- #~ msgstr "Ця операція не може бути скасована. Ви досі впевнені?"
1198
-
1199
- #~ msgid "The operation cannot be canceled! Are you still sure?"
1200
- #~ msgstr "Ця операція не може бути скасована! Ви досі впевнені?"
1201
-
1202
- #~ msgid ""
1203
- #~ "The plugin settings <strong>Media Settings > Taxonomies</strong> and "
1204
- #~ "<strong>Media Settings > MIME Types</strong> will be exported to a "
1205
- #~ "configuration file. It allows you to easily import the configuration into "
1206
- #~ "another website."
1207
- #~ msgstr ""
1208
- #~ "Налаштування плагіна <strong>медіа настройки > таксономії</strong> і "
1209
- #~ "<strong>медіа настройки > типи MIME</strong> буде експортовано до файлу "
1210
- #~ "конфігурації. Це дає змогу легко імпортувати конфігурації в інший веб-"
1211
- #~ "сайт."
1212
-
1213
- #~ msgid ""
1214
- #~ "There is already a taxonomy with the same name. Please chose other one."
1215
- #~ msgstr "Таксономія з такою назвою вже існує. Будь ласка, виберіть іншу."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2016-04-30 12:48+0300\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.7\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: enhanced-media-library.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -35,13 +35,13 @@ msgid_plural " <span class=\"count\">(%s)</span>"
35
  msgstr[0] ""
36
  msgstr[1] ""
37
 
38
- #: core/options-pages.php:97 core/options-pages.php:217
39
- #: core/options-pages.php:932 core/options-pages.php:1057
40
- #: core/options-pages.php:1370 core/options-pages.php:1547
41
  msgid "Media Settings"
42
  msgstr ""
43
 
44
- #: core/options-pages.php:106 core/options-pages.php:189
45
  msgid "Media Library"
46
  msgstr ""
47
 
@@ -49,269 +49,270 @@ msgstr ""
49
  msgid "Taxonomies"
50
  msgstr ""
51
 
52
- #: core/options-pages.php:124 core/options-pages.php:191
53
  msgid "MIME Types"
54
  msgstr ""
55
 
 
56
  #: core/options-pages.php:135 core/options-pages.php:136
57
  msgid "Enhanced Media Library"
58
  msgstr ""
59
 
60
- #: core/options-pages.php:188
61
  msgid "General"
62
  msgstr ""
63
 
64
- #: core/options-pages.php:190 core/options-pages.php:1078
65
  msgid "Media Taxonomies"
66
  msgstr ""
67
 
68
- #: core/options-pages.php:214 core/options-pages.php:520
69
- #: core/options-pages.php:928 core/options-pages.php:1053
70
- #: core/options-pages.php:1366
71
  msgid "You do not have sufficient permissions to access this page."
72
  msgstr ""
73
 
74
- #: core/options-pages.php:228
75
  msgid "Image sizes"
76
  msgstr ""
77
 
78
- #: core/options-pages.php:229
79
  msgid ""
80
  "The sizes listed below determine the maximum dimensions in pixels to use "
81
  "when adding an image to the Media Library."
82
  msgstr ""
83
 
84
- #: core/options-pages.php:233
85
  msgid "Thumbnail size"
86
  msgstr ""
87
 
88
- #: core/options-pages.php:235
89
  msgid "Width"
90
  msgstr ""
91
 
92
- #: core/options-pages.php:237
93
  msgid "Height"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:240
97
  msgid ""
98
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
99
  msgstr ""
100
 
101
- #: core/options-pages.php:245 core/options-pages.php:246
102
  msgid "Medium size"
103
  msgstr ""
104
 
105
- #: core/options-pages.php:247 core/options-pages.php:257
106
  msgid "Max Width"
107
  msgstr ""
108
 
109
- #: core/options-pages.php:249 core/options-pages.php:259
110
  msgid "Max Height"
111
  msgstr ""
112
 
113
- #: core/options-pages.php:255 core/options-pages.php:256
114
  msgid "Large size"
115
  msgstr ""
116
 
117
- #: core/options-pages.php:272
118
  msgid "Embeds"
119
  msgstr ""
120
 
121
- #: core/options-pages.php:279
122
  msgid "Uploading Files"
123
  msgstr ""
124
 
125
- #: core/options-pages.php:286
126
  msgid "Store uploads in this folder"
127
  msgstr ""
128
 
129
- #: core/options-pages.php:290
130
  #, php-format
131
  msgid "Default is %s"
132
  msgstr ""
133
 
134
- #: core/options-pages.php:296
135
  msgid "Full URL path to files"
136
  msgstr ""
137
 
138
- #: core/options-pages.php:298
139
  msgid "Configuring this is optional. By default, it should be blank."
140
  msgstr ""
141
 
142
- #: core/options-pages.php:306
143
  msgid "Organize my uploads into month- and year-based folders"
144
  msgstr ""
145
 
146
- #: core/options-pages.php:378 core/options-pages.php:1102
147
- #: core/options-pages.php:1117 core/options-pages.php:1180
148
- #: core/options-pages.php:1249
149
  msgid "Edit"
150
  msgstr ""
151
 
152
- #: core/options-pages.php:379 pro/enhanced-media-library-pro.php:125
153
  msgid "Close"
154
  msgstr ""
155
 
156
- #: core/options-pages.php:380 core/options-pages.php:1118
157
- #: core/options-pages.php:1181
158
  msgid "View"
159
  msgstr ""
160
 
161
- #: core/options-pages.php:381 core/options-pages.php:1119
162
- #: core/options-pages.php:1182
163
  msgid "Update"
164
  msgstr ""
165
 
166
- #: core/options-pages.php:382 core/options-pages.php:1120
167
- #: core/options-pages.php:1183
168
  msgid "Add New"
169
  msgstr ""
170
 
171
- #: core/options-pages.php:383 core/options-pages.php:1121
172
- #: core/options-pages.php:1184
173
  msgid "New"
174
  msgstr ""
175
 
176
- #: core/options-pages.php:384
177
  msgid "Name"
178
  msgstr ""
179
 
180
- #: core/options-pages.php:385 core/options-pages.php:1122
181
- #: core/options-pages.php:1185
182
  msgid "Parent"
183
  msgstr ""
184
 
185
- #: core/options-pages.php:386 core/options-pages.php:616
186
- #: core/options-pages.php:1116 core/options-pages.php:1179
187
- #: core/taxonomies.php:365 enhanced-media-library.php:490
188
  msgid "All"
189
  msgstr ""
190
 
191
- #: core/options-pages.php:387 core/options-pages.php:1123
192
- #: core/options-pages.php:1186
193
  msgid "Search"
194
  msgstr ""
195
 
196
- #: core/options-pages.php:389 core/options-pages.php:1167
197
  msgid "New Taxonomy"
198
  msgstr ""
199
 
200
- #: core/options-pages.php:391
201
  msgid "Remove Taxonomy"
202
  msgstr ""
203
 
204
- #: core/options-pages.php:392
205
  msgid "Taxonomy will be removed."
206
  msgstr ""
207
 
208
- #: core/options-pages.php:393
209
  msgid ""
210
  "Taxonomy terms (categories) will remain intact in the database. If you "
211
  "create a taxonomy with the same name in the future, its terms (categories) "
212
  "will be available again."
213
  msgstr ""
214
 
215
- #: core/options-pages.php:394
216
  msgid "Media items will remain intact."
217
  msgstr ""
218
 
219
- #: core/options-pages.php:395
220
  msgid "Are you still sure?"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:396
224
  msgid "Yes, remove taxonomy"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:398
228
  msgid "Duplicate"
229
  msgstr ""
230
 
231
- #: core/options-pages.php:399
232
  msgid "Taxonomy with the same name already exists. Please chose other one."
233
  msgstr ""
234
 
235
- #: core/options-pages.php:401
236
  msgid "Empty Fields"
237
  msgstr ""
238
 
239
- #: core/options-pages.php:402
240
  msgid "Please choose Singular and Plural names for all new taxomonies."
241
  msgstr ""
242
 
243
- #: core/options-pages.php:403
244
- msgid "Please choose Singilar name for all new taxomonies."
245
  msgstr ""
246
 
247
- #: core/options-pages.php:404
248
  msgid "Please choose Plural Name for all new taxomonies."
249
  msgstr ""
250
 
251
- #: core/options-pages.php:406
252
  msgid "Ok"
253
  msgstr ""
254
 
255
- #: core/options-pages.php:407 core/options-pages.php:412
256
- #: core/options-pages.php:495
257
  msgid "Cancel"
258
  msgstr ""
259
 
260
- #: core/options-pages.php:409 pro/core/options-pages.php:165
261
  msgid "Synchronize Now"
262
  msgstr ""
263
 
264
- #: core/options-pages.php:410 core/options-pages.php:492
265
  msgid "This operation cannot be canceled! Are you still sure?"
266
  msgstr ""
267
 
268
- #: core/options-pages.php:411
269
  msgid "Synchronize"
270
  msgstr ""
271
 
272
- #: core/options-pages.php:413
273
  msgid "Synchronizing..."
274
  msgstr ""
275
 
276
- #: core/options-pages.php:451
277
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
278
  msgstr ""
279
 
280
- #: core/options-pages.php:452
281
  msgid "Please fill into all fields."
282
  msgstr ""
283
 
284
- #: core/options-pages.php:453
285
  msgid "Duplicate extensions or MIME types. Please chose other one."
286
  msgstr ""
287
 
288
- #: core/options-pages.php:490 core/options-pages.php:607
289
  msgid "Complete Cleanup"
290
  msgstr ""
291
 
292
- #: core/options-pages.php:491
293
  msgid ""
294
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
295
  "plugin data</strong> from the database including backups."
296
  msgstr ""
297
 
298
- #: core/options-pages.php:493
299
  msgid "Yes, delete all data"
300
  msgstr ""
301
 
302
- #: core/options-pages.php:494
303
  msgid "Cleaning..."
304
  msgstr ""
305
 
306
- #: core/options-pages.php:525
307
  msgid "Enhanced Media Library Settings"
308
  msgstr ""
309
 
310
- #: core/options-pages.php:535
311
  msgid "Export"
312
  msgstr ""
313
 
314
- #: core/options-pages.php:539
315
  msgid ""
316
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
317
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be exported to a "
@@ -319,15 +320,15 @@ msgid ""
319
  "another website."
320
  msgstr ""
321
 
322
- #: core/options-pages.php:544
323
  msgid "Export Plugin Settings"
324
  msgstr ""
325
 
326
- #: core/options-pages.php:554
327
  msgid "Import"
328
  msgstr ""
329
 
330
- #: core/options-pages.php:558
331
  msgid ""
332
  "Plugin settings tabs <strong>Media Library</strong>, <strong>Media "
333
  "Taxonomies</strong>, and <strong>MIME Types</strong> will be imported from a "
@@ -335,148 +336,168 @@ msgid ""
335
  "another website using the export button above."
336
  msgstr ""
337
 
338
- #: core/options-pages.php:559
339
  msgid ""
340
  "All plugin settings will be overridden by the import. You will have a chance "
341
  "to restore current data from an automatic backup in case you are not "
342
  "satisfied with the result of the import."
343
  msgstr ""
344
 
345
- #: core/options-pages.php:566
346
  msgid "Import Plugin Settings"
347
  msgstr ""
348
 
349
- #: core/options-pages.php:578
350
  msgid "Restore"
351
  msgstr ""
352
 
353
- #: core/options-pages.php:584
354
  msgid "No backup available at the moment."
355
  msgstr ""
356
 
357
- #: core/options-pages.php:586
358
  msgid "Backup will be created automatically before any import operation."
359
  msgstr ""
360
 
361
- #: core/options-pages.php:590
362
  msgid ""
363
  "The backup has been automatically created before the latest import operation."
364
  msgstr ""
365
 
366
- #: core/options-pages.php:594
367
  msgid "Restore Settings from the Backup"
368
  msgstr ""
369
 
370
- #: core/options-pages.php:614
371
  msgid "What will be deleted:"
372
  msgstr ""
373
 
374
- #: core/options-pages.php:619
375
  msgid "All plugin options"
376
  msgstr ""
377
 
378
- #: core/options-pages.php:620
379
  msgid "All plugin backups stored in database"
380
  msgstr ""
381
 
382
- #: core/options-pages.php:624
383
  msgid "What will remain intact:"
384
  msgstr ""
385
 
386
- #: core/options-pages.php:625
387
  msgid "All media items"
388
  msgstr ""
389
 
390
- #: core/options-pages.php:626
391
  msgid "All taxonomies not listed above"
392
  msgstr ""
393
 
394
- #: core/options-pages.php:629
395
  msgid ""
396
  "The plugin cannot delete itself because of security reason. Please delete it "
397
  "manually from plugin list after cleanup."
398
  msgstr ""
399
 
400
- #: core/options-pages.php:631
401
  msgid ""
402
  "If you are not sure about this operation please create a backup of your "
403
  "database prior to cleanup!"
404
  msgstr ""
405
 
406
- #: core/options-pages.php:637
407
  msgid "Delete All Data & Deactivate"
408
  msgstr ""
409
 
410
- #: core/options-pages.php:742
411
  msgid "Please upload a file to import settings."
412
  msgstr ""
413
 
414
- #: core/options-pages.php:762
415
  msgid "Plugin settings imported."
416
  msgstr ""
417
 
418
- #: core/options-pages.php:809
419
  msgid "Plugin settings restored from the backup."
420
  msgstr ""
421
 
422
- #: core/options-pages.php:953
423
  msgid "Media Items Order"
424
  msgstr ""
425
 
426
- #: core/options-pages.php:960
427
  msgid "Order media items by"
428
  msgstr ""
429
 
430
- #: core/options-pages.php:967 core/options-pages.php:979
 
 
 
 
 
 
 
 
 
 
 
 
431
  msgid "For media library and media popups"
432
  msgstr ""
433
 
434
- #: core/options-pages.php:968
435
  msgid "Option allows to change order by drag and drop with Custom Order value."
436
  msgstr ""
437
 
438
- #: core/options-pages.php:973
439
  msgid "Sort order"
440
  msgstr ""
441
 
442
- #: core/options-pages.php:992
 
 
 
 
 
 
 
 
443
  msgid "Media Shortcodes"
444
  msgstr ""
445
 
446
- #: core/options-pages.php:999 core/options-pages.php:1002
447
  msgid "Enhanced media shortcodes"
448
  msgstr ""
449
 
450
- #: core/options-pages.php:1003
451
  msgid ""
452
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
453
  "upload date, and media items number limit"
454
  msgstr ""
455
 
456
- #: core/options-pages.php:1004
457
  msgid "Gallery example:"
458
  msgstr ""
459
 
460
- #: core/options-pages.php:1005
461
  msgid "Audio playlist example:"
462
  msgstr ""
463
 
464
- #: core/options-pages.php:1006
465
  msgid "Video playlist example:"
466
  msgstr ""
467
 
468
- #: core/options-pages.php:1008
469
  #, php-format
470
  msgid ""
471
  "%sWarning:%s Incompatibility with other gallery plugins or themes possible!"
472
  msgstr ""
473
 
474
- #: core/options-pages.php:1010
475
  #, php-format
476
  msgid "%sLearn more%s."
477
  msgstr ""
478
 
479
- #: core/options-pages.php:1012
480
  #, php-format
481
  msgid ""
482
  "Please check out your gallery front-end and back-end functionality once this "
@@ -484,232 +505,240 @@ msgid ""
484
  "%s."
485
  msgstr ""
486
 
487
- #: core/options-pages.php:1082 core/options-pages.php:1229
488
  msgid "Assign following taxonomies to Media Library:"
489
  msgstr ""
490
 
491
- #: core/options-pages.php:1101 core/options-pages.php:1167
492
- #: core/options-pages.php:1248
493
  msgid "Assign Taxonomy"
494
  msgstr ""
495
 
496
- #: core/options-pages.php:1102 core/options-pages.php:1249
497
  msgid "Edit Taxonomy"
498
  msgstr ""
499
 
500
- #: core/options-pages.php:1106 core/options-pages.php:1169
501
  msgid "Delete Taxonomy"
502
  msgstr ""
503
 
504
- #: core/options-pages.php:1111 core/options-pages.php:1174
505
  msgid "Labels"
506
  msgstr ""
507
 
508
- #: core/options-pages.php:1113 core/options-pages.php:1176
509
  msgid "Singular"
510
  msgstr ""
511
 
512
- #: core/options-pages.php:1114 core/options-pages.php:1177
513
  msgid "Plural"
514
  msgstr ""
515
 
516
- #: core/options-pages.php:1115 core/options-pages.php:1178
517
  msgid "Menu Name"
518
  msgstr ""
519
 
520
- #: core/options-pages.php:1128 core/options-pages.php:1151
521
- #: core/options-pages.php:1191 core/options-pages.php:1252
522
  msgid "Settings"
523
  msgstr ""
524
 
525
- #: core/options-pages.php:1130 core/options-pages.php:1193
526
  msgid "Taxonomy Name"
527
  msgstr ""
528
 
529
- #: core/options-pages.php:1131 core/options-pages.php:1194
530
  msgid "Hierarchical"
531
  msgstr ""
532
 
533
- #: core/options-pages.php:1132 core/options-pages.php:1195
534
  msgid "Column for List View"
535
  msgstr ""
536
 
537
- #: core/options-pages.php:1133 core/options-pages.php:1153
538
- #: core/options-pages.php:1196 core/options-pages.php:1254
539
  msgid "Filter for List View"
540
  msgstr ""
541
 
542
- #: core/options-pages.php:1134 core/options-pages.php:1154
543
- #: core/options-pages.php:1197 core/options-pages.php:1255
544
  msgid "Filter for Grid View / Media Popup"
545
  msgstr ""
546
 
547
- #: core/options-pages.php:1135 core/options-pages.php:1155
548
- #: core/options-pages.php:1198 core/options-pages.php:1256
549
  msgid "Edit in Media Popup"
550
  msgstr ""
551
 
552
- #: core/options-pages.php:1136 core/options-pages.php:1199
553
  msgid "Show in Nav Menu"
554
  msgstr ""
555
 
556
- #: core/options-pages.php:1137 core/options-pages.php:1200
557
  msgid "Remember Terms Order (sort)"
558
  msgstr ""
559
 
560
- #: core/options-pages.php:1138 core/options-pages.php:1201
561
  msgid "Show in REST"
562
  msgstr ""
563
 
564
- #: core/options-pages.php:1139 core/options-pages.php:1202
565
  msgid "Rewrite Slug"
566
  msgstr ""
567
 
568
- #: core/options-pages.php:1140 core/options-pages.php:1203
569
  msgid "Slug with Front"
570
  msgstr ""
571
 
572
- #: core/options-pages.php:1215
573
  msgid "Add New Taxonomy"
574
  msgstr ""
575
 
576
- #: core/options-pages.php:1225
577
  msgid "Non-Media Taxonomies"
578
  msgstr ""
579
 
580
- #: core/options-pages.php:1286
581
  msgid "Options"
582
  msgstr ""
583
 
584
- #: core/options-pages.php:1296 core/options-pages.php:1299
585
  msgid "Taxonomy archive pages"
586
  msgstr ""
587
 
588
- #: core/options-pages.php:1300
589
  msgid "Turn on media taxonomy archive pages on the front-end"
590
  msgstr ""
591
 
592
- #: core/options-pages.php:1301
593
  msgid ""
594
  "Re-save your permalink settings after this option change to make it work."
595
  msgstr ""
596
 
597
- #: core/options-pages.php:1307 core/options-pages.php:1310
598
  msgid "Assign all like hierarchical"
599
  msgstr ""
600
 
601
- #: core/options-pages.php:1311
602
  msgid ""
603
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
604
  msgstr ""
605
 
606
- #: core/options-pages.php:1317 core/options-pages.php:1320
607
  msgid "Force filters"
608
  msgstr ""
609
 
610
- #: core/options-pages.php:1321
611
  msgid "Show media filters for ANY Media Popup"
612
  msgstr ""
613
 
614
- #: core/options-pages.php:1322
615
  msgid "Try this if filters are not shown for third-party plugins or themes."
616
  msgstr ""
617
 
618
- #: core/options-pages.php:1376
 
 
 
 
 
 
 
 
619
  msgid "Add New MIME Type"
620
  msgstr ""
621
 
622
- #: core/options-pages.php:1394 core/options-pages.php:1449
623
  msgid "Extension"
624
  msgstr ""
625
 
626
- #: core/options-pages.php:1395 core/options-pages.php:1450
627
  msgid "MIME Type"
628
  msgstr ""
629
 
630
- #: core/options-pages.php:1396 core/options-pages.php:1451
631
  msgid "Singular Label"
632
  msgstr ""
633
 
634
- #: core/options-pages.php:1397 core/options-pages.php:1452
635
  msgid "Plural Label"
636
  msgstr ""
637
 
638
- #: core/options-pages.php:1398 core/options-pages.php:1428
639
- #: core/options-pages.php:1441 core/options-pages.php:1453
640
  msgid "Add Filter"
641
  msgstr ""
642
 
643
- #: core/options-pages.php:1399 core/options-pages.php:1429
644
- #: core/options-pages.php:1442 core/options-pages.php:1454
645
  msgid "Allow Upload"
646
  msgstr ""
647
 
648
- #: core/options-pages.php:1443
649
  msgid "Delete MIME Type"
650
  msgstr ""
651
 
652
- #: core/options-pages.php:1460
653
  msgid "Restore WordPress default MIME Types"
654
  msgstr ""
655
 
656
- #: core/options-pages.php:1462 pro/enhanced-media-library-pro.php:124
657
  msgid "Save Changes"
658
  msgstr ""
659
 
660
- #: core/options-pages.php:1499
661
  msgid "Changelog"
662
  msgstr ""
663
 
664
- #: core/options-pages.php:1500
665
  msgid "What's new in"
666
  msgstr ""
667
 
668
- #: core/options-pages.php:1500
669
  msgid "version"
670
  msgstr ""
671
 
672
- #: core/options-pages.php:1503
673
  msgid "More features under the hood"
674
  msgstr ""
675
 
676
- #: core/options-pages.php:1505
677
  msgid "Support"
678
  msgstr ""
679
 
680
- #: core/options-pages.php:1506
681
  msgid "Feel free to ask for help on"
682
  msgstr ""
683
 
684
- #: core/options-pages.php:1506
685
  msgid "Support is free for both versions of the plugin."
686
  msgstr ""
687
 
688
- #: core/options-pages.php:1508
689
  msgid "Plugin rating"
690
  msgstr ""
691
 
692
- #: core/options-pages.php:1509
693
  msgid "Please"
694
  msgstr ""
695
 
696
- #: core/options-pages.php:1509
697
  msgid "vote for the plugin"
698
  msgstr ""
699
 
700
- #: core/options-pages.php:1509
701
  msgid "Thanks!"
702
  msgstr ""
703
 
704
- #: core/options-pages.php:1511
705
  msgid "Other plugins you may find useful"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1550
709
  msgid "Utility"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1571
713
  msgid "Vote!"
714
  msgstr ""
715
 
@@ -721,331 +750,85 @@ msgstr ""
721
  msgid "Media Library settings saved."
722
  msgstr ""
723
 
724
- #: core/taxonomies.php:358 core/taxonomies.php:364
725
- #: enhanced-media-library.php:489
726
  msgid "Filter by"
727
  msgstr ""
728
 
729
- #: core/taxonomies.php:366 enhanced-media-library.php:491
730
  msgid "Not in"
731
  msgstr ""
732
 
733
- #: enhanced-media-library.php:331 enhanced-media-library.php:488
734
  msgid "All Uncategorized"
735
  msgstr ""
736
 
737
- #: enhanced-media-library.php:332 enhanced-media-library.php:492
738
  msgid "Reset All Filters"
739
  msgstr ""
740
 
741
- #: enhanced-media-library.php:523
742
  msgid "Uploaded to post #"
743
  msgstr ""
744
 
745
- #: enhanced-media-library.php:524
746
  msgid "Based On"
747
  msgstr ""
748
 
749
- #: enhanced-media-library.php:569 enhanced-media-library.php:571
750
  msgid "Media Categories"
751
  msgstr ""
752
 
753
- #: enhanced-media-library.php:570
754
  msgid "Media Category"
755
  msgstr ""
756
 
757
- #: enhanced-media-library.php:572
758
  msgid "All Media Categories"
759
  msgstr ""
760
 
761
- #: enhanced-media-library.php:573
762
  msgid "Edit Media Category"
763
  msgstr ""
764
 
765
- #: enhanced-media-library.php:574
766
  msgid "View Media Category"
767
  msgstr ""
768
 
769
- #: enhanced-media-library.php:575
770
  msgid "Update Media Category"
771
  msgstr ""
772
 
773
- #: enhanced-media-library.php:576
774
  msgid "Add New Media Category"
775
  msgstr ""
776
 
777
- #: enhanced-media-library.php:577
778
  msgid "New Media Category Name"
779
  msgstr ""
780
 
781
- #: enhanced-media-library.php:578
782
  msgid "Parent Media Category"
783
  msgstr ""
784
 
785
- #: enhanced-media-library.php:579
786
  msgid "Parent Media Category:"
787
  msgstr ""
788
 
789
- #: enhanced-media-library.php:580
790
  msgid "Search Media Categories"
791
  msgstr ""
792
 
793
- #: pro/core/bulk-edit.php:51 pro/core/bulk-edit.php:58
794
- msgid "Remove"
795
- msgstr ""
796
-
797
- #: pro/core/bulk-edit.php:53 pro/core/bulk-edit.php:60
798
- msgid "Deselect"
799
- msgstr ""
800
-
801
- #: pro/core/bulk-edit.php:105
802
- msgid "Caption this image&hellip;"
803
- msgstr ""
804
-
805
- #: pro/core/bulk-edit.php:109
806
- msgid "Describe this video&hellip;"
807
- msgstr ""
808
-
809
- #: pro/core/bulk-edit.php:111
810
- msgid "Describe this audio file&hellip;"
811
- msgstr ""
812
-
813
- #: pro/core/bulk-edit.php:113
814
- msgid "Describe this media file&hellip;"
815
- msgstr ""
816
-
817
- #: pro/core/bulk-edit.php:122
818
- msgid "Attachments Details"
819
- msgstr ""
820
-
821
- #: pro/core/bulk-edit.php:175 pro/core/bulk-edit.php:180
822
- msgid "Select All"
823
- msgstr ""
824
-
825
- #: pro/core/bulk-edit.php:176 pro/core/bulk-edit.php:181
826
- msgid "Edit Selection"
827
- msgstr ""
828
-
829
- #: pro/core/bulk-edit.php:177 pro/core/bulk-edit.php:182
830
- msgid "Deselect All"
831
- msgstr ""
832
-
833
- #: pro/core/bulk-edit.php:178 pro/core/bulk-edit.php:183
834
- msgid "Delete Selected"
835
- msgstr ""
836
-
837
- #: pro/core/medialist.php:24 pro/core/medialist.php:69
838
- msgid "Order By"
839
- msgstr ""
840
-
841
- #: pro/core/medialist.php:28 pro/core/medialist.php:73
842
- msgid "Date"
843
- msgstr ""
844
-
845
- #: pro/core/medialist.php:31 pro/core/medialist.php:76
846
- msgid "Title"
847
- msgstr ""
848
-
849
- #: pro/core/medialist.php:34 pro/core/medialist.php:79
850
- msgid "Custom Order"
851
- msgstr ""
852
-
853
- #: pro/core/medialist.php:37 pro/core/medialist.php:82
854
- msgid "Random"
855
- msgstr ""
856
-
857
- #: pro/core/medialist.php:43 pro/core/medialist.php:88
858
- msgid "Order"
859
- msgstr ""
860
-
861
- #: pro/core/medialist.php:47 pro/core/medialist.php:92
862
- msgid "Ascending"
863
- msgstr ""
864
-
865
- #: pro/core/medialist.php:50 pro/core/medialist.php:95
866
- msgid "Descending"
867
- msgstr ""
868
-
869
- #: pro/core/medialist.php:60 pro/core/medialist.php:101
870
- msgid "Limit"
871
- msgstr ""
872
-
873
- #: pro/core/options-pages.php:78
874
- msgid "Your license has been deactivated."
875
- msgstr ""
876
-
877
- #: pro/core/options-pages.php:88
878
- msgid "Please check if your license key is correct and try again."
879
- msgstr ""
880
-
881
- #: pro/core/options-pages.php:101
882
- msgid ""
883
- "Wrong license key or a server error occured. Please check your license key "
884
- "and try again."
885
- msgstr ""
886
-
887
- #: pro/core/options-pages.php:111
888
- msgid "You license has been activated."
889
- msgstr ""
890
-
891
- #: pro/core/options-pages.php:164
892
- #, php-format
893
- msgid "Auto-assign media items to parent %s %s on upload"
894
- msgstr ""
895
-
896
- #: pro/core/options-pages.php:165
897
- #, php-format
898
- msgid ""
899
- "%sWarning:%s As a result of clicking \"Synchronize Now\" all media items "
900
- "attached to a %s will be assigned to %s of their parent %s. Currently "
901
- "assigned %s will not be saved. Media items that are not attached to any %s "
902
- "will not be affected."
903
- msgstr ""
904
-
905
- #: pro/core/options-pages.php:188 pro/enhanced-media-library-pro.php:127
906
- msgid "Bulk Edit"
907
- msgstr ""
908
-
909
- #: pro/core/options-pages.php:196 pro/core/options-pages.php:199
910
- msgid "Turn off 'Save Changes' button"
911
- msgstr ""
912
-
913
- #: pro/core/options-pages.php:200
914
- msgid "Save changes on the fly"
915
- msgstr ""
916
-
917
- #: pro/core/options-pages.php:201
918
- msgid ""
919
- "Any click on a taxonomy checkbox during media files bulk editing will lead "
920
- "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
921
- "Please, be careful! You have much greater chance to <strong style=\"color:red"
922
- "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
923
- "files / taxonomies with this option turned on."
924
- msgstr ""
925
-
926
- #: pro/core/options-pages.php:202
927
- msgid ""
928
- "Strongly NOT recommended option if you work with more than hundred of files "
929
- "at a time."
930
- msgstr ""
931
-
932
- #: pro/core/options-pages.php:241 pro/core/options-pages.php:259
933
- msgid "License Key"
934
- msgstr ""
935
-
936
- #: pro/core/options-pages.php:252
937
- #, php-format
938
- msgid ""
939
- "To unlock updates please enter your license key below. You can get your "
940
- "license key in <a href=\"%s\">Your Account</a>. If you do not have a "
941
- "license, you are welcome to <a href=\"%s\">purchase it</a>."
942
- msgstr ""
943
-
944
- #: pro/core/options-pages.php:262
945
- msgid "Activate License"
946
- msgstr ""
947
-
948
- #: pro/core/options-pages.php:269
949
- msgid "Your license is active!"
950
- msgstr ""
951
-
952
- #: pro/core/options-pages.php:273
953
- msgid "Deactivate License"
954
- msgstr ""
955
-
956
- #: pro/core/update.php:113 pro/core/update.php:119 pro/core/update.php:125
957
- msgid ""
958
- "An unexpected error occurred. Something may be wrong with WordPress.org or "
959
- "this server&#8217;s configuration. If you continue to have problems, please "
960
- "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
961
- msgstr ""
962
-
963
- #: pro/core/update.php:113
964
- msgid ""
965
- "(WordPress could not establish a secure connection to WordPress.org. Please "
966
- "contact your server administrator.)"
967
- msgstr ""
968
-
969
- #: pro/core/update.php:180
970
- #, php-format
971
- msgid ""
972
- "To unlock updates, please <a href=\"%s\">activate your license</a>. You can "
973
- "get your license key in <a href=\"%s\">Your Account</a>. If you do not have "
974
- "a license, you are welcome to <a href=\"%s\">purchase it</a>."
975
- msgstr ""
976
-
977
- #: pro/enhanced-media-library-pro.php:119
978
- msgid "ALL files belong to this item"
979
- msgstr ""
980
-
981
- #: pro/enhanced-media-library-pro.php:120
982
- msgid "SOME files belong to this item"
983
- msgstr ""
984
-
985
- #: pro/enhanced-media-library-pro.php:121
986
- msgid "NO files belong to this item"
987
- msgstr ""
988
-
989
- #: pro/enhanced-media-library-pro.php:122
990
- msgid "Changes saved."
991
- msgstr ""
992
-
993
- #: pro/enhanced-media-library-pro.php:123
994
- msgid "Something went wrong."
995
- msgstr ""
996
-
997
- #: pro/enhanced-media-library-pro.php:126
998
- msgid "Edit Media Files"
999
- msgstr ""
1000
-
1001
- #: pro/enhanced-media-library-pro.php:151
1002
- msgid "Create a filter-based gallery"
1003
- msgstr ""
1004
-
1005
- #: pro/enhanced-media-library-pro.php:152
1006
- msgid "Create a filter-based playlist"
1007
- msgstr ""
1008
-
1009
- #: pro/enhanced-media-library-pro.php:153
1010
- msgid "Create a filter-based video playlist"
1011
- msgstr ""
1012
-
1013
- #: pro/enhanced-media-library-pro.php:231
1014
- msgid ""
1015
- "Please deactivate and <strong>remove</strong> the old FREE version prior to "
1016
- "the <strong>Enhanced Media Library PRO</strong> activation. All your data "
1017
- "will remain intact."
1018
- msgstr ""
1019
-
1020
- #: pro/enhanced-media-library-pro.php:231
1021
- msgid "Return to Plugins"
1022
- msgstr ""
1023
-
1024
- #: pro/enhanced-media-library-pro.php:282
1025
- msgid ""
1026
- "Both FREE and PRO versions of the Enhanced Media Library are network active. "
1027
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1028
- "be active. Please network deactivate and delete the free versions of the "
1029
- "plugin. All your data will remain intact."
1030
- msgstr ""
1031
-
1032
- #: pro/enhanced-media-library-pro.php:299
1033
- msgid ""
1034
- "<strong>Enhanced Media Library PRO</strong> does not require free version to "
1035
- "be active. Please deactivate and delete the free version of the plugin. All "
1036
- "your data will remain intact."
1037
- msgstr ""
1038
-
1039
- #: pro/enhanced-media-library-pro.php:315
1040
- msgid ""
1041
- "Both FREE and PRO versions of the Enhanced Media Library are active for this "
1042
- "site. <strong>Enhanced Media Library PRO</strong> does not require free "
1043
- "version to be active. Please deactivate (or network deactivate) and delete "
1044
- "the free version of the plugin for this site. All your data will remail "
1045
- "intact."
1046
  msgstr ""
1047
 
1048
  #. Description of the plugin/theme
1049
  msgid ""
1050
  "This plugin will be handy for those who need to manage a lot of media files."
1051
  msgstr ""
 
 
 
 
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"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.8\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: enhanced-media-library.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
35
  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
 
44
+ #: core/options-pages.php:106 core/options-pages.php:208
45
  msgid "Media Library"
46
  msgstr ""
47
 
49
  msgid "Taxonomies"
50
  msgstr ""
51
 
52
+ #: core/options-pages.php:124 core/options-pages.php:210
53
  msgid "MIME Types"
54
  msgstr ""
55
 
56
+ #. Plugin Name of the plugin/theme
57
  #: core/options-pages.php:135 core/options-pages.php:136
58
  msgid "Enhanced Media Library"
59
  msgstr ""
60
 
61
+ #: core/options-pages.php:207
62
  msgid "General"
63
  msgstr ""
64
 
65
+ #: core/options-pages.php:209 core/options-pages.php: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
 
75
+ #: core/options-pages.php:247
76
  msgid "Image sizes"
77
  msgstr ""
78
 
79
+ #: core/options-pages.php:248
80
  msgid ""
81
  "The sizes listed below determine the maximum dimensions in pixels to use "
82
  "when adding an image to the Media Library."
83
  msgstr ""
84
 
85
+ #: core/options-pages.php:252
86
  msgid "Thumbnail size"
87
  msgstr ""
88
 
89
+ #: core/options-pages.php:254
90
  msgid "Width"
91
  msgstr ""
92
 
93
+ #: core/options-pages.php:256
94
  msgid "Height"
95
  msgstr ""
96
 
97
+ #: core/options-pages.php:259
98
  msgid ""
99
  "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
100
  msgstr ""
101
 
102
+ #: core/options-pages.php:264 core/options-pages.php:265
103
  msgid "Medium size"
104
  msgstr ""
105
 
106
+ #: core/options-pages.php:266 core/options-pages.php:276
107
  msgid "Max Width"
108
  msgstr ""
109
 
110
+ #: core/options-pages.php:268 core/options-pages.php:278
111
  msgid "Max Height"
112
  msgstr ""
113
 
114
+ #: core/options-pages.php:274 core/options-pages.php:275
115
  msgid "Large size"
116
  msgstr ""
117
 
118
+ #: core/options-pages.php:291
119
  msgid "Embeds"
120
  msgstr ""
121
 
122
+ #: core/options-pages.php:298
123
  msgid "Uploading Files"
124
  msgstr ""
125
 
126
+ #: core/options-pages.php:305
127
  msgid "Store uploads in this folder"
128
  msgstr ""
129
 
130
+ #: core/options-pages.php:309
131
  #, php-format
132
  msgid "Default is %s"
133
  msgstr ""
134
 
135
+ #: core/options-pages.php:315
136
  msgid "Full URL path to files"
137
  msgstr ""
138
 
139
+ #: core/options-pages.php:317
140
  msgid "Configuring this is optional. By default, it should be blank."
141
  msgstr ""
142
 
143
+ #: core/options-pages.php:325
144
  msgid "Organize my uploads into month- and year-based folders"
145
  msgstr ""
146
 
147
+ #: core/options-pages.php:397 core/options-pages.php:1167
148
+ #: core/options-pages.php:1182 core/options-pages.php:1245
149
+ #: core/options-pages.php:1314
150
  msgid "Edit"
151
  msgstr ""
152
 
153
+ #: core/options-pages.php:398
154
  msgid "Close"
155
  msgstr ""
156
 
157
+ #: core/options-pages.php:399 core/options-pages.php: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
 
177
+ #: core/options-pages.php:403
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
 
201
+ #: core/options-pages.php:410
202
  msgid "Remove Taxonomy"
203
  msgstr ""
204
 
205
+ #: core/options-pages.php:411
206
  msgid "Taxonomy will be removed."
207
  msgstr ""
208
 
209
+ #: core/options-pages.php:412
210
  msgid ""
211
  "Taxonomy terms (categories) will remain intact in the database. If you "
212
  "create a taxonomy with the same name in the future, its terms (categories) "
213
  "will be available again."
214
  msgstr ""
215
 
216
+ #: core/options-pages.php:413
217
  msgid "Media items will remain intact."
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:414
221
  msgid "Are you still sure?"
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:415
225
  msgid "Yes, remove taxonomy"
226
  msgstr ""
227
 
228
+ #: core/options-pages.php:417
229
  msgid "Duplicate"
230
  msgstr ""
231
 
232
+ #: core/options-pages.php:418
233
  msgid "Taxonomy with the same name already exists. Please chose other one."
234
  msgstr ""
235
 
236
+ #: core/options-pages.php:420
237
  msgid "Empty Fields"
238
  msgstr ""
239
 
240
+ #: core/options-pages.php:421
241
  msgid "Please choose Singular and Plural names for all new taxomonies."
242
  msgstr ""
243
 
244
+ #: core/options-pages.php:422
245
+ msgid "Please choose Singular name for all new taxomonies."
246
  msgstr ""
247
 
248
+ #: core/options-pages.php:423
249
  msgid "Please choose Plural Name for all new taxomonies."
250
  msgstr ""
251
 
252
+ #: core/options-pages.php:425
253
  msgid "Ok"
254
  msgstr ""
255
 
256
+ #: core/options-pages.php:426 core/options-pages.php:431
257
+ #: core/options-pages.php:514
258
  msgid "Cancel"
259
  msgstr ""
260
 
261
+ #: core/options-pages.php:428
262
  msgid "Synchronize Now"
263
  msgstr ""
264
 
265
+ #: core/options-pages.php:429 core/options-pages.php:511
266
  msgid "This operation cannot be canceled! Are you still sure?"
267
  msgstr ""
268
 
269
+ #: core/options-pages.php:430
270
  msgid "Synchronize"
271
  msgstr ""
272
 
273
+ #: core/options-pages.php:432
274
  msgid "Synchronizing..."
275
  msgstr ""
276
 
277
+ #: core/options-pages.php:470
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
  "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
  "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
  "%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
 
750
  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
 
822
+ #. Plugin URI of the plugin/theme
823
+ #. Author URI of the plugin/theme
824
+ msgid "http://wpUXsolutions.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
825
  msgstr ""
826
 
827
  #. Description of the plugin/theme
828
  msgid ""
829
  "This plugin will be handy for those who need to manage a lot of media files."
830
  msgstr ""
831
+
832
+ #. Author of the plugin/theme
833
+ msgid "wpUXsolutions"
834
+ msgstr ""
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.1
6
- Stable tag: 2.2.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -70,7 +70,7 @@ Support is free for both versions of the plugin. "PRO"-users do not have priorit
70
 
71
  You can see available translations and their progress here: https://translate.wordpress.org/projects/wp-plugins/enhanced-media-library Many thanks to all involved!
72
 
73
- Assistance with the translation is highly appreciated!
74
 
75
 
76
  = Compatibility with Other Plugins =
@@ -95,7 +95,7 @@ Please notice that you use the Enhanced Media Library with other plugins that ad
95
 
96
  > #### Enhanced Media Library PRO
97
 
98
- > The key features:
99
 
100
  > * Media items categorization in bulk (multiple items to multiple categories at once) for both just uploaded and existing
101
  > * Media items within a category can be selected in bulk with a single click
@@ -158,7 +158,11 @@ That said, other plugins might override WP gallery attributes or database query
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](http://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts/)
 
 
 
 
162
 
163
  = I get "Something went wrong" error when bulk-editing in PRO =
164
 
@@ -198,6 +202,23 @@ No, all your data will remain intact. Your created media categories and their ti
198
 
199
  == Changelog ==
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  = 2.2.2 =
202
  *Release Date - April 30, 2016*
203
 
@@ -209,8 +230,8 @@ No, all your data will remain intact. Your created media categories and their ti
209
  * Taxonomy queries (filtering) improved for List mode of the media library
210
  * Count number added to filters for List and Grid modes
211
  * Media Taxonomy tab: various CSS and JS improvements, minor bugs fixed
 
212
  * Performance: enhanced media library loading time reduced for about 40%
213
- * Media taxonomy 'years' is now being renamed to 'media_years' automatically on creation to avoid issues with WP queries
214
 
215
 
216
  &nbsp;
@@ -245,127 +266,5 @@ No, all your data will remain intact. Your created media categories and their ti
245
  * Custom order works now correctly on upload
246
 
247
 
248
- &nbsp;
249
- = 2.1.7 =
250
- *Release Date - January 24, 2016*
251
-
252
- = Improvements =
253
- * Correct order during uploading for orderby "Title" ensured
254
- * Bulk delete performance improved [PRO only]
255
-
256
-
257
- &nbsp;
258
- = 2.1.6.1 =
259
- *Release Date - January 22, 2016*
260
-
261
- = Bugfixes =
262
- * The bug of post/page uploader fixed
263
- * Few minor bugs fixed
264
-
265
-
266
- &nbsp;
267
- = 2.1.6 =
268
- *Release Date - January 19, 2016*
269
-
270
- = New =
271
- * Support for [playlist] shortcode added
272
- * Easy visual playlist editing with the native WordPress UI [PRO only]
273
- * "Show in REST" option added per taxonomy, see [Registering A Custom Taxonomy With REST API Support](http://v2.wp-api.org/extending/custom-content-types/#registering-a-custom-taxonomy-with-rest-api-support)
274
-
275
- = Improvements =
276
- * Option "Enhanced gallery" replaced with "Enhanced media shortcodes"
277
-
278
- = Bugfixes =
279
- * Orderby and order behavior improved, minor bugs fixed
280
- * Minor CSS fixes
281
-
282
-
283
- &nbsp;
284
- = 2.1.5 =
285
- *Release Date - January 14, 2016*
286
-
287
- = Improvements =
288
- * Gallery enhancement is dramatically (!) improved to avoid possible conflicts ([learn more](http://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-gallery-possible-conflicts/))
289
- * Few code improvements
290
-
291
- = Bugfixes =
292
- Filters returned to Customizer
293
-
294
-
295
- &nbsp;
296
- = 2.1.4 =
297
- *Release Date - January 10, 2016*
298
-
299
- = New =
300
- * Option "limit" added to the gallery shortcode
301
- * Options "Order media items by" (orderby) and "Sort order" (order) added to admin
302
-
303
- = Improvements =
304
- * Bulk edit is now 3 times faster and less server resources consuming! [PRO only]
305
- * Gallery feature are now turned off by default. Option "Turn off enhanced gallery" replaced with "Enhanced gallery"
306
- * Minor CSS improvements
307
-
308
- = Compatibility =
309
- * Jetpack Tiled Galleries compatibility ensured
310
- * We are going to abandon support for older versions of WordPress. EML 2.1.4 is still compatible with WP 4.0, but from the next release we stop testing it with older versions.
311
-
312
- = Bugfixes =
313
- * Characters | and > are no longer delimiters (there are no delimiters any more) and can be used for media category name.
314
- * Few minor bugs fixed
315
-
316
-
317
- &nbsp;
318
- = 2.1.3 =
319
- *Release Date - December 17, 2015*
320
-
321
- = Bugfixes =
322
- * Compatibility of the plugin's code with different PHP versions ensured
323
- * "Warning: Missing argument 3 for wpuxss_eml_gallery_shortcode()" fixed
324
- * The bug with unavailable image meta on Edit Gallery screen fixed
325
-
326
- = Improvements =
327
- * "Turn off enhanced gallery" option added. Allows to turn off the gallery shortcode enhancement without deactivating the whole plugin in case of incompatibility with other plugins or themes. Please inform plugin authors about the issue. We would like to fix it!
328
-
329
-
330
- &nbsp;
331
- = 2.1.2 =
332
- *Release Date - December 15, 2015*
333
-
334
- = Compatibility =
335
- * Fixed v2.1 and Jetpack Carousel incompatibility
336
-
337
-
338
- &nbsp;
339
- = 2.1.1 =
340
- *Release Date - December 15, 2015*
341
-
342
- = Bugfixes =
343
- * Minor incompatibility with WordPress 4.3 fixed
344
-
345
-
346
- &nbsp;
347
- = 2.1 =
348
- *Release Date - December 15, 2015*
349
-
350
- = New =
351
- * Filter-based Image Galleries by extending native WordPress gallery shortcode
352
- * Easy visual gallery editing with the native WordPress gallery UI [PRO only]
353
- * Export/import of the plugin settings to JSON
354
-
355
- = Improvements =
356
- * Better filtering and "force filters" mechanism, sorting by 'menuOrder' by default for media taxonomy filters
357
- * Plugin credits in admin removed from Media Settings > Taxonomies, and Media Settings > MIME Types, moved to Settings > Enhanced Media Library
358
- * "Deactivate License" added [PRO only]
359
- * Various code improvements for both free and PRO
360
- * Minor UX improvements
361
-
362
- = Compatibility =
363
- * Fixed incompatibility with [WP Plugin Dependencies](https://github.com/xwp/wp-plugin-dependencies)
364
- * Wordpress 4.4 compatibility ensured
365
-
366
- = Languages =
367
- * Korean translation added
368
-
369
-
370
  &nbsp;
371
  = Previous releases... =
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
 
70
 
71
  You can see available translations and their progress here: https://translate.wordpress.org/projects/wp-plugins/enhanced-media-library Many thanks to all involved!
72
 
73
+ Assistance with translating is highly appreciated! If you'd like to be a translation editor of the PRO version please contact us on [wpuxsolutions.com](https://www.wpuxsolutions.com/support/create-new-ticket/)
74
 
75
 
76
  = Compatibility with Other Plugins =
95
 
96
  > #### Enhanced Media Library PRO
97
 
98
+ > Key features:
99
 
100
  > * Media items categorization in bulk (multiple items to multiple categories at once) for both just uploaded and existing
101
  > * Media items within a category can be selected in bulk with a single click
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
 
202
 
203
  == Changelog ==
204
 
205
+ = 2.3 =
206
+ *Release Date - June 27, 2016*
207
+
208
+ = Improvements =
209
+ * All bulk operations are now dramatically (!) faster: save order, bulk assign terms (PRO only), bulk trash / restore / delete (PRO only). It actually takes seconds now to assign hundreds of media items in bulk.
210
+ * Bulk Trash / Restore added (PRO only)
211
+ * "Show Count" option added to Media Taxonomies tab
212
+ * Term count is now being calculated correctly and separately for different post types when they share a taxonomy with media library
213
+ * Complete cleanup is now deleting all term relationships for non-media taxonomies assigned to media library
214
+
215
+ = Bugfixes =
216
+ * Typos and absent localizations fixed, spaces added to the text of filters
217
+ * Settings backup is not being performed if a user doesn't submit any file in the import operation (thanks Enrico for your contribution https://plugins.trac.wordpress.org/ticket/2506)
218
+ * Various minor bugs fixed
219
+
220
+
221
+ &nbsp;
222
  = 2.2.2 =
223
  *Release Date - April 30, 2016*
224
 
230
  * Taxonomy queries (filtering) improved for List mode of the media library
231
  * Count number added to filters for List and Grid modes
232
  * Media Taxonomy tab: various CSS and JS improvements, minor bugs fixed
233
+ * Media taxonomy 'year' is now being renamed to 'media_year' automatically on creation to avoid issues with WP queries
234
  * Performance: enhanced media library loading time reduced for about 40%
 
235
 
236
 
237
  &nbsp;
266
  * Custom order works now correctly on upload
267
 
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  &nbsp;
270
  = Previous releases... =