Enhanced Media Library - Version 2.8.1

Version Description

Download this release

Release Info

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

Code changes from version 2.8 to 2.8.1

Files changed (43) hide show
  1. core/compatibility.php +7 -4
  2. core/media-templates.php +2 -2
  3. core/mime-types.php +38 -0
  4. core/options-pages.php +112 -9
  5. core/taxonomies.php +3 -3
  6. css/eml-admin-rtl.css +50 -0
  7. css/eml-admin.css +50 -0
  8. enhanced-media-library.php +5 -4
  9. js/eml-media-editor.js +1 -0
  10. js/eml-media-grid.js +3 -5
  11. js/eml-media-views.js +19 -5
  12. js/eml-medialibrary-options.js +5 -0
  13. js/eml-taxonomies-options.js +13 -3
  14. languages/enhanced-media-library-cs.mo +0 -0
  15. languages/enhanced-media-library-cs.po +0 -1196
  16. languages/enhanced-media-library-de_DE.mo +0 -0
  17. languages/enhanced-media-library-de_DE.po +0 -1234
  18. languages/enhanced-media-library-es.mo +0 -0
  19. languages/enhanced-media-library-es.po +0 -1198
  20. languages/enhanced-media-library-fi.mo +0 -0
  21. languages/enhanced-media-library-fi.po +0 -1188
  22. languages/enhanced-media-library-fr_FR.mo +0 -0
  23. languages/enhanced-media-library-fr_FR.po +0 -1211
  24. languages/enhanced-media-library-he_IL.mo +0 -0
  25. languages/enhanced-media-library-he_IL.po +0 -1169
  26. languages/enhanced-media-library-it_IT.mo +0 -0
  27. languages/enhanced-media-library-it_IT.po +0 -1207
  28. languages/enhanced-media-library-ja_JP.mo +0 -0
  29. languages/enhanced-media-library-ja_JP.po +0 -1191
  30. languages/enhanced-media-library-ko_KR.mo +0 -0
  31. languages/enhanced-media-library-ko_KR.po +0 -1168
  32. languages/enhanced-media-library-nl_NL.mo +0 -0
  33. languages/enhanced-media-library-nl_NL.po +0 -1237
  34. languages/enhanced-media-library-pl_PL.mo +0 -0
  35. languages/enhanced-media-library-pl_PL.po +0 -1176
  36. languages/enhanced-media-library-ru.mo +0 -0
  37. languages/enhanced-media-library-ru.po +0 -1196
  38. languages/enhanced-media-library-sv_SE.mo +0 -0
  39. languages/enhanced-media-library-sv_SE.po +0 -1173
  40. languages/enhanced-media-library-uk.mo +0 -0
  41. languages/enhanced-media-library-uk.po +0 -1240
  42. languages/enhanced-media-library.pot +224 -155
  43. readme.txt +71 -49
core/compatibility.php CHANGED
@@ -35,10 +35,13 @@ if ( ! function_exists( 'wpuxss_eml_elementor_scripts' ) ) {
35
  /**
36
  * Enfold Theme
37
  * for [av_masonry_gallery] shortcode
38
- * use Default Layout and choose the shortcode Media Elements > Masonry Gallery
39
- * to make theme gallery shows images from the specific category
40
  *
41
- * @since 2.7.3
 
 
 
42
  * @created 9/10/20
43
  */
44
- add_filter( 'shortcode_atts_av_masonry_entries', 'wpuxss_eml_shortcode_atts', 10, 3 );
 
 
35
  /**
36
  * Enfold Theme
37
  * for [av_masonry_gallery] shortcode
 
 
38
  *
39
+ * Use Default Layout and choose the shortcode Media Elements > Masonry Gallery
40
+ * to make theme gallery shows images from the specific category.
41
+ *
42
+ * @since 2.8
43
  * @created 9/10/20
44
  */
45
+ if ( wpuxss_eml_enhance_media_shortcodes() ) {
46
+ add_filter( 'shortcode_atts_av_masonry_entries', 'wpuxss_eml_shortcode_atts', 10, 3 );
47
+ }
core/media-templates.php CHANGED
@@ -18,9 +18,9 @@ if ( ! function_exists( 'wpuxss_eml_print_media_templates' ) ) {
18
 
19
  function wpuxss_eml_print_media_templates() {
20
 
21
- $remove_button = '<button type="button" class="button-link attachment-close media-modal-icon"><span class="screen-reader-text">' . __( 'Remove', 'enhanced-media-library' ) . '</span></button>';
22
 
23
- $deselect_button = '<button type="button" class="button-link check" tabindex="-1"><span class="media-modal-icon"></span><span class="screen-reader-text">' . __( 'Deselect', 'enhanced-media-library' ) . '</span></button>'; ?>
24
 
25
 
26
  <script type="text/html" id="tmpl-attachment-grid-view">
18
 
19
  function wpuxss_eml_print_media_templates() {
20
 
21
+ $remove_button = '<button type="button" class="button-link attachment-close media-modal-icon"><span class="screen-reader-text">' . __( 'Remove' ) . '</span></button>';
22
 
23
+ $deselect_button = '<button type="button" class="button-link check" tabindex="-1"><span class="media-modal-icon"></span><span class="screen-reader-text">' . __( 'Deselect' ) . '</span></button>'; ?>
24
 
25
 
26
  <script type="text/html" id="tmpl-attachment-grid-view">
core/mime-types.php CHANGED
@@ -165,6 +165,44 @@ if ( ! function_exists( 'wpuxss_eml_upload_mimes' ) ) {
165
 
166
 
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  /**
169
  * wpuxss_eml_mime_types
170
  *
165
 
166
 
167
 
168
+ /**
169
+ * wpuxss_eml_check_filetype_and_ext
170
+ *
171
+ * Allowed mime types
172
+ *
173
+ * @since 2.8
174
+ * @created 10/2020
175
+ */
176
+
177
+ add_filter( 'wp_check_filetype_and_ext', 'wpuxss_eml_check_filetype_and_ext', 10, 5 );
178
+
179
+ if ( ! function_exists( 'wpuxss_eml_check_filetype_and_ext' ) ) {
180
+
181
+ function wpuxss_eml_check_filetype_and_ext( $types, $file, $filename, $mimes, $real_mime ) {
182
+
183
+ $wpuxss_eml_mimes = get_option('wpuxss_eml_mimes');
184
+
185
+ if ( empty( $wpuxss_eml_mimes ) ) {
186
+ return $types;
187
+ }
188
+
189
+ foreach ( $wpuxss_eml_mimes as $extension => $mime ) {
190
+
191
+ if ( (bool) $mime['upload'] ) {
192
+
193
+ if ( false !== strpos( $filename, '.'.$extension ) ) {
194
+ $types['ext'] = wpuxss_eml_sanitize_extension( $extension );
195
+ $types['type'] = sanitize_mime_type( $mime['mime'] );
196
+ }
197
+ }
198
+ }
199
+
200
+ return $types;
201
+ }
202
+ }
203
+
204
+
205
+
206
  /**
207
  * wpuxss_eml_mime_types
208
  *
core/options-pages.php CHANGED
@@ -163,8 +163,8 @@ if ( ! function_exists( 'wpuxss_eml_admin_utility_menu' ) ) {
163
 
164
 
165
  $eml_options_page = add_options_page(
166
- __('Enhanced Media Library','enhanced-media-library'),
167
- __('Enhanced Media Library','enhanced-media-library'),
168
  'manage_options',
169
  'eml-settings',
170
  'wpuxss_eml_print_settings'
@@ -1774,7 +1774,46 @@ if ( ! function_exists( 'wpuxss_eml_print_media_library_options' ) ) {
1774
  </div>
1775
 
1776
 
1777
- <?php do_action( 'wpuxss_eml_extend_library_option_page' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1778
 
1779
 
1780
  <h2><?php _e('Order','enhanced-media-library'); ?></h2>
@@ -2153,8 +2192,32 @@ if ( ! function_exists( 'wpuxss_eml_print_taxonomies_options' ) ) {
2153
  $html .= '<li><input type="checkbox" class="wpuxss-eml-media_uploader_filter" name="wpuxss_eml_taxonomies[' . esc_attr($taxonomy->name) . '][media_uploader_filter]" id="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_uploader_filter" value="1" ' . checked( true, (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_uploader_filter'], false ) . ' /><label for="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_uploader_filter">' . __('Filter for Grid View / Media Popup','enhanced-media-library') . '</label></li>';
2154
  $html .= '<li><input type="checkbox" class="wpuxss-eml-media_popup_taxonomy_edit" name="wpuxss_eml_taxonomies[' . esc_attr($taxonomy->name) . '][media_popup_taxonomy_edit]" id="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_popup_taxonomy_edit" value="1" ' . checked( true, (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_popup_taxonomy_edit'], false ) . ' /><label for="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_popup_taxonomy_edit">' . __('Edit in Media Popup','enhanced-media-library') . '</label></li>';
2155
 
2156
- $options = '';
2157
- $html .= apply_filters( 'wpuxss_eml_extend_non_media_taxonomy_options', $options, $taxonomy, $post_type, $wpuxss_eml_taxonomies );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2158
 
2159
  $html .= '</ul>';
2160
 
@@ -2218,7 +2281,37 @@ if ( ! function_exists( 'wpuxss_eml_print_taxonomies_options' ) ) {
2218
 
2219
  </div>
2220
 
2221
- <?php do_action( 'wpuxss_eml_extend_taxonomies_option_page' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2222
 
2223
  </form>
2224
 
@@ -2415,8 +2508,13 @@ if ( ! function_exists( 'wpuxss_eml_print_credits' ) ) {
2415
  <h4><?php _e( 'Changelog', 'enhanced-media-library' ); ?></h4>
2416
  <p><?php _e( 'What\'s new in', 'enhanced-media-library' ); ?> <a href="https://wordpress.org/plugins/enhanced-media-library/changelog/"><?php _e( 'version', 'enhanced-media-library' ); echo ' ' . EML_VERSION; ?></a>.</p>
2417
 
2418
- <h4>Enhanced Media Library PRO</h4>
2419
- <p><?php _e( 'More features under the hood', 'enhanced-media-library' ); ?> <a href="https://wpuxsolutions.com/plugins/enhanced-media-library/">wpuxsolutions.com</a>.</p>
 
 
 
 
 
2420
 
2421
  <h4><?php _e( 'Support', 'enhanced-media-library' ); ?></h4>
2422
  <p><?php _e( 'Feel free to ask for help on', 'enhanced-media-library' ); ?> <a href="https://wpuxsolutions.com/support/">wpuxsolutions.com</a>. <?php _e( 'Support is free for both versions of the plugin.', 'enhanced-media-library' ); ?></p>
@@ -2466,7 +2564,7 @@ if ( ! function_exists( 'wpuxss_eml_settings_link' ) ) {
2466
  );
2467
 
2468
  $utility_link = array(
2469
- 'utility' => '<a href="' . self_admin_url($settings_page.'?page=eml-settings') . '">' . __( 'Utility', 'enhanced-media-library' ) . '</a>'
2470
  );
2471
 
2472
  return array_merge( $settings_link, $utility_link, $links );
@@ -2491,6 +2589,11 @@ if ( ! function_exists( 'wpuxss_eml_plugin_row_meta' ) ) {
2491
  return $links;
2492
  }
2493
 
 
 
 
 
 
2494
  $links[] = __( 'Rate us:', 'enhanced-media-library' ) . " <span class='rating-stars'><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=1#new-post' target='_blank' data-rating='1' title='" . __('Poor', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=2#new-post' target='_blank' data-rating='2' title='" . __('Works', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=3#new-post' target='_blank' data-rating='3' title='" . __('Good', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=4#new-post' target='_blank' data-rating='4' title='" . __('Great', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=5#new-post' target='_blank' data-rating='5' title='" . __('Fantastic!', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><span>";
2495
 
2496
  return $links;
163
 
164
 
165
  $eml_options_page = add_options_page(
166
+ __('Enhanced Media Library Utilities','enhanced-media-library'),
167
+ __('EML Utilities','enhanced-media-library'),
168
  'manage_options',
169
  'eml-settings',
170
  'wpuxss_eml_print_settings'
1774
  </div>
1775
 
1776
 
1777
+ <?php
1778
+ $class_name = EML_PRO ? '' : ' disabled';
1779
+ $class = EML_PRO ? '' : ' class="disabled"';
1780
+ $disabled = EML_PRO ? '' : ' readonly="readonly"';
1781
+ $pro_message = EML_PRO ? '' : ' <span class="premium">/ Premium Feature</span>';
1782
+ ?>
1783
+
1784
+ <h2<?php echo $class; ?>><?php _e('Search','enhanced-media-library'); echo $pro_message; ?></h2>
1785
+
1786
+ <div class="postbox<?php echo $class_name; ?>">
1787
+
1788
+ <div class="inside">
1789
+
1790
+ <table class="form-table">
1791
+
1792
+ <tr>
1793
+ <th scope="row"><?php _e('Enable search in','enhanced-media-library'); ?></th>
1794
+ <td>
1795
+ <fieldset>
1796
+ <legend class="screen-reader-text"><span><?php _e('Enable search in', 'enhanced-media-library'); ?></span></legend>
1797
+ <input name="wpuxss_eml_lib_options[search_in][]" type="hidden" value="none" />
1798
+ <label><input name="wpuxss_eml_lib_options[search_in][]" type="checkbox" value="titles" <?php echo in_array('titles', $wpuxss_eml_lib_options['search_in']) ? 'checked' : ''; echo $disabled; ?> /> <?php _e('Titles','enhanced-media-library'); ?></label><br />
1799
+ <label><input name="wpuxss_eml_lib_options[search_in][]" type="checkbox" value="captions" <?php echo in_array('captions', $wpuxss_eml_lib_options['search_in']) ? 'checked' : ''; echo $disabled; ?> /> <?php _e('Captions','enhanced-media-library'); ?></label><br />
1800
+ <label><input name="wpuxss_eml_lib_options[search_in][]" type="checkbox" value="descriptions" <?php echo in_array('descriptions', $wpuxss_eml_lib_options['search_in']) ? 'checked' : ''; echo $disabled; ?> /> <?php _e('Descriptions','enhanced-media-library'); ?></label><br />
1801
+
1802
+ <label><input name="wpuxss_eml_lib_options[search_in][]" type="checkbox" value="authors" <?php echo in_array('authors', $wpuxss_eml_lib_options['search_in']) ? 'checked' : ''; echo $disabled; ?> /> <?php _e('Authors','enhanced-media-library'); ?></label><br />
1803
+ <label><input name="wpuxss_eml_lib_options[search_in][]" type="checkbox" value="taxonomies" <?php echo in_array('taxonomies', $wpuxss_eml_lib_options['search_in']) ? 'checked' : ''; echo $disabled; ?> /> <?php _e('Media Taxonomies','enhanced-media-library'); ?></label>
1804
+ <p class="description"><?php _e('Enhance default search in Media Library and Media Popups. By default, WordPress looks into filenames, titles, captions, and descriptions.','enhanced-media-library'); ?></p>
1805
+ </fieldset>
1806
+ </td>
1807
+ </tr>
1808
+ </table>
1809
+
1810
+ <?php submit_button( __( 'Save Changes' ), 'primary', 'submit', true, array( 'id' => 'eml-submit-lib-settings-search' ) ); ?>
1811
+
1812
+ </div>
1813
+
1814
+ </div>
1815
+
1816
+
1817
 
1818
 
1819
  <h2><?php _e('Order','enhanced-media-library'); ?></h2>
2192
  $html .= '<li><input type="checkbox" class="wpuxss-eml-media_uploader_filter" name="wpuxss_eml_taxonomies[' . esc_attr($taxonomy->name) . '][media_uploader_filter]" id="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_uploader_filter" value="1" ' . checked( true, (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_uploader_filter'], false ) . ' /><label for="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_uploader_filter">' . __('Filter for Grid View / Media Popup','enhanced-media-library') . '</label></li>';
2193
  $html .= '<li><input type="checkbox" class="wpuxss-eml-media_popup_taxonomy_edit" name="wpuxss_eml_taxonomies[' . esc_attr($taxonomy->name) . '][media_popup_taxonomy_edit]" id="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_popup_taxonomy_edit" value="1" ' . checked( true, (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['media_popup_taxonomy_edit'], false ) . ' /><label for="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-media_popup_taxonomy_edit">' . __('Edit in Media Popup','enhanced-media-library') . '</label></li>';
2194
 
2195
+ $class = EML_PRO ? '' : ' class="disabled"';
2196
+ $class_name = EML_PRO ? '' : ' disabled';
2197
+ $disabled = EML_PRO ? '' : ' readonly="readonly"';
2198
+ $pro_message = EML_PRO ? '' : ' <span class="premium disabled">/ Premium Feature</span>';
2199
+ $post_singular_name = strtolower ( $post_type->labels->singular_name );
2200
+
2201
+ $html .= $pro_message;
2202
+ $html .= '<li' . $class . '><input type="checkbox" class="wpuxss-eml-taxonomy_auto_assign" name="wpuxss_eml_taxonomies[' . esc_attr($taxonomy->name) . '][taxonomy_auto_assign]" id="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-taxonomy_auto_assign" value="1" ' . checked( true, (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['taxonomy_auto_assign'], false ) . $disabled . ' />';
2203
+ $html .= '<label for="wpuxss_eml_taxonomies-' . esc_attr($taxonomy->name) . '-taxonomy_auto_assign">' . sprintf(
2204
+ __('Auto-assign media items to parent %s %s on upload','enhanced-media-library'),
2205
+ esc_html($post_singular_name),
2206
+ esc_html($taxonomy->label)
2207
+ ) . '</label>
2208
+ <a class="add-new-h2 eml-button-synchronize-terms' . $class_name . '" data-post-type="' . esc_attr($post_type->name) . '" data-taxonomy="' . esc_attr($taxonomy->name) . '" href="javascript:;">' . __( 'Synchronize Now', 'enhanced-media-library' ) . '</a><p class="description">';
2209
+ $html .= sprintf(
2210
+ '<strong style="color:red">%s:</strong> ',
2211
+ __('Warning','enhanced-media-library')
2212
+ );
2213
+ $html .= sprintf(
2214
+ __('As a result of clicking "Synchronize Now" all media items attached to a %s will be assigned to %s of their parent %s. Currently assigned %s will not be saved. Media items that are not attached to any %s will not be affected.','enhanced-media-library'),
2215
+ esc_html($post_singular_name),
2216
+ esc_html($taxonomy->label),
2217
+ esc_html($post_singular_name),
2218
+ esc_html($taxonomy->label),
2219
+ esc_html($post_singular_name)
2220
+ ) . '</p></li>';
2221
 
2222
  $html .= '</ul>';
2223
 
2281
 
2282
  </div>
2283
 
2284
+ <?php
2285
+ $class_name = EML_PRO ? '' : ' disabled';
2286
+ $class = EML_PRO ? '' : ' class="disabled"';
2287
+ $disabled = EML_PRO ? '' : ' readonly="readonly"';
2288
+ $pro_message = EML_PRO ? '' : ' <span class="premium">/ Premium Feature</span>';
2289
+ ?>
2290
+
2291
+ <h2<?php echo $class; ?>><?php _e('Bulk Edit','enhanced-media-library'); echo $pro_message; ?></h2>
2292
+
2293
+ <div class="postbox<?php echo $class_name; ?>">
2294
+
2295
+ <div class="inside">
2296
+
2297
+ <table class="form-table">
2298
+ <tr>
2299
+ <th scope="row"><?php _e('Save Changes button','enhanced-media-library'); ?></th>
2300
+ <td>
2301
+ <fieldset>
2302
+ <legend class="screen-reader-text"><span><?php _e('Turn off \'Save Changes\' button','enhanced-media-library'); ?></span></legend>
2303
+ <label><input name="wpuxss_eml_tax_options[bulk_edit_save_button]" type="hidden" value="0"><input name="wpuxss_eml_tax_options[bulk_edit_save_button]" type="checkbox" value="1" <?php checked( true, (bool) $wpuxss_eml_tax_options['bulk_edit_save_button'], true ); echo $disabled; ?> /> <?php _e('Bulk changes are being made not immediately - by clicking \'Save Changes\' button','enhanced-media-library'); ?></label>
2304
+ <p class="description"><?php _e( 'Try this if you edit a lot of media items at once and feel uncomfortable with editing saved on the fly.', 'enhanced-media-library' ); ?></p>
2305
+ </fieldset>
2306
+ </td>
2307
+ </tr>
2308
+ </table>
2309
+
2310
+ <?php submit_button( __( 'Save Changes' ), 'primary', 'submit', true, array( 'id' => 'eml-submit-tax-settings-bulk-edit' ) ); ?>
2311
+
2312
+ </div>
2313
+
2314
+ </div>
2315
 
2316
  </form>
2317
 
2508
  <h4><?php _e( 'Changelog', 'enhanced-media-library' ); ?></h4>
2509
  <p><?php _e( 'What\'s new in', 'enhanced-media-library' ); ?> <a href="https://wordpress.org/plugins/enhanced-media-library/changelog/"><?php _e( 'version', 'enhanced-media-library' ); echo ' ' . EML_VERSION; ?></a>.</p>
2510
 
2511
+ <?php if ( ! EML_PRO ) : ?>
2512
+
2513
+ <h4>Enhanced Media Library PRO</h4>
2514
+ <p><?php _e( 'More features under the hood', 'enhanced-media-library' ); ?></p>
2515
+ <p><a href="https://wpuxsolutions.com/plugins/enhanced-media-library-pro" target="_blank" class="button button-primary">Discover <span>PRO</span></a></p>
2516
+
2517
+ <?php endif; ?>
2518
 
2519
  <h4><?php _e( 'Support', 'enhanced-media-library' ); ?></h4>
2520
  <p><?php _e( 'Feel free to ask for help on', 'enhanced-media-library' ); ?> <a href="https://wpuxsolutions.com/support/">wpuxsolutions.com</a>. <?php _e( 'Support is free for both versions of the plugin.', 'enhanced-media-library' ); ?></p>
2564
  );
2565
 
2566
  $utility_link = array(
2567
+ 'utility' => '<a href="' . self_admin_url($settings_page.'?page=eml-settings') . '">' . __( 'Utilities', 'enhanced-media-library' ) . '</a>'
2568
  );
2569
 
2570
  return array_merge( $settings_link, $utility_link, $links );
2589
  return $links;
2590
  }
2591
 
2592
+ if ( ! EML_PRO ) {
2593
+
2594
+ $links[] = '<a href="https://wpuxsolutions.com/plugins/enhanced-media-library-pro" target="_blank"><strong>' . __( 'Go PRO ', 'enhanced-media-library' ) . '</strong></a>';
2595
+ }
2596
+
2597
  $links[] = __( 'Rate us:', 'enhanced-media-library' ) . " <span class='rating-stars'><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=1#new-post' target='_blank' data-rating='1' title='" . __('Poor', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=2#new-post' target='_blank' data-rating='2' title='" . __('Works', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=3#new-post' target='_blank' data-rating='3' title='" . __('Good', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=4#new-post' target='_blank' data-rating='4' title='" . __('Great', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><a href='//wordpress.org/support/plugin/enhanced-media-library/reviews/?rate=5#new-post' target='_blank' data-rating='5' title='" . __('Fantastic!', 'enhanced-media-library') . "'><span class='dashicons dashicons-star-filled' style='color:#ffb900 !important;'></span></a><span>";
2598
 
2599
  return $links;
core/taxonomies.php CHANGED
@@ -371,15 +371,15 @@ if ( ! function_exists( 'wpuxss_eml_restrict_manage_posts' ) ) {
371
  if ( ! (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['admin_filter'] )
372
  continue;
373
 
374
- echo "<label for='" . esc_attr($taxonomy->name) ."' class='screen-reader-text'>" . __('Filter by','enhanced-media-library') . " " . esc_html($taxonomy->labels->singular_name) . "</label>";
375
 
376
  $selected = ( ! $uncategorized && isset( $wp_query->query[$taxonomy->name] ) ) ? $wp_query->query[$taxonomy->name] : 0;
377
 
378
  wp_dropdown_categories(
379
  array(
380
- 'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->singular_name),
381
  'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->name) . ' —',
382
- 'show_option_not_in' => '— ' . __( 'Not in a', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->singular_name) . ' —',
383
  'taxonomy' => $taxonomy->name,
384
  'name' => $taxonomy->name,
385
  'orderby' => 'name',
371
  if ( ! (bool) $wpuxss_eml_taxonomies[$taxonomy->name]['admin_filter'] )
372
  continue;
373
 
374
+ echo "<label for='" . esc_attr($taxonomy->name) ."' class='screen-reader-text'>" . __('Filter by','enhanced-media-library') . " " . esc_html($taxonomy->labels->name) . "</label>";
375
 
376
  $selected = ( ! $uncategorized && isset( $wp_query->query[$taxonomy->name] ) ) ? $wp_query->query[$taxonomy->name] : 0;
377
 
378
  wp_dropdown_categories(
379
  array(
380
+ 'show_option_all' => __( 'Filter by', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->name),
381
  'show_option_in' => '— ' . __( 'All', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->name) . ' —',
382
+ 'show_option_not_in' => '— ' . __( 'Not in', 'enhanced-media-library' ) . ' ' . esc_html($taxonomy->labels->name) . ' —',
383
  'taxonomy' => $taxonomy->name,
384
  'name' => $taxonomy->name,
385
  'orderby' => 'name',
css/eml-admin-rtl.css CHANGED
@@ -161,6 +161,21 @@
161
  list-style: disc;
162
  margin-right: 1.4em;
163
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  @font-face {
166
  font-family: 'webbistro';
@@ -341,3 +356,38 @@
341
  font-size: 23px;
342
  font-weight: 400;
343
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  list-style: disc;
162
  margin-right: 1.4em;
163
  }
164
+ #wpuxss-credits .button-primary {
165
+ background-color: #1ace0d;
166
+ border-color: #139a09;
167
+ }
168
+ #wpuxss-credits .button-primary:hover {
169
+ background: #1dbb11;
170
+ border-color: #127d0a;
171
+ color: #e4ffe2;
172
+ }
173
+ #wpuxss-credits .button-primary:focus {
174
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px #1dbb11;
175
+ }
176
+ #wpuxss-credits .button-primary span {
177
+ font-weight: bold;
178
+ }
179
 
180
  @font-face {
181
  font-family: 'webbistro';
356
  font-size: 23px;
357
  font-weight: 400;
358
  }
359
+
360
+ .eml-button-synchronize-terms.disabled {
361
+ pointer-events: none;
362
+ cursor: default;
363
+ }
364
+
365
+
366
+
367
+
368
+ /* == Disabled Styles == */
369
+
370
+ .wrap.eml-options .disabled {
371
+ opacity: 0.6;
372
+ }
373
+ .wrap.eml-options .disabled label,
374
+ .wrap.eml-options .disabled input {
375
+ cursor: default;
376
+ }
377
+ .wrap.eml-options .disabled input {
378
+ pointer-events: none;
379
+ }
380
+ .wrap.eml-options .disabled input:focus {
381
+ box-shadow: none;
382
+ }
383
+
384
+ .wrap.eml-options .disabled .submit {
385
+ pointer-events: none;
386
+ cursor: default;
387
+ }
388
+ .wrap.eml-options span.premium {
389
+ text-transform: uppercase;
390
+ }
391
+ .wrap.eml-options h2 span.premium {
392
+ font-size: 0.5em;
393
+ }
css/eml-admin.css CHANGED
@@ -161,6 +161,21 @@
161
  list-style: disc;
162
  margin-left: 1.4em;
163
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  @font-face {
166
  font-family: 'webbistro';
@@ -341,3 +356,38 @@
341
  font-size: 23px;
342
  font-weight: 400;
343
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  list-style: disc;
162
  margin-left: 1.4em;
163
  }
164
+ #wpuxss-credits .button-primary {
165
+ background-color: #1ace0d;
166
+ border-color: #139a09;
167
+ }
168
+ #wpuxss-credits .button-primary:hover {
169
+ background: #1dbb11;
170
+ border-color: #127d0a;
171
+ color: #e4ffe2;
172
+ }
173
+ #wpuxss-credits .button-primary:focus {
174
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px #1dbb11;
175
+ }
176
+ #wpuxss-credits .button-primary span {
177
+ font-weight: bold;
178
+ }
179
 
180
  @font-face {
181
  font-family: 'webbistro';
356
  font-size: 23px;
357
  font-weight: 400;
358
  }
359
+
360
+ .eml-button-synchronize-terms.disabled {
361
+ pointer-events: none;
362
+ cursor: default;
363
+ }
364
+
365
+
366
+
367
+
368
+ /* == Disabled Styles == */
369
+
370
+ .wrap.eml-options .disabled {
371
+ opacity: 0.6;
372
+ }
373
+ .wrap.eml-options .disabled label,
374
+ .wrap.eml-options .disabled input {
375
+ cursor: default;
376
+ }
377
+ .wrap.eml-options .disabled input {
378
+ pointer-events: none;
379
+ }
380
+ .wrap.eml-options .disabled input:focus {
381
+ box-shadow: none;
382
+ }
383
+
384
+ .wrap.eml-options .disabled .submit {
385
+ pointer-events: none;
386
+ cursor: default;
387
+ }
388
+ .wrap.eml-options span.premium {
389
+ text-transform: uppercase;
390
+ }
391
+ .wrap.eml-options h2 span.premium {
392
+ font-size: 0.5em;
393
+ }
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.8
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
@@ -26,7 +26,8 @@ global $wp_version,
26
 
27
 
28
 
29
- if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.8' );
 
30
 
31
 
32
 
@@ -139,7 +140,7 @@ if ( ! function_exists( 'wpuxss_eml_on_plugins_loaded' ) ) {
139
 
140
 
141
  // textdomain
142
- load_plugin_textdomain( 'enhanced-media-library', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
143
 
144
 
145
  // on update
@@ -560,7 +561,7 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
560
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
561
  'filter_by' => __( 'Filter by', 'enhanced-media-library' ),
562
  'in' => __( 'All', 'enhanced-media-library' ),
563
- 'not_in' => __( 'Not in a', 'enhanced-media-library' ),
564
  'reset_filters' => __( 'Reset All Filters', 'enhanced-media-library' ),
565
  'author' => __( 'author', 'enhanced-media-library' ),
566
  'authors' => __( 'authors', 'enhanced-media-library' ),
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.8.1
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
26
 
27
 
28
 
29
+ if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.8.1' );
30
+ if ( ! defined('EML_PRO') ) define( 'EML_PRO', false );
31
 
32
 
33
 
140
 
141
 
142
  // textdomain
143
+ load_plugin_textdomain( 'enhanced-media-library' );
144
 
145
 
146
  // on update
561
  'uncategorized' => __( 'All Uncategorized', 'enhanced-media-library' ),
562
  'filter_by' => __( 'Filter by', 'enhanced-media-library' ),
563
  'in' => __( 'All', 'enhanced-media-library' ),
564
+ 'not_in' => __( 'Not in', 'enhanced-media-library' ),
565
  'reset_filters' => __( 'Reset All Filters', 'enhanced-media-library' ),
566
  'author' => __( 'author', 'enhanced-media-library' ),
567
  'authors' => __( 'authors', 'enhanced-media-library' ),
js/eml-media-editor.js CHANGED
@@ -214,6 +214,7 @@ window.eml = window.eml || { l10n: {} };
214
 
215
  return shortcode;
216
  }
 
217
  };
218
 
219
 
214
 
215
  return shortcode;
216
  }
217
+
218
  };
219
 
220
 
js/eml-media-grid.js CHANGED
@@ -146,9 +146,7 @@ window.eml = window.eml || { l10n: {} };
146
  },
147
 
148
  click: function() {
149
- if ( typeof this.controller._stopSelecting !== 'undefined' ) {
150
- this.controller.selectAll();
151
- }
152
  }
153
  });
154
 
@@ -223,7 +221,7 @@ window.eml = window.eml || { l10n: {} };
223
  library = this.controller.state().get( 'library' );
224
 
225
 
226
- if ( typeof this.controller._stopSelecting !== 'undefined' ) {
227
 
228
  if ( mediaTrash ) {
229
  action = 'trash' === selection.at( 0 ).get( 'status' ) ? 'restore' : 'trash';
@@ -300,7 +298,7 @@ window.eml = window.eml || { l10n: {} };
300
 
301
  click: function() {
302
 
303
- if ( typeof this.controller._stopSelecting !== 'undefined' ) {
304
  this.controller.bulk( 'delete' );
305
  }
306
  else {
146
  },
147
 
148
  click: function() {
149
+ this.controller.selectAll();
 
 
150
  }
151
  });
152
 
221
  library = this.controller.state().get( 'library' );
222
 
223
 
224
+ if ( typeof this.controller._bulk !== 'undefined' ) {
225
 
226
  if ( mediaTrash ) {
227
  action = 'trash' === selection.at( 0 ).get( 'status' ) ? 'restore' : 'trash';
298
 
299
  click: function() {
300
 
301
+ if ( typeof this.controller._bulk !== 'undefined' ) {
302
  this.controller.bulk( 'delete' );
303
  }
304
  else {
js/eml-media-views.js CHANGED
@@ -437,7 +437,7 @@ window.eml = window.eml || { l10n: {} };
437
  });
438
 
439
  filters.all = {
440
- text: eml.l10n.filter_by + ' ' + self.options.singularName,
441
  props: {
442
  uncategorized : null,
443
  orderby : eml.l10n.media_orderby,
@@ -461,7 +461,7 @@ window.eml = window.eml || { l10n: {} };
461
  filters['in']['props'][self.options.taxonomy] = 'in';
462
 
463
  filters.not_in = {
464
- text: '&#8212; ' + eml.l10n.not_in + ' ' + self.options.singularName + ' &#8212;',
465
  props: {
466
  uncategorized : null,
467
  orderby : eml.l10n.media_orderby,
@@ -625,6 +625,8 @@ window.eml = window.eml || { l10n: {} };
625
  if ( $('.notice-dismiss').length ) {
626
  $( document ).on( 'click', '.notice-dismiss', _.debounce( _.bind( this.fixLayout, this), 250 ) );
627
  }
 
 
628
  },
629
 
630
  fixLayout: function() {
@@ -677,6 +679,15 @@ window.eml = window.eml || { l10n: {} };
677
  }
678
  },
679
 
 
 
 
 
 
 
 
 
 
680
  createToolbar: function() {
681
 
682
  var LibraryViewSwitcher, Filters, toolbarOptions,
@@ -798,7 +809,7 @@ window.eml = window.eml || { l10n: {} };
798
  if ( -1 !== _.indexOf( eml.l10n.filter_taxonomies, taxonomy ) && values.term_list.length ) {
799
 
800
  self.toolbar.set( taxonomy+'FilterLabel', new media.view.Label({
801
- value: eml.l10n.filter_by + values.singular_name,
802
  attributes: {
803
  'for': 'media-attachment-' + taxonomy + '-filters',
804
  },
@@ -1033,11 +1044,15 @@ window.eml = window.eml || { l10n: {} };
1033
  this.sidebar.$el.removeClass( 'hidden' );
1034
  this.$el.children('.attachments').css( 'right', '300px' );
1035
  this.$el.children('.uploader-inline').css( 'right', '310px' );
 
 
1036
  }
1037
  else {
1038
  this.sidebar.$el.addClass( 'hidden' );
1039
  this.$el.children('.attachments').css( 'right', 0 );
1040
  this.$el.children('.uploader-inline').css( 'right', '10px' );
 
 
1041
  }
1042
  },
1043
 
@@ -1057,7 +1072,6 @@ window.eml = window.eml || { l10n: {} };
1057
  priority: 80
1058
  }) );
1059
  }
1060
-
1061
  this.toggleSidebar();
1062
  }
1063
  },
@@ -1174,7 +1188,7 @@ window.eml = window.eml || { l10n: {} };
1174
  original.MediaFrame.Post.activate.apply( this, arguments );
1175
 
1176
  this.on( 'open', content.fixLayout, content );
1177
- if ( typeof acf !== 'undefined' ) {
1178
  $( document ).on( 'click', '.acf-expand-details', _.debounce( _.bind( content.fixLayout, content ), 250 ) );
1179
  }
1180
  }
437
  });
438
 
439
  filters.all = {
440
+ text: eml.l10n.filter_by + ' ' + self.options.pluralName,
441
  props: {
442
  uncategorized : null,
443
  orderby : eml.l10n.media_orderby,
461
  filters['in']['props'][self.options.taxonomy] = 'in';
462
 
463
  filters.not_in = {
464
+ text: '&#8212; ' + eml.l10n.not_in + ' ' + self.options.pluralName + ' &#8212;',
465
  props: {
466
  uncategorized : null,
467
  orderby : eml.l10n.media_orderby,
625
  if ( $('.notice-dismiss').length ) {
626
  $( document ).on( 'click', '.notice-dismiss', _.debounce( _.bind( this.fixLayout, this), 250 ) );
627
  }
628
+
629
+ this.controller.on( 'sidebar:on' , _.debounce( _.bind( this.scrollAttachmentIntoView, this, {block: "center"} ), 15 ) );
630
  },
631
 
632
  fixLayout: function() {
679
  }
680
  },
681
 
682
+ scrollAttachmentIntoView: function( options ) {
683
+
684
+ var selection = this.controller.state().get( 'selection' );
685
+
686
+ if ( selection.length == 1 ) {
687
+ $( 'li.attachment[data-id="' + selection.single().get( 'id' ) +'"]' )[0].scrollIntoView( options );
688
+ }
689
+ },
690
+
691
  createToolbar: function() {
692
 
693
  var LibraryViewSwitcher, Filters, toolbarOptions,
809
  if ( -1 !== _.indexOf( eml.l10n.filter_taxonomies, taxonomy ) && values.term_list.length ) {
810
 
811
  self.toolbar.set( taxonomy+'FilterLabel', new media.view.Label({
812
+ value: eml.l10n.filter_by + values.plural_name,
813
  attributes: {
814
  'for': 'media-attachment-' + taxonomy + '-filters',
815
  },
1044
  this.sidebar.$el.removeClass( 'hidden' );
1045
  this.$el.children('.attachments').css( 'right', '300px' );
1046
  this.$el.children('.uploader-inline').css( 'right', '310px' );
1047
+
1048
+ this.controller.trigger( 'sidebar:on' );
1049
  }
1050
  else {
1051
  this.sidebar.$el.addClass( 'hidden' );
1052
  this.$el.children('.attachments').css( 'right', 0 );
1053
  this.$el.children('.uploader-inline').css( 'right', '10px' );
1054
+
1055
+ this.controller.trigger( 'sidebar:off' );
1056
  }
1057
  },
1058
 
1072
  priority: 80
1073
  }) );
1074
  }
 
1075
  this.toggleSidebar();
1076
  }
1077
  },
1188
  original.MediaFrame.Post.activate.apply( this, arguments );
1189
 
1190
  this.on( 'open', content.fixLayout, content );
1191
+ if ( typeof acf !== 'undefined' && $('.acf-expand-details').length ) {
1192
  $( document ).on( 'click', '.acf-expand-details', _.debounce( _.bind( content.fixLayout, content ), 250 ) );
1193
  }
1194
  }
js/eml-medialibrary-options.js CHANGED
@@ -35,4 +35,9 @@
35
  $('#wpuxss_eml_lib_options_grid_caption_type').prop( 'hidden', ! isChecked );
36
  });
37
 
 
 
 
 
 
38
  })( jQuery );
35
  $('#wpuxss_eml_lib_options_grid_caption_type').prop( 'hidden', ! isChecked );
36
  });
37
 
38
+
39
+ $( document ).on( 'click', 'input[readonly], .disabled .submit input.button', function( event ) {
40
+ event.preventDefault();
41
+ });
42
+
43
  })( jQuery );
js/eml-taxonomies-options.js CHANGED
@@ -496,17 +496,22 @@ window.eml = window.eml || { l10n: {} };
496
 
497
 
498
 
499
- // synchronize parent terms to media items (PRO)
500
  $( document ).on( 'click', '.eml-button-synchronize-terms', function( event ) {
501
 
502
  var $el, post_type, taxonomy;
503
 
504
 
 
 
 
 
 
 
 
 
505
  emlConfirmDialog( eml.l10n.sync_warning_title, eml.l10n.sync_warning_text, eml.l10n.sync_warning_yes, eml.l10n.sync_warning_no, 'button button-primary' )
506
  .done( function() {
507
 
508
- $el = $( event.target );
509
-
510
  post_type = $el.attr( 'data-post-type' );
511
  taxonomy = $el.attr( 'data-taxonomy' );
512
 
@@ -526,4 +531,9 @@ window.eml = window.eml || { l10n: {} };
526
  });
527
  });
528
 
 
 
 
 
 
529
  })( jQuery, _ );
496
 
497
 
498
 
 
499
  $( document ).on( 'click', '.eml-button-synchronize-terms', function( event ) {
500
 
501
  var $el, post_type, taxonomy;
502
 
503
 
504
+ $el = $( event.target );
505
+
506
+ if ( $el.hasClass( 'disabled' ) ) {
507
+ event.preventDefault();
508
+ return false;
509
+ }
510
+
511
+
512
  emlConfirmDialog( eml.l10n.sync_warning_title, eml.l10n.sync_warning_text, eml.l10n.sync_warning_yes, eml.l10n.sync_warning_no, 'button button-primary' )
513
  .done( function() {
514
 
 
 
515
  post_type = $el.attr( 'data-post-type' );
516
  taxonomy = $el.attr( 'data-taxonomy' );
517
 
531
  });
532
  });
533
 
534
+
535
+ $( document ).on( 'click', 'input[readonly], .disabled .submit input.button', function( event ) {
536
+ event.preventDefault();
537
+ });
538
+
539
  })( jQuery, _ );
languages/enhanced-media-library-cs.mo DELETED
Binary file
languages/enhanced-media-library-cs.po DELETED
@@ -1,1196 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Czech
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:48+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: cs_CZ\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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "Odebrat"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "Odznačit"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "Stručný popis obrázku&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "Stručný popis videa&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "Stručný popis zvukového souboru&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "Stručný popis mediálního souboru&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr "Nastavení MIME typů bylo obnoveno."
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr "Nastavení MIME typů bylo uloženo."
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] ""
54
- msgstr[1] ""
55
- msgstr[2] ""
56
-
57
- #: core/options-pages.php:97 core/options-pages.php:106
58
- #: core/options-pages.php:115 core/options-pages.php:124
59
- #: core/options-pages.php:321 core/options-pages.php:399
60
- #: core/options-pages.php:1694 core/options-pages.php:1952
61
- #: core/options-pages.php:2265 core/options-pages.php:2465
62
- msgid "Media Settings"
63
- msgstr "Nastavení médií"
64
-
65
- #: core/options-pages.php:106 core/options-pages.php:107
66
- #: core/options-pages.php:363 core/options-pages.php:1019
67
- msgid "Media Library"
68
- msgstr "Knihovna médií"
69
-
70
- #: core/options-pages.php:115 core/options-pages.php:116
71
- #: core/options-pages.php:364 core/options-pages.php:1033
72
- #: core/options-pages.php:1742 core/options-pages.php:1973
73
- msgid "Media Taxonomies"
74
- msgstr "Taxonomie médií"
75
-
76
- #: core/options-pages.php:124 core/options-pages.php:125
77
- #: core/options-pages.php:365 core/options-pages.php:1047
78
- msgid "MIME Types"
79
- msgstr "MIME typy"
80
-
81
- #. Plugin Name of the plugin/theme
82
- #: core/options-pages.php:166 core/options-pages.php:167
83
- #: core/options-pages.php:194 core/options-pages.php:195
84
- msgid "Enhanced Media Library"
85
- msgstr "Enhanced Media Library"
86
-
87
- #: core/options-pages.php:362
88
- msgid "General"
89
- msgstr "Základní"
90
-
91
- #: core/options-pages.php:388 core/options-pages.php:395
92
- #: core/options-pages.php:732 core/options-pages.php:740
93
- #: core/options-pages.php:925 core/options-pages.php:1682
94
- #: core/options-pages.php:1689 core/options-pages.php:1940
95
- #: core/options-pages.php:1947 core/options-pages.php:2252
96
- #: core/options-pages.php:2259
97
- msgid "You do not have sufficient permissions to access this page."
98
- msgstr "Nemáte dostatečné oprávnění pro přístup na tuto stránku."
99
-
100
- #: core/options-pages.php:410
101
- msgid "Image sizes"
102
- msgstr "Velikosti obrázku"
103
-
104
- #: core/options-pages.php:411
105
- msgid ""
106
- "The sizes listed below determine the maximum dimensions in pixels to use "
107
- "when adding an image to the Media Library."
108
- msgstr ""
109
- "Níže definované velikosti představují maximální rozměry (uvedené v "
110
- "pixelech), které budou použity při nahrávání obrázku do Knihovny médií a při "
111
- "jeho následném zpracování."
112
-
113
- #: core/options-pages.php:415
114
- msgid "Thumbnail size"
115
- msgstr "Velikost náhledu"
116
-
117
- #: core/options-pages.php:417
118
- msgid "Width"
119
- msgstr "Šířka"
120
-
121
- #: core/options-pages.php:419
122
- msgid "Height"
123
- msgstr "Výška"
124
-
125
- #: core/options-pages.php:422
126
- msgid ""
127
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
128
- msgstr ""
129
- "Oříznout náhled podle přesných rozměrů (obvykle se náhledy neořezávají, ale "
130
- "zmenšují se s ohledem na proporce původního obrázku)"
131
-
132
- #: core/options-pages.php:427 core/options-pages.php:428
133
- msgid "Medium size"
134
- msgstr "Střední velikost"
135
-
136
- #: core/options-pages.php:429 core/options-pages.php:440
137
- msgid "Max Width"
138
- msgstr "Maximální šířka"
139
-
140
- #: core/options-pages.php:432 core/options-pages.php:443
141
- msgid "Max Height"
142
- msgstr "Maximální výška"
143
-
144
- #: core/options-pages.php:438 core/options-pages.php:439
145
- msgid "Large size"
146
- msgstr "Velká velikost"
147
-
148
- #: core/options-pages.php:456
149
- msgid "Embeds"
150
- msgstr ""
151
-
152
- #: core/options-pages.php:463
153
- msgid "Uploading Files"
154
- msgstr "Nahrávání souborů"
155
-
156
- #: core/options-pages.php:470
157
- msgid "Store uploads in this folder"
158
- msgstr "Ukládat nahrané soubory v této složce"
159
-
160
- #: core/options-pages.php:474
161
- #, php-format
162
- msgid "Default is %s"
163
- msgstr "Výchozí je %s"
164
-
165
- #: core/options-pages.php:480
166
- msgid "Full URL path to files"
167
- msgstr "Celá URL cesta k souborům"
168
-
169
- #: core/options-pages.php:482
170
- msgid "Configuring this is optional. By default, it should be blank."
171
- msgstr "Toto nastavení je volitelné a ve výchozím stavu je nevyplněné."
172
-
173
- #: core/options-pages.php:490
174
- msgid "Organize my uploads into month- and year-based folders"
175
- msgstr ""
176
- "Ukládat nahrané soubory do podadresářů přehledně pojmenovaných po "
177
- "jednotlivých měsících a letech"
178
-
179
- #: core/options-pages.php:560 core/options-pages.php:1997
180
- #: core/options-pages.php:2012 core/options-pages.php:2075
181
- #: core/options-pages.php:2147
182
- msgid "Edit"
183
- msgstr "Upravit"
184
-
185
- #: core/options-pages.php:561
186
- msgid "Close"
187
- msgstr "Zavřít"
188
-
189
- #: core/options-pages.php:562 core/options-pages.php:2013
190
- #: core/options-pages.php:2076
191
- msgid "View"
192
- msgstr "Zobrazit"
193
-
194
- #: core/options-pages.php:563 core/options-pages.php:2014
195
- #: core/options-pages.php:2077
196
- msgid "Update"
197
- msgstr "Aktualizovat"
198
-
199
- #: core/options-pages.php:564 core/options-pages.php:2015
200
- #: core/options-pages.php:2078
201
- msgid "Add New"
202
- msgstr "Vytvořit novou"
203
-
204
- #: core/options-pages.php:565 core/options-pages.php:2016
205
- #: core/options-pages.php:2079
206
- msgid "New"
207
- msgstr "Nový"
208
-
209
- #: core/options-pages.php:566
210
- msgid "Name"
211
- msgstr "Jméno"
212
-
213
- #: core/options-pages.php:567 core/options-pages.php:2017
214
- #: core/options-pages.php:2080
215
- msgid "Parent"
216
- msgstr "Nadřazená"
217
-
218
- #: core/options-pages.php:568 core/options-pages.php:862
219
- #: core/options-pages.php:1084 core/options-pages.php:2011
220
- #: core/options-pages.php:2074 core/taxonomies.php:381
221
- #: enhanced-media-library.php:562
222
- msgid "All"
223
- msgstr "Všechny"
224
-
225
- #: core/options-pages.php:569 core/options-pages.php:2018
226
- #: core/options-pages.php:2081
227
- msgid "Search"
228
- msgstr "Hledat"
229
-
230
- #: core/options-pages.php:571 core/options-pages.php:2062
231
- msgid "New Taxonomy"
232
- msgstr "Nová taxonomie"
233
-
234
- #: core/options-pages.php:573
235
- msgid "Remove Taxonomy"
236
- msgstr "Odebrat taxonomii"
237
-
238
- #: core/options-pages.php:574
239
- msgid "Taxonomy will be removed."
240
- msgstr "Taxonomie bude odebrána."
241
-
242
- #: core/options-pages.php:575
243
- msgid ""
244
- "Taxonomy terms (categories) will remain intact in the database. If you "
245
- "create a taxonomy with the same name in the future, its terms (categories) "
246
- "will be available again."
247
- msgstr ""
248
- "Výrazy této taxonomie (kategorie) zůstanou beze změn v databázi. Pokud v "
249
- "budoucnu vytvoříte taxonomii se stejným názvem, tyto výrazy (kategorie) "
250
- "budou znovu k dispozici."
251
-
252
- #: core/options-pages.php:576
253
- msgid "Media items will remain intact."
254
- msgstr "Mediální soubory zůstanou beze změn."
255
-
256
- #: core/options-pages.php:577
257
- msgid "Are you still sure?"
258
- msgstr "Opravdu chcete pokračovat?"
259
-
260
- #: core/options-pages.php:578
261
- msgid "Yes, remove taxonomy"
262
- msgstr "Ano, smazat taxonomii"
263
-
264
- #: core/options-pages.php:580
265
- msgid "Duplicate"
266
- msgstr "Duplikovat"
267
-
268
- #: core/options-pages.php:581
269
- msgid "Taxonomy with the same name already exists. Please chose other one."
270
- msgstr "Taxonomie s tímto názvem už existuje. Zvolte prosím jiný název."
271
-
272
- #: core/options-pages.php:583
273
- msgid "Empty Fields"
274
- msgstr "Prázdná pole"
275
-
276
- #: core/options-pages.php:584
277
- msgid "Wrong Taxonomy Name"
278
- msgstr ""
279
-
280
- #: core/options-pages.php:585
281
- msgid "Wrong Slug"
282
- msgstr ""
283
-
284
- #: core/options-pages.php:587
285
- msgid "Please choose Singular and Plural names for all new taxomonies."
286
- msgstr ""
287
- "Zvolte prosím název všech nových taxonomií v jednotném a množném čísle."
288
-
289
- #: core/options-pages.php:588
290
- msgid "Please choose Singular name for all new taxomonies."
291
- msgstr "Zvolte prosím jednotné číslo všech nových taxonomií"
292
-
293
- #: core/options-pages.php:589
294
- msgid "Please choose Plural name for all new taxomonies."
295
- msgstr ""
296
-
297
- #: core/options-pages.php:591
298
- msgid ""
299
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
300
- "name please enter it manually."
301
- msgstr ""
302
-
303
- #: core/options-pages.php:592
304
- msgid ""
305
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
306
- "character ( _ ), and be 3-32 characters long."
307
- msgstr ""
308
-
309
- #: core/options-pages.php:593
310
- msgid ""
311
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
312
- "or hyphen ( - ) characters."
313
- msgstr ""
314
-
315
- #: core/options-pages.php:595 core/options-pages.php:644
316
- msgid "Ok"
317
- msgstr "Ok"
318
-
319
- #: core/options-pages.php:596 core/options-pages.php:601
320
- #: core/options-pages.php:645 core/options-pages.php:690
321
- msgid "Cancel"
322
- msgstr "Zrušit"
323
-
324
- #: core/options-pages.php:598
325
- msgid "Synchronize Now"
326
- msgstr "Synchronizovat nyní"
327
-
328
- #: core/options-pages.php:599 core/options-pages.php:687
329
- msgid "This operation cannot be canceled! Are you still sure?"
330
- msgstr "Tato operace nemůže být zrušena! Opravdu chcete pokračovat?"
331
-
332
- #: core/options-pages.php:600
333
- msgid "Synchronize"
334
- msgstr "Synchronizovat"
335
-
336
- #: core/options-pages.php:602
337
- msgid "Synchronizing..."
338
- msgstr "Synchronizace..."
339
-
340
- #: core/options-pages.php:639 core/options-pages.php:2388
341
- msgid "Restore WordPress default MIME Types"
342
- msgstr "Obnovit výchozí MIME typy WordPressu"
343
-
344
- #: core/options-pages.php:640
345
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
346
- msgstr "Varování! Všechny vlastní MIME typy budou tímto smazány."
347
-
348
- #: core/options-pages.php:641
349
- msgid "Restore Defaults"
350
- msgstr "Výchozí nastavení"
351
-
352
- #: core/options-pages.php:642
353
- msgid "Restoring..."
354
- msgstr "Obnovování..."
355
-
356
- #: core/options-pages.php:647
357
- msgid "MIME Types cannot be saved"
358
- msgstr ""
359
-
360
- #: core/options-pages.php:648
361
- msgid "Please fill into all fields."
362
- msgstr "Vyplňte prosím všechna pole."
363
-
364
- #: core/options-pages.php:649
365
- msgid "Duplicate extensions or MIME types. Please choose other one."
366
- msgstr ""
367
-
368
- #: core/options-pages.php:685 core/options-pages.php:853
369
- #: core/options-pages.php:1063
370
- msgid "Complete Cleanup"
371
- msgstr "Kompletní vyčištění"
372
-
373
- #: core/options-pages.php:686
374
- msgid ""
375
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
376
- "plugin data</strong> from the database including backups."
377
- msgstr ""
378
- "Z databáze se chystáte <strong style=\"text-transform:uppercase\">smazat "
379
- "všechna data pluginu (včetně záloh).</strong>"
380
-
381
- #: core/options-pages.php:688
382
- msgid "Yes, delete all data"
383
- msgstr "Ano, smazat všechna data"
384
-
385
- #: core/options-pages.php:689
386
- msgid "Cleaning..."
387
- msgstr "Čištění..."
388
-
389
- #: core/options-pages.php:693 core/options-pages.php:996
390
- msgid "Unify Media Settings over Network"
391
- msgstr ""
392
-
393
- #: core/options-pages.php:696 core/options-pages.php:700
394
- #: core/options-pages.php:704
395
- msgid "will be overwritten"
396
- msgstr ""
397
-
398
- #: core/options-pages.php:706
399
- msgid "Apply"
400
- msgstr ""
401
-
402
- #: core/options-pages.php:707
403
- msgid "Applying Settings..."
404
- msgstr ""
405
-
406
- #: core/options-pages.php:746 core/options-pages.php:935
407
- msgid "Enhanced Media Library Utilities"
408
- msgstr ""
409
-
410
- #: core/options-pages.php:756
411
- msgid "Export"
412
- msgstr "Exportovat"
413
-
414
- #: core/options-pages.php:761
415
- msgid "Plugin settings to export:"
416
- msgstr ""
417
-
418
- #: core/options-pages.php:762 core/options-pages.php:789
419
- #: core/options-pages.php:829
420
- msgid "Settings > Media Library"
421
- msgstr ""
422
-
423
- #: core/options-pages.php:763 core/options-pages.php:790
424
- #: core/options-pages.php:830
425
- msgid "Settings > Media Taxonomies"
426
- msgstr ""
427
-
428
- #: core/options-pages.php:764 core/options-pages.php:791
429
- #: core/options-pages.php:831
430
- msgid "Settings > MIME Types"
431
- msgstr ""
432
-
433
- #: core/options-pages.php:768
434
- msgid ""
435
- "Use generated JSON file to import the configuration into another website."
436
- msgstr ""
437
-
438
- #: core/options-pages.php:773
439
- msgid "Export Plugin Settings"
440
- msgstr "Exportovat nastavení pluginu"
441
-
442
- #: core/options-pages.php:783
443
- msgid "Import"
444
- msgstr "Importovat"
445
-
446
- #: core/options-pages.php:788
447
- msgid "Plugin settings to import:"
448
- msgstr ""
449
-
450
- #: core/options-pages.php:794
451
- msgid ""
452
- "Plugin settings will be imported from a configuration JSON file which can be "
453
- "obtained by exporting the settings on another website using the export "
454
- "button above."
455
- msgstr ""
456
-
457
- #: core/options-pages.php:795
458
- msgid ""
459
- "All plugin settings will be overridden by the import. You will have a chance "
460
- "to restore current data from an automatic backup in case you are not "
461
- "satisfied with the result of the import."
462
- msgstr ""
463
- "Všechna nastavení pluginu budou importem přepsána. V případě nespokojenosti "
464
- "s výsledkem importu je možné obnovit současná data ze zálohy, která je "
465
- "vytvořena automaticky před každým importem."
466
-
467
- #: core/options-pages.php:801
468
- msgid "Import Plugin Settings"
469
- msgstr "Importovat nastavení pluginu"
470
-
471
- #: core/options-pages.php:813
472
- msgid "Restore"
473
- msgstr "Obnovit"
474
-
475
- #: core/options-pages.php:819
476
- msgid "No backup available at the moment."
477
- msgstr "Nejsou k dispozici žádné zálohy."
478
-
479
- #: core/options-pages.php:821
480
- msgid "Backup will be created automatically before any import operation."
481
- msgstr "Záloha bude vytvořena automaticky před každým importem."
482
-
483
- #: core/options-pages.php:825
484
- msgid ""
485
- "The backup has been automatically created before the latest import operation."
486
- msgstr "Záloha byla vytvořena automaticky před posledním importem."
487
-
488
- #: core/options-pages.php:828
489
- msgid "Plugin settings to restore:"
490
- msgstr ""
491
-
492
- #: core/options-pages.php:837
493
- msgid "Restore Settings from the Backup"
494
- msgstr "Obnovit nastavení ze zálohy."
495
-
496
- #: core/options-pages.php:860 core/options-pages.php:1082
497
- msgid "What will be deleted:"
498
- msgstr "Co bude smazáno:"
499
-
500
- #: core/options-pages.php:865
501
- msgid "All plugin options"
502
- msgstr "Všechna nastavení pluginu"
503
-
504
- #: core/options-pages.php:866 core/options-pages.php:1089
505
- msgid "All plugin backups stored in the database"
506
- msgstr ""
507
-
508
- #: core/options-pages.php:870 core/options-pages.php:1093
509
- msgid "What will remain intact:"
510
- msgstr "Co zůstane beze změn:"
511
-
512
- #: core/options-pages.php:871 core/options-pages.php:1094
513
- msgid "All media items"
514
- msgstr "Všechny mediální soubory"
515
-
516
- #: core/options-pages.php:872 core/options-pages.php:1095
517
- msgid "All taxonomies not listed above"
518
- msgstr "Všechny taxonomie, které nejsou vypsané výše"
519
-
520
- #: core/options-pages.php:875 core/options-pages.php:1098
521
- msgid ""
522
- "The plugin cannot delete itself for security reasons. Please delete it "
523
- "manually from the plugin list after the cleanup is complete."
524
- msgstr ""
525
-
526
- #: core/options-pages.php:877 core/options-pages.php:1100
527
- msgid ""
528
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
529
- "backup of your database prior to cleanup!"
530
- msgstr ""
531
-
532
- #: core/options-pages.php:882
533
- msgid "Delete All Data & Deactivate"
534
- msgstr "Smazat všechna data a deaktivovat"
535
-
536
- #: core/options-pages.php:945
537
- msgid "Network Settings"
538
- msgstr ""
539
-
540
- #: core/options-pages.php:952 core/options-pages.php:1003
541
- msgid "No settings available. The plugin is not network activated."
542
- msgstr ""
543
-
544
- #: core/options-pages.php:963
545
- msgid "Media Settings per site"
546
- msgstr ""
547
-
548
- #: core/options-pages.php:966
549
- msgid "Enable Media Settings"
550
- msgstr ""
551
-
552
- #: core/options-pages.php:967
553
- msgid "Allow an individual site admin to edit enhanced Media Settings"
554
- msgstr ""
555
-
556
- #: core/options-pages.php:968
557
- msgid ""
558
- "Otherwise, only a network (super) admin can see the menu and edit media "
559
- "settings."
560
- msgstr ""
561
-
562
- #: core/options-pages.php:974
563
- msgid "Plugin Utilities per site"
564
- msgstr ""
565
-
566
- #: core/options-pages.php:977
567
- msgid "Enable plugin Utilities"
568
- msgstr ""
569
-
570
- #: core/options-pages.php:978
571
- msgid ""
572
- "Allow an individual site admin to import / export / restore plugin settings "
573
- "and perform the complete cleanup for a specific site"
574
- msgstr ""
575
-
576
- #: core/options-pages.php:979
577
- msgid ""
578
- "Otherwise, only a network (super) admin can see the menu and perform those "
579
- "actions."
580
- msgstr ""
581
-
582
- #: core/options-pages.php:986 core/options-pages.php:1770
583
- #: core/options-pages.php:1824 core/options-pages.php:1861
584
- #: core/options-pages.php:1905 core/options-pages.php:2113
585
- #: core/options-pages.php:2177 core/options-pages.php:2215
586
- #: core/options-pages.php:2386 enhanced-media-library.php:571
587
- msgid "Save Changes"
588
- msgstr "Uložit změny"
589
-
590
- #: core/options-pages.php:1012 core/options-pages.php:1015
591
- msgid "Media Library Settings"
592
- msgstr ""
593
-
594
- #: core/options-pages.php:1016 core/options-pages.php:1030
595
- #: core/options-pages.php:1044
596
- msgid "Apply to ALL Network websites"
597
- msgstr ""
598
-
599
- #: core/options-pages.php:1026 core/options-pages.php:1029
600
- msgid "Media Taxonomies Settings"
601
- msgstr ""
602
-
603
- #: core/options-pages.php:1040 core/options-pages.php:1043
604
- msgid "MIME Types Settings"
605
- msgstr ""
606
-
607
- #: core/options-pages.php:1087
608
- msgid "All plugin options on every site"
609
- msgstr ""
610
-
611
- #: core/options-pages.php:1088
612
- msgid "Network settings"
613
- msgstr ""
614
-
615
- #: core/options-pages.php:1105
616
- msgid "Delete All Data & Network Deactivate"
617
- msgstr ""
618
-
619
- #: core/options-pages.php:1225
620
- msgid "Network settings saved."
621
- msgstr ""
622
-
623
- #: core/options-pages.php:1319
624
- msgid "Settings cannot be imported. Please upload a file to import settings."
625
- msgstr ""
626
-
627
- #: core/options-pages.php:1340
628
- msgid ""
629
- "Settings cannot be imported. Please upload a correct JSON file to import "
630
- "settings."
631
- msgstr ""
632
-
633
- #: core/options-pages.php:1356
634
- msgid "Plugin settings imported."
635
- msgstr "Nastavení pluginu bylo naimportováno."
636
-
637
- #: core/options-pages.php:1409
638
- msgid "Plugin settings restored from the backup."
639
- msgstr "Nastavení pluginu bylo obnoveno ze zálohy."
640
-
641
- #: core/options-pages.php:1714
642
- msgid "Filters"
643
- msgstr ""
644
-
645
- #: core/options-pages.php:1723 core/options-pages.php:1726
646
- msgid "Force filters"
647
- msgstr "Vyžadovat filtry"
648
-
649
- #: core/options-pages.php:1727
650
- msgid "Show media filters for ANY Media Popup"
651
- msgstr "Zobrazit filtry médií v každém okně s mediálními soubory"
652
-
653
- #: core/options-pages.php:1728
654
- msgid "Try this if filters are not shown for third-party plugins or themes."
655
- msgstr ""
656
- "Zkuste tuto volbu, pokud se filtry nezobrazují v pluginech a šablonách "
657
- "třetích stran."
658
-
659
- #: core/options-pages.php:1734 core/options-pages.php:1737
660
- msgid "Filters to show"
661
- msgstr ""
662
-
663
- #: core/options-pages.php:1738
664
- msgid "Types"
665
- msgstr ""
666
-
667
- #: core/options-pages.php:1739
668
- msgid "Can be disabled for Grid Mode only"
669
- msgstr ""
670
-
671
- #: core/options-pages.php:1740
672
- msgid "Dates"
673
- msgstr ""
674
-
675
- #: core/options-pages.php:1741
676
- msgid "Authors"
677
- msgstr ""
678
-
679
- #: core/options-pages.php:1748 core/options-pages.php:1751
680
- msgid "Show count"
681
- msgstr "Zobrazit počet"
682
-
683
- #: core/options-pages.php:1752
684
- msgid "Show item count per category for media filters"
685
- msgstr "Zobrazit počet souborů kategorie ve filtrech médií"
686
-
687
- #: core/options-pages.php:1753
688
- msgid ""
689
- "Disable this if it slows down your site admin. The problem is resolved in "
690
- "the upcoming major update v3.0"
691
- msgstr ""
692
-
693
- #: core/options-pages.php:1759 core/options-pages.php:1762
694
- msgid "Include children"
695
- msgstr ""
696
-
697
- #: core/options-pages.php:1763
698
- msgid "Show media items of child media categories as a result of filtering"
699
- msgstr ""
700
-
701
- #: core/options-pages.php:1780
702
- msgid "Order"
703
- msgstr ""
704
-
705
- #: core/options-pages.php:1789
706
- msgid "Order media items by"
707
- msgstr "Seřadit soubory podle"
708
-
709
- #: core/options-pages.php:1792
710
- msgid "Date"
711
- msgstr "Data"
712
-
713
- #: core/options-pages.php:1793 core/options-pages.php:1853
714
- msgid "Title"
715
- msgstr "Název"
716
-
717
- #: core/options-pages.php:1794
718
- msgid "Custom Order"
719
- msgstr "Vlastní pořadí"
720
-
721
- #: core/options-pages.php:1796 core/options-pages.php:1808
722
- msgid "For media library and media popups"
723
- msgstr "Platí pro knihovnu médií a okno s mediálními soubory"
724
-
725
- #: core/options-pages.php:1797
726
- msgid ""
727
- "Allows changing media items order by drag and drop with Custom Order value."
728
- msgstr ""
729
-
730
- #: core/options-pages.php:1802
731
- msgid "Sort order"
732
- msgstr "Nastavit pořadí"
733
-
734
- #: core/options-pages.php:1805
735
- msgid "Ascending"
736
- msgstr "Vzestupně"
737
-
738
- #: core/options-pages.php:1806
739
- msgid "Descending"
740
- msgstr "Sestupně"
741
-
742
- #: core/options-pages.php:1813 core/options-pages.php:1816
743
- msgid "Natural sort order"
744
- msgstr ""
745
-
746
- #: core/options-pages.php:1817
747
- msgid "Apply human-friendly sort order to Media Library and Galleries"
748
- msgstr ""
749
-
750
- #: core/options-pages.php:1818
751
- msgid ""
752
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
753
- "3, abc-11, abc-2]"
754
- msgstr ""
755
-
756
- #: core/options-pages.php:1831
757
- msgid "Grid Mode"
758
- msgstr ""
759
-
760
- #: core/options-pages.php:1840 core/options-pages.php:1843
761
- msgid "Show caption"
762
- msgstr ""
763
-
764
- #: core/options-pages.php:1844
765
- msgid "Add text caption for media item thumbnails"
766
- msgstr ""
767
-
768
- #: core/options-pages.php:1850
769
- msgid "Caption type"
770
- msgstr ""
771
-
772
- #: core/options-pages.php:1854
773
- msgid "Filename"
774
- msgstr ""
775
-
776
- #: core/options-pages.php:1855
777
- msgid "Caption"
778
- msgstr ""
779
-
780
- #: core/options-pages.php:1868
781
- msgid "Media Shortcodes"
782
- msgstr "Zkrácené zápisy médií"
783
-
784
- #: core/options-pages.php:1877 core/options-pages.php:1880
785
- msgid "Enhanced media shortcodes"
786
- msgstr "Rozšířit zkrácené zápisy"
787
-
788
- #: core/options-pages.php:1881
789
- msgid ""
790
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
791
- "upload date, and media items number limit"
792
- msgstr ""
793
- "Rožšířit zkrácené zápisy médií o možnost zobrazení mediálních souborů na "
794
- "základě zvolené taxonomie, data nahrání a také o možnost omezení počtu "
795
- "zobrazených souborů."
796
-
797
- #: core/options-pages.php:1882
798
- msgid "Gallery example:"
799
- msgstr "Příklad galerie:"
800
-
801
- #: core/options-pages.php:1883
802
- msgid "Audio playlist example:"
803
- msgstr "Příklad audio seznamu:"
804
-
805
- #: core/options-pages.php:1884
806
- msgid "Video playlist example:"
807
- msgstr "Příklad video seznamu:"
808
-
809
- #: core/options-pages.php:1888
810
- msgid "Warning"
811
- msgstr ""
812
-
813
- #: core/options-pages.php:1891
814
- #, php-format
815
- msgid ""
816
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
817
- "\">Learn more</a>."
818
- msgstr ""
819
-
820
- #: core/options-pages.php:1896
821
- #, php-format
822
- msgid ""
823
- "Please check out your gallery front-end and back-end functionality once this "
824
- "option activated. If you find an issue please inform plugin authors at %s or "
825
- "%s."
826
- msgstr ""
827
- "Po aktivaci tohoto nastavení zkontrolujte funkčnost galerie ve frontendu i "
828
- "backendu. Pokud najdete chybu, informujte prosím autory pluginu na %s nebo "
829
- "%s."
830
-
831
- #: core/options-pages.php:1977 core/options-pages.php:2124
832
- msgid "Assign following taxonomies to Media Library:"
833
- msgstr "Přiřadit tyto taxonomie knihovně médií:"
834
-
835
- #: core/options-pages.php:1996 core/options-pages.php:2062
836
- #: core/options-pages.php:2146
837
- msgid "Assign Taxonomy"
838
- msgstr "Přiřadit taxonomii"
839
-
840
- #: core/options-pages.php:1997 core/options-pages.php:2147
841
- msgid "Edit Taxonomy"
842
- msgstr "Upravit taxonomii"
843
-
844
- #: core/options-pages.php:2001 core/options-pages.php:2064
845
- msgid "Delete Taxonomy"
846
- msgstr "Smazat taxonomii"
847
-
848
- #: core/options-pages.php:2006 core/options-pages.php:2069
849
- msgid "Labels"
850
- msgstr "Popisky"
851
-
852
- #: core/options-pages.php:2008 core/options-pages.php:2071
853
- msgid "Singular"
854
- msgstr "Jednotné číslo"
855
-
856
- #: core/options-pages.php:2009 core/options-pages.php:2072
857
- msgid "Plural"
858
- msgstr "Množné číslo"
859
-
860
- #: core/options-pages.php:2010 core/options-pages.php:2073
861
- msgid "Menu Name"
862
- msgstr "Název v menu"
863
-
864
- #: core/options-pages.php:2023 core/options-pages.php:2046
865
- #: core/options-pages.php:2086 core/options-pages.php:2150
866
- msgid "Settings"
867
- msgstr "Nastavení"
868
-
869
- #: core/options-pages.php:2025 core/options-pages.php:2088
870
- msgid "Taxonomy Name"
871
- msgstr "Název taxonomie"
872
-
873
- #: core/options-pages.php:2026 core/options-pages.php:2089
874
- msgid "Hierarchical"
875
- msgstr "Hierarchická"
876
-
877
- #: core/options-pages.php:2027 core/options-pages.php:2090
878
- msgid "Column for List View"
879
- msgstr "Sloupec v přehledném seznamu"
880
-
881
- #: core/options-pages.php:2028 core/options-pages.php:2048
882
- #: core/options-pages.php:2091 core/options-pages.php:2152
883
- msgid "Filter for List View"
884
- msgstr "Filtrování v přehledném seznamu"
885
-
886
- #: core/options-pages.php:2029 core/options-pages.php:2049
887
- #: core/options-pages.php:2092 core/options-pages.php:2153
888
- msgid "Filter for Grid View / Media Popup"
889
- msgstr "Filtrování v pravidelné mřížce"
890
-
891
- #: core/options-pages.php:2030 core/options-pages.php:2050
892
- #: core/options-pages.php:2093 core/options-pages.php:2154
893
- msgid "Edit in Media Popup"
894
- msgstr "Upravit v okně s mediálními soubory"
895
-
896
- #: core/options-pages.php:2031 core/options-pages.php:2094
897
- msgid "Show in Nav Menu"
898
- msgstr "Zobrazit v menu"
899
-
900
- #: core/options-pages.php:2032 core/options-pages.php:2095
901
- msgid "Remember Terms Order (sort)"
902
- msgstr "Zapamatovat pořadí položek"
903
-
904
- #: core/options-pages.php:2033 core/options-pages.php:2096
905
- msgid "Show in REST"
906
- msgstr "Zobrazit v REST API"
907
-
908
- #: core/options-pages.php:2034 core/options-pages.php:2097
909
- msgid "Rewrite Slug"
910
- msgstr "Přepsat název v url"
911
-
912
- #: core/options-pages.php:2035 core/options-pages.php:2098
913
- msgid "Slug with Front"
914
- msgstr "Název v url"
915
-
916
- #: core/options-pages.php:2110
917
- msgid "Add New Taxonomy"
918
- msgstr "Vytvořit novou taxonomii"
919
-
920
- #: core/options-pages.php:2120
921
- msgid "Non-Media Taxonomies"
922
- msgstr "Ostatní taxonomie"
923
-
924
- #: core/options-pages.php:2183
925
- msgid "Options"
926
- msgstr "Možnosti"
927
-
928
- #: core/options-pages.php:2193 core/options-pages.php:2196
929
- msgid "Taxonomy archive pages"
930
- msgstr "Archiv taxonomie"
931
-
932
- #: core/options-pages.php:2197
933
- msgid "Turn on media taxonomy archive pages on the front-end"
934
- msgstr "Zapnout stránky s archivem taxonomie médií ve frontendu."
935
-
936
- #: core/options-pages.php:2198
937
- msgid ""
938
- "Re-save your permalink settings after this option change to make it work."
939
- msgstr ""
940
- "Po změně tohoto nastavení je nutné přeuložit nastavení trvalých odkazů."
941
-
942
- #: core/options-pages.php:2204 core/options-pages.php:2207
943
- msgid "Assign all like hierarchical"
944
- msgstr "Zobrazit jako hierarchické"
945
-
946
- #: core/options-pages.php:2208
947
- msgid ""
948
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
949
- msgstr ""
950
- "Zobrazit nehierarchické taxonomie jako hierarchické v pravidelné mřízce "
951
- "(včetně okna s mediálními soubory)"
952
-
953
- #: core/options-pages.php:2271
954
- msgid "Add New MIME Type"
955
- msgstr "Přidat nový MIME typ"
956
-
957
- #: core/options-pages.php:2291 core/options-pages.php:2345
958
- msgid "Extension"
959
- msgstr "Rozšíření"
960
-
961
- #: core/options-pages.php:2292 core/options-pages.php:2346
962
- msgid "MIME Type"
963
- msgstr "MIME typ"
964
-
965
- #: core/options-pages.php:2293 core/options-pages.php:2347
966
- msgid "Singular Label"
967
- msgstr "Název v jed. čísle"
968
-
969
- #: core/options-pages.php:2294 core/options-pages.php:2348
970
- msgid "Plural Label"
971
- msgstr "Název v mn. čísle"
972
-
973
- #: core/options-pages.php:2295 core/options-pages.php:2324
974
- #: core/options-pages.php:2337 core/options-pages.php:2349
975
- msgid "Add Filter"
976
- msgstr "Přidat filtr"
977
-
978
- #: core/options-pages.php:2296 core/options-pages.php:2325
979
- #: core/options-pages.php:2338 core/options-pages.php:2350
980
- msgid "Allow Upload"
981
- msgstr "Povolit"
982
-
983
- #: core/options-pages.php:2326 core/options-pages.php:2339
984
- msgid "Delete MIME Type"
985
- msgstr "Smazat MIME typ"
986
-
987
- #: core/options-pages.php:2415
988
- msgid "Changelog"
989
- msgstr "Historie změn"
990
-
991
- #: core/options-pages.php:2416
992
- msgid "What's new in"
993
- msgstr "Co je nového ve"
994
-
995
- #: core/options-pages.php:2416
996
- msgid "version"
997
- msgstr "verzi"
998
-
999
- #: core/options-pages.php:2419
1000
- msgid "More features under the hood"
1001
- msgstr "Další funkce pod pokličkou"
1002
-
1003
- #: core/options-pages.php:2421
1004
- msgid "Support"
1005
- msgstr "Podpora"
1006
-
1007
- #: core/options-pages.php:2422
1008
- msgid "Feel free to ask for help on"
1009
- msgstr "Nebojte se zeptat na"
1010
-
1011
- #: core/options-pages.php:2422
1012
- msgid "Support is free for both versions of the plugin."
1013
- msgstr "Podpora je zdarma pro obě verze tohoto pluginu."
1014
-
1015
- #: core/options-pages.php:2424
1016
- msgid "Plugin rating"
1017
- msgstr "Hodnocení pluginu"
1018
-
1019
- #: core/options-pages.php:2425
1020
- msgid "Please"
1021
- msgstr "Prosím,"
1022
-
1023
- #: core/options-pages.php:2425
1024
- msgid "vote for the plugin"
1025
- msgstr "ohodnoťe tento plugin"
1026
-
1027
- #: core/options-pages.php:2425
1028
- msgid "Thanks!"
1029
- msgstr "Děkujeme!"
1030
-
1031
- #: core/options-pages.php:2427
1032
- msgid "Other plugins you may find useful"
1033
- msgstr "Pluginy, které by se Vám mohly hodit"
1034
-
1035
- #: core/options-pages.php:2469
1036
- msgid "Utility"
1037
- msgstr "Nástroje"
1038
-
1039
- #: core/options-pages.php:2494
1040
- msgid "Rate us:"
1041
- msgstr ""
1042
-
1043
- #: core/options-pages.php:2494
1044
- msgid "Poor"
1045
- msgstr ""
1046
-
1047
- #: core/options-pages.php:2494
1048
- msgid "Works"
1049
- msgstr ""
1050
-
1051
- #: core/options-pages.php:2494
1052
- msgid "Good"
1053
- msgstr ""
1054
-
1055
- #: core/options-pages.php:2494
1056
- msgid "Great"
1057
- msgstr ""
1058
-
1059
- #: core/options-pages.php:2494
1060
- msgid "Fantastic!"
1061
- msgstr ""
1062
-
1063
- #: core/taxonomies.php:101
1064
- msgid "Media Taxonomies settings saved."
1065
- msgstr "Nastavení taxonomií médií bylo uloženo."
1066
-
1067
- #: core/taxonomies.php:174
1068
- msgid "Media Library settings saved."
1069
- msgstr "Nastavení knihovny médií bylo uloženo."
1070
-
1071
- #: core/taxonomies.php:353
1072
- msgid "Filter by author"
1073
- msgstr ""
1074
-
1075
- #: core/taxonomies.php:357
1076
- msgid "All Authors"
1077
- msgstr ""
1078
-
1079
- #: core/taxonomies.php:374 core/taxonomies.php:380
1080
- #: enhanced-media-library.php:561
1081
- msgid "Filter by"
1082
- msgstr "Filtrovat podle"
1083
-
1084
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1085
- msgid "Not in a"
1086
- msgstr "Není součástí"
1087
-
1088
- #: core/taxonomies.php:721
1089
- msgid "Add some"
1090
- msgstr ""
1091
-
1092
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1093
- msgid "All Uncategorized"
1094
- msgstr "Všecnny nezařazené"
1095
-
1096
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1097
- msgid "Reset All Filters"
1098
- msgstr "Obnovit všechny filtry"
1099
-
1100
- #: enhanced-media-library.php:391
1101
- msgid "More Details"
1102
- msgstr ""
1103
-
1104
- #: enhanced-media-library.php:392
1105
- msgid "Less Details"
1106
- msgstr ""
1107
-
1108
- #: enhanced-media-library.php:565
1109
- msgid "author"
1110
- msgstr ""
1111
-
1112
- #: enhanced-media-library.php:566
1113
- msgid "authors"
1114
- msgstr ""
1115
-
1116
- #: enhanced-media-library.php:569
1117
- msgid "Saved."
1118
- msgstr ""
1119
-
1120
- #: enhanced-media-library.php:570
1121
- msgid "Something went wrong."
1122
- msgstr ""
1123
-
1124
- #: enhanced-media-library.php:573
1125
- msgid "Select All"
1126
- msgstr ""
1127
-
1128
- #: enhanced-media-library.php:574
1129
- msgid "Deselect "
1130
- msgstr "Odznačit"
1131
-
1132
- #: enhanced-media-library.php:603
1133
- msgid "Uploaded to post #"
1134
- msgstr "Přiřazen k příspěvku #"
1135
-
1136
- #: enhanced-media-library.php:604
1137
- msgid "Based On"
1138
- msgstr "Založeno na"
1139
-
1140
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1141
- msgid "Media Categories"
1142
- msgstr "Kategorie médií"
1143
-
1144
- #: enhanced-media-library.php:674
1145
- msgid "Media Category"
1146
- msgstr "Kategorie médií"
1147
-
1148
- #: enhanced-media-library.php:676
1149
- msgid "All Media Categories"
1150
- msgstr "Všechny kategorie médií"
1151
-
1152
- #: enhanced-media-library.php:677
1153
- msgid "Edit Media Category"
1154
- msgstr "Upravit kategorii médií"
1155
-
1156
- #: enhanced-media-library.php:678
1157
- msgid "View Media Category"
1158
- msgstr "Zobrazit kategorii médií"
1159
-
1160
- #: enhanced-media-library.php:679
1161
- msgid "Update Media Category"
1162
- msgstr "Aktualizovat kategorii médií"
1163
-
1164
- #: enhanced-media-library.php:680
1165
- msgid "Add New Media Category"
1166
- msgstr "Vytvořit novou kategorii médií"
1167
-
1168
- #: enhanced-media-library.php:681
1169
- msgid "New Media Category Name"
1170
- msgstr "Název nové kategorie médií"
1171
-
1172
- #: enhanced-media-library.php:682
1173
- msgid "Parent Media Category"
1174
- msgstr "Nadřazená kategorie médií"
1175
-
1176
- #: enhanced-media-library.php:683
1177
- msgid "Parent Media Category:"
1178
- msgstr "Nadřazená kategorie médií:"
1179
-
1180
- #: enhanced-media-library.php:684
1181
- msgid "Search Media Categories"
1182
- msgstr "Hledat kategorie médií"
1183
-
1184
- #. Plugin URI of the plugin/theme
1185
- #. Author URI of the plugin/theme
1186
- msgid "http://wpUXsolutions.com"
1187
- msgstr "http://wpUXsolutions.com"
1188
-
1189
- #. Description of the plugin/theme
1190
- msgid ""
1191
- "This plugin will be handy for those who need to manage a lot of media files."
1192
- msgstr "Užitečný plugin pro správu velkého množství mediálních souborů."
1193
-
1194
- #. Author of the plugin/theme
1195
- msgid "wpUXsolutions"
1196
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-de_DE.mo DELETED
Binary file
languages/enhanced-media-library-de_DE.po DELETED
@@ -1,1234 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in German
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:48+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: de\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "Entfernen"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "Auswahl entfernen"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "Beschrifte dieses Bild&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "Beschreibung dieser Video-Datei&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "Beschreibung dieser Audio-Datei&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "Beschreibung dieser Medien-Datei&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr "MIME-Typ-Einstellungen wiederhergestellt."
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr "MIME-Typ-Einstellungen gespeichert."
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] " <span class=\"count\">(%s)</span>"
54
- msgstr[1] " <span class=\"count\">(%s)</span>"
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "Medieneinstellungen"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "Mediathek"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "Media Taxonomien"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "MIME-Typen"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "Allgemein"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "Unzureichende Rechte, um auf diese Seite zuzugreifen."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "Bildgrössen"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
- "Die unten aufgeführten Größen sind die maximalen Abmessungen in Pixel für "
109
- "Bilder, die zur Mediathek hinzugefügt werden sollen."
110
-
111
- #: core/options-pages.php:415
112
- msgid "Thumbnail size"
113
- msgstr "Thumbnail Grösse"
114
-
115
- #: core/options-pages.php:417
116
- msgid "Width"
117
- msgstr "Breite"
118
-
119
- #: core/options-pages.php:419
120
- msgid "Height"
121
- msgstr "Höhe"
122
-
123
- #: core/options-pages.php:422
124
- msgid ""
125
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
126
- msgstr ""
127
- "Thumbnail auf die exakte Größe beschneiden (normalerweise sind Thumbnails "
128
- "proportional)"
129
-
130
- #: core/options-pages.php:427 core/options-pages.php:428
131
- msgid "Medium size"
132
- msgstr "Mittel"
133
-
134
- #: core/options-pages.php:429 core/options-pages.php:440
135
- msgid "Max Width"
136
- msgstr "Maximale Breite"
137
-
138
- #: core/options-pages.php:432 core/options-pages.php:443
139
- msgid "Max Height"
140
- msgstr "Maximale Höhe"
141
-
142
- #: core/options-pages.php:438 core/options-pages.php:439
143
- msgid "Large size"
144
- msgstr "Gross"
145
-
146
- #: core/options-pages.php:456
147
- msgid "Embeds"
148
- msgstr "Einbettungen"
149
-
150
- #: core/options-pages.php:463
151
- msgid "Uploading Files"
152
- msgstr "Dateien hochladen"
153
-
154
- #: core/options-pages.php:470
155
- msgid "Store uploads in this folder"
156
- msgstr "Uploads in folgendem Ordner speichern"
157
-
158
- #: core/options-pages.php:474
159
- #, php-format
160
- msgid "Default is %s"
161
- msgstr "Standard ist %s"
162
-
163
- #: core/options-pages.php:480
164
- msgid "Full URL path to files"
165
- msgstr "Kompletter URL Pfad zur Datei"
166
-
167
- #: core/options-pages.php:482
168
- msgid "Configuring this is optional. By default, it should be blank."
169
- msgstr "Diese Konfiguration ist optional und kann leer gelassen werden."
170
-
171
- #: core/options-pages.php:490
172
- msgid "Organize my uploads into month- and year-based folders"
173
- msgstr "Die Uploads in Ordner basierend auf Monat und Jahr sortieren"
174
-
175
- #: core/options-pages.php:560 core/options-pages.php:1997
176
- #: core/options-pages.php:2012 core/options-pages.php:2075
177
- #: core/options-pages.php:2147
178
- msgid "Edit"
179
- msgstr "Bearbeiten"
180
-
181
- #: core/options-pages.php:561
182
- msgid "Close"
183
- msgstr "Schließen"
184
-
185
- #: core/options-pages.php:562 core/options-pages.php:2013
186
- #: core/options-pages.php:2076
187
- msgid "View"
188
- msgstr "Anzeigen"
189
-
190
- #: core/options-pages.php:563 core/options-pages.php:2014
191
- #: core/options-pages.php:2077
192
- msgid "Update"
193
- msgstr "Aktualisieren"
194
-
195
- #: core/options-pages.php:564 core/options-pages.php:2015
196
- #: core/options-pages.php:2078
197
- msgid "Add New"
198
- msgstr "Neu hinzufügen"
199
-
200
- #: core/options-pages.php:565 core/options-pages.php:2016
201
- #: core/options-pages.php:2079
202
- msgid "New"
203
- msgstr "Neu"
204
-
205
- #: core/options-pages.php:566
206
- msgid "Name"
207
- msgstr "Name"
208
-
209
- #: core/options-pages.php:567 core/options-pages.php:2017
210
- #: core/options-pages.php:2080
211
- msgid "Parent"
212
- msgstr "Übergeordneter"
213
-
214
- #: core/options-pages.php:568 core/options-pages.php:862
215
- #: core/options-pages.php:1084 core/options-pages.php:2011
216
- #: core/options-pages.php:2074 core/taxonomies.php:381
217
- #: enhanced-media-library.php:562
218
- msgid "All"
219
- msgstr "Alle"
220
-
221
- #: core/options-pages.php:569 core/options-pages.php:2018
222
- #: core/options-pages.php:2081
223
- msgid "Search"
224
- msgstr "Durchsuchen"
225
-
226
- #: core/options-pages.php:571 core/options-pages.php:2062
227
- msgid "New Taxonomy"
228
- msgstr "Neue Taxonomie"
229
-
230
- #: core/options-pages.php:573
231
- msgid "Remove Taxonomy"
232
- msgstr "Taxonomie entfernen"
233
-
234
- #: core/options-pages.php:574
235
- msgid "Taxonomy will be removed."
236
- msgstr "Taxonomie wird entfernt."
237
-
238
- #: core/options-pages.php:575
239
- msgid ""
240
- "Taxonomy terms (categories) will remain intact in the database. If you "
241
- "create a taxonomy with the same name in the future, its terms (categories) "
242
- "will be available again."
243
- msgstr ""
244
- "Taxonomie-Begriffe (Kategorien) bleiben in der Datenbank erhalten. Bei "
245
- "erneutem Anlegen einer Taxonomie gleichen Namens, sind die Begriffe "
246
- "(Kategorien) wieder verfügbar."
247
-
248
- #: core/options-pages.php:576
249
- msgid "Media items will remain intact."
250
- msgstr "Medien bleiben erhalten."
251
-
252
- #: core/options-pages.php:577
253
- msgid "Are you still sure?"
254
- msgstr "Sicher?"
255
-
256
- #: core/options-pages.php:578
257
- msgid "Yes, remove taxonomy"
258
- msgstr "Ja, Taxonomie löschen"
259
-
260
- #: core/options-pages.php:580
261
- msgid "Duplicate"
262
- msgstr "Duplikat"
263
-
264
- #: core/options-pages.php:581
265
- msgid "Taxonomy with the same name already exists. Please chose other one."
266
- msgstr ""
267
- "Es existiert bereits eine Taxonomie mit demselben Namen. Bitte einen anderen "
268
- "wählen."
269
-
270
- #: core/options-pages.php:583
271
- msgid "Empty Fields"
272
- msgstr "Keine Angaben"
273
-
274
- #: core/options-pages.php:584
275
- msgid "Wrong Taxonomy Name"
276
- msgstr "Falscher Taxonomie Name"
277
-
278
- #: core/options-pages.php:585
279
- msgid "Wrong Slug"
280
- msgstr "Falsche Slug"
281
-
282
- #: core/options-pages.php:587
283
- msgid "Please choose Singular and Plural names for all new taxomonies."
284
- msgstr "Bitte Singular und Plural Namen für alle neuen Taxonomien wählen."
285
-
286
- #: core/options-pages.php:588
287
- msgid "Please choose Singular name for all new taxomonies."
288
- msgstr "Bitte einen Singular Namen für alle neuen Taxonomien wählen."
289
-
290
- #: core/options-pages.php:589
291
- msgid "Please choose Plural name for all new taxomonies."
292
- msgstr "Bitte einen Plural Namen für alle neuen Taxonomien wählen."
293
-
294
- #: core/options-pages.php:591
295
- msgid ""
296
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
297
- "name please enter it manually."
298
- msgstr ""
299
- "Der Taxonomie Name darf nicht leer sein. Wenn er nicht aus dem Singular "
300
- "generiert wurde, bitte manuell eingeben."
301
-
302
- #: core/options-pages.php:592
303
- msgid ""
304
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
305
- "character ( _ ), and be 3-32 characters long."
306
- msgstr ""
307
- "Der Taxonomie Name sollte nur Kleinbuchstaben des lateinischen Alphabets "
308
- "oder den Unterstrich enthalten, sowie zwischen 2-32 Zeichen lang sein."
309
-
310
- #: core/options-pages.php:593
311
- msgid ""
312
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
313
- "or hyphen ( - ) characters."
314
- msgstr ""
315
- "Die Slug sollte nur Kleinbuchstaben des lateinischen Alphabets, Zahlen, den "
316
- "Unter- oder Bindestrich enthalten."
317
-
318
- #: core/options-pages.php:595 core/options-pages.php:644
319
- msgid "Ok"
320
- msgstr "Ok"
321
-
322
- #: core/options-pages.php:596 core/options-pages.php:601
323
- #: core/options-pages.php:645 core/options-pages.php:690
324
- msgid "Cancel"
325
- msgstr "Abbrechen"
326
-
327
- #: core/options-pages.php:598
328
- msgid "Synchronize Now"
329
- msgstr "Jetzt synchronisieren"
330
-
331
- #: core/options-pages.php:599 core/options-pages.php:687
332
- msgid "This operation cannot be canceled! Are you still sure?"
333
- msgstr "Diese Aktion kann nicht abgebrochen werden! Trotzdem fortfahren?"
334
-
335
- #: core/options-pages.php:600
336
- msgid "Synchronize"
337
- msgstr "Synchronisieren"
338
-
339
- #: core/options-pages.php:602
340
- msgid "Synchronizing..."
341
- msgstr "Synchronisiere…"
342
-
343
- #: core/options-pages.php:639 core/options-pages.php:2388
344
- msgid "Restore WordPress default MIME Types"
345
- msgstr "Standard WordPress MIME-Typen wiederherstellen"
346
-
347
- #: core/options-pages.php:640
348
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
349
- msgstr ""
350
- "Warnung! Alle benutzerdefinierten MIME-Typen werden durch diesen Vorgang "
351
- "gelöscht."
352
-
353
- #: core/options-pages.php:641
354
- msgid "Restore Defaults"
355
- msgstr "Standard wiederherstellen"
356
-
357
- #: core/options-pages.php:642
358
- msgid "Restoring..."
359
- msgstr "Wird wiederhergestellt…"
360
-
361
- #: core/options-pages.php:647
362
- msgid "MIME Types cannot be saved"
363
- msgstr "MIME Typen konnten nicht gespeichert werden"
364
-
365
- #: core/options-pages.php:648
366
- msgid "Please fill into all fields."
367
- msgstr "Bitte alle Felder ausfüllen."
368
-
369
- #: core/options-pages.php:649
370
- msgid "Duplicate extensions or MIME types. Please choose other one."
371
- msgstr "Erweiterungen- oder MIME-Typ Duplikat. Bitte einen anderen wählen."
372
-
373
- #: core/options-pages.php:685 core/options-pages.php:853
374
- #: core/options-pages.php:1063
375
- msgid "Complete Cleanup"
376
- msgstr "Vollständiges Aufräumen"
377
-
378
- #: core/options-pages.php:686
379
- msgid ""
380
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
381
- "plugin data</strong> from the database including backups."
382
- msgstr ""
383
- "Sämtliche Plugin Daten in der Datenbank, sowie Backups <strong style=\"text-"
384
- "transform:uppercase\">werden gelöscht</strong>."
385
-
386
- #: core/options-pages.php:688
387
- msgid "Yes, delete all data"
388
- msgstr "Ja, alle Daten löschen"
389
-
390
- #: core/options-pages.php:689
391
- msgid "Cleaning..."
392
- msgstr "Aufräumen…"
393
-
394
- #: core/options-pages.php:693 core/options-pages.php:996
395
- msgid "Unify Media Settings over Network"
396
- msgstr "Medieneinstellungen über das Netzwerk vereinheitlichen"
397
-
398
- #: core/options-pages.php:696 core/options-pages.php:700
399
- #: core/options-pages.php:704
400
- msgid "will be overwritten"
401
- msgstr "wird überschrieben"
402
-
403
- #: core/options-pages.php:706
404
- msgid "Apply"
405
- msgstr "Anwenden"
406
-
407
- #: core/options-pages.php:707
408
- msgid "Applying Settings..."
409
- msgstr "Einstellungen werden angewendet..."
410
-
411
- #: core/options-pages.php:746 core/options-pages.php:935
412
- msgid "Enhanced Media Library Utilities"
413
- msgstr "Enhanced Media Library Werkzeuge"
414
-
415
- #: core/options-pages.php:756
416
- msgid "Export"
417
- msgstr "Exportieren"
418
-
419
- #: core/options-pages.php:761
420
- msgid "Plugin settings to export:"
421
- msgstr "Plugin Einstellungen, die exportiert werden:"
422
-
423
- #: core/options-pages.php:762 core/options-pages.php:789
424
- #: core/options-pages.php:829
425
- msgid "Settings > Media Library"
426
- msgstr "Einstellungen > Mediathek"
427
-
428
- #: core/options-pages.php:763 core/options-pages.php:790
429
- #: core/options-pages.php:830
430
- msgid "Settings > Media Taxonomies"
431
- msgstr "Einstellungen > Medien Taxonomien"
432
-
433
- #: core/options-pages.php:764 core/options-pages.php:791
434
- #: core/options-pages.php:831
435
- msgid "Settings > MIME Types"
436
- msgstr "Einstellungen > MIME Typen"
437
-
438
- #: core/options-pages.php:768
439
- msgid ""
440
- "Use generated JSON file to import the configuration into another website."
441
- msgstr ""
442
- "Eine generierte JSON Datei nutzen, um die Konfigurationen für eine andere "
443
- "Website zu importieren."
444
-
445
- #: core/options-pages.php:773
446
- msgid "Export Plugin Settings"
447
- msgstr "Plugin-Einstellungen exportieren"
448
-
449
- #: core/options-pages.php:783
450
- msgid "Import"
451
- msgstr "Importieren"
452
-
453
- #: core/options-pages.php:788
454
- msgid "Plugin settings to import:"
455
- msgstr "Plugin Einstellungen, die importiert werden:"
456
-
457
- #: core/options-pages.php:794
458
- msgid ""
459
- "Plugin settings will be imported from a configuration JSON file which can be "
460
- "obtained by exporting the settings on another website using the export "
461
- "button above."
462
- msgstr ""
463
- "Die Plugin Einstellungen werden von einer Konfigurations-JSON Datei "
464
- "importiert. Diese Datei wird über den Export der Einstellungen einer anderen "
465
- "Website erzeugt, indem der obige Button genutzt wird."
466
-
467
- #: core/options-pages.php:795
468
- msgid ""
469
- "All plugin settings will be overridden by the import. You will have a chance "
470
- "to restore current data from an automatic backup in case you are not "
471
- "satisfied with the result of the import."
472
- msgstr ""
473
- "Alle Plugin-Einstellungen werden durch den Import überschrieben. Die "
474
- "jetzigen Daten können aus einem automatischen Backup wiederhergestellt "
475
- "werden, wenn das Resultat des Imports nicht zufriedenstellend ist."
476
-
477
- #: core/options-pages.php:801
478
- msgid "Import Plugin Settings"
479
- msgstr "Plugin-Einstellungen importieren"
480
-
481
- #: core/options-pages.php:813
482
- msgid "Restore"
483
- msgstr "Wiederherstellen"
484
-
485
- #: core/options-pages.php:819
486
- msgid "No backup available at the moment."
487
- msgstr "Zur Zeit sind keine Backups verfügbar."
488
-
489
- #: core/options-pages.php:821
490
- msgid "Backup will be created automatically before any import operation."
491
- msgstr "Ein Backup wird automatisch vor jeder Import-Aktion erstellt."
492
-
493
- #: core/options-pages.php:825
494
- msgid ""
495
- "The backup has been automatically created before the latest import operation."
496
- msgstr "Das Backup wurde automatisch vor der letzten Import-Aktion erstellt."
497
-
498
- #: core/options-pages.php:828
499
- msgid "Plugin settings to restore:"
500
- msgstr "Plugin Einstellungen, die wiederhergestellt werden:"
501
-
502
- #: core/options-pages.php:837
503
- msgid "Restore Settings from the Backup"
504
- msgstr "Einstellungen aus dem Backup wiederherstellen"
505
-
506
- #: core/options-pages.php:860 core/options-pages.php:1082
507
- msgid "What will be deleted:"
508
- msgstr "Das wird gelöscht:"
509
-
510
- #: core/options-pages.php:865
511
- msgid "All plugin options"
512
- msgstr "Alle Plugin-Optionen"
513
-
514
- #: core/options-pages.php:866 core/options-pages.php:1089
515
- msgid "All plugin backups stored in the database"
516
- msgstr "Alle in der Datenbank gespeicherten Backups des Plugins"
517
-
518
- #: core/options-pages.php:870 core/options-pages.php:1093
519
- msgid "What will remain intact:"
520
- msgstr "Das bleibt erhalten:"
521
-
522
- #: core/options-pages.php:871 core/options-pages.php:1094
523
- msgid "All media items"
524
- msgstr "Alle Medien"
525
-
526
- #: core/options-pages.php:872 core/options-pages.php:1095
527
- msgid "All taxonomies not listed above"
528
- msgstr "Alle nicht oben aufgeführten Taxonomien"
529
-
530
- #: core/options-pages.php:875 core/options-pages.php:1098
531
- msgid ""
532
- "The plugin cannot delete itself for security reasons. Please delete it "
533
- "manually from the plugin list after the cleanup is complete."
534
- msgstr ""
535
- "Aus Sicherheitsgründen wird das Plugin nicht automatisch gelöscht und muss "
536
- "nach dem Aufräumen manuell aus der Pluginliste entfernt werden."
537
-
538
- #: core/options-pages.php:877 core/options-pages.php:1100
539
- msgid ""
540
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
541
- "backup of your database prior to cleanup!"
542
- msgstr ""
543
- "Bei Unsicherheiten bezüglich dieser Operation wird DRINGEND EMPFOHLEN vor "
544
- "dem Aufräumen ein Backup der Datenbank zu erstellen!"
545
-
546
- #: core/options-pages.php:882
547
- msgid "Delete All Data & Deactivate"
548
- msgstr "Alle Daten löschen und deaktivieren"
549
-
550
- #: core/options-pages.php:945
551
- msgid "Network Settings"
552
- msgstr "Netzwerk Einstellungen"
553
-
554
- #: core/options-pages.php:952 core/options-pages.php:1003
555
- msgid "No settings available. The plugin is not network activated."
556
- msgstr ""
557
- "Keine Einstellungen verfügbar. Das Plugin ist nicht für ein Netzwerk "
558
- "aktiviert."
559
-
560
- #: core/options-pages.php:963
561
- msgid "Media Settings per site"
562
- msgstr "Medieneinstellungen pro Seite"
563
-
564
- #: core/options-pages.php:966
565
- msgid "Enable Media Settings"
566
- msgstr "Medieneinstellungen aktivieren"
567
-
568
- #: core/options-pages.php:967
569
- msgid "Allow an individual site admin to edit enhanced Media Settings"
570
- msgstr ""
571
- "Einem individuellen Site Admin erlauben, die erweiterten Medieneinstellungen "
572
- "zu bearbeiten"
573
-
574
- #: core/options-pages.php:968
575
- msgid ""
576
- "Otherwise, only a network (super) admin can see the menu and edit media "
577
- "settings."
578
- msgstr ""
579
- "Ansonsten kann nur eine Netzwerk (Super-) Admin das Menü sehen und die "
580
- "Medieneinstellungen bearbeiten."
581
-
582
- #: core/options-pages.php:974
583
- msgid "Plugin Utilities per site"
584
- msgstr "Plugin Werkzeuge pro Seite"
585
-
586
- #: core/options-pages.php:977
587
- msgid "Enable plugin Utilities"
588
- msgstr "Plugin Werkzeuge aktivieren"
589
-
590
- #: core/options-pages.php:978
591
- msgid ""
592
- "Allow an individual site admin to import / export / restore plugin settings "
593
- "and perform the complete cleanup for a specific site"
594
- msgstr ""
595
- "Einem individuellen Site Admin den Import / Export, die Wiederherstellung "
596
- "der Plugineinstellungen sowie das komplette Aufräumen einer bestimmten Seite "
597
- "erlauben"
598
-
599
- #: core/options-pages.php:979
600
- msgid ""
601
- "Otherwise, only a network (super) admin can see the menu and perform those "
602
- "actions."
603
- msgstr ""
604
- "Ansonsten kann nur eine Netzwerk (Super-) Admin das Menü sehen und diese "
605
- "Aktionen ausführen."
606
-
607
- #: core/options-pages.php:986 core/options-pages.php:1770
608
- #: core/options-pages.php:1824 core/options-pages.php:1861
609
- #: core/options-pages.php:1905 core/options-pages.php:2113
610
- #: core/options-pages.php:2177 core/options-pages.php:2215
611
- #: core/options-pages.php:2386 enhanced-media-library.php:571
612
- msgid "Save Changes"
613
- msgstr "Änderungen speichern"
614
-
615
- #: core/options-pages.php:1012 core/options-pages.php:1015
616
- msgid "Media Library Settings"
617
- msgstr "Mediathek Einstellungen"
618
-
619
- #: core/options-pages.php:1016 core/options-pages.php:1030
620
- #: core/options-pages.php:1044
621
- msgid "Apply to ALL Network websites"
622
- msgstr "Auf ALLE Netzwerk Websites anwenden"
623
-
624
- #: core/options-pages.php:1026 core/options-pages.php:1029
625
- msgid "Media Taxonomies Settings"
626
- msgstr "Medien Taxonomien Einstellungen"
627
-
628
- #: core/options-pages.php:1040 core/options-pages.php:1043
629
- msgid "MIME Types Settings"
630
- msgstr "MIME Typen Einstellungen"
631
-
632
- #: core/options-pages.php:1087
633
- msgid "All plugin options on every site"
634
- msgstr "Alle Plugin Optionen auf jeder Seite"
635
-
636
- #: core/options-pages.php:1088
637
- msgid "Network settings"
638
- msgstr "Netzwerk Einstellungen"
639
-
640
- #: core/options-pages.php:1105
641
- msgid "Delete All Data & Network Deactivate"
642
- msgstr "Alle Daten löschen & Netzwerk deaktivieren"
643
-
644
- #: core/options-pages.php:1225
645
- msgid "Network settings saved."
646
- msgstr "Netzwerk Einstellungen gespeichert."
647
-
648
- #: core/options-pages.php:1319
649
- msgid "Settings cannot be imported. Please upload a file to import settings."
650
- msgstr ""
651
- "Einstellungen konnten nicht importiert werden. Bitte eine Datei hochladen, "
652
- "um Einstellungen zu importieren."
653
-
654
- #: core/options-pages.php:1340
655
- msgid ""
656
- "Settings cannot be imported. Please upload a correct JSON file to import "
657
- "settings."
658
- msgstr ""
659
- "Einstellungen konnten nicht importiert werden. Bitte eine korrekte JSON "
660
- "Datei hochladen, um Einstellungen zu importieren. "
661
-
662
- #: core/options-pages.php:1356
663
- msgid "Plugin settings imported."
664
- msgstr "Plugin-Einstellungen importiert."
665
-
666
- #: core/options-pages.php:1409
667
- msgid "Plugin settings restored from the backup."
668
- msgstr "Plugin-Einstellungen aus dem Backup wiederhergestellt."
669
-
670
- #: core/options-pages.php:1714
671
- msgid "Filters"
672
- msgstr "Filter"
673
-
674
- #: core/options-pages.php:1723 core/options-pages.php:1726
675
- msgid "Force filters"
676
- msgstr "Filter erzwingen"
677
-
678
- #: core/options-pages.php:1727
679
- msgid "Show media filters for ANY Media Popup"
680
- msgstr "Zeige Medien-Filter in JEDEM Medien-Popup"
681
-
682
- #: core/options-pages.php:1728
683
- msgid "Try this if filters are not shown for third-party plugins or themes."
684
- msgstr ""
685
- "Sollten die Filter nicht für Plugins von Drittanbietern oder Themes "
686
- "angezeigt werden, könnte das helfen"
687
-
688
- #: core/options-pages.php:1734 core/options-pages.php:1737
689
- msgid "Filters to show"
690
- msgstr "Angezeigte Filter"
691
-
692
- #: core/options-pages.php:1738
693
- msgid "Types"
694
- msgstr "Typen"
695
-
696
- #: core/options-pages.php:1739
697
- msgid "Can be disabled for Grid Mode only"
698
- msgstr "Kann nur für den Gitter Modus angestellt werden"
699
-
700
- #: core/options-pages.php:1740
701
- msgid "Dates"
702
- msgstr "Datum"
703
-
704
- #: core/options-pages.php:1741
705
- msgid "Authors"
706
- msgstr "Autoren"
707
-
708
- #: core/options-pages.php:1748 core/options-pages.php:1751
709
- msgid "Show count"
710
- msgstr "Zeige Anzahl"
711
-
712
- #: core/options-pages.php:1752
713
- msgid "Show item count per category for media filters"
714
- msgstr "Zeige Anzahl pro Medien-Filter Kategorie "
715
-
716
- #: core/options-pages.php:1753
717
- msgid ""
718
- "Disable this if it slows down your site admin. The problem is resolved in "
719
- "the upcoming major update v3.0"
720
- msgstr ""
721
- "Kann deaktiviert werden, wenn es die Admin Seite verlangsamt. Das Problem "
722
- "wird mit dem kommenden Update v3.0 gefixt."
723
-
724
- #: core/options-pages.php:1759 core/options-pages.php:1762
725
- msgid "Include children"
726
- msgstr "Untergeordnete Kategorien einbeziehen"
727
-
728
- #: core/options-pages.php:1763
729
- msgid "Show media items of child media categories as a result of filtering"
730
- msgstr "Zeige Medien aus untergeordneten Medienkategorien beim Filterergebnis"
731
-
732
- #: core/options-pages.php:1780
733
- msgid "Order"
734
- msgstr "Reihenfolge"
735
-
736
- #: core/options-pages.php:1789
737
- msgid "Order media items by"
738
- msgstr "Ordne Medien nach"
739
-
740
- #: core/options-pages.php:1792
741
- msgid "Date"
742
- msgstr "Datum"
743
-
744
- #: core/options-pages.php:1793 core/options-pages.php:1853
745
- msgid "Title"
746
- msgstr "Titel"
747
-
748
- #: core/options-pages.php:1794
749
- msgid "Custom Order"
750
- msgstr "Benutzerdefinierte Reihenfolge"
751
-
752
- #: core/options-pages.php:1796 core/options-pages.php:1808
753
- msgid "For media library and media popups"
754
- msgstr "Für die Mediathek und Medien-Popups"
755
-
756
- #: core/options-pages.php:1797
757
- msgid ""
758
- "Allows changing media items order by drag and drop with Custom Order value."
759
- msgstr ""
760
- "Medienreihenfolge kann per Drag & Drop mit benutzerdefinierten "
761
- "Ordnungswerten geändert werden."
762
-
763
- #: core/options-pages.php:1802
764
- msgid "Sort order"
765
- msgstr "Sortierreihenfolge"
766
-
767
- #: core/options-pages.php:1805
768
- msgid "Ascending"
769
- msgstr "Aufsteigend"
770
-
771
- #: core/options-pages.php:1806
772
- msgid "Descending"
773
- msgstr "Absteigend"
774
-
775
- #: core/options-pages.php:1813 core/options-pages.php:1816
776
- msgid "Natural sort order"
777
- msgstr "Natürliche Sortierreihenfolge"
778
-
779
- #: core/options-pages.php:1817
780
- msgid "Apply human-friendly sort order to Media Library and Galleries"
781
- msgstr ""
782
- "Benutzerfreundliche Sortierreihenfolge für Mediathek und Gallerien verwenden."
783
-
784
- #: core/options-pages.php:1818
785
- msgid ""
786
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
787
- "3, abc-11, abc-2]"
788
- msgstr ""
789
- "Zum Beispiel: [1, 2, 3, 10, 18, 22, abc-2, abc-11] anstatt [1, 10, 18, 2, "
790
- "22, 3, abc-11, abc-2]"
791
-
792
- #: core/options-pages.php:1831
793
- msgid "Grid Mode"
794
- msgstr "Raster Modus"
795
-
796
- #: core/options-pages.php:1840 core/options-pages.php:1843
797
- msgid "Show caption"
798
- msgstr "Beschriftung anzeigen"
799
-
800
- #: core/options-pages.php:1844
801
- msgid "Add text caption for media item thumbnails"
802
- msgstr "Textbeschriftung für Medien Thumbnails hinzufügen"
803
-
804
- #: core/options-pages.php:1850
805
- msgid "Caption type"
806
- msgstr "Beschriftungstyp"
807
-
808
- #: core/options-pages.php:1854
809
- msgid "Filename"
810
- msgstr "Dateiname"
811
-
812
- #: core/options-pages.php:1855
813
- msgid "Caption"
814
- msgstr "Beschriftung"
815
-
816
- #: core/options-pages.php:1868
817
- msgid "Media Shortcodes"
818
- msgstr "Medien Shortcodes"
819
-
820
- #: core/options-pages.php:1877 core/options-pages.php:1880
821
- msgid "Enhanced media shortcodes"
822
- msgstr "Verbesserte Medien Shortcodes"
823
-
824
- #: core/options-pages.php:1881
825
- msgid ""
826
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
827
- "upload date, and media items number limit"
828
- msgstr ""
829
- "Verbessere WordPress Medien Shortcodes, damit sie mit Medien Taxonomien, "
830
- "Hochladedatum und Medien Mengenbeschränkungen umgehen können."
831
-
832
- #: core/options-pages.php:1882
833
- msgid "Gallery example:"
834
- msgstr "Beispielgalerie:"
835
-
836
- #: core/options-pages.php:1883
837
- msgid "Audio playlist example:"
838
- msgstr "Beispiel Audio Playlist"
839
-
840
- #: core/options-pages.php:1884
841
- msgid "Video playlist example:"
842
- msgstr "Beispiel Video Playlist"
843
-
844
- #: core/options-pages.php:1888
845
- msgid "Warning"
846
- msgstr "Warnung"
847
-
848
- #: core/options-pages.php:1891
849
- #, php-format
850
- msgid ""
851
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
852
- "\">Learn more</a>."
853
- msgstr ""
854
- "Inkompatibilität mit anderen Gallerie-Plugins oder Themes möglich! <a href="
855
- "\"%s\">Erfahre mehr</a>."
856
-
857
- #: core/options-pages.php:1896
858
- #, php-format
859
- msgid ""
860
- "Please check out your gallery front-end and back-end functionality once this "
861
- "option activated. If you find an issue please inform plugin authors at %s or "
862
- "%s."
863
- msgstr ""
864
- "Bitte die Front-End und Back-End Funktionalität der Galerie überprüfen, "
865
- "sobald diese Option aktiviert ist. Sollten Probleme auftreten, bitte die "
866
- "Autoren des Plugins hier %s oder %s informieren."
867
-
868
- #: core/options-pages.php:1977 core/options-pages.php:2124
869
- msgid "Assign following taxonomies to Media Library:"
870
- msgstr "Folgende Taxonomien der Mediathek zuweisen:"
871
-
872
- #: core/options-pages.php:1996 core/options-pages.php:2062
873
- #: core/options-pages.php:2146
874
- msgid "Assign Taxonomy"
875
- msgstr "Taxonomie zuweisen"
876
-
877
- #: core/options-pages.php:1997 core/options-pages.php:2147
878
- msgid "Edit Taxonomy"
879
- msgstr "Taxonomie bearbeiten"
880
-
881
- #: core/options-pages.php:2001 core/options-pages.php:2064
882
- msgid "Delete Taxonomy"
883
- msgstr "Taxonomie löschen"
884
-
885
- #: core/options-pages.php:2006 core/options-pages.php:2069
886
- msgid "Labels"
887
- msgstr "Label"
888
-
889
- #: core/options-pages.php:2008 core/options-pages.php:2071
890
- msgid "Singular"
891
- msgstr "Singular"
892
-
893
- #: core/options-pages.php:2009 core/options-pages.php:2072
894
- msgid "Plural"
895
- msgstr "Plural"
896
-
897
- #: core/options-pages.php:2010 core/options-pages.php:2073
898
- msgid "Menu Name"
899
- msgstr "Menü Name"
900
-
901
- #: core/options-pages.php:2023 core/options-pages.php:2046
902
- #: core/options-pages.php:2086 core/options-pages.php:2150
903
- msgid "Settings"
904
- msgstr "Einstellungen"
905
-
906
- #: core/options-pages.php:2025 core/options-pages.php:2088
907
- msgid "Taxonomy Name"
908
- msgstr "Taxonomie Name"
909
-
910
- #: core/options-pages.php:2026 core/options-pages.php:2089
911
- msgid "Hierarchical"
912
- msgstr "Hierarchisch"
913
-
914
- #: core/options-pages.php:2027 core/options-pages.php:2090
915
- msgid "Column for List View"
916
- msgstr "Spalte für Listenansicht"
917
-
918
- #: core/options-pages.php:2028 core/options-pages.php:2048
919
- #: core/options-pages.php:2091 core/options-pages.php:2152
920
- msgid "Filter for List View"
921
- msgstr "Filter für Listenansicht."
922
-
923
- #: core/options-pages.php:2029 core/options-pages.php:2049
924
- #: core/options-pages.php:2092 core/options-pages.php:2153
925
- msgid "Filter for Grid View / Media Popup"
926
- msgstr "Filter für Rasteransicht / Medien Popup"
927
-
928
- #: core/options-pages.php:2030 core/options-pages.php:2050
929
- #: core/options-pages.php:2093 core/options-pages.php:2154
930
- msgid "Edit in Media Popup"
931
- msgstr "Im Medien Popup editieren"
932
-
933
- #: core/options-pages.php:2031 core/options-pages.php:2094
934
- msgid "Show in Nav Menu"
935
- msgstr "Im Navigationsmenü zeigen"
936
-
937
- #: core/options-pages.php:2032 core/options-pages.php:2095
938
- msgid "Remember Terms Order (sort)"
939
- msgstr "Begriffsreihenfolge (Sortierung) merken"
940
-
941
- #: core/options-pages.php:2033 core/options-pages.php:2096
942
- msgid "Show in REST"
943
- msgstr "In REST anzeigen"
944
-
945
- #: core/options-pages.php:2034 core/options-pages.php:2097
946
- msgid "Rewrite Slug"
947
- msgstr "Slug bearbeiten"
948
-
949
- #: core/options-pages.php:2035 core/options-pages.php:2098
950
- msgid "Slug with Front"
951
- msgstr "Slug mit Voranstellung (with front)"
952
-
953
- #: core/options-pages.php:2110
954
- msgid "Add New Taxonomy"
955
- msgstr "Neue Taxonomie hinzufügen"
956
-
957
- #: core/options-pages.php:2120
958
- msgid "Non-Media Taxonomies"
959
- msgstr "Nicht-Medien Taxonomien"
960
-
961
- #: core/options-pages.php:2183
962
- msgid "Options"
963
- msgstr "Optionen"
964
-
965
- #: core/options-pages.php:2193 core/options-pages.php:2196
966
- msgid "Taxonomy archive pages"
967
- msgstr "Taxonomie Archiv Seiten"
968
-
969
- #: core/options-pages.php:2197
970
- msgid "Turn on media taxonomy archive pages on the front-end"
971
- msgstr "Medien Taxonomie Archive auf der Website aktivieren"
972
-
973
- #: core/options-pages.php:2198
974
- msgid ""
975
- "Re-save your permalink settings after this option change to make it work."
976
- msgstr ""
977
- "Die Permalink-Einstellungen müssen noch einmal gespeichert werden, damit "
978
- "diese Einstellung greift."
979
-
980
- #: core/options-pages.php:2204 core/options-pages.php:2207
981
- msgid "Assign all like hierarchical"
982
- msgstr "Alle als hierarchisch zuweisen"
983
-
984
- #: core/options-pages.php:2208
985
- msgid ""
986
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
987
- msgstr ""
988
- "Zeige nicht-hierarchische Taxonomien wie die hierarchischen in einem "
989
- "Raster / in einem Medien-Popup an"
990
-
991
- #: core/options-pages.php:2271
992
- msgid "Add New MIME Type"
993
- msgstr "Neuen MIME-Typ hinzufügen"
994
-
995
- #: core/options-pages.php:2291 core/options-pages.php:2345
996
- msgid "Extension"
997
- msgstr "Dateiendung"
998
-
999
- #: core/options-pages.php:2292 core/options-pages.php:2346
1000
- msgid "MIME Type"
1001
- msgstr "MIME-Typ"
1002
-
1003
- #: core/options-pages.php:2293 core/options-pages.php:2347
1004
- msgid "Singular Label"
1005
- msgstr "Singular Beschriftung"
1006
-
1007
- #: core/options-pages.php:2294 core/options-pages.php:2348
1008
- msgid "Plural Label"
1009
- msgstr "Plural Beschriftung"
1010
-
1011
- #: core/options-pages.php:2295 core/options-pages.php:2324
1012
- #: core/options-pages.php:2337 core/options-pages.php:2349
1013
- msgid "Add Filter"
1014
- msgstr "Filter hinzufügen"
1015
-
1016
- #: core/options-pages.php:2296 core/options-pages.php:2325
1017
- #: core/options-pages.php:2338 core/options-pages.php:2350
1018
- msgid "Allow Upload"
1019
- msgstr "Upload erlauben"
1020
-
1021
- #: core/options-pages.php:2326 core/options-pages.php:2339
1022
- msgid "Delete MIME Type"
1023
- msgstr "MIME-Typ löschen"
1024
-
1025
- #: core/options-pages.php:2415
1026
- msgid "Changelog"
1027
- msgstr "Changelog"
1028
-
1029
- #: core/options-pages.php:2416
1030
- msgid "What's new in"
1031
- msgstr "Neu in"
1032
-
1033
- #: core/options-pages.php:2416
1034
- msgid "version"
1035
- msgstr "Version"
1036
-
1037
- #: core/options-pages.php:2419
1038
- msgid "More features under the hood"
1039
- msgstr "Mehr Features gibt’s hier"
1040
-
1041
- #: core/options-pages.php:2421
1042
- msgid "Support"
1043
- msgstr "Support"
1044
-
1045
- #: core/options-pages.php:2422
1046
- msgid "Feel free to ask for help on"
1047
- msgstr "Hilfe bei Fragen gibt es hier "
1048
-
1049
- #: core/options-pages.php:2422
1050
- msgid "Support is free for both versions of the plugin."
1051
- msgstr "Für beide Plugin-Versionen ist der Support kostenlos."
1052
-
1053
- #: core/options-pages.php:2424
1054
- msgid "Plugin rating"
1055
- msgstr "Plugin Bewertung"
1056
-
1057
- #: core/options-pages.php:2425
1058
- msgid "Please"
1059
- msgstr "Bitte"
1060
-
1061
- #: core/options-pages.php:2425
1062
- msgid "vote for the plugin"
1063
- msgstr "Plugin bewerten"
1064
-
1065
- #: core/options-pages.php:2425
1066
- msgid "Thanks!"
1067
- msgstr "Danke!"
1068
-
1069
- #: core/options-pages.php:2427
1070
- msgid "Other plugins you may find useful"
1071
- msgstr "Weitere Plugins, die Dir gefallen könnten"
1072
-
1073
- #: core/options-pages.php:2469
1074
- msgid "Utility"
1075
- msgstr "Werkzeuge"
1076
-
1077
- #: core/options-pages.php:2494
1078
- msgid "Rate us:"
1079
- msgstr "Bewertung abgeben:"
1080
-
1081
- #: core/options-pages.php:2494
1082
- msgid "Poor"
1083
- msgstr "Schlecht"
1084
-
1085
- #: core/options-pages.php:2494
1086
- msgid "Works"
1087
- msgstr "Ausreichend"
1088
-
1089
- #: core/options-pages.php:2494
1090
- msgid "Good"
1091
- msgstr "Gut"
1092
-
1093
- #: core/options-pages.php:2494
1094
- msgid "Great"
1095
- msgstr "Sehr gut"
1096
-
1097
- #: core/options-pages.php:2494
1098
- msgid "Fantastic!"
1099
- msgstr "Großartig!"
1100
-
1101
- #: core/taxonomies.php:101
1102
- msgid "Media Taxonomies settings saved."
1103
- msgstr "Medien Taxonomie Einstellungen gespeichert."
1104
-
1105
- #: core/taxonomies.php:174
1106
- msgid "Media Library settings saved."
1107
- msgstr "Mediathek-Einstellungen gespeichert."
1108
-
1109
- #: core/taxonomies.php:353
1110
- msgid "Filter by author"
1111
- msgstr "Nach Autor filtern"
1112
-
1113
- #: core/taxonomies.php:357
1114
- msgid "All Authors"
1115
- msgstr "Alle Autoren"
1116
-
1117
- #: core/taxonomies.php:374 core/taxonomies.php:380
1118
- #: enhanced-media-library.php:561
1119
- msgid "Filter by"
1120
- msgstr "Filtern nach "
1121
-
1122
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1123
- msgid "Not in a"
1124
- msgstr "Nicht in"
1125
-
1126
- #: core/taxonomies.php:721
1127
- msgid "Add some"
1128
- msgstr "Hinzufügen"
1129
-
1130
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1131
- msgid "All Uncategorized"
1132
- msgstr "Alle unkategorisierten"
1133
-
1134
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1135
- msgid "Reset All Filters"
1136
- msgstr "Alle Filter zurücksetzen"
1137
-
1138
- #: enhanced-media-library.php:391
1139
- msgid "More Details"
1140
- msgstr "Mehr Details"
1141
-
1142
- #: enhanced-media-library.php:392
1143
- msgid "Less Details"
1144
- msgstr "Weniger Details"
1145
-
1146
- #: enhanced-media-library.php:565
1147
- msgid "author"
1148
- msgstr "Autor"
1149
-
1150
- #: enhanced-media-library.php:566
1151
- msgid "authors"
1152
- msgstr "Autoren"
1153
-
1154
- #: enhanced-media-library.php:569
1155
- msgid "Saved."
1156
- msgstr "Gespeichert."
1157
-
1158
- #: enhanced-media-library.php:570
1159
- msgid "Something went wrong."
1160
- msgstr "Das hat leider nicht geklappt."
1161
-
1162
- #: enhanced-media-library.php:573
1163
- msgid "Select All"
1164
- msgstr "Alle auswählen"
1165
-
1166
- #: enhanced-media-library.php:574
1167
- msgid "Deselect "
1168
- msgstr "Auswahl entfernen"
1169
-
1170
- #: enhanced-media-library.php:603
1171
- msgid "Uploaded to post #"
1172
- msgstr "Zu Beitrag Nr. hochgeladen"
1173
-
1174
- #: enhanced-media-library.php:604
1175
- msgid "Based On"
1176
- msgstr "Basierend auf"
1177
-
1178
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1179
- msgid "Media Categories"
1180
- msgstr "Medienkategorien"
1181
-
1182
- #: enhanced-media-library.php:674
1183
- msgid "Media Category"
1184
- msgstr "Medienkategorie"
1185
-
1186
- #: enhanced-media-library.php:676
1187
- msgid "All Media Categories"
1188
- msgstr "Alle Medienkategorien"
1189
-
1190
- #: enhanced-media-library.php:677
1191
- msgid "Edit Media Category"
1192
- msgstr "Medienkategorie bearbeiten"
1193
-
1194
- #: enhanced-media-library.php:678
1195
- msgid "View Media Category"
1196
- msgstr "Medienkategorie anzeigen"
1197
-
1198
- #: enhanced-media-library.php:679
1199
- msgid "Update Media Category"
1200
- msgstr "Medienkategorie aktualisieren"
1201
-
1202
- #: enhanced-media-library.php:680
1203
- msgid "Add New Media Category"
1204
- msgstr "Medienkategorie hinzufügen"
1205
-
1206
- #: enhanced-media-library.php:681
1207
- msgid "New Media Category Name"
1208
- msgstr "Name der neuen Medienkategorie"
1209
-
1210
- #: enhanced-media-library.php:682
1211
- msgid "Parent Media Category"
1212
- msgstr "Übergeordnete Medienkategorie"
1213
-
1214
- #: enhanced-media-library.php:683
1215
- msgid "Parent Media Category:"
1216
- msgstr "Übergeordnete Medienkategorie:"
1217
-
1218
- #: enhanced-media-library.php:684
1219
- msgid "Search Media Categories"
1220
- msgstr "Durchsuche Medienkategorien"
1221
-
1222
- #. Plugin URI of the plugin/theme
1223
- #. Author URI of the plugin/theme
1224
- msgid "http://wpUXsolutions.com"
1225
- msgstr "http://wpUXsolutions.com"
1226
-
1227
- #. Description of the plugin/theme
1228
- msgid ""
1229
- "This plugin will be handy for those who need to manage a lot of media files."
1230
- msgstr "Perfekt für alle, die viele Medien verwalten wollen."
1231
-
1232
- #. Author of the plugin/theme
1233
- msgid "wpUXsolutions"
1234
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-es.mo DELETED
Binary file
languages/enhanced-media-library-es.po DELETED
@@ -1,1198 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Spanish (Spain)
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:49+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: es\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 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr ""
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr ""
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr ""
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr ""
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr ""
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr ""
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr "Ajustes de tipos MIME restaurados."
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr "Ajustes de tipos MIME guardados."
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] ""
54
- msgstr[1] ""
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "Ajustes de medios"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "Biblioteca de medios"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "Taxonomías de medios"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "Tipos MIME"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "General"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "No tiene los suficientes permisos para acceder esta página."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "Tamaños de imagen"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
- "Los tamaños de la lista siguiente determinan las dimensiones máximas en "
109
- "píxeles que se usarán al añadir una imagen a la biblioteca de medios."
110
-
111
- #: core/options-pages.php:415
112
- msgid "Thumbnail size"
113
- msgstr "Tamaño de miniatura"
114
-
115
- #: core/options-pages.php:417
116
- msgid "Width"
117
- msgstr "Ancho"
118
-
119
- #: core/options-pages.php:419
120
- msgid "Height"
121
- msgstr "Alto"
122
-
123
- #: core/options-pages.php:422
124
- msgid ""
125
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
126
- msgstr ""
127
- "Recorta la miniatura a las dimensiones exactas (normalmente las miniaturas "
128
- "son proporcionales)"
129
-
130
- #: core/options-pages.php:427 core/options-pages.php:428
131
- msgid "Medium size"
132
- msgstr "Tamaño medio"
133
-
134
- #: core/options-pages.php:429 core/options-pages.php:440
135
- msgid "Max Width"
136
- msgstr "Ancho máximo"
137
-
138
- #: core/options-pages.php:432 core/options-pages.php:443
139
- msgid "Max Height"
140
- msgstr "Tamaño máximo"
141
-
142
- #: core/options-pages.php:438 core/options-pages.php:439
143
- msgid "Large size"
144
- msgstr "Tamaño grande"
145
-
146
- #: core/options-pages.php:456
147
- msgid "Embeds"
148
- msgstr "Incrustados"
149
-
150
- #: core/options-pages.php:463
151
- msgid "Uploading Files"
152
- msgstr "Subiendo archivos"
153
-
154
- #: core/options-pages.php:470
155
- msgid "Store uploads in this folder"
156
- msgstr "Almacena los archivos subidos en esta carpeta"
157
-
158
- #: core/options-pages.php:474
159
- #, php-format
160
- msgid "Default is %s"
161
- msgstr "Por defecto es %s"
162
-
163
- #: core/options-pages.php:480
164
- msgid "Full URL path to files"
165
- msgstr "URL completa a los archivos"
166
-
167
- #: core/options-pages.php:482
168
- msgid "Configuring this is optional. By default, it should be blank."
169
- msgstr "Configurar esto es opcional. Por defecto debería estar en blanco."
170
-
171
- #: core/options-pages.php:490
172
- msgid "Organize my uploads into month- and year-based folders"
173
- msgstr "Organiza mis archivos subidos en carpetas basadas en mes y año"
174
-
175
- #: core/options-pages.php:560 core/options-pages.php:1997
176
- #: core/options-pages.php:2012 core/options-pages.php:2075
177
- #: core/options-pages.php:2147
178
- msgid "Edit"
179
- msgstr "Editar"
180
-
181
- #: core/options-pages.php:561
182
- msgid "Close"
183
- msgstr "Cerrar"
184
-
185
- #: core/options-pages.php:562 core/options-pages.php:2013
186
- #: core/options-pages.php:2076
187
- msgid "View"
188
- msgstr "Ver"
189
-
190
- #: core/options-pages.php:563 core/options-pages.php:2014
191
- #: core/options-pages.php:2077
192
- msgid "Update"
193
- msgstr "Actualizar"
194
-
195
- #: core/options-pages.php:564 core/options-pages.php:2015
196
- #: core/options-pages.php:2078
197
- msgid "Add New"
198
- msgstr "Añadir nueva"
199
-
200
- #: core/options-pages.php:565 core/options-pages.php:2016
201
- #: core/options-pages.php:2079
202
- msgid "New"
203
- msgstr "Nuevo"
204
-
205
- #: core/options-pages.php:566
206
- msgid "Name"
207
- msgstr "Nom"
208
-
209
- #: core/options-pages.php:567 core/options-pages.php:2017
210
- #: core/options-pages.php:2080
211
- msgid "Parent"
212
- msgstr "Superior"
213
-
214
- #: core/options-pages.php:568 core/options-pages.php:862
215
- #: core/options-pages.php:1084 core/options-pages.php:2011
216
- #: core/options-pages.php:2074 core/taxonomies.php:381
217
- #: enhanced-media-library.php:562
218
- msgid "All"
219
- msgstr "Todo"
220
-
221
- #: core/options-pages.php:569 core/options-pages.php:2018
222
- #: core/options-pages.php:2081
223
- msgid "Search"
224
- msgstr "Buscar"
225
-
226
- #: core/options-pages.php:571 core/options-pages.php:2062
227
- msgid "New Taxonomy"
228
- msgstr "Nueva taxonomía"
229
-
230
- #: core/options-pages.php:573
231
- msgid "Remove Taxonomy"
232
- msgstr "Borrar taxonomía"
233
-
234
- #: core/options-pages.php:574
235
- msgid "Taxonomy will be removed."
236
- msgstr "Se borrará la taxonomía."
237
-
238
- #: core/options-pages.php:575
239
- msgid ""
240
- "Taxonomy terms (categories) will remain intact in the database. If you "
241
- "create a taxonomy with the same name in the future, its terms (categories) "
242
- "will be available again."
243
- msgstr ""
244
- "Los términos de taxonomías (categorías) permanecerán intactos en la base de "
245
- "datos. Si creas una taxonomía con el mismo nombre en un futuro sus términos "
246
- "(categorías) estarán de nuevo disponibles."
247
-
248
- #: core/options-pages.php:576
249
- msgid "Media items will remain intact."
250
- msgstr "Los medios permanecerán intactos."
251
-
252
- #: core/options-pages.php:577
253
- msgid "Are you still sure?"
254
- msgstr "¿De verdad estás seguro?"
255
-
256
- #: core/options-pages.php:578
257
- msgid "Yes, remove taxonomy"
258
- msgstr "Sí, borra la taxonomía"
259
-
260
- #: core/options-pages.php:580
261
- msgid "Duplicate"
262
- msgstr "Duplicar"
263
-
264
- #: core/options-pages.php:581
265
- msgid "Taxonomy with the same name already exists. Please chose other one."
266
- msgstr "Ya existe una taxonomía con el mismo nombre. Por favor, elige otro."
267
-
268
- #: core/options-pages.php:583
269
- msgid "Empty Fields"
270
- msgstr "Campos vacíos"
271
-
272
- #: core/options-pages.php:584
273
- msgid "Wrong Taxonomy Name"
274
- msgstr ""
275
-
276
- #: core/options-pages.php:585
277
- msgid "Wrong Slug"
278
- msgstr ""
279
-
280
- #: core/options-pages.php:587
281
- msgid "Please choose Singular and Plural names for all new taxomonies."
282
- msgstr ""
283
- "Por favor, elige nombres en singular y plural para todas las nuevas "
284
- "taxonomías."
285
-
286
- #: core/options-pages.php:588
287
- msgid "Please choose Singular name for all new taxomonies."
288
- msgstr ""
289
-
290
- #: core/options-pages.php:589
291
- msgid "Please choose Plural name for all new taxomonies."
292
- msgstr ""
293
-
294
- #: core/options-pages.php:591
295
- msgid ""
296
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
297
- "name please enter it manually."
298
- msgstr ""
299
-
300
- #: core/options-pages.php:592
301
- msgid ""
302
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
303
- "character ( _ ), and be 3-32 characters long."
304
- msgstr ""
305
-
306
- #: core/options-pages.php:593
307
- msgid ""
308
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
309
- "or hyphen ( - ) characters."
310
- msgstr ""
311
-
312
- #: core/options-pages.php:595 core/options-pages.php:644
313
- msgid "Ok"
314
- msgstr "Vale"
315
-
316
- #: core/options-pages.php:596 core/options-pages.php:601
317
- #: core/options-pages.php:645 core/options-pages.php:690
318
- msgid "Cancel"
319
- msgstr "Cancelar"
320
-
321
- #: core/options-pages.php:598
322
- msgid "Synchronize Now"
323
- msgstr "Sincronizar ahora"
324
-
325
- #: core/options-pages.php:599 core/options-pages.php:687
326
- msgid "This operation cannot be canceled! Are you still sure?"
327
- msgstr "¡Esta operación no puede cancelarse! ¿Estás de verdad seguro?"
328
-
329
- #: core/options-pages.php:600
330
- msgid "Synchronize"
331
- msgstr "Sincronizar"
332
-
333
- #: core/options-pages.php:602
334
- msgid "Synchronizing..."
335
- msgstr "Sincronizando…"
336
-
337
- #: core/options-pages.php:639 core/options-pages.php:2388
338
- msgid "Restore WordPress default MIME Types"
339
- msgstr "Restaura los tipos MIME por defecto de WordPress"
340
-
341
- #: core/options-pages.php:640
342
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
343
- msgstr ""
344
- "¡Aviso! Todos tus tipos MIME personalizados se borrarán con esta operación."
345
-
346
- #: core/options-pages.php:641
347
- msgid "Restore Defaults"
348
- msgstr ""
349
-
350
- #: core/options-pages.php:642
351
- msgid "Restoring..."
352
- msgstr ""
353
-
354
- #: core/options-pages.php:647
355
- msgid "MIME Types cannot be saved"
356
- msgstr ""
357
-
358
- #: core/options-pages.php:648
359
- msgid "Please fill into all fields."
360
- msgstr "Por favor, rellena todos los campos."
361
-
362
- #: core/options-pages.php:649
363
- msgid "Duplicate extensions or MIME types. Please choose other one."
364
- msgstr "Extensiones o tipos MIME duplicados. Por favor, elige otro."
365
-
366
- #: core/options-pages.php:685 core/options-pages.php:853
367
- #: core/options-pages.php:1063
368
- msgid "Complete Cleanup"
369
- msgstr "Borrado completo"
370
-
371
- #: core/options-pages.php:686
372
- msgid ""
373
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
374
- "plugin data</strong> from the database including backups."
375
- msgstr ""
376
- "Estás a punto de <strong style=\"text-transform:uppercase\">borrar todos los "
377
- "datos del plugin</strong> de la base de datos, incluidas las copias."
378
-
379
- #: core/options-pages.php:688
380
- msgid "Yes, delete all data"
381
- msgstr "Sí, borra todos los datos"
382
-
383
- #: core/options-pages.php:689
384
- msgid "Cleaning..."
385
- msgstr "Borrando…"
386
-
387
- #: core/options-pages.php:693 core/options-pages.php:996
388
- msgid "Unify Media Settings over Network"
389
- msgstr ""
390
-
391
- #: core/options-pages.php:696 core/options-pages.php:700
392
- #: core/options-pages.php:704
393
- msgid "will be overwritten"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:706
397
- msgid "Apply"
398
- msgstr ""
399
-
400
- #: core/options-pages.php:707
401
- msgid "Applying Settings..."
402
- msgstr ""
403
-
404
- #: core/options-pages.php:746 core/options-pages.php:935
405
- msgid "Enhanced Media Library Utilities"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:756
409
- msgid "Export"
410
- msgstr "Exportar"
411
-
412
- #: core/options-pages.php:761
413
- msgid "Plugin settings to export:"
414
- msgstr ""
415
-
416
- #: core/options-pages.php:762 core/options-pages.php:789
417
- #: core/options-pages.php:829
418
- msgid "Settings > Media Library"
419
- msgstr ""
420
-
421
- #: core/options-pages.php:763 core/options-pages.php:790
422
- #: core/options-pages.php:830
423
- msgid "Settings > Media Taxonomies"
424
- msgstr ""
425
-
426
- #: core/options-pages.php:764 core/options-pages.php:791
427
- #: core/options-pages.php:831
428
- msgid "Settings > MIME Types"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:768
432
- msgid ""
433
- "Use generated JSON file to import the configuration into another website."
434
- msgstr ""
435
-
436
- #: core/options-pages.php:773
437
- msgid "Export Plugin Settings"
438
- msgstr "Ajustes de exportación del plugin"
439
-
440
- #: core/options-pages.php:783
441
- msgid "Import"
442
- msgstr "Importar"
443
-
444
- #: core/options-pages.php:788
445
- msgid "Plugin settings to import:"
446
- msgstr ""
447
-
448
- #: core/options-pages.php:794
449
- msgid ""
450
- "Plugin settings will be imported from a configuration JSON file which can be "
451
- "obtained by exporting the settings on another website using the export "
452
- "button above."
453
- msgstr ""
454
-
455
- #: core/options-pages.php:795
456
- msgid ""
457
- "All plugin settings will be overridden by the import. You will have a chance "
458
- "to restore current data from an automatic backup in case you are not "
459
- "satisfied with the result of the import."
460
- msgstr ""
461
- "Todos los ajustes del plugin se sobreescribirán en la importación. Tendrás "
462
- "la opción de restaurar los datos actuales desde una copia automática si no "
463
- "estás satisfecho con el resultado de la importación."
464
-
465
- #: core/options-pages.php:801
466
- msgid "Import Plugin Settings"
467
- msgstr "Importar ajustes del plugin"
468
-
469
- #: core/options-pages.php:813
470
- msgid "Restore"
471
- msgstr "Restaurar"
472
-
473
- #: core/options-pages.php:819
474
- msgid "No backup available at the moment."
475
- msgstr "No hay ninguna copia disponible en este momento."
476
-
477
- #: core/options-pages.php:821
478
- msgid "Backup will be created automatically before any import operation."
479
- msgstr ""
480
- "Se creará una copia automáticamente antes de cualquier operación de "
481
- "importación. "
482
-
483
- #: core/options-pages.php:825
484
- msgid ""
485
- "The backup has been automatically created before the latest import operation."
486
- msgstr ""
487
- "La copia se ha creado automáticamente antes de la última operación de "
488
- "importación."
489
-
490
- #: core/options-pages.php:828
491
- msgid "Plugin settings to restore:"
492
- msgstr ""
493
-
494
- #: core/options-pages.php:837
495
- msgid "Restore Settings from the Backup"
496
- msgstr "Restaura ajustes desde la copia"
497
-
498
- #: core/options-pages.php:860 core/options-pages.php:1082
499
- msgid "What will be deleted:"
500
- msgstr "Lo que se borrará:"
501
-
502
- #: core/options-pages.php:865
503
- msgid "All plugin options"
504
- msgstr "Todas los ajustes del plugin"
505
-
506
- #: core/options-pages.php:866 core/options-pages.php:1089
507
- msgid "All plugin backups stored in the database"
508
- msgstr ""
509
-
510
- #: core/options-pages.php:870 core/options-pages.php:1093
511
- msgid "What will remain intact:"
512
- msgstr "Lo que permanecerá intacto:"
513
-
514
- #: core/options-pages.php:871 core/options-pages.php:1094
515
- msgid "All media items"
516
- msgstr "Todos los medios"
517
-
518
- #: core/options-pages.php:872 core/options-pages.php:1095
519
- msgid "All taxonomies not listed above"
520
- msgstr "Todas las taxonomías que no están en la lista anterior"
521
-
522
- #: core/options-pages.php:875 core/options-pages.php:1098
523
- msgid ""
524
- "The plugin cannot delete itself for security reasons. Please delete it "
525
- "manually from the plugin list after the cleanup is complete."
526
- msgstr ""
527
-
528
- #: core/options-pages.php:877 core/options-pages.php:1100
529
- msgid ""
530
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
531
- "backup of your database prior to cleanup!"
532
- msgstr ""
533
-
534
- #: core/options-pages.php:882
535
- msgid "Delete All Data & Deactivate"
536
- msgstr "Borrar todos los datos y desactivar"
537
-
538
- #: core/options-pages.php:945
539
- msgid "Network Settings"
540
- msgstr ""
541
-
542
- #: core/options-pages.php:952 core/options-pages.php:1003
543
- msgid "No settings available. The plugin is not network activated."
544
- msgstr ""
545
-
546
- #: core/options-pages.php:963
547
- msgid "Media Settings per site"
548
- msgstr ""
549
-
550
- #: core/options-pages.php:966
551
- msgid "Enable Media Settings"
552
- msgstr ""
553
-
554
- #: core/options-pages.php:967
555
- msgid "Allow an individual site admin to edit enhanced Media Settings"
556
- msgstr ""
557
-
558
- #: core/options-pages.php:968
559
- msgid ""
560
- "Otherwise, only a network (super) admin can see the menu and edit media "
561
- "settings."
562
- msgstr ""
563
-
564
- #: core/options-pages.php:974
565
- msgid "Plugin Utilities per site"
566
- msgstr ""
567
-
568
- #: core/options-pages.php:977
569
- msgid "Enable plugin Utilities"
570
- msgstr ""
571
-
572
- #: core/options-pages.php:978
573
- msgid ""
574
- "Allow an individual site admin to import / export / restore plugin settings "
575
- "and perform the complete cleanup for a specific site"
576
- msgstr ""
577
-
578
- #: core/options-pages.php:979
579
- msgid ""
580
- "Otherwise, only a network (super) admin can see the menu and perform those "
581
- "actions."
582
- msgstr ""
583
-
584
- #: core/options-pages.php:986 core/options-pages.php:1770
585
- #: core/options-pages.php:1824 core/options-pages.php:1861
586
- #: core/options-pages.php:1905 core/options-pages.php:2113
587
- #: core/options-pages.php:2177 core/options-pages.php:2215
588
- #: core/options-pages.php:2386 enhanced-media-library.php:571
589
- msgid "Save Changes"
590
- msgstr "Guardar cambios"
591
-
592
- #: core/options-pages.php:1012 core/options-pages.php:1015
593
- msgid "Media Library Settings"
594
- msgstr ""
595
-
596
- #: core/options-pages.php:1016 core/options-pages.php:1030
597
- #: core/options-pages.php:1044
598
- msgid "Apply to ALL Network websites"
599
- msgstr ""
600
-
601
- #: core/options-pages.php:1026 core/options-pages.php:1029
602
- msgid "Media Taxonomies Settings"
603
- msgstr ""
604
-
605
- #: core/options-pages.php:1040 core/options-pages.php:1043
606
- msgid "MIME Types Settings"
607
- msgstr ""
608
-
609
- #: core/options-pages.php:1087
610
- msgid "All plugin options on every site"
611
- msgstr ""
612
-
613
- #: core/options-pages.php:1088
614
- msgid "Network settings"
615
- msgstr ""
616
-
617
- #: core/options-pages.php:1105
618
- msgid "Delete All Data & Network Deactivate"
619
- msgstr ""
620
-
621
- #: core/options-pages.php:1225
622
- msgid "Network settings saved."
623
- msgstr ""
624
-
625
- #: core/options-pages.php:1319
626
- msgid "Settings cannot be imported. Please upload a file to import settings."
627
- msgstr ""
628
-
629
- #: core/options-pages.php:1340
630
- msgid ""
631
- "Settings cannot be imported. Please upload a correct JSON file to import "
632
- "settings."
633
- msgstr ""
634
-
635
- #: core/options-pages.php:1356
636
- msgid "Plugin settings imported."
637
- msgstr "Ajustes del plugin importados."
638
-
639
- #: core/options-pages.php:1409
640
- msgid "Plugin settings restored from the backup."
641
- msgstr "Ajustes del plugin restaurados desde la copia."
642
-
643
- #: core/options-pages.php:1714
644
- msgid "Filters"
645
- msgstr ""
646
-
647
- #: core/options-pages.php:1723 core/options-pages.php:1726
648
- msgid "Force filters"
649
- msgstr "Forzar filtros"
650
-
651
- #: core/options-pages.php:1727
652
- msgid "Show media filters for ANY Media Popup"
653
- msgstr "Mostrar los filtros de medios en cualquier medio emergente"
654
-
655
- #: core/options-pages.php:1728
656
- msgid "Try this if filters are not shown for third-party plugins or themes."
657
- msgstr "Prueba esto si otros plugins o temas no muestran los filtros."
658
-
659
- #: core/options-pages.php:1734 core/options-pages.php:1737
660
- msgid "Filters to show"
661
- msgstr ""
662
-
663
- #: core/options-pages.php:1738
664
- msgid "Types"
665
- msgstr ""
666
-
667
- #: core/options-pages.php:1739
668
- msgid "Can be disabled for Grid Mode only"
669
- msgstr ""
670
-
671
- #: core/options-pages.php:1740
672
- msgid "Dates"
673
- msgstr ""
674
-
675
- #: core/options-pages.php:1741
676
- msgid "Authors"
677
- msgstr ""
678
-
679
- #: core/options-pages.php:1748 core/options-pages.php:1751
680
- msgid "Show count"
681
- msgstr ""
682
-
683
- #: core/options-pages.php:1752
684
- msgid "Show item count per category for media filters"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1753
688
- msgid ""
689
- "Disable this if it slows down your site admin. The problem is resolved in "
690
- "the upcoming major update v3.0"
691
- msgstr ""
692
-
693
- #: core/options-pages.php:1759 core/options-pages.php:1762
694
- msgid "Include children"
695
- msgstr ""
696
-
697
- #: core/options-pages.php:1763
698
- msgid "Show media items of child media categories as a result of filtering"
699
- msgstr ""
700
-
701
- #: core/options-pages.php:1780
702
- msgid "Order"
703
- msgstr ""
704
-
705
- #: core/options-pages.php:1789
706
- msgid "Order media items by"
707
- msgstr "Ordenar los medios por"
708
-
709
- #: core/options-pages.php:1792
710
- msgid "Date"
711
- msgstr ""
712
-
713
- #: core/options-pages.php:1793 core/options-pages.php:1853
714
- msgid "Title"
715
- msgstr ""
716
-
717
- #: core/options-pages.php:1794
718
- msgid "Custom Order"
719
- msgstr ""
720
-
721
- #: core/options-pages.php:1796 core/options-pages.php:1808
722
- msgid "For media library and media popups"
723
- msgstr "Para la biblioteca de medios y medios emergentes"
724
-
725
- #: core/options-pages.php:1797
726
- msgid ""
727
- "Allows changing media items order by drag and drop with Custom Order value."
728
- msgstr ""
729
-
730
- #: core/options-pages.php:1802
731
- msgid "Sort order"
732
- msgstr "Tipo de orden"
733
-
734
- #: core/options-pages.php:1805
735
- msgid "Ascending"
736
- msgstr ""
737
-
738
- #: core/options-pages.php:1806
739
- msgid "Descending"
740
- msgstr ""
741
-
742
- #: core/options-pages.php:1813 core/options-pages.php:1816
743
- msgid "Natural sort order"
744
- msgstr ""
745
-
746
- #: core/options-pages.php:1817
747
- msgid "Apply human-friendly sort order to Media Library and Galleries"
748
- msgstr ""
749
-
750
- #: core/options-pages.php:1818
751
- msgid ""
752
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
753
- "3, abc-11, abc-2]"
754
- msgstr ""
755
-
756
- #: core/options-pages.php:1831
757
- msgid "Grid Mode"
758
- msgstr ""
759
-
760
- #: core/options-pages.php:1840 core/options-pages.php:1843
761
- msgid "Show caption"
762
- msgstr ""
763
-
764
- #: core/options-pages.php:1844
765
- msgid "Add text caption for media item thumbnails"
766
- msgstr ""
767
-
768
- #: core/options-pages.php:1850
769
- msgid "Caption type"
770
- msgstr ""
771
-
772
- #: core/options-pages.php:1854
773
- msgid "Filename"
774
- msgstr ""
775
-
776
- #: core/options-pages.php:1855
777
- msgid "Caption"
778
- msgstr ""
779
-
780
- #: core/options-pages.php:1868
781
- msgid "Media Shortcodes"
782
- msgstr "Códigos cortos de medios"
783
-
784
- #: core/options-pages.php:1877 core/options-pages.php:1880
785
- msgid "Enhanced media shortcodes"
786
- msgstr "Códigos cortos de Enhanced Media"
787
-
788
- #: core/options-pages.php:1881
789
- msgid ""
790
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
791
- "upload date, and media items number limit"
792
- msgstr ""
793
- "Mejora los códigos de medios de WordPress para hacerlos compatibles con "
794
- "taxonomías de medios, fecha de actualización y límite de número de medios."
795
-
796
- #: core/options-pages.php:1882
797
- msgid "Gallery example:"
798
- msgstr "Ejemplo de galería:"
799
-
800
- #: core/options-pages.php:1883
801
- msgid "Audio playlist example:"
802
- msgstr "Ejemplo de lista de audio:"
803
-
804
- #: core/options-pages.php:1884
805
- msgid "Video playlist example:"
806
- msgstr "Ejemplo de lista de vídeo:"
807
-
808
- #: core/options-pages.php:1888
809
- msgid "Warning"
810
- msgstr ""
811
-
812
- #: core/options-pages.php:1891
813
- #, php-format
814
- msgid ""
815
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
816
- "\">Learn more</a>."
817
- msgstr ""
818
-
819
- #: core/options-pages.php:1896
820
- #, php-format
821
- msgid ""
822
- "Please check out your gallery front-end and back-end functionality once this "
823
- "option activated. If you find an issue please inform plugin authors at %s or "
824
- "%s."
825
- msgstr ""
826
- "Por favor, comprueba que funcione tu galería en la web y el escritorio nada "
827
- "más activar esta opción. Si encuentras algún problema informa a los autores "
828
- "del plugin en %s o %s."
829
-
830
- #: core/options-pages.php:1977 core/options-pages.php:2124
831
- msgid "Assign following taxonomies to Media Library:"
832
- msgstr "Asigna las siguientes taxonomías a la biblioteca de medios:"
833
-
834
- #: core/options-pages.php:1996 core/options-pages.php:2062
835
- #: core/options-pages.php:2146
836
- msgid "Assign Taxonomy"
837
- msgstr "Asignar taxonomía"
838
-
839
- #: core/options-pages.php:1997 core/options-pages.php:2147
840
- msgid "Edit Taxonomy"
841
- msgstr "Editar taxonomía"
842
-
843
- #: core/options-pages.php:2001 core/options-pages.php:2064
844
- msgid "Delete Taxonomy"
845
- msgstr "Borrar taxonomía"
846
-
847
- #: core/options-pages.php:2006 core/options-pages.php:2069
848
- msgid "Labels"
849
- msgstr "Etiquetas"
850
-
851
- #: core/options-pages.php:2008 core/options-pages.php:2071
852
- msgid "Singular"
853
- msgstr "Singular"
854
-
855
- #: core/options-pages.php:2009 core/options-pages.php:2072
856
- msgid "Plural"
857
- msgstr "Plural"
858
-
859
- #: core/options-pages.php:2010 core/options-pages.php:2073
860
- msgid "Menu Name"
861
- msgstr "Nombre del menú"
862
-
863
- #: core/options-pages.php:2023 core/options-pages.php:2046
864
- #: core/options-pages.php:2086 core/options-pages.php:2150
865
- msgid "Settings"
866
- msgstr "Configurar"
867
-
868
- #: core/options-pages.php:2025 core/options-pages.php:2088
869
- msgid "Taxonomy Name"
870
- msgstr "Nombre de taxomonía"
871
-
872
- #: core/options-pages.php:2026 core/options-pages.php:2089
873
- msgid "Hierarchical"
874
- msgstr "Jerárquico"
875
-
876
- #: core/options-pages.php:2027 core/options-pages.php:2090
877
- msgid "Column for List View"
878
- msgstr "Vista de lista en columnas"
879
-
880
- #: core/options-pages.php:2028 core/options-pages.php:2048
881
- #: core/options-pages.php:2091 core/options-pages.php:2152
882
- msgid "Filter for List View"
883
- msgstr ""
884
-
885
- #: core/options-pages.php:2029 core/options-pages.php:2049
886
- #: core/options-pages.php:2092 core/options-pages.php:2153
887
- msgid "Filter for Grid View / Media Popup"
888
- msgstr "Filtrar por Vista rejilla / Medios emergentes"
889
-
890
- #: core/options-pages.php:2030 core/options-pages.php:2050
891
- #: core/options-pages.php:2093 core/options-pages.php:2154
892
- msgid "Edit in Media Popup"
893
- msgstr "Editar en medio emergente"
894
-
895
- #: core/options-pages.php:2031 core/options-pages.php:2094
896
- msgid "Show in Nav Menu"
897
- msgstr "Mostrar en el menú de navegación"
898
-
899
- #: core/options-pages.php:2032 core/options-pages.php:2095
900
- msgid "Remember Terms Order (sort)"
901
- msgstr "Recordar orden de términos (colocación)"
902
-
903
- #: core/options-pages.php:2033 core/options-pages.php:2096
904
- msgid "Show in REST"
905
- msgstr "Mostrar en REST"
906
-
907
- #: core/options-pages.php:2034 core/options-pages.php:2097
908
- msgid "Rewrite Slug"
909
- msgstr "Reescribir el slug"
910
-
911
- #: core/options-pages.php:2035 core/options-pages.php:2098
912
- msgid "Slug with Front"
913
- msgstr "Slug en portada"
914
-
915
- #: core/options-pages.php:2110
916
- msgid "Add New Taxonomy"
917
- msgstr "Añadir nueva taxonomía"
918
-
919
- #: core/options-pages.php:2120
920
- msgid "Non-Media Taxonomies"
921
- msgstr "Taxonomías que no son de medios"
922
-
923
- #: core/options-pages.php:2183
924
- msgid "Options"
925
- msgstr "Opciones"
926
-
927
- #: core/options-pages.php:2193 core/options-pages.php:2196
928
- msgid "Taxonomy archive pages"
929
- msgstr "Páginas de archivo de taxonomías"
930
-
931
- #: core/options-pages.php:2197
932
- msgid "Turn on media taxonomy archive pages on the front-end"
933
- msgstr "Activa las páginas de archivo de taxonomías de medios en portada"
934
-
935
- #: core/options-pages.php:2198
936
- msgid ""
937
- "Re-save your permalink settings after this option change to make it work."
938
- msgstr ""
939
- "Vuelve a guardar tus ajustes de enlaces permanentes después de cambiar este "
940
- "ajuste para que funcione."
941
-
942
- #: core/options-pages.php:2204 core/options-pages.php:2207
943
- msgid "Assign all like hierarchical"
944
- msgstr "Asigna todo jerárquicamente"
945
-
946
- #: core/options-pages.php:2208
947
- msgid ""
948
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
949
- msgstr ""
950
- "Mostrar taxonomías no jerárquicas como jerárquicas en Vista rejilla / Medios "
951
- "emergentes"
952
-
953
- #: core/options-pages.php:2271
954
- msgid "Add New MIME Type"
955
- msgstr "Añadir nuevo tipo MIME"
956
-
957
- #: core/options-pages.php:2291 core/options-pages.php:2345
958
- msgid "Extension"
959
- msgstr "Extensión"
960
-
961
- #: core/options-pages.php:2292 core/options-pages.php:2346
962
- msgid "MIME Type"
963
- msgstr "Tipo MIME"
964
-
965
- #: core/options-pages.php:2293 core/options-pages.php:2347
966
- msgid "Singular Label"
967
- msgstr "Etiqueta singular"
968
-
969
- #: core/options-pages.php:2294 core/options-pages.php:2348
970
- msgid "Plural Label"
971
- msgstr "Etiqueta plural"
972
-
973
- #: core/options-pages.php:2295 core/options-pages.php:2324
974
- #: core/options-pages.php:2337 core/options-pages.php:2349
975
- msgid "Add Filter"
976
- msgstr "Añadir filtro"
977
-
978
- #: core/options-pages.php:2296 core/options-pages.php:2325
979
- #: core/options-pages.php:2338 core/options-pages.php:2350
980
- msgid "Allow Upload"
981
- msgstr "Permitir subida"
982
-
983
- #: core/options-pages.php:2326 core/options-pages.php:2339
984
- msgid "Delete MIME Type"
985
- msgstr "Borrar tipo MIME"
986
-
987
- #: core/options-pages.php:2415
988
- msgid "Changelog"
989
- msgstr "Registro de cambios"
990
-
991
- #: core/options-pages.php:2416
992
- msgid "What's new in"
993
- msgstr "Qué hay de nuevo en"
994
-
995
- #: core/options-pages.php:2416
996
- msgid "version"
997
- msgstr "versión"
998
-
999
- #: core/options-pages.php:2419
1000
- msgid "More features under the hood"
1001
- msgstr "Más características bajo el capó"
1002
-
1003
- #: core/options-pages.php:2421
1004
- msgid "Support"
1005
- msgstr "Soporte"
1006
-
1007
- #: core/options-pages.php:2422
1008
- msgid "Feel free to ask for help on"
1009
- msgstr "No temas pedir ayuda sobre"
1010
-
1011
- #: core/options-pages.php:2422
1012
- msgid "Support is free for both versions of the plugin."
1013
- msgstr "El soporte es gratuito para todas las versiones del plugin."
1014
-
1015
- #: core/options-pages.php:2424
1016
- msgid "Plugin rating"
1017
- msgstr "Valoración del plugin"
1018
-
1019
- #: core/options-pages.php:2425
1020
- msgid "Please"
1021
- msgstr "Por favor"
1022
-
1023
- #: core/options-pages.php:2425
1024
- msgid "vote for the plugin"
1025
- msgstr "vota al plugin"
1026
-
1027
- #: core/options-pages.php:2425
1028
- msgid "Thanks!"
1029
- msgstr "¡Gracias!"
1030
-
1031
- #: core/options-pages.php:2427
1032
- msgid "Other plugins you may find useful"
1033
- msgstr "Otros plugins que pueden serte útiles"
1034
-
1035
- #: core/options-pages.php:2469
1036
- msgid "Utility"
1037
- msgstr "Utilidad"
1038
-
1039
- #: core/options-pages.php:2494
1040
- msgid "Rate us:"
1041
- msgstr ""
1042
-
1043
- #: core/options-pages.php:2494
1044
- msgid "Poor"
1045
- msgstr ""
1046
-
1047
- #: core/options-pages.php:2494
1048
- msgid "Works"
1049
- msgstr ""
1050
-
1051
- #: core/options-pages.php:2494
1052
- msgid "Good"
1053
- msgstr ""
1054
-
1055
- #: core/options-pages.php:2494
1056
- msgid "Great"
1057
- msgstr ""
1058
-
1059
- #: core/options-pages.php:2494
1060
- msgid "Fantastic!"
1061
- msgstr ""
1062
-
1063
- #: core/taxonomies.php:101
1064
- msgid "Media Taxonomies settings saved."
1065
- msgstr "Ajustes de taxonomías de medios guardados."
1066
-
1067
- #: core/taxonomies.php:174
1068
- msgid "Media Library settings saved."
1069
- msgstr "Ajustes de biblioteca multimedia guardados."
1070
-
1071
- #: core/taxonomies.php:353
1072
- msgid "Filter by author"
1073
- msgstr ""
1074
-
1075
- #: core/taxonomies.php:357
1076
- msgid "All Authors"
1077
- msgstr ""
1078
-
1079
- #: core/taxonomies.php:374 core/taxonomies.php:380
1080
- #: enhanced-media-library.php:561
1081
- msgid "Filter by"
1082
- msgstr "Filtrar por"
1083
-
1084
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1085
- msgid "Not in a"
1086
- msgstr "No está en"
1087
-
1088
- #: core/taxonomies.php:721
1089
- msgid "Add some"
1090
- msgstr ""
1091
-
1092
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1093
- msgid "All Uncategorized"
1094
- msgstr "Sin categoría"
1095
-
1096
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1097
- msgid "Reset All Filters"
1098
- msgstr "Limpiar todos los filtros"
1099
-
1100
- #: enhanced-media-library.php:391
1101
- msgid "More Details"
1102
- msgstr ""
1103
-
1104
- #: enhanced-media-library.php:392
1105
- msgid "Less Details"
1106
- msgstr ""
1107
-
1108
- #: enhanced-media-library.php:565
1109
- msgid "author"
1110
- msgstr ""
1111
-
1112
- #: enhanced-media-library.php:566
1113
- msgid "authors"
1114
- msgstr ""
1115
-
1116
- #: enhanced-media-library.php:569
1117
- msgid "Saved."
1118
- msgstr ""
1119
-
1120
- #: enhanced-media-library.php:570
1121
- msgid "Something went wrong."
1122
- msgstr ""
1123
-
1124
- #: enhanced-media-library.php:573
1125
- msgid "Select All"
1126
- msgstr ""
1127
-
1128
- #: enhanced-media-library.php:574
1129
- msgid "Deselect "
1130
- msgstr ""
1131
-
1132
- #: enhanced-media-library.php:603
1133
- msgid "Uploaded to post #"
1134
- msgstr "Subido a la entrada #"
1135
-
1136
- #: enhanced-media-library.php:604
1137
- msgid "Based On"
1138
- msgstr "Basado en"
1139
-
1140
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1141
- msgid "Media Categories"
1142
- msgstr "Categorías de medios"
1143
-
1144
- #: enhanced-media-library.php:674
1145
- msgid "Media Category"
1146
- msgstr "Categoría de medios"
1147
-
1148
- #: enhanced-media-library.php:676
1149
- msgid "All Media Categories"
1150
- msgstr "Todas las categorías de medios"
1151
-
1152
- #: enhanced-media-library.php:677
1153
- msgid "Edit Media Category"
1154
- msgstr "Editar categoría de medios"
1155
-
1156
- #: enhanced-media-library.php:678
1157
- msgid "View Media Category"
1158
- msgstr "Ver categoría de medios"
1159
-
1160
- #: enhanced-media-library.php:679
1161
- msgid "Update Media Category"
1162
- msgstr "Actualizar categoría de medios"
1163
-
1164
- #: enhanced-media-library.php:680
1165
- msgid "Add New Media Category"
1166
- msgstr "Añadir nueva categoría de medios"
1167
-
1168
- #: enhanced-media-library.php:681
1169
- msgid "New Media Category Name"
1170
- msgstr "Nuevo nombre de categoría de medios"
1171
-
1172
- #: enhanced-media-library.php:682
1173
- msgid "Parent Media Category"
1174
- msgstr "Categoría de medios superior"
1175
-
1176
- #: enhanced-media-library.php:683
1177
- msgid "Parent Media Category:"
1178
- msgstr "Categoría de medios superior:"
1179
-
1180
- #: enhanced-media-library.php:684
1181
- msgid "Search Media Categories"
1182
- msgstr "Buscar categorías de medios"
1183
-
1184
- #. Plugin URI of the plugin/theme
1185
- #. Author URI of the plugin/theme
1186
- msgid "http://wpUXsolutions.com"
1187
- msgstr "http://wpUXsolutions.com"
1188
-
1189
- #. Description of the plugin/theme
1190
- msgid ""
1191
- "This plugin will be handy for those who need to manage a lot of media files."
1192
- msgstr ""
1193
- "Este plugin es muy práctico para quien necesite gestionar muchos archivos "
1194
- "multimedia."
1195
-
1196
- #. Author of the plugin/theme
1197
- msgid "wpUXsolutions"
1198
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-fi.mo DELETED
Binary file
languages/enhanced-media-library-fi.po DELETED
@@ -1,1188 +0,0 @@
1
- # Translation of Plugins - Enhanced Media Library - Stable (latest release) in Finnish
2
- # This file is distributed under the same license as the Plugins - Enhanced Media Library - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - Enhanced Media Library - Stable (latest "
6
- "release)\n"
7
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
8
- "PO-Revision-Date: 2020-10-11 22:46+0300\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: fi\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr "Poista"
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr "Poista valinta"
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr "Syötä kuvateksti&hellip;"
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr "Anna kuvaus tälle videotiedostolle&hellip;"
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr "Anna kuvaus tälle äänitiedostolle&hellip;"
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr "Anna kuvaus tälle mediatiedostolle&hellip;"
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr "MIME-tyyppien asetukset palautettu."
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr "MIME-tyyppien asetukset tallennettu."
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] ""
55
- msgstr[1] ""
56
-
57
- #: core/options-pages.php:97 core/options-pages.php:106
58
- #: core/options-pages.php:115 core/options-pages.php:124
59
- #: core/options-pages.php:321 core/options-pages.php:399
60
- #: core/options-pages.php:1694 core/options-pages.php:1952
61
- #: core/options-pages.php:2265 core/options-pages.php:2465
62
- msgid "Media Settings"
63
- msgstr "Media-asetukset"
64
-
65
- #: core/options-pages.php:106 core/options-pages.php:107
66
- #: core/options-pages.php:363 core/options-pages.php:1019
67
- msgid "Media Library"
68
- msgstr "Mediakirjasto"
69
-
70
- #: core/options-pages.php:115 core/options-pages.php:116
71
- #: core/options-pages.php:364 core/options-pages.php:1033
72
- #: core/options-pages.php:1742 core/options-pages.php:1973
73
- msgid "Media Taxonomies"
74
- msgstr "Mediataksonomiat"
75
-
76
- #: core/options-pages.php:124 core/options-pages.php:125
77
- #: core/options-pages.php:365 core/options-pages.php:1047
78
- msgid "MIME Types"
79
- msgstr "MIME-tyypit"
80
-
81
- #. Plugin Name of the plugin/theme
82
- #: core/options-pages.php:166 core/options-pages.php:167
83
- #: core/options-pages.php:194 core/options-pages.php:195
84
- msgid "Enhanced Media Library"
85
- msgstr "Enhanced Media Library"
86
-
87
- #: core/options-pages.php:362
88
- msgid "General"
89
- msgstr "Yleinen"
90
-
91
- #: core/options-pages.php:388 core/options-pages.php:395
92
- #: core/options-pages.php:732 core/options-pages.php:740
93
- #: core/options-pages.php:925 core/options-pages.php:1682
94
- #: core/options-pages.php:1689 core/options-pages.php:1940
95
- #: core/options-pages.php:1947 core/options-pages.php:2252
96
- #: core/options-pages.php:2259
97
- msgid "You do not have sufficient permissions to access this page."
98
- msgstr "Sivulle pääsy on rajoitettu. Tarvitset laajemmat oikeudet."
99
-
100
- #: core/options-pages.php:410
101
- msgid "Image sizes"
102
- msgstr "Kuvakoot"
103
-
104
- #: core/options-pages.php:411
105
- msgid ""
106
- "The sizes listed below determine the maximum dimensions in pixels to use "
107
- "when adding an image to the Media Library."
108
- msgstr ""
109
- "Alla listatut koot määrittävät maksimikoot pikseleinä kun kuva lisätään "
110
- "mediakirjastoon."
111
-
112
- #: core/options-pages.php:415
113
- msgid "Thumbnail size"
114
- msgstr "Pienoiskuvan koko"
115
-
116
- #: core/options-pages.php:417
117
- msgid "Width"
118
- msgstr "Leveys"
119
-
120
- #: core/options-pages.php:419
121
- msgid "Height"
122
- msgstr "Korkeus"
123
-
124
- #: core/options-pages.php:422
125
- msgid ""
126
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
127
- msgstr ""
128
- "Rajaa pienoiskuva tiettyihin pikselimääriin (normaalisti pienoiskuvat ovat "
129
- "suhteellisia oikean kuvan kokoon)"
130
-
131
- #: core/options-pages.php:427 core/options-pages.php:428
132
- msgid "Medium size"
133
- msgstr "Keskikoko"
134
-
135
- #: core/options-pages.php:429 core/options-pages.php:440
136
- msgid "Max Width"
137
- msgstr "Maksimileveys"
138
-
139
- #: core/options-pages.php:432 core/options-pages.php:443
140
- msgid "Max Height"
141
- msgstr "Maksimikorkeus"
142
-
143
- #: core/options-pages.php:438 core/options-pages.php:439
144
- msgid "Large size"
145
- msgstr "Iso koko"
146
-
147
- #: core/options-pages.php:456
148
- msgid "Embeds"
149
- msgstr "Upotuskoodi"
150
-
151
- #: core/options-pages.php:463
152
- msgid "Uploading Files"
153
- msgstr "Tiedostoja siirretään"
154
-
155
- #: core/options-pages.php:470
156
- msgid "Store uploads in this folder"
157
- msgstr "Tallenna siirretyt tiedostot tähän kansioon"
158
-
159
- #: core/options-pages.php:474
160
- #, php-format
161
- msgid "Default is %s"
162
- msgstr "Oletus on %s"
163
-
164
- #: core/options-pages.php:480
165
- msgid "Full URL path to files"
166
- msgstr "URL-osoite tiedostoihin"
167
-
168
- #: core/options-pages.php:482
169
- msgid "Configuring this is optional. By default, it should be blank."
170
- msgstr "Tämä asetus on valinnainen. Oletuksena sen pitäisi olla tyhjä."
171
-
172
- #: core/options-pages.php:490
173
- msgid "Organize my uploads into month- and year-based folders"
174
- msgstr "Järjestä siirretyt tiedostot kuukausi- ja vuosikohtaisiin kansioihin"
175
-
176
- #: core/options-pages.php:560 core/options-pages.php:1997
177
- #: core/options-pages.php:2012 core/options-pages.php:2075
178
- #: core/options-pages.php:2147
179
- msgid "Edit"
180
- msgstr "Muokkaa"
181
-
182
- #: core/options-pages.php:561
183
- msgid "Close"
184
- msgstr "Sulje"
185
-
186
- #: core/options-pages.php:562 core/options-pages.php:2013
187
- #: core/options-pages.php:2076
188
- msgid "View"
189
- msgstr "Näytä"
190
-
191
- #: core/options-pages.php:563 core/options-pages.php:2014
192
- #: core/options-pages.php:2077
193
- msgid "Update"
194
- msgstr "Päivitä"
195
-
196
- #: core/options-pages.php:564 core/options-pages.php:2015
197
- #: core/options-pages.php:2078
198
- msgid "Add New"
199
- msgstr "Lisää uusi"
200
-
201
- #: core/options-pages.php:565 core/options-pages.php:2016
202
- #: core/options-pages.php:2079
203
- msgid "New"
204
- msgstr "Uusi"
205
-
206
- #: core/options-pages.php:566
207
- msgid "Name"
208
- msgstr "Nimi"
209
-
210
- #: core/options-pages.php:567 core/options-pages.php:2017
211
- #: core/options-pages.php:2080
212
- msgid "Parent"
213
- msgstr "Ylempi taso"
214
-
215
- #: core/options-pages.php:568 core/options-pages.php:862
216
- #: core/options-pages.php:1084 core/options-pages.php:2011
217
- #: core/options-pages.php:2074 core/taxonomies.php:381
218
- #: enhanced-media-library.php:562
219
- msgid "All"
220
- msgstr "Kaikki"
221
-
222
- #: core/options-pages.php:569 core/options-pages.php:2018
223
- #: core/options-pages.php:2081
224
- msgid "Search"
225
- msgstr "Haku"
226
-
227
- #: core/options-pages.php:571 core/options-pages.php:2062
228
- msgid "New Taxonomy"
229
- msgstr "Uusi taksonomia"
230
-
231
- #: core/options-pages.php:573
232
- msgid "Remove Taxonomy"
233
- msgstr "Poista taksonomia."
234
-
235
- #: core/options-pages.php:574
236
- msgid "Taxonomy will be removed."
237
- msgstr "Taksonomia poistetaan."
238
-
239
- #: core/options-pages.php:575
240
- msgid ""
241
- "Taxonomy terms (categories) will remain intact in the database. If you "
242
- "create a taxonomy with the same name in the future, its terms (categories) "
243
- "will be available again."
244
- msgstr ""
245
- "Taksonomiatermit (kategoriat) säilyvät muuttumattomina tietokannassa. Jos "
246
- "teet saman nimisen taksonomian tulevaisuudessa, sen termit (kategoriat) ovat "
247
- "käytettävissä suoraan."
248
-
249
- #: core/options-pages.php:576
250
- msgid "Media items will remain intact."
251
- msgstr "Mediatiedostot pysyvät muuttumattomina."
252
-
253
- #: core/options-pages.php:577
254
- msgid "Are you still sure?"
255
- msgstr "Oletko yhä varma?"
256
-
257
- #: core/options-pages.php:578
258
- msgid "Yes, remove taxonomy"
259
- msgstr "Kyllä, poista taksonomia"
260
-
261
- #: core/options-pages.php:580
262
- msgid "Duplicate"
263
- msgstr "Nimi on varattu"
264
-
265
- #: core/options-pages.php:581
266
- msgid "Taxonomy with the same name already exists. Please chose other one."
267
- msgstr "Taksonomia samalla nimellä on jo olemassa. Valitse toinen nimi."
268
-
269
- #: core/options-pages.php:583
270
- msgid "Empty Fields"
271
- msgstr "Tyhjät kentät"
272
-
273
- #: core/options-pages.php:584
274
- msgid "Wrong Taxonomy Name"
275
- msgstr ""
276
-
277
- #: core/options-pages.php:585
278
- msgid "Wrong Slug"
279
- msgstr ""
280
-
281
- #: core/options-pages.php:587
282
- msgid "Please choose Singular and Plural names for all new taxomonies."
283
- msgstr "Valitse yksikkö- ja monikkomuoto kaikille uusille taksonomioille."
284
-
285
- #: core/options-pages.php:588
286
- msgid "Please choose Singular name for all new taxomonies."
287
- msgstr "Valitse yksikkömuoto kaikille uusille taksonomioille."
288
-
289
- #: core/options-pages.php:589
290
- msgid "Please choose Plural name for all new taxomonies."
291
- msgstr ""
292
-
293
- #: core/options-pages.php:591
294
- msgid ""
295
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
296
- "name please enter it manually."
297
- msgstr ""
298
-
299
- #: core/options-pages.php:592
300
- msgid ""
301
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
302
- "character ( _ ), and be 3-32 characters long."
303
- msgstr ""
304
-
305
- #: core/options-pages.php:593
306
- msgid ""
307
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
308
- "or hyphen ( - ) characters."
309
- msgstr ""
310
-
311
- #: core/options-pages.php:595 core/options-pages.php:644
312
- msgid "Ok"
313
- msgstr "Ok"
314
-
315
- #: core/options-pages.php:596 core/options-pages.php:601
316
- #: core/options-pages.php:645 core/options-pages.php:690
317
- msgid "Cancel"
318
- msgstr "Peru"
319
-
320
- #: core/options-pages.php:598
321
- msgid "Synchronize Now"
322
- msgstr "Synkronoi nyt"
323
-
324
- #: core/options-pages.php:599 core/options-pages.php:687
325
- msgid "This operation cannot be canceled! Are you still sure?"
326
- msgstr "Tätä toiminto ei ole peruttavissa! Oletko varma?"
327
-
328
- #: core/options-pages.php:600
329
- msgid "Synchronize"
330
- msgstr "Synkronisoi"
331
-
332
- #: core/options-pages.php:602
333
- msgid "Synchronizing..."
334
- msgstr "Synkronoidaan..."
335
-
336
- #: core/options-pages.php:639 core/options-pages.php:2388
337
- msgid "Restore WordPress default MIME Types"
338
- msgstr "Palauta WordPressin MIME-tyyppien oletusasetukset"
339
-
340
- #: core/options-pages.php:640
341
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
342
- msgstr "Varoitus! Tämä toiminto poistaa kaikki sinun mukautetut MIME tyypit."
343
-
344
- #: core/options-pages.php:641
345
- msgid "Restore Defaults"
346
- msgstr "Palauta oletusasetukset"
347
-
348
- #: core/options-pages.php:642
349
- msgid "Restoring..."
350
- msgstr "Palauttaa..."
351
-
352
- #: core/options-pages.php:647
353
- msgid "MIME Types cannot be saved"
354
- msgstr ""
355
-
356
- #: core/options-pages.php:648
357
- msgid "Please fill into all fields."
358
- msgstr "Täytä kaikki kentät. "
359
-
360
- #: core/options-pages.php:649
361
- msgid "Duplicate extensions or MIME types. Please choose other one."
362
- msgstr ""
363
-
364
- #: core/options-pages.php:685 core/options-pages.php:853
365
- #: core/options-pages.php:1063
366
- msgid "Complete Cleanup"
367
- msgstr "Viimeistele puhdistus"
368
-
369
- #: core/options-pages.php:686
370
- msgid ""
371
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
372
- "plugin data</strong> from the database including backups."
373
- msgstr ""
374
- "Olet poistamassa <strong style=\"text-transform:uppercase\">kaikki lisäosan "
375
- "tiedot</strong> tietokannasta, mukaan lukien kaikki varmuuskopiot."
376
-
377
- #: core/options-pages.php:688
378
- msgid "Yes, delete all data"
379
- msgstr "Kyllä, poista kaikki tiedot"
380
-
381
- #: core/options-pages.php:689
382
- msgid "Cleaning..."
383
- msgstr "Puhdistetaan..."
384
-
385
- #: core/options-pages.php:693 core/options-pages.php:996
386
- msgid "Unify Media Settings over Network"
387
- msgstr ""
388
-
389
- #: core/options-pages.php:696 core/options-pages.php:700
390
- #: core/options-pages.php:704
391
- msgid "will be overwritten"
392
- msgstr ""
393
-
394
- #: core/options-pages.php:706
395
- msgid "Apply"
396
- msgstr ""
397
-
398
- #: core/options-pages.php:707
399
- msgid "Applying Settings..."
400
- msgstr ""
401
-
402
- #: core/options-pages.php:746 core/options-pages.php:935
403
- msgid "Enhanced Media Library Utilities"
404
- msgstr ""
405
-
406
- #: core/options-pages.php:756
407
- msgid "Export"
408
- msgstr "Vienti"
409
-
410
- #: core/options-pages.php:761
411
- msgid "Plugin settings to export:"
412
- msgstr ""
413
-
414
- #: core/options-pages.php:762 core/options-pages.php:789
415
- #: core/options-pages.php:829
416
- msgid "Settings > Media Library"
417
- msgstr ""
418
-
419
- #: core/options-pages.php:763 core/options-pages.php:790
420
- #: core/options-pages.php:830
421
- msgid "Settings > Media Taxonomies"
422
- msgstr ""
423
-
424
- #: core/options-pages.php:764 core/options-pages.php:791
425
- #: core/options-pages.php:831
426
- msgid "Settings > MIME Types"
427
- msgstr ""
428
-
429
- #: core/options-pages.php:768
430
- msgid ""
431
- "Use generated JSON file to import the configuration into another website."
432
- msgstr ""
433
-
434
- #: core/options-pages.php:773
435
- msgid "Export Plugin Settings"
436
- msgstr "Vie lisäosan asetukset"
437
-
438
- #: core/options-pages.php:783
439
- msgid "Import"
440
- msgstr "Tuonti"
441
-
442
- #: core/options-pages.php:788
443
- msgid "Plugin settings to import:"
444
- msgstr ""
445
-
446
- #: core/options-pages.php:794
447
- msgid ""
448
- "Plugin settings will be imported from a configuration JSON file which can be "
449
- "obtained by exporting the settings on another website using the export "
450
- "button above."
451
- msgstr ""
452
-
453
- #: core/options-pages.php:795
454
- msgid ""
455
- "All plugin settings will be overridden by the import. You will have a chance "
456
- "to restore current data from an automatic backup in case you are not "
457
- "satisfied with the result of the import."
458
- msgstr ""
459
- "Tuonti korvaa kaikki lisäosan asetukset. Jos et ole tuontiin tyytyväinen, "
460
- "voit palauttaa nykyiset tiedot automaattisista varmuuskopioista."
461
-
462
- #: core/options-pages.php:801
463
- msgid "Import Plugin Settings"
464
- msgstr "Tuo lisäosan asetukset"
465
-
466
- #: core/options-pages.php:813
467
- msgid "Restore"
468
- msgstr "Palauta"
469
-
470
- #: core/options-pages.php:819
471
- msgid "No backup available at the moment."
472
- msgstr "Ei varmuuskopioita saatavilla."
473
-
474
- #: core/options-pages.php:821
475
- msgid "Backup will be created automatically before any import operation."
476
- msgstr "Varmuuskopio luodaan automaattisesti ennen tuontitoimintoa."
477
-
478
- #: core/options-pages.php:825
479
- msgid ""
480
- "The backup has been automatically created before the latest import operation."
481
- msgstr "Varmuuskopio on luotu automaattisesti ennen edellistä tuontitoimintoa."
482
-
483
- #: core/options-pages.php:828
484
- msgid "Plugin settings to restore:"
485
- msgstr ""
486
-
487
- #: core/options-pages.php:837
488
- msgid "Restore Settings from the Backup"
489
- msgstr "Palauta asetukset tietokannasta"
490
-
491
- #: core/options-pages.php:860 core/options-pages.php:1082
492
- msgid "What will be deleted:"
493
- msgstr "Mitä poistetaan:"
494
-
495
- #: core/options-pages.php:865
496
- msgid "All plugin options"
497
- msgstr "Kaikki lisäosan asetukset"
498
-
499
- #: core/options-pages.php:866 core/options-pages.php:1089
500
- msgid "All plugin backups stored in the database"
501
- msgstr ""
502
-
503
- #: core/options-pages.php:870 core/options-pages.php:1093
504
- msgid "What will remain intact:"
505
- msgstr "Nämä pysyvät ennallaan:"
506
-
507
- #: core/options-pages.php:871 core/options-pages.php:1094
508
- msgid "All media items"
509
- msgstr "Kaikki mediatiedostot"
510
-
511
- #: core/options-pages.php:872 core/options-pages.php:1095
512
- msgid "All taxonomies not listed above"
513
- msgstr "Kaikki taksonomiat eivät ole listattu yläpuolella."
514
-
515
- #: core/options-pages.php:875 core/options-pages.php:1098
516
- msgid ""
517
- "The plugin cannot delete itself for security reasons. Please delete it "
518
- "manually from the plugin list after the cleanup is complete."
519
- msgstr ""
520
-
521
- #: core/options-pages.php:877 core/options-pages.php:1100
522
- msgid ""
523
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
524
- "backup of your database prior to cleanup!"
525
- msgstr ""
526
-
527
- #: core/options-pages.php:882
528
- msgid "Delete All Data & Deactivate"
529
- msgstr "Poista kaikki tieto ja poista käytöstä"
530
-
531
- #: core/options-pages.php:945
532
- msgid "Network Settings"
533
- msgstr ""
534
-
535
- #: core/options-pages.php:952 core/options-pages.php:1003
536
- msgid "No settings available. The plugin is not network activated."
537
- msgstr ""
538
-
539
- #: core/options-pages.php:963
540
- msgid "Media Settings per site"
541
- msgstr ""
542
-
543
- #: core/options-pages.php:966
544
- msgid "Enable Media Settings"
545
- msgstr ""
546
-
547
- #: core/options-pages.php:967
548
- msgid "Allow an individual site admin to edit enhanced Media Settings"
549
- msgstr ""
550
-
551
- #: core/options-pages.php:968
552
- msgid ""
553
- "Otherwise, only a network (super) admin can see the menu and edit media "
554
- "settings."
555
- msgstr ""
556
-
557
- #: core/options-pages.php:974
558
- msgid "Plugin Utilities per site"
559
- msgstr ""
560
-
561
- #: core/options-pages.php:977
562
- msgid "Enable plugin Utilities"
563
- msgstr ""
564
-
565
- #: core/options-pages.php:978
566
- msgid ""
567
- "Allow an individual site admin to import / export / restore plugin settings "
568
- "and perform the complete cleanup for a specific site"
569
- msgstr ""
570
-
571
- #: core/options-pages.php:979
572
- msgid ""
573
- "Otherwise, only a network (super) admin can see the menu and perform those "
574
- "actions."
575
- msgstr ""
576
-
577
- #: core/options-pages.php:986 core/options-pages.php:1770
578
- #: core/options-pages.php:1824 core/options-pages.php:1861
579
- #: core/options-pages.php:1905 core/options-pages.php:2113
580
- #: core/options-pages.php:2177 core/options-pages.php:2215
581
- #: core/options-pages.php:2386 enhanced-media-library.php:571
582
- msgid "Save Changes"
583
- msgstr "Tallenna muutokset"
584
-
585
- #: core/options-pages.php:1012 core/options-pages.php:1015
586
- msgid "Media Library Settings"
587
- msgstr ""
588
-
589
- #: core/options-pages.php:1016 core/options-pages.php:1030
590
- #: core/options-pages.php:1044
591
- msgid "Apply to ALL Network websites"
592
- msgstr ""
593
-
594
- #: core/options-pages.php:1026 core/options-pages.php:1029
595
- msgid "Media Taxonomies Settings"
596
- msgstr ""
597
-
598
- #: core/options-pages.php:1040 core/options-pages.php:1043
599
- msgid "MIME Types Settings"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1087
603
- msgid "All plugin options on every site"
604
- msgstr ""
605
-
606
- #: core/options-pages.php:1088
607
- msgid "Network settings"
608
- msgstr ""
609
-
610
- #: core/options-pages.php:1105
611
- msgid "Delete All Data & Network Deactivate"
612
- msgstr ""
613
-
614
- #: core/options-pages.php:1225
615
- msgid "Network settings saved."
616
- msgstr ""
617
-
618
- #: core/options-pages.php:1319
619
- msgid "Settings cannot be imported. Please upload a file to import settings."
620
- msgstr ""
621
-
622
- #: core/options-pages.php:1340
623
- msgid ""
624
- "Settings cannot be imported. Please upload a correct JSON file to import "
625
- "settings."
626
- msgstr ""
627
-
628
- #: core/options-pages.php:1356
629
- msgid "Plugin settings imported."
630
- msgstr "Lisäosien asetukset tuotu."
631
-
632
- #: core/options-pages.php:1409
633
- msgid "Plugin settings restored from the backup."
634
- msgstr "Lisäosan asetukset palautettu varmuuskopioista."
635
-
636
- #: core/options-pages.php:1714
637
- msgid "Filters"
638
- msgstr ""
639
-
640
- #: core/options-pages.php:1723 core/options-pages.php:1726
641
- msgid "Force filters"
642
- msgstr "Pakota suodattimet"
643
-
644
- #: core/options-pages.php:1727
645
- msgid "Show media filters for ANY Media Popup"
646
- msgstr "Näytä suodattimet kaikille median ponnahdusikkunoille "
647
-
648
- #: core/options-pages.php:1728
649
- msgid "Try this if filters are not shown for third-party plugins or themes."
650
- msgstr ""
651
- "Kokeile tätä jos suodattimet eivät ole näkyvissä kolmannen osapuolen "
652
- "lisäosille tai teemoille."
653
-
654
- #: core/options-pages.php:1734 core/options-pages.php:1737
655
- msgid "Filters to show"
656
- msgstr ""
657
-
658
- #: core/options-pages.php:1738
659
- msgid "Types"
660
- msgstr ""
661
-
662
- #: core/options-pages.php:1739
663
- msgid "Can be disabled for Grid Mode only"
664
- msgstr ""
665
-
666
- #: core/options-pages.php:1740
667
- msgid "Dates"
668
- msgstr ""
669
-
670
- #: core/options-pages.php:1741
671
- msgid "Authors"
672
- msgstr ""
673
-
674
- #: core/options-pages.php:1748 core/options-pages.php:1751
675
- msgid "Show count"
676
- msgstr "Näytä lukumäärä"
677
-
678
- #: core/options-pages.php:1752
679
- msgid "Show item count per category for media filters"
680
- msgstr "Näytä kategoriakohtaiset lukumäärät mediasuodattimille"
681
-
682
- #: core/options-pages.php:1753
683
- msgid ""
684
- "Disable this if it slows down your site admin. The problem is resolved in "
685
- "the upcoming major update v3.0"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1759 core/options-pages.php:1762
689
- msgid "Include children"
690
- msgstr ""
691
-
692
- #: core/options-pages.php:1763
693
- msgid "Show media items of child media categories as a result of filtering"
694
- msgstr ""
695
-
696
- #: core/options-pages.php:1780
697
- msgid "Order"
698
- msgstr ""
699
-
700
- #: core/options-pages.php:1789
701
- msgid "Order media items by"
702
- msgstr "Mediatiedostojen järjestys"
703
-
704
- #: core/options-pages.php:1792
705
- msgid "Date"
706
- msgstr "Päivämäärä"
707
-
708
- #: core/options-pages.php:1793 core/options-pages.php:1853
709
- msgid "Title"
710
- msgstr "Otsikko"
711
-
712
- #: core/options-pages.php:1794
713
- msgid "Custom Order"
714
- msgstr "Mukautettu järjestys"
715
-
716
- #: core/options-pages.php:1796 core/options-pages.php:1808
717
- msgid "For media library and media popups"
718
- msgstr "Mediakirjastoon ja median ponnahdusikkunoihin"
719
-
720
- #: core/options-pages.php:1797
721
- msgid ""
722
- "Allows changing media items order by drag and drop with Custom Order value."
723
- msgstr ""
724
-
725
- #: core/options-pages.php:1802
726
- msgid "Sort order"
727
- msgstr "Lajittelujärjestys"
728
-
729
- #: core/options-pages.php:1805
730
- msgid "Ascending"
731
- msgstr "Nouseva"
732
-
733
- #: core/options-pages.php:1806
734
- msgid "Descending"
735
- msgstr "Laskeva"
736
-
737
- #: core/options-pages.php:1813 core/options-pages.php:1816
738
- msgid "Natural sort order"
739
- msgstr ""
740
-
741
- #: core/options-pages.php:1817
742
- msgid "Apply human-friendly sort order to Media Library and Galleries"
743
- msgstr ""
744
-
745
- #: core/options-pages.php:1818
746
- msgid ""
747
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
748
- "3, abc-11, abc-2]"
749
- msgstr ""
750
-
751
- #: core/options-pages.php:1831
752
- msgid "Grid Mode"
753
- msgstr ""
754
-
755
- #: core/options-pages.php:1840 core/options-pages.php:1843
756
- msgid "Show caption"
757
- msgstr ""
758
-
759
- #: core/options-pages.php:1844
760
- msgid "Add text caption for media item thumbnails"
761
- msgstr ""
762
-
763
- #: core/options-pages.php:1850
764
- msgid "Caption type"
765
- msgstr ""
766
-
767
- #: core/options-pages.php:1854
768
- msgid "Filename"
769
- msgstr ""
770
-
771
- #: core/options-pages.php:1855
772
- msgid "Caption"
773
- msgstr ""
774
-
775
- #: core/options-pages.php:1868
776
- msgid "Media Shortcodes"
777
- msgstr "Median lyhytkoodit"
778
-
779
- #: core/options-pages.php:1877 core/options-pages.php:1880
780
- msgid "Enhanced media shortcodes"
781
- msgstr "Parannetut median lyhytkoodit"
782
-
783
- #: core/options-pages.php:1881
784
- msgid ""
785
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
786
- "upload date, and media items number limit"
787
- msgstr ""
788
- "Paranna WordPressin median lyhytkoodeja ymmärtämään mediataksonomioita, "
789
- "siirtopäiviä ja mediatiedostojen määrän rajoituksia."
790
-
791
- #: core/options-pages.php:1882
792
- msgid "Gallery example:"
793
- msgstr "Esimerkki galleriasta:"
794
-
795
- #: core/options-pages.php:1883
796
- msgid "Audio playlist example:"
797
- msgstr "Esimerkki audiosoittolistasta:"
798
-
799
- #: core/options-pages.php:1884
800
- msgid "Video playlist example:"
801
- msgstr "Esimerkki videosoittolistasta:"
802
-
803
- #: core/options-pages.php:1888
804
- msgid "Warning"
805
- msgstr ""
806
-
807
- #: core/options-pages.php:1891
808
- #, php-format
809
- msgid ""
810
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
811
- "\">Learn more</a>."
812
- msgstr ""
813
-
814
- #: core/options-pages.php:1896
815
- #, php-format
816
- msgid ""
817
- "Please check out your gallery front-end and back-end functionality once this "
818
- "option activated. If you find an issue please inform plugin authors at %s or "
819
- "%s."
820
- msgstr ""
821
- "Tarkista julkinen puoli ja hallintapuoli aktivoituasi tämän valinnan. Jos "
822
- "löydät ongelmia, ole yhteydessä lisäosan tekijöihin %s tai %s."
823
-
824
- #: core/options-pages.php:1977 core/options-pages.php:2124
825
- msgid "Assign following taxonomies to Media Library:"
826
- msgstr "Valitse seuraavat taksonomiat mediakirjastoon:"
827
-
828
- #: core/options-pages.php:1996 core/options-pages.php:2062
829
- #: core/options-pages.php:2146
830
- msgid "Assign Taxonomy"
831
- msgstr "Valitse taksonomia"
832
-
833
- #: core/options-pages.php:1997 core/options-pages.php:2147
834
- msgid "Edit Taxonomy"
835
- msgstr "Muokkaa taksonomiaa"
836
-
837
- #: core/options-pages.php:2001 core/options-pages.php:2064
838
- msgid "Delete Taxonomy"
839
- msgstr "Poista taksonomia"
840
-
841
- #: core/options-pages.php:2006 core/options-pages.php:2069
842
- msgid "Labels"
843
- msgstr "Nimet"
844
-
845
- #: core/options-pages.php:2008 core/options-pages.php:2071
846
- msgid "Singular"
847
- msgstr "Yksikkömuoto"
848
-
849
- #: core/options-pages.php:2009 core/options-pages.php:2072
850
- msgid "Plural"
851
- msgstr "Monikossa"
852
-
853
- #: core/options-pages.php:2010 core/options-pages.php:2073
854
- msgid "Menu Name"
855
- msgstr "Valikon nimi"
856
-
857
- #: core/options-pages.php:2023 core/options-pages.php:2046
858
- #: core/options-pages.php:2086 core/options-pages.php:2150
859
- msgid "Settings"
860
- msgstr "Asetukset"
861
-
862
- #: core/options-pages.php:2025 core/options-pages.php:2088
863
- msgid "Taxonomy Name"
864
- msgstr "Taksonomian nimi"
865
-
866
- #: core/options-pages.php:2026 core/options-pages.php:2089
867
- msgid "Hierarchical"
868
- msgstr "Hierarkinen"
869
-
870
- #: core/options-pages.php:2027 core/options-pages.php:2090
871
- msgid "Column for List View"
872
- msgstr "Kolumni listanäkymässä"
873
-
874
- #: core/options-pages.php:2028 core/options-pages.php:2048
875
- #: core/options-pages.php:2091 core/options-pages.php:2152
876
- msgid "Filter for List View"
877
- msgstr "Suodatin listanäkymässä"
878
-
879
- #: core/options-pages.php:2029 core/options-pages.php:2049
880
- #: core/options-pages.php:2092 core/options-pages.php:2153
881
- msgid "Filter for Grid View / Media Popup"
882
- msgstr "Suodatin ruudukkonäkymässä / ponnahdusikkunassa"
883
-
884
- #: core/options-pages.php:2030 core/options-pages.php:2050
885
- #: core/options-pages.php:2093 core/options-pages.php:2154
886
- msgid "Edit in Media Popup"
887
- msgstr "Muokkaa ponnahdusikkunassa"
888
-
889
- #: core/options-pages.php:2031 core/options-pages.php:2094
890
- msgid "Show in Nav Menu"
891
- msgstr "Näytä navigaatiossa"
892
-
893
- #: core/options-pages.php:2032 core/options-pages.php:2095
894
- msgid "Remember Terms Order (sort)"
895
- msgstr "Muista termien järjestys (järjestä)"
896
-
897
- #: core/options-pages.php:2033 core/options-pages.php:2096
898
- msgid "Show in REST"
899
- msgstr "Näytä REST-rajapinnassa"
900
-
901
- #: core/options-pages.php:2034 core/options-pages.php:2097
902
- msgid "Rewrite Slug"
903
- msgstr "Polkutunnus"
904
-
905
- #: core/options-pages.php:2035 core/options-pages.php:2098
906
- msgid "Slug with Front"
907
- msgstr "Polkutunnus alkuliitteen kanssa"
908
-
909
- #: core/options-pages.php:2110
910
- msgid "Add New Taxonomy"
911
- msgstr "Lisää uusi taksonomia"
912
-
913
- #: core/options-pages.php:2120
914
- msgid "Non-Media Taxonomies"
915
- msgstr "Muut kuin mediataksonomiat"
916
-
917
- #: core/options-pages.php:2183
918
- msgid "Options"
919
- msgstr "Asetukset"
920
-
921
- #: core/options-pages.php:2193 core/options-pages.php:2196
922
- msgid "Taxonomy archive pages"
923
- msgstr "Taksonomian arkistosivut"
924
-
925
- #: core/options-pages.php:2197
926
- msgid "Turn on media taxonomy archive pages on the front-end"
927
- msgstr "Näytä mediataksonomian arkistosivut julkisella puolella"
928
-
929
- #: core/options-pages.php:2198
930
- msgid ""
931
- "Re-save your permalink settings after this option change to make it work."
932
- msgstr "Tallenna kestolinkin asetukset, jos vaihdat tätä asetusta."
933
-
934
- #: core/options-pages.php:2204 core/options-pages.php:2207
935
- msgid "Assign all like hierarchical"
936
- msgstr "Liitä kaikki kuten hierarkiset"
937
-
938
- #: core/options-pages.php:2208
939
- msgid ""
940
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
941
- msgstr ""
942
- "Näytä ei-hierarkiset taksonomiat kuten hierarkiset ruudukkonäkymässä / "
943
- "median ponnahdusikkunassa"
944
-
945
- #: core/options-pages.php:2271
946
- msgid "Add New MIME Type"
947
- msgstr "Lisää uusii MIME-tyyppi"
948
-
949
- #: core/options-pages.php:2291 core/options-pages.php:2345
950
- msgid "Extension"
951
- msgstr "Laajennus"
952
-
953
- #: core/options-pages.php:2292 core/options-pages.php:2346
954
- msgid "MIME Type"
955
- msgstr "MIME-tyyppi"
956
-
957
- #: core/options-pages.php:2293 core/options-pages.php:2347
958
- msgid "Singular Label"
959
- msgstr "Tunnus yksikössä"
960
-
961
- #: core/options-pages.php:2294 core/options-pages.php:2348
962
- msgid "Plural Label"
963
- msgstr "Tunnus monikossa"
964
-
965
- #: core/options-pages.php:2295 core/options-pages.php:2324
966
- #: core/options-pages.php:2337 core/options-pages.php:2349
967
- msgid "Add Filter"
968
- msgstr "Lisää suodatin"
969
-
970
- #: core/options-pages.php:2296 core/options-pages.php:2325
971
- #: core/options-pages.php:2338 core/options-pages.php:2350
972
- msgid "Allow Upload"
973
- msgstr "Salli tiedoston siirto"
974
-
975
- #: core/options-pages.php:2326 core/options-pages.php:2339
976
- msgid "Delete MIME Type"
977
- msgstr "Poista MIME-tyyppi"
978
-
979
- #: core/options-pages.php:2415
980
- msgid "Changelog"
981
- msgstr "Muutosloki"
982
-
983
- #: core/options-pages.php:2416
984
- msgid "What's new in"
985
- msgstr "Muutokset"
986
-
987
- #: core/options-pages.php:2416
988
- msgid "version"
989
- msgstr "versio"
990
-
991
- #: core/options-pages.php:2419
992
- msgid "More features under the hood"
993
- msgstr "Lisää ominaisuuksia"
994
-
995
- #: core/options-pages.php:2421
996
- msgid "Support"
997
- msgstr "Tuki"
998
-
999
- #: core/options-pages.php:2422
1000
- msgid "Feel free to ask for help on"
1001
- msgstr "Pyydä apua"
1002
-
1003
- #: core/options-pages.php:2422
1004
- msgid "Support is free for both versions of the plugin."
1005
- msgstr "Tuki on ilmainen molemmille lisäosan versioille."
1006
-
1007
- #: core/options-pages.php:2424
1008
- msgid "Plugin rating"
1009
- msgstr "Lisäosan arvostelu"
1010
-
1011
- #: core/options-pages.php:2425
1012
- msgid "Please"
1013
- msgstr "Ole hyvä ja"
1014
-
1015
- #: core/options-pages.php:2425
1016
- msgid "vote for the plugin"
1017
- msgstr "arvostele lisäosa"
1018
-
1019
- #: core/options-pages.php:2425
1020
- msgid "Thanks!"
1021
- msgstr "Kiitos."
1022
-
1023
- #: core/options-pages.php:2427
1024
- msgid "Other plugins you may find useful"
1025
- msgstr "Muita lisäosia, jotka voivat olla hyödyllisiä"
1026
-
1027
- #: core/options-pages.php:2469
1028
- msgid "Utility"
1029
- msgstr "Käyttö"
1030
-
1031
- #: core/options-pages.php:2494
1032
- msgid "Rate us:"
1033
- msgstr ""
1034
-
1035
- #: core/options-pages.php:2494
1036
- msgid "Poor"
1037
- msgstr ""
1038
-
1039
- #: core/options-pages.php:2494
1040
- msgid "Works"
1041
- msgstr ""
1042
-
1043
- #: core/options-pages.php:2494
1044
- msgid "Good"
1045
- msgstr ""
1046
-
1047
- #: core/options-pages.php:2494
1048
- msgid "Great"
1049
- msgstr ""
1050
-
1051
- #: core/options-pages.php:2494
1052
- msgid "Fantastic!"
1053
- msgstr ""
1054
-
1055
- #: core/taxonomies.php:101
1056
- msgid "Media Taxonomies settings saved."
1057
- msgstr "Mediataksonomioiden asetukset tallennettu."
1058
-
1059
- #: core/taxonomies.php:174
1060
- msgid "Media Library settings saved."
1061
- msgstr "Mediakirjaston asetukset tallennettu."
1062
-
1063
- #: core/taxonomies.php:353
1064
- msgid "Filter by author"
1065
- msgstr ""
1066
-
1067
- #: core/taxonomies.php:357
1068
- msgid "All Authors"
1069
- msgstr ""
1070
-
1071
- #: core/taxonomies.php:374 core/taxonomies.php:380
1072
- #: enhanced-media-library.php:561
1073
- msgid "Filter by"
1074
- msgstr "suodata"
1075
-
1076
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1077
- msgid "Not in a"
1078
- msgstr "Ei sisällä"
1079
-
1080
- #: core/taxonomies.php:721
1081
- msgid "Add some"
1082
- msgstr ""
1083
-
1084
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1085
- msgid "All Uncategorized"
1086
- msgstr "Kaikki kategorisoimattomat"
1087
-
1088
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1089
- msgid "Reset All Filters"
1090
- msgstr "Tyhjennä kaikki suodattimet"
1091
-
1092
- #: enhanced-media-library.php:391
1093
- msgid "More Details"
1094
- msgstr ""
1095
-
1096
- #: enhanced-media-library.php:392
1097
- msgid "Less Details"
1098
- msgstr ""
1099
-
1100
- #: enhanced-media-library.php:565
1101
- msgid "author"
1102
- msgstr ""
1103
-
1104
- #: enhanced-media-library.php:566
1105
- msgid "authors"
1106
- msgstr ""
1107
-
1108
- #: enhanced-media-library.php:569
1109
- msgid "Saved."
1110
- msgstr ""
1111
-
1112
- #: enhanced-media-library.php:570
1113
- msgid "Something went wrong."
1114
- msgstr ""
1115
-
1116
- #: enhanced-media-library.php:573
1117
- msgid "Select All"
1118
- msgstr ""
1119
-
1120
- #: enhanced-media-library.php:574
1121
- msgid "Deselect "
1122
- msgstr ""
1123
-
1124
- #: enhanced-media-library.php:603
1125
- msgid "Uploaded to post #"
1126
- msgstr "Siirrä artikkeliin #"
1127
-
1128
- #: enhanced-media-library.php:604
1129
- msgid "Based On"
1130
- msgstr "Perustuu"
1131
-
1132
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1133
- msgid "Media Categories"
1134
- msgstr "Mediakategoriat"
1135
-
1136
- #: enhanced-media-library.php:674
1137
- msgid "Media Category"
1138
- msgstr "Mediakategoria"
1139
-
1140
- #: enhanced-media-library.php:676
1141
- msgid "All Media Categories"
1142
- msgstr "Kaikki mediakategoriat"
1143
-
1144
- #: enhanced-media-library.php:677
1145
- msgid "Edit Media Category"
1146
- msgstr "Muokkaa mediakategoriaa"
1147
-
1148
- #: enhanced-media-library.php:678
1149
- msgid "View Media Category"
1150
- msgstr "Näytä mediakategoria"
1151
-
1152
- #: enhanced-media-library.php:679
1153
- msgid "Update Media Category"
1154
- msgstr "Päivitä mediakategoria"
1155
-
1156
- #: enhanced-media-library.php:680
1157
- msgid "Add New Media Category"
1158
- msgstr "Lisää uusi mediakategoria"
1159
-
1160
- #: enhanced-media-library.php:681
1161
- msgid "New Media Category Name"
1162
- msgstr "Uuden mediakategorian nimi"
1163
-
1164
- #: enhanced-media-library.php:682
1165
- msgid "Parent Media Category"
1166
- msgstr "Ylemmän tason mediakategoria"
1167
-
1168
- #: enhanced-media-library.php:683
1169
- msgid "Parent Media Category:"
1170
- msgstr "Ylemmän tason mediakategoria:"
1171
-
1172
- #: enhanced-media-library.php:684
1173
- msgid "Search Media Categories"
1174
- msgstr "Etsi mediakategorioita"
1175
-
1176
- #. Plugin URI of the plugin/theme
1177
- #. Author URI of the plugin/theme
1178
- msgid "http://wpUXsolutions.com"
1179
- msgstr "http://wpUXsolutions.com"
1180
-
1181
- #. Description of the plugin/theme
1182
- msgid ""
1183
- "This plugin will be handy for those who need to manage a lot of media files."
1184
- msgstr "Tämä lisäosa on kätevä kun haluat hallinnoida paljon mediatiedostoja."
1185
-
1186
- #. Author of the plugin/theme
1187
- msgid "wpUXsolutions"
1188
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-fr_FR.mo DELETED
Binary file
languages/enhanced-media-library-fr_FR.po DELETED
@@ -1,1211 +0,0 @@
1
- # Translation of Plugins - Enhanced Media Library - Stable (latest release) in French (France)
2
- # This file is distributed under the same license as the Plugins - Enhanced Media Library - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - Enhanced Media Library - Stable (latest "
6
- "release)\n"
7
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
8
- "PO-Revision-Date: 2020-10-11 22:49+0300\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: fr\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
16
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr "Supprimer"
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr "Désélectionner"
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr "Légende de cette image&hellip;"
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr "Décrivez cette vidéo&hellip;"
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr "Décrivez ce fichier son&hellip;"
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr "Décrivez ce fichier média&hellip;"
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr "Réglages des types de MIME restaurés."
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr "Réglages des types de MIME enregistrés."
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] ""
55
- msgstr[1] ""
56
-
57
- #: core/options-pages.php:97 core/options-pages.php:106
58
- #: core/options-pages.php:115 core/options-pages.php:124
59
- #: core/options-pages.php:321 core/options-pages.php:399
60
- #: core/options-pages.php:1694 core/options-pages.php:1952
61
- #: core/options-pages.php:2265 core/options-pages.php:2465
62
- msgid "Media Settings"
63
- msgstr "Réglages de média"
64
-
65
- #: core/options-pages.php:106 core/options-pages.php:107
66
- #: core/options-pages.php:363 core/options-pages.php:1019
67
- msgid "Media Library"
68
- msgstr "Bibliothèque des Médias"
69
-
70
- #: core/options-pages.php:115 core/options-pages.php:116
71
- #: core/options-pages.php:364 core/options-pages.php:1033
72
- #: core/options-pages.php:1742 core/options-pages.php:1973
73
- msgid "Media Taxonomies"
74
- msgstr "Taxinomies des médias"
75
-
76
- #: core/options-pages.php:124 core/options-pages.php:125
77
- #: core/options-pages.php:365 core/options-pages.php:1047
78
- msgid "MIME Types"
79
- msgstr "Types de MIME"
80
-
81
- #. Plugin Name of the plugin/theme
82
- #: core/options-pages.php:166 core/options-pages.php:167
83
- #: core/options-pages.php:194 core/options-pages.php:195
84
- msgid "Enhanced Media Library"
85
- msgstr "Enhanced Media Library"
86
-
87
- #: core/options-pages.php:362
88
- msgid "General"
89
- msgstr "Général"
90
-
91
- #: core/options-pages.php:388 core/options-pages.php:395
92
- #: core/options-pages.php:732 core/options-pages.php:740
93
- #: core/options-pages.php:925 core/options-pages.php:1682
94
- #: core/options-pages.php:1689 core/options-pages.php:1940
95
- #: core/options-pages.php:1947 core/options-pages.php:2252
96
- #: core/options-pages.php:2259
97
- msgid "You do not have sufficient permissions to access this page."
98
- msgstr "Vous n'avez pas les droits suffisants pour accéder à cette page."
99
-
100
- #: core/options-pages.php:410
101
- msgid "Image sizes"
102
- msgstr "Tailles d'image"
103
-
104
- #: core/options-pages.php:411
105
- msgid ""
106
- "The sizes listed below determine the maximum dimensions in pixels to use "
107
- "when adding an image to the Media Library."
108
- msgstr ""
109
- "Les tailles listées ci-dessous déterminent les dimensions maximales en "
110
- "pixels à utiliser quand vous ajoutez une image dans la bibliothèque des "
111
- "médias."
112
-
113
- #: core/options-pages.php:415
114
- msgid "Thumbnail size"
115
- msgstr "Taille de miniature"
116
-
117
- #: core/options-pages.php:417
118
- msgid "Width"
119
- msgstr "Largeur"
120
-
121
- #: core/options-pages.php:419
122
- msgid "Height"
123
- msgstr "Hauteur"
124
-
125
- #: core/options-pages.php:422
126
- msgid ""
127
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
128
- msgstr ""
129
- "Recadrer les images pour parvenir aux dimensions exactes (normalement, les "
130
- "miniatures sont proportionnelles)"
131
-
132
- #: core/options-pages.php:427 core/options-pages.php:428
133
- msgid "Medium size"
134
- msgstr "Taille moyenne"
135
-
136
- #: core/options-pages.php:429 core/options-pages.php:440
137
- msgid "Max Width"
138
- msgstr "Largeur maximum"
139
-
140
- #: core/options-pages.php:432 core/options-pages.php:443
141
- msgid "Max Height"
142
- msgstr "Hauteur maximum"
143
-
144
- #: core/options-pages.php:438 core/options-pages.php:439
145
- msgid "Large size"
146
- msgstr "Grande taille"
147
-
148
- #: core/options-pages.php:456
149
- msgid "Embeds"
150
- msgstr "Intégration"
151
-
152
- #: core/options-pages.php:463
153
- msgid "Uploading Files"
154
- msgstr "Mise en ligne des fichiers"
155
-
156
- #: core/options-pages.php:470
157
- msgid "Store uploads in this folder"
158
- msgstr "Stocker les fichiers dans ce répertoire"
159
-
160
- #: core/options-pages.php:474
161
- #, php-format
162
- msgid "Default is %s"
163
- msgstr "La valeur par défaut est&nbsp;: %s"
164
-
165
- #: core/options-pages.php:480
166
- msgid "Full URL path to files"
167
- msgstr "URL complète pour les fichiers"
168
-
169
- #: core/options-pages.php:482
170
- msgid "Configuring this is optional. By default, it should be blank."
171
- msgstr "Configurer ceci est optionnel. Par défaut cela doit être vide."
172
-
173
- #: core/options-pages.php:490
174
- msgid "Organize my uploads into month- and year-based folders"
175
- msgstr "Organiser mes fichiers envoyés dans des dossiers mensuels et annuels."
176
-
177
- #: core/options-pages.php:560 core/options-pages.php:1997
178
- #: core/options-pages.php:2012 core/options-pages.php:2075
179
- #: core/options-pages.php:2147
180
- msgid "Edit"
181
- msgstr "Modifier"
182
-
183
- #: core/options-pages.php:561
184
- msgid "Close"
185
- msgstr "Fermer"
186
-
187
- #: core/options-pages.php:562 core/options-pages.php:2013
188
- #: core/options-pages.php:2076
189
- msgid "View"
190
- msgstr "Afficher"
191
-
192
- #: core/options-pages.php:563 core/options-pages.php:2014
193
- #: core/options-pages.php:2077
194
- msgid "Update"
195
- msgstr "Mise à jour"
196
-
197
- #: core/options-pages.php:564 core/options-pages.php:2015
198
- #: core/options-pages.php:2078
199
- msgid "Add New"
200
- msgstr "Ajouter"
201
-
202
- #: core/options-pages.php:565 core/options-pages.php:2016
203
- #: core/options-pages.php:2079
204
- msgid "New"
205
- msgstr "Nouveau"
206
-
207
- #: core/options-pages.php:566
208
- msgid "Name"
209
- msgstr "Nom"
210
-
211
- #: core/options-pages.php:567 core/options-pages.php:2017
212
- #: core/options-pages.php:2080
213
- msgid "Parent"
214
- msgstr "Parent"
215
-
216
- #: core/options-pages.php:568 core/options-pages.php:862
217
- #: core/options-pages.php:1084 core/options-pages.php:2011
218
- #: core/options-pages.php:2074 core/taxonomies.php:381
219
- #: enhanced-media-library.php:562
220
- msgid "All"
221
- msgstr "Tous"
222
-
223
- #: core/options-pages.php:569 core/options-pages.php:2018
224
- #: core/options-pages.php:2081
225
- msgid "Search"
226
- msgstr "Rechercher"
227
-
228
- #: core/options-pages.php:571 core/options-pages.php:2062
229
- msgid "New Taxonomy"
230
- msgstr "Nouvelle taxinomie"
231
-
232
- #: core/options-pages.php:573
233
- msgid "Remove Taxonomy"
234
- msgstr "Retirer la taxinomie"
235
-
236
- #: core/options-pages.php:574
237
- msgid "Taxonomy will be removed."
238
- msgstr "La taxinomie va être supprimée."
239
-
240
- #: core/options-pages.php:575
241
- msgid ""
242
- "Taxonomy terms (categories) will remain intact in the database. If you "
243
- "create a taxonomy with the same name in the future, its terms (categories) "
244
- "will be available again."
245
- msgstr ""
246
- "Les termes (catégories) de la taxinomie resteront inchangés dans la base de "
247
- "données. Si vous créez une taxinomie portant le même nom plus tard, ses "
248
- "termes (catégories) seront de nouveau disponibles."
249
-
250
- #: core/options-pages.php:576
251
- msgid "Media items will remain intact."
252
- msgstr "Les éléments média resteront inchangés."
253
-
254
- #: core/options-pages.php:577
255
- msgid "Are you still sure?"
256
- msgstr "Confirmez-vous&nbsp;?"
257
-
258
- #: core/options-pages.php:578
259
- msgid "Yes, remove taxonomy"
260
- msgstr "Oui, supprimer la taxinomie"
261
-
262
- #: core/options-pages.php:580
263
- msgid "Duplicate"
264
- msgstr "Dupliquer"
265
-
266
- #: core/options-pages.php:581
267
- msgid "Taxonomy with the same name already exists. Please chose other one."
268
- msgstr ""
269
- "Une taxinomie avec le même nom existe déjà. Veuillez en choisir un autre."
270
-
271
- #: core/options-pages.php:583
272
- msgid "Empty Fields"
273
- msgstr "Champs vides"
274
-
275
- #: core/options-pages.php:584
276
- msgid "Wrong Taxonomy Name"
277
- msgstr ""
278
-
279
- #: core/options-pages.php:585
280
- msgid "Wrong Slug"
281
- msgstr ""
282
-
283
- #: core/options-pages.php:587
284
- msgid "Please choose Singular and Plural names for all new taxomonies."
285
- msgstr ""
286
- "Merci de choisir les noms singuliers et pluriels de toutes vos nouvelles "
287
- "taxinomies."
288
-
289
- #: core/options-pages.php:588
290
- msgid "Please choose Singular name for all new taxomonies."
291
- msgstr ""
292
- "Veuillez choisir un nom au singulier pour toutes vos nouvelles taxinomies."
293
-
294
- #: core/options-pages.php:589
295
- msgid "Please choose Plural name for all new taxomonies."
296
- msgstr ""
297
-
298
- #: core/options-pages.php:591
299
- msgid ""
300
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
301
- "name please enter it manually."
302
- msgstr ""
303
-
304
- #: core/options-pages.php:592
305
- msgid ""
306
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
307
- "character ( _ ), and be 3-32 characters long."
308
- msgstr ""
309
-
310
- #: core/options-pages.php:593
311
- msgid ""
312
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
313
- "or hyphen ( - ) characters."
314
- msgstr ""
315
-
316
- #: core/options-pages.php:595 core/options-pages.php:644
317
- msgid "Ok"
318
- msgstr "OK"
319
-
320
- #: core/options-pages.php:596 core/options-pages.php:601
321
- #: core/options-pages.php:645 core/options-pages.php:690
322
- msgid "Cancel"
323
- msgstr "Annuler"
324
-
325
- #: core/options-pages.php:598
326
- msgid "Synchronize Now"
327
- msgstr "Synchroniser maintenant"
328
-
329
- #: core/options-pages.php:599 core/options-pages.php:687
330
- msgid "This operation cannot be canceled! Are you still sure?"
331
- msgstr "Cette opération ne peut pas être annulée&nbsp;! Êtes vous sûr&nbsp;?"
332
-
333
- #: core/options-pages.php:600
334
- msgid "Synchronize"
335
- msgstr "Synchroniser"
336
-
337
- #: core/options-pages.php:602
338
- msgid "Synchronizing..."
339
- msgstr "Synchronisation..."
340
-
341
- #: core/options-pages.php:639 core/options-pages.php:2388
342
- msgid "Restore WordPress default MIME Types"
343
- msgstr "Restaurer les types de MIME par défaut de WordPress"
344
-
345
- #: core/options-pages.php:640
346
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
347
- msgstr ""
348
- "Attention ! Tous les types de MIME personnalisés seront effacés par cette "
349
- "opération."
350
-
351
- #: core/options-pages.php:641
352
- msgid "Restore Defaults"
353
- msgstr "Restaurer les réglages par défaut."
354
-
355
- #: core/options-pages.php:642
356
- msgid "Restoring..."
357
- msgstr "Restauration&hellip;"
358
-
359
- #: core/options-pages.php:647
360
- msgid "MIME Types cannot be saved"
361
- msgstr ""
362
-
363
- #: core/options-pages.php:648
364
- msgid "Please fill into all fields."
365
- msgstr "Merci de remplir tous les champs."
366
-
367
- #: core/options-pages.php:649
368
- msgid "Duplicate extensions or MIME types. Please choose other one."
369
- msgstr "Extensions ou types MIME dupliqués. Veuillez en choisir un autre."
370
-
371
- #: core/options-pages.php:685 core/options-pages.php:853
372
- #: core/options-pages.php:1063
373
- msgid "Complete Cleanup"
374
- msgstr "Nettoyage complet"
375
-
376
- #: core/options-pages.php:686
377
- msgid ""
378
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
379
- "plugin data</strong> from the database including backups."
380
- msgstr ""
381
- "Vous allez <strong style=\"text-transform:uppercase\">supprimer toutes les "
382
- "données de l'extension</strong> de la base de données, sauvegardes incluses."
383
-
384
- #: core/options-pages.php:688
385
- msgid "Yes, delete all data"
386
- msgstr "Oui, supprimer toutes les données"
387
-
388
- #: core/options-pages.php:689
389
- msgid "Cleaning..."
390
- msgstr "Nettoyage..."
391
-
392
- #: core/options-pages.php:693 core/options-pages.php:996
393
- msgid "Unify Media Settings over Network"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:696 core/options-pages.php:700
397
- #: core/options-pages.php:704
398
- msgid "will be overwritten"
399
- msgstr ""
400
-
401
- #: core/options-pages.php:706
402
- msgid "Apply"
403
- msgstr ""
404
-
405
- #: core/options-pages.php:707
406
- msgid "Applying Settings..."
407
- msgstr ""
408
-
409
- #: core/options-pages.php:746 core/options-pages.php:935
410
- msgid "Enhanced Media Library Utilities"
411
- msgstr ""
412
-
413
- #: core/options-pages.php:756
414
- msgid "Export"
415
- msgstr "Exportation"
416
-
417
- #: core/options-pages.php:761
418
- msgid "Plugin settings to export:"
419
- msgstr ""
420
-
421
- #: core/options-pages.php:762 core/options-pages.php:789
422
- #: core/options-pages.php:829
423
- msgid "Settings > Media Library"
424
- msgstr ""
425
-
426
- #: core/options-pages.php:763 core/options-pages.php:790
427
- #: core/options-pages.php:830
428
- msgid "Settings > Media Taxonomies"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:764 core/options-pages.php:791
432
- #: core/options-pages.php:831
433
- msgid "Settings > MIME Types"
434
- msgstr ""
435
-
436
- #: core/options-pages.php:768
437
- msgid ""
438
- "Use generated JSON file to import the configuration into another website."
439
- msgstr ""
440
-
441
- #: core/options-pages.php:773
442
- msgid "Export Plugin Settings"
443
- msgstr "Exporter les réglages de l'extension"
444
-
445
- #: core/options-pages.php:783
446
- msgid "Import"
447
- msgstr "Importation"
448
-
449
- #: core/options-pages.php:788
450
- msgid "Plugin settings to import:"
451
- msgstr ""
452
-
453
- #: core/options-pages.php:794
454
- msgid ""
455
- "Plugin settings will be imported from a configuration JSON file which can be "
456
- "obtained by exporting the settings on another website using the export "
457
- "button above."
458
- msgstr ""
459
-
460
- #: core/options-pages.php:795
461
- msgid ""
462
- "All plugin settings will be overridden by the import. You will have a chance "
463
- "to restore current data from an automatic backup in case you are not "
464
- "satisfied with the result of the import."
465
- msgstr ""
466
- "Tous les réglages de l’extension seront remplacés lors de l’importation. "
467
- "Vous aurez une chance de restaurer les données actuelles à partir de la "
468
- "sauvegarde automatique dans le cas où vous ne seriez pas satisfait du "
469
- "résultat de l’importation."
470
-
471
- #: core/options-pages.php:801
472
- msgid "Import Plugin Settings"
473
- msgstr "Importer les réglages de l'extension"
474
-
475
- #: core/options-pages.php:813
476
- msgid "Restore"
477
- msgstr "Restaurer"
478
-
479
- #: core/options-pages.php:819
480
- msgid "No backup available at the moment."
481
- msgstr "Aucune sauvegarde disponible en ce moment."
482
-
483
- #: core/options-pages.php:821
484
- msgid "Backup will be created automatically before any import operation."
485
- msgstr ""
486
- "Une sauvegarde sera créée automatiquement avant toute opération "
487
- "d'importation. "
488
-
489
- #: core/options-pages.php:825
490
- msgid ""
491
- "The backup has been automatically created before the latest import operation."
492
- msgstr ""
493
- "La sauvegarde a été créée automatiquement avant la dernière opération "
494
- "d’importation."
495
-
496
- #: core/options-pages.php:828
497
- msgid "Plugin settings to restore:"
498
- msgstr ""
499
-
500
- #: core/options-pages.php:837
501
- msgid "Restore Settings from the Backup"
502
- msgstr "Restaurer les réglages à partir de la sauvegarde"
503
-
504
- #: core/options-pages.php:860 core/options-pages.php:1082
505
- msgid "What will be deleted:"
506
- msgstr "Ce qui sera supprimé&nbsp;:"
507
-
508
- #: core/options-pages.php:865
509
- msgid "All plugin options"
510
- msgstr "Toutes les options de l'extension"
511
-
512
- #: core/options-pages.php:866 core/options-pages.php:1089
513
- msgid "All plugin backups stored in the database"
514
- msgstr ""
515
-
516
- #: core/options-pages.php:870 core/options-pages.php:1093
517
- msgid "What will remain intact:"
518
- msgstr "Ce qui restera intact&nbsp;:"
519
-
520
- #: core/options-pages.php:871 core/options-pages.php:1094
521
- msgid "All media items"
522
- msgstr "Tous les éléments média"
523
-
524
- #: core/options-pages.php:872 core/options-pages.php:1095
525
- msgid "All taxonomies not listed above"
526
- msgstr "Toutes les taxonomies non listées ci-dessus"
527
-
528
- #: core/options-pages.php:875 core/options-pages.php:1098
529
- msgid ""
530
- "The plugin cannot delete itself for security reasons. Please delete it "
531
- "manually from the plugin list after the cleanup is complete."
532
- msgstr ""
533
-
534
- #: core/options-pages.php:877 core/options-pages.php:1100
535
- msgid ""
536
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
537
- "backup of your database prior to cleanup!"
538
- msgstr ""
539
-
540
- #: core/options-pages.php:882
541
- msgid "Delete All Data & Deactivate"
542
- msgstr "Supprimer toutes les données et désactiver"
543
-
544
- #: core/options-pages.php:945
545
- msgid "Network Settings"
546
- msgstr ""
547
-
548
- #: core/options-pages.php:952 core/options-pages.php:1003
549
- msgid "No settings available. The plugin is not network activated."
550
- msgstr ""
551
-
552
- #: core/options-pages.php:963
553
- msgid "Media Settings per site"
554
- msgstr ""
555
-
556
- #: core/options-pages.php:966
557
- msgid "Enable Media Settings"
558
- msgstr ""
559
-
560
- #: core/options-pages.php:967
561
- msgid "Allow an individual site admin to edit enhanced Media Settings"
562
- msgstr ""
563
-
564
- #: core/options-pages.php:968
565
- msgid ""
566
- "Otherwise, only a network (super) admin can see the menu and edit media "
567
- "settings."
568
- msgstr ""
569
-
570
- #: core/options-pages.php:974
571
- msgid "Plugin Utilities per site"
572
- msgstr ""
573
-
574
- #: core/options-pages.php:977
575
- msgid "Enable plugin Utilities"
576
- msgstr ""
577
-
578
- #: core/options-pages.php:978
579
- msgid ""
580
- "Allow an individual site admin to import / export / restore plugin settings "
581
- "and perform the complete cleanup for a specific site"
582
- msgstr ""
583
-
584
- #: core/options-pages.php:979
585
- msgid ""
586
- "Otherwise, only a network (super) admin can see the menu and perform those "
587
- "actions."
588
- msgstr ""
589
-
590
- #: core/options-pages.php:986 core/options-pages.php:1770
591
- #: core/options-pages.php:1824 core/options-pages.php:1861
592
- #: core/options-pages.php:1905 core/options-pages.php:2113
593
- #: core/options-pages.php:2177 core/options-pages.php:2215
594
- #: core/options-pages.php:2386 enhanced-media-library.php:571
595
- msgid "Save Changes"
596
- msgstr "Enregistrer les changements"
597
-
598
- #: core/options-pages.php:1012 core/options-pages.php:1015
599
- msgid "Media Library Settings"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1016 core/options-pages.php:1030
603
- #: core/options-pages.php:1044
604
- msgid "Apply to ALL Network websites"
605
- msgstr ""
606
-
607
- #: core/options-pages.php:1026 core/options-pages.php:1029
608
- msgid "Media Taxonomies Settings"
609
- msgstr ""
610
-
611
- #: core/options-pages.php:1040 core/options-pages.php:1043
612
- msgid "MIME Types Settings"
613
- msgstr ""
614
-
615
- #: core/options-pages.php:1087
616
- msgid "All plugin options on every site"
617
- msgstr ""
618
-
619
- #: core/options-pages.php:1088
620
- msgid "Network settings"
621
- msgstr ""
622
-
623
- #: core/options-pages.php:1105
624
- msgid "Delete All Data & Network Deactivate"
625
- msgstr ""
626
-
627
- #: core/options-pages.php:1225
628
- msgid "Network settings saved."
629
- msgstr ""
630
-
631
- #: core/options-pages.php:1319
632
- msgid "Settings cannot be imported. Please upload a file to import settings."
633
- msgstr ""
634
-
635
- #: core/options-pages.php:1340
636
- msgid ""
637
- "Settings cannot be imported. Please upload a correct JSON file to import "
638
- "settings."
639
- msgstr ""
640
-
641
- #: core/options-pages.php:1356
642
- msgid "Plugin settings imported."
643
- msgstr "Réglages de l'extension importés."
644
-
645
- #: core/options-pages.php:1409
646
- msgid "Plugin settings restored from the backup."
647
- msgstr "Réglages de l'extension restaurés à partir de la sauvegarde."
648
-
649
- #: core/options-pages.php:1714
650
- msgid "Filters"
651
- msgstr ""
652
-
653
- #: core/options-pages.php:1723 core/options-pages.php:1726
654
- msgid "Force filters"
655
- msgstr "Forcer les filtres"
656
-
657
- #: core/options-pages.php:1727
658
- msgid "Show media filters for ANY Media Popup"
659
- msgstr "Afficher les filtres de média dans toutes les popup de média."
660
-
661
- #: core/options-pages.php:1728
662
- msgid "Try this if filters are not shown for third-party plugins or themes."
663
- msgstr ""
664
- "Essayez ceci si les filtres ne sont pas affichés pour des thèmes ou "
665
- "extensions."
666
-
667
- #: core/options-pages.php:1734 core/options-pages.php:1737
668
- msgid "Filters to show"
669
- msgstr ""
670
-
671
- #: core/options-pages.php:1738
672
- msgid "Types"
673
- msgstr ""
674
-
675
- #: core/options-pages.php:1739
676
- msgid "Can be disabled for Grid Mode only"
677
- msgstr ""
678
-
679
- #: core/options-pages.php:1740
680
- msgid "Dates"
681
- msgstr ""
682
-
683
- #: core/options-pages.php:1741
684
- msgid "Authors"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1748 core/options-pages.php:1751
688
- msgid "Show count"
689
- msgstr "Afficher le nombre"
690
-
691
- #: core/options-pages.php:1752
692
- msgid "Show item count per category for media filters"
693
- msgstr "Afficher le nombre de médias par catégorie sur les filtres de média"
694
-
695
- #: core/options-pages.php:1753
696
- msgid ""
697
- "Disable this if it slows down your site admin. The problem is resolved in "
698
- "the upcoming major update v3.0"
699
- msgstr ""
700
-
701
- #: core/options-pages.php:1759 core/options-pages.php:1762
702
- msgid "Include children"
703
- msgstr ""
704
-
705
- #: core/options-pages.php:1763
706
- msgid "Show media items of child media categories as a result of filtering"
707
- msgstr ""
708
-
709
- #: core/options-pages.php:1780
710
- msgid "Order"
711
- msgstr ""
712
-
713
- #: core/options-pages.php:1789
714
- msgid "Order media items by"
715
- msgstr "Ordonner les éléments média par"
716
-
717
- #: core/options-pages.php:1792
718
- msgid "Date"
719
- msgstr "Date"
720
-
721
- #: core/options-pages.php:1793 core/options-pages.php:1853
722
- msgid "Title"
723
- msgstr "Titre"
724
-
725
- #: core/options-pages.php:1794
726
- msgid "Custom Order"
727
- msgstr "Tri personnalisé"
728
-
729
- #: core/options-pages.php:1796 core/options-pages.php:1808
730
- msgid "For media library and media popups"
731
- msgstr "Pour la bibliothèque et les popups média"
732
-
733
- #: core/options-pages.php:1797
734
- msgid ""
735
- "Allows changing media items order by drag and drop with Custom Order value."
736
- msgstr ""
737
-
738
- #: core/options-pages.php:1802
739
- msgid "Sort order"
740
- msgstr "Ordre de tri"
741
-
742
- #: core/options-pages.php:1805
743
- msgid "Ascending"
744
- msgstr "Croissant"
745
-
746
- #: core/options-pages.php:1806
747
- msgid "Descending"
748
- msgstr "Décroissant"
749
-
750
- #: core/options-pages.php:1813 core/options-pages.php:1816
751
- msgid "Natural sort order"
752
- msgstr "Ordre de tri naturel"
753
-
754
- #: core/options-pages.php:1817
755
- msgid "Apply human-friendly sort order to Media Library and Galleries"
756
- msgstr ""
757
-
758
- #: core/options-pages.php:1818
759
- msgid ""
760
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
761
- "3, abc-11, abc-2]"
762
- msgstr ""
763
- "Exemple : [1, 2, 3, 10, 18, 22, abc-2, abc-11] au lieu de [1, 10, 18, 2, 22, "
764
- "3, abc-11, abc-2]"
765
-
766
- #: core/options-pages.php:1831
767
- msgid "Grid Mode"
768
- msgstr ""
769
-
770
- #: core/options-pages.php:1840 core/options-pages.php:1843
771
- msgid "Show caption"
772
- msgstr ""
773
-
774
- #: core/options-pages.php:1844
775
- msgid "Add text caption for media item thumbnails"
776
- msgstr ""
777
-
778
- #: core/options-pages.php:1850
779
- msgid "Caption type"
780
- msgstr ""
781
-
782
- #: core/options-pages.php:1854
783
- msgid "Filename"
784
- msgstr ""
785
-
786
- #: core/options-pages.php:1855
787
- msgid "Caption"
788
- msgstr ""
789
-
790
- #: core/options-pages.php:1868
791
- msgid "Media Shortcodes"
792
- msgstr "Codes courts de média"
793
-
794
- #: core/options-pages.php:1877 core/options-pages.php:1880
795
- msgid "Enhanced media shortcodes"
796
- msgstr "Codes courts améliorés de média"
797
-
798
- #: core/options-pages.php:1881
799
- msgid ""
800
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
801
- "upload date, and media items number limit"
802
- msgstr ""
803
- "Améliorer les codes courts de média WordPress pour prendre en compte les "
804
- "taxinomies, date de téléchargement et limite d’affichage des éléments médias."
805
-
806
- #: core/options-pages.php:1882
807
- msgid "Gallery example:"
808
- msgstr "Exemple de galerie&nbsp;:"
809
-
810
- #: core/options-pages.php:1883
811
- msgid "Audio playlist example:"
812
- msgstr "Exemple de liste de lecture audio&nbsp;:"
813
-
814
- #: core/options-pages.php:1884
815
- msgid "Video playlist example:"
816
- msgstr "Exemple de liste de lecture vidéo&nbsp;:"
817
-
818
- #: core/options-pages.php:1888
819
- msgid "Warning"
820
- msgstr ""
821
-
822
- #: core/options-pages.php:1891
823
- #, php-format
824
- msgid ""
825
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
826
- "\">Learn more</a>."
827
- msgstr ""
828
-
829
- #: core/options-pages.php:1896
830
- #, php-format
831
- msgid ""
832
- "Please check out your gallery front-end and back-end functionality once this "
833
- "option activated. If you find an issue please inform plugin authors at %s or "
834
- "%s."
835
- msgstr ""
836
- "Veuillez vérifier les fonctionnalités sur l’interface publique et "
837
- "l’interface d’administration une fois cette option activée. Si vous "
838
- "rencontrez un problème, veuillez en informer les auteurs de l’extension sur "
839
- "%s ou %s."
840
-
841
- #: core/options-pages.php:1977 core/options-pages.php:2124
842
- msgid "Assign following taxonomies to Media Library:"
843
- msgstr "Assigner les taxinomies suivantes à la Bibliothèque des Médias&nbsp;:"
844
-
845
- #: core/options-pages.php:1996 core/options-pages.php:2062
846
- #: core/options-pages.php:2146
847
- msgid "Assign Taxonomy"
848
- msgstr "Assigner la taxinomie"
849
-
850
- #: core/options-pages.php:1997 core/options-pages.php:2147
851
- msgid "Edit Taxonomy"
852
- msgstr "Modifier la taxinomie"
853
-
854
- #: core/options-pages.php:2001 core/options-pages.php:2064
855
- msgid "Delete Taxonomy"
856
- msgstr "Supprimer la taxinomie"
857
-
858
- #: core/options-pages.php:2006 core/options-pages.php:2069
859
- msgid "Labels"
860
- msgstr "Libellés"
861
-
862
- #: core/options-pages.php:2008 core/options-pages.php:2071
863
- msgid "Singular"
864
- msgstr "Singulier"
865
-
866
- #: core/options-pages.php:2009 core/options-pages.php:2072
867
- msgid "Plural"
868
- msgstr "Pluriel"
869
-
870
- #: core/options-pages.php:2010 core/options-pages.php:2073
871
- msgid "Menu Name"
872
- msgstr "Nom du menu"
873
-
874
- #: core/options-pages.php:2023 core/options-pages.php:2046
875
- #: core/options-pages.php:2086 core/options-pages.php:2150
876
- msgid "Settings"
877
- msgstr "Réglages"
878
-
879
- #: core/options-pages.php:2025 core/options-pages.php:2088
880
- msgid "Taxonomy Name"
881
- msgstr "Nom de la taxinomie"
882
-
883
- #: core/options-pages.php:2026 core/options-pages.php:2089
884
- msgid "Hierarchical"
885
- msgstr "Hiérarchique"
886
-
887
- #: core/options-pages.php:2027 core/options-pages.php:2090
888
- msgid "Column for List View"
889
- msgstr "Colonnes dans la vue en liste"
890
-
891
- #: core/options-pages.php:2028 core/options-pages.php:2048
892
- #: core/options-pages.php:2091 core/options-pages.php:2152
893
- msgid "Filter for List View"
894
- msgstr "Filtrer dans la vue en liste"
895
-
896
- #: core/options-pages.php:2029 core/options-pages.php:2049
897
- #: core/options-pages.php:2092 core/options-pages.php:2153
898
- msgid "Filter for Grid View / Media Popup"
899
- msgstr "Filtrer dans la vue en grille / Popup de média"
900
-
901
- #: core/options-pages.php:2030 core/options-pages.php:2050
902
- #: core/options-pages.php:2093 core/options-pages.php:2154
903
- msgid "Edit in Media Popup"
904
- msgstr "Modifier dans les Popups des médias"
905
-
906
- #: core/options-pages.php:2031 core/options-pages.php:2094
907
- msgid "Show in Nav Menu"
908
- msgstr "Afficher dans le menu de navigation"
909
-
910
- #: core/options-pages.php:2032 core/options-pages.php:2095
911
- msgid "Remember Terms Order (sort)"
912
- msgstr "Se souvenir de l'ordre des termes (tri)"
913
-
914
- #: core/options-pages.php:2033 core/options-pages.php:2096
915
- msgid "Show in REST"
916
- msgstr "Afficher dans REST"
917
-
918
- #: core/options-pages.php:2034 core/options-pages.php:2097
919
- msgid "Rewrite Slug"
920
- msgstr "Réécrire l’identifiant"
921
-
922
- #: core/options-pages.php:2035 core/options-pages.php:2098
923
- msgid "Slug with Front"
924
- msgstr "Identifiant dans l’URL"
925
-
926
- #: core/options-pages.php:2110
927
- msgid "Add New Taxonomy"
928
- msgstr "Ajout de nouvelle taxinomie"
929
-
930
- #: core/options-pages.php:2120
931
- msgid "Non-Media Taxonomies"
932
- msgstr "Taxinomies pour les non-médias"
933
-
934
- #: core/options-pages.php:2183
935
- msgid "Options"
936
- msgstr "Options"
937
-
938
- #: core/options-pages.php:2193 core/options-pages.php:2196
939
- msgid "Taxonomy archive pages"
940
- msgstr "Taxinomie pour les pages d'archives"
941
-
942
- #: core/options-pages.php:2197
943
- msgid "Turn on media taxonomy archive pages on the front-end"
944
- msgstr ""
945
- "Activer la taxinomie pour les page d’archives de médias sur l’interface "
946
- "publique"
947
-
948
- #: core/options-pages.php:2198
949
- msgid ""
950
- "Re-save your permalink settings after this option change to make it work."
951
- msgstr ""
952
- "Pour que cela fonctionne, enregistrez à nouveau vos réglages de permaliens "
953
- "après avoir changé cette option."
954
-
955
- #: core/options-pages.php:2204 core/options-pages.php:2207
956
- msgid "Assign all like hierarchical"
957
- msgstr "Les rendre tous comme les taxinomies hiérarchiques"
958
-
959
- #: core/options-pages.php:2208
960
- msgid ""
961
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
962
- msgstr ""
963
- "Afficher les taxinomies non-hiérarchiques comme des taxinomies hiérarchiques "
964
- "dans la vue en grille / Popup pour les médias"
965
-
966
- #: core/options-pages.php:2271
967
- msgid "Add New MIME Type"
968
- msgstr "Ajouter un type de MIME"
969
-
970
- #: core/options-pages.php:2291 core/options-pages.php:2345
971
- msgid "Extension"
972
- msgstr "Extension"
973
-
974
- #: core/options-pages.php:2292 core/options-pages.php:2346
975
- msgid "MIME Type"
976
- msgstr "Type de MIME"
977
-
978
- #: core/options-pages.php:2293 core/options-pages.php:2347
979
- msgid "Singular Label"
980
- msgstr "Libellé pour le singulier"
981
-
982
- #: core/options-pages.php:2294 core/options-pages.php:2348
983
- msgid "Plural Label"
984
- msgstr "Libellé pour le pluriel"
985
-
986
- #: core/options-pages.php:2295 core/options-pages.php:2324
987
- #: core/options-pages.php:2337 core/options-pages.php:2349
988
- msgid "Add Filter"
989
- msgstr "Ajouter un filtre"
990
-
991
- #: core/options-pages.php:2296 core/options-pages.php:2325
992
- #: core/options-pages.php:2338 core/options-pages.php:2350
993
- msgid "Allow Upload"
994
- msgstr "Autoriser la mise en ligne"
995
-
996
- #: core/options-pages.php:2326 core/options-pages.php:2339
997
- msgid "Delete MIME Type"
998
- msgstr "Supprimer le type de MIME"
999
-
1000
- #: core/options-pages.php:2415
1001
- msgid "Changelog"
1002
- msgstr "Journal des modifications"
1003
-
1004
- #: core/options-pages.php:2416
1005
- msgid "What's new in"
1006
- msgstr "Les nouveautés de la"
1007
-
1008
- #: core/options-pages.php:2416
1009
- msgid "version"
1010
- msgstr "version"
1011
-
1012
- #: core/options-pages.php:2419
1013
- msgid "More features under the hood"
1014
- msgstr "Plus de fonctionnalités sous le capot"
1015
-
1016
- #: core/options-pages.php:2421
1017
- msgid "Support"
1018
- msgstr "Support"
1019
-
1020
- #: core/options-pages.php:2422
1021
- msgid "Feel free to ask for help on"
1022
- msgstr "N’hésitez pas à demander de l’aide sur"
1023
-
1024
- #: core/options-pages.php:2422
1025
- msgid "Support is free for both versions of the plugin."
1026
- msgstr "Le support est gratuit pour les deux versions de l’extension."
1027
-
1028
- #: core/options-pages.php:2424
1029
- msgid "Plugin rating"
1030
- msgstr "Avis sur l’extension"
1031
-
1032
- #: core/options-pages.php:2425
1033
- msgid "Please"
1034
- msgstr "Merci de"
1035
-
1036
- #: core/options-pages.php:2425
1037
- msgid "vote for the plugin"
1038
- msgstr "voter pour l’extension"
1039
-
1040
- #: core/options-pages.php:2425
1041
- msgid "Thanks!"
1042
- msgstr "Merci&nbsp;!"
1043
-
1044
- #: core/options-pages.php:2427
1045
- msgid "Other plugins you may find useful"
1046
- msgstr "D’autres extensions peuvent vous être utiles"
1047
-
1048
- #: core/options-pages.php:2469
1049
- msgid "Utility"
1050
- msgstr "Outils"
1051
-
1052
- #: core/options-pages.php:2494
1053
- msgid "Rate us:"
1054
- msgstr ""
1055
-
1056
- #: core/options-pages.php:2494
1057
- msgid "Poor"
1058
- msgstr ""
1059
-
1060
- #: core/options-pages.php:2494
1061
- msgid "Works"
1062
- msgstr ""
1063
-
1064
- #: core/options-pages.php:2494
1065
- msgid "Good"
1066
- msgstr ""
1067
-
1068
- #: core/options-pages.php:2494
1069
- msgid "Great"
1070
- msgstr ""
1071
-
1072
- #: core/options-pages.php:2494
1073
- msgid "Fantastic!"
1074
- msgstr ""
1075
-
1076
- #: core/taxonomies.php:101
1077
- msgid "Media Taxonomies settings saved."
1078
- msgstr "Réglages de taxonomies média enregistrés."
1079
-
1080
- #: core/taxonomies.php:174
1081
- msgid "Media Library settings saved."
1082
- msgstr "Réglages de bibliothèque enregistrés."
1083
-
1084
- #: core/taxonomies.php:353
1085
- msgid "Filter by author"
1086
- msgstr ""
1087
-
1088
- #: core/taxonomies.php:357
1089
- msgid "All Authors"
1090
- msgstr ""
1091
-
1092
- #: core/taxonomies.php:374 core/taxonomies.php:380
1093
- #: enhanced-media-library.php:561
1094
- msgid "Filter by"
1095
- msgstr "Filtrer par"
1096
-
1097
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1098
- msgid "Not in a"
1099
- msgstr "Non présent dans"
1100
-
1101
- #: core/taxonomies.php:721
1102
- msgid "Add some"
1103
- msgstr ""
1104
-
1105
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1106
- msgid "All Uncategorized"
1107
- msgstr "Tous sans catégories"
1108
-
1109
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1110
- msgid "Reset All Filters"
1111
- msgstr "Réinitialiser tous les filtres"
1112
-
1113
- #: enhanced-media-library.php:391
1114
- msgid "More Details"
1115
- msgstr ""
1116
-
1117
- #: enhanced-media-library.php:392
1118
- msgid "Less Details"
1119
- msgstr ""
1120
-
1121
- #: enhanced-media-library.php:565
1122
- msgid "author"
1123
- msgstr ""
1124
-
1125
- #: enhanced-media-library.php:566
1126
- msgid "authors"
1127
- msgstr ""
1128
-
1129
- #: enhanced-media-library.php:569
1130
- msgid "Saved."
1131
- msgstr ""
1132
-
1133
- #: enhanced-media-library.php:570
1134
- msgid "Something went wrong."
1135
- msgstr ""
1136
-
1137
- #: enhanced-media-library.php:573
1138
- msgid "Select All"
1139
- msgstr ""
1140
-
1141
- #: enhanced-media-library.php:574
1142
- msgid "Deselect "
1143
- msgstr ""
1144
-
1145
- #: enhanced-media-library.php:603
1146
- msgid "Uploaded to post #"
1147
- msgstr "Mis en ligne sur l&rsquo;article #"
1148
-
1149
- #: enhanced-media-library.php:604
1150
- msgid "Based On"
1151
- msgstr "Basé sur"
1152
-
1153
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1154
- msgid "Media Categories"
1155
- msgstr "Catégories média"
1156
-
1157
- #: enhanced-media-library.php:674
1158
- msgid "Media Category"
1159
- msgstr "Catégorie média"
1160
-
1161
- #: enhanced-media-library.php:676
1162
- msgid "All Media Categories"
1163
- msgstr "Toutes les catégories média"
1164
-
1165
- #: enhanced-media-library.php:677
1166
- msgid "Edit Media Category"
1167
- msgstr "Modifier la catégorie média"
1168
-
1169
- #: enhanced-media-library.php:678
1170
- msgid "View Media Category"
1171
- msgstr "Voir la catégorie média"
1172
-
1173
- #: enhanced-media-library.php:679
1174
- msgid "Update Media Category"
1175
- msgstr "Mettre à jour la catégorie média"
1176
-
1177
- #: enhanced-media-library.php:680
1178
- msgid "Add New Media Category"
1179
- msgstr "Ajouter une nouvelle catégorie média"
1180
-
1181
- #: enhanced-media-library.php:681
1182
- msgid "New Media Category Name"
1183
- msgstr "Nouveau nom de la catégorie média"
1184
-
1185
- #: enhanced-media-library.php:682
1186
- msgid "Parent Media Category"
1187
- msgstr "Catégorie média parente"
1188
-
1189
- #: enhanced-media-library.php:683
1190
- msgid "Parent Media Category:"
1191
- msgstr "Catégorie média parente&nbsp;:"
1192
-
1193
- #: enhanced-media-library.php:684
1194
- msgid "Search Media Categories"
1195
- msgstr "Rechercher dans les catégories média"
1196
-
1197
- #. Plugin URI of the plugin/theme
1198
- #. Author URI of the plugin/theme
1199
- msgid "http://wpUXsolutions.com"
1200
- msgstr "http://wpUXsolutions.com"
1201
-
1202
- #. Description of the plugin/theme
1203
- msgid ""
1204
- "This plugin will be handy for those who need to manage a lot of media files."
1205
- msgstr ""
1206
- "Cette extension sera utile pour ceux qui ont besoin de gérer beaucoup de "
1207
- "fichiers média"
1208
-
1209
- #. Author of the plugin/theme
1210
- msgid "wpUXsolutions"
1211
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-he_IL.mo DELETED
Binary file
languages/enhanced-media-library-he_IL.po DELETED
@@ -1,1169 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Hebrew
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:49+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: he_IL\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "הסר"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "בטל בחירה"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "תאר תמונה זו&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "תאר וידיאו זה&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "תאר אודיו זה&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "תאר מדיה זו&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr ""
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr ""
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] ""
54
- msgstr[1] ""
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "הגדרות מדיה"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "ספריית מדיה"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "תויות מיון למדיה"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "סוגי קבצים"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "ספרית מדיה משופרת"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr ""
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr ""
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
-
109
- #: core/options-pages.php:415
110
- msgid "Thumbnail size"
111
- msgstr ""
112
-
113
- #: core/options-pages.php:417
114
- msgid "Width"
115
- msgstr ""
116
-
117
- #: core/options-pages.php:419
118
- msgid "Height"
119
- msgstr ""
120
-
121
- #: core/options-pages.php:422
122
- msgid ""
123
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
124
- msgstr ""
125
-
126
- #: core/options-pages.php:427 core/options-pages.php:428
127
- msgid "Medium size"
128
- msgstr ""
129
-
130
- #: core/options-pages.php:429 core/options-pages.php:440
131
- msgid "Max Width"
132
- msgstr ""
133
-
134
- #: core/options-pages.php:432 core/options-pages.php:443
135
- msgid "Max Height"
136
- msgstr ""
137
-
138
- #: core/options-pages.php:438 core/options-pages.php:439
139
- msgid "Large size"
140
- msgstr ""
141
-
142
- #: core/options-pages.php:456
143
- msgid "Embeds"
144
- msgstr ""
145
-
146
- #: core/options-pages.php:463
147
- msgid "Uploading Files"
148
- msgstr ""
149
-
150
- #: core/options-pages.php:470
151
- msgid "Store uploads in this folder"
152
- msgstr ""
153
-
154
- #: core/options-pages.php:474
155
- #, php-format
156
- msgid "Default is %s"
157
- msgstr ""
158
-
159
- #: core/options-pages.php:480
160
- msgid "Full URL path to files"
161
- msgstr ""
162
-
163
- #: core/options-pages.php:482
164
- msgid "Configuring this is optional. By default, it should be blank."
165
- msgstr ""
166
-
167
- #: core/options-pages.php:490
168
- msgid "Organize my uploads into month- and year-based folders"
169
- msgstr ""
170
-
171
- #: core/options-pages.php:560 core/options-pages.php:1997
172
- #: core/options-pages.php:2012 core/options-pages.php:2075
173
- #: core/options-pages.php:2147
174
- msgid "Edit"
175
- msgstr "ערוך"
176
-
177
- #: core/options-pages.php:561
178
- msgid "Close"
179
- msgstr "סגור"
180
-
181
- #: core/options-pages.php:562 core/options-pages.php:2013
182
- #: core/options-pages.php:2076
183
- msgid "View"
184
- msgstr "צפה"
185
-
186
- #: core/options-pages.php:563 core/options-pages.php:2014
187
- #: core/options-pages.php:2077
188
- msgid "Update"
189
- msgstr "עדכן"
190
-
191
- #: core/options-pages.php:564 core/options-pages.php:2015
192
- #: core/options-pages.php:2078
193
- msgid "Add New"
194
- msgstr "הוסף חדש"
195
-
196
- #: core/options-pages.php:565 core/options-pages.php:2016
197
- #: core/options-pages.php:2079
198
- msgid "New"
199
- msgstr "חדש"
200
-
201
- #: core/options-pages.php:566
202
- msgid "Name"
203
- msgstr "שם"
204
-
205
- #: core/options-pages.php:567 core/options-pages.php:2017
206
- #: core/options-pages.php:2080
207
- msgid "Parent"
208
- msgstr "הורה"
209
-
210
- #: core/options-pages.php:568 core/options-pages.php:862
211
- #: core/options-pages.php:1084 core/options-pages.php:2011
212
- #: core/options-pages.php:2074 core/taxonomies.php:381
213
- #: enhanced-media-library.php:562
214
- msgid "All"
215
- msgstr "הכל"
216
-
217
- #: core/options-pages.php:569 core/options-pages.php:2018
218
- #: core/options-pages.php:2081
219
- msgid "Search"
220
- msgstr "חיפוש"
221
-
222
- #: core/options-pages.php:571 core/options-pages.php:2062
223
- msgid "New Taxonomy"
224
- msgstr "תוית מיון חדשה"
225
-
226
- #: core/options-pages.php:573
227
- msgid "Remove Taxonomy"
228
- msgstr ""
229
-
230
- #: core/options-pages.php:574
231
- msgid "Taxonomy will be removed."
232
- msgstr ""
233
-
234
- #: core/options-pages.php:575
235
- msgid ""
236
- "Taxonomy terms (categories) will remain intact in the database. If you "
237
- "create a taxonomy with the same name in the future, its terms (categories) "
238
- "will be available again."
239
- msgstr ""
240
-
241
- #: core/options-pages.php:576
242
- msgid "Media items will remain intact."
243
- msgstr ""
244
-
245
- #: core/options-pages.php:577
246
- msgid "Are you still sure?"
247
- msgstr ""
248
-
249
- #: core/options-pages.php:578
250
- msgid "Yes, remove taxonomy"
251
- msgstr ""
252
-
253
- #: core/options-pages.php:580
254
- msgid "Duplicate"
255
- msgstr ""
256
-
257
- #: core/options-pages.php:581
258
- msgid "Taxonomy with the same name already exists. Please chose other one."
259
- msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
260
-
261
- #: core/options-pages.php:583
262
- msgid "Empty Fields"
263
- msgstr ""
264
-
265
- #: core/options-pages.php:584
266
- msgid "Wrong Taxonomy Name"
267
- msgstr ""
268
-
269
- #: core/options-pages.php:585
270
- msgid "Wrong Slug"
271
- msgstr ""
272
-
273
- #: core/options-pages.php:587
274
- msgid "Please choose Singular and Plural names for all new taxomonies."
275
- msgstr ""
276
-
277
- #: core/options-pages.php:588
278
- msgid "Please choose Singular name for all new taxomonies."
279
- msgstr ""
280
-
281
- #: core/options-pages.php:589
282
- msgid "Please choose Plural name for all new taxomonies."
283
- msgstr ""
284
-
285
- #: core/options-pages.php:591
286
- msgid ""
287
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
288
- "name please enter it manually."
289
- msgstr ""
290
-
291
- #: core/options-pages.php:592
292
- msgid ""
293
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
294
- "character ( _ ), and be 3-32 characters long."
295
- msgstr ""
296
-
297
- #: core/options-pages.php:593
298
- msgid ""
299
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
300
- "or hyphen ( - ) characters."
301
- msgstr ""
302
-
303
- #: core/options-pages.php:595 core/options-pages.php:644
304
- msgid "Ok"
305
- msgstr ""
306
-
307
- #: core/options-pages.php:596 core/options-pages.php:601
308
- #: core/options-pages.php:645 core/options-pages.php:690
309
- msgid "Cancel"
310
- msgstr ""
311
-
312
- #: core/options-pages.php:598
313
- msgid "Synchronize Now"
314
- msgstr ""
315
-
316
- #: core/options-pages.php:599 core/options-pages.php:687
317
- msgid "This operation cannot be canceled! Are you still sure?"
318
- msgstr ""
319
-
320
- #: core/options-pages.php:600
321
- msgid "Synchronize"
322
- msgstr ""
323
-
324
- #: core/options-pages.php:602
325
- msgid "Synchronizing..."
326
- msgstr ""
327
-
328
- #: core/options-pages.php:639 core/options-pages.php:2388
329
- msgid "Restore WordPress default MIME Types"
330
- msgstr ""
331
-
332
- #: core/options-pages.php:640
333
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
334
- msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
335
-
336
- #: core/options-pages.php:641
337
- msgid "Restore Defaults"
338
- msgstr ""
339
-
340
- #: core/options-pages.php:642
341
- msgid "Restoring..."
342
- msgstr ""
343
-
344
- #: core/options-pages.php:647
345
- msgid "MIME Types cannot be saved"
346
- msgstr ""
347
-
348
- #: core/options-pages.php:648
349
- msgid "Please fill into all fields."
350
- msgstr "אנא הזן את כל השדות"
351
-
352
- #: core/options-pages.php:649
353
- msgid "Duplicate extensions or MIME types. Please choose other one."
354
- msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
355
-
356
- #: core/options-pages.php:685 core/options-pages.php:853
357
- #: core/options-pages.php:1063
358
- msgid "Complete Cleanup"
359
- msgstr ""
360
-
361
- #: core/options-pages.php:686
362
- msgid ""
363
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
364
- "plugin data</strong> from the database including backups."
365
- msgstr ""
366
-
367
- #: core/options-pages.php:688
368
- msgid "Yes, delete all data"
369
- msgstr ""
370
-
371
- #: core/options-pages.php:689
372
- msgid "Cleaning..."
373
- msgstr ""
374
-
375
- #: core/options-pages.php:693 core/options-pages.php:996
376
- msgid "Unify Media Settings over Network"
377
- msgstr ""
378
-
379
- #: core/options-pages.php:696 core/options-pages.php:700
380
- #: core/options-pages.php:704
381
- msgid "will be overwritten"
382
- msgstr ""
383
-
384
- #: core/options-pages.php:706
385
- msgid "Apply"
386
- msgstr ""
387
-
388
- #: core/options-pages.php:707
389
- msgid "Applying Settings..."
390
- msgstr ""
391
-
392
- #: core/options-pages.php:746 core/options-pages.php:935
393
- msgid "Enhanced Media Library Utilities"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:756
397
- msgid "Export"
398
- msgstr ""
399
-
400
- #: core/options-pages.php:761
401
- msgid "Plugin settings to export:"
402
- msgstr ""
403
-
404
- #: core/options-pages.php:762 core/options-pages.php:789
405
- #: core/options-pages.php:829
406
- msgid "Settings > Media Library"
407
- msgstr ""
408
-
409
- #: core/options-pages.php:763 core/options-pages.php:790
410
- #: core/options-pages.php:830
411
- msgid "Settings > Media Taxonomies"
412
- msgstr ""
413
-
414
- #: core/options-pages.php:764 core/options-pages.php:791
415
- #: core/options-pages.php:831
416
- msgid "Settings > MIME Types"
417
- msgstr ""
418
-
419
- #: core/options-pages.php:768
420
- msgid ""
421
- "Use generated JSON file to import the configuration into another website."
422
- msgstr ""
423
-
424
- #: core/options-pages.php:773
425
- msgid "Export Plugin Settings"
426
- msgstr ""
427
-
428
- #: core/options-pages.php:783
429
- msgid "Import"
430
- msgstr ""
431
-
432
- #: core/options-pages.php:788
433
- msgid "Plugin settings to import:"
434
- msgstr ""
435
-
436
- #: core/options-pages.php:794
437
- msgid ""
438
- "Plugin settings will be imported from a configuration JSON file which can be "
439
- "obtained by exporting the settings on another website using the export "
440
- "button above."
441
- msgstr ""
442
-
443
- #: core/options-pages.php:795
444
- msgid ""
445
- "All plugin settings will be overridden by the import. You will have a chance "
446
- "to restore current data from an automatic backup in case you are not "
447
- "satisfied with the result of the import."
448
- msgstr ""
449
-
450
- #: core/options-pages.php:801
451
- msgid "Import Plugin Settings"
452
- msgstr ""
453
-
454
- #: core/options-pages.php:813
455
- msgid "Restore"
456
- msgstr ""
457
-
458
- #: core/options-pages.php:819
459
- msgid "No backup available at the moment."
460
- msgstr ""
461
-
462
- #: core/options-pages.php:821
463
- msgid "Backup will be created automatically before any import operation."
464
- msgstr ""
465
-
466
- #: core/options-pages.php:825
467
- msgid ""
468
- "The backup has been automatically created before the latest import operation."
469
- msgstr ""
470
-
471
- #: core/options-pages.php:828
472
- msgid "Plugin settings to restore:"
473
- msgstr ""
474
-
475
- #: core/options-pages.php:837
476
- msgid "Restore Settings from the Backup"
477
- msgstr ""
478
-
479
- #: core/options-pages.php:860 core/options-pages.php:1082
480
- msgid "What will be deleted:"
481
- msgstr ""
482
-
483
- #: core/options-pages.php:865
484
- msgid "All plugin options"
485
- msgstr ""
486
-
487
- #: core/options-pages.php:866 core/options-pages.php:1089
488
- msgid "All plugin backups stored in the database"
489
- msgstr ""
490
-
491
- #: core/options-pages.php:870 core/options-pages.php:1093
492
- msgid "What will remain intact:"
493
- msgstr ""
494
-
495
- #: core/options-pages.php:871 core/options-pages.php:1094
496
- msgid "All media items"
497
- msgstr ""
498
-
499
- #: core/options-pages.php:872 core/options-pages.php:1095
500
- msgid "All taxonomies not listed above"
501
- msgstr ""
502
-
503
- #: core/options-pages.php:875 core/options-pages.php:1098
504
- msgid ""
505
- "The plugin cannot delete itself for security reasons. Please delete it "
506
- "manually from the plugin list after the cleanup is complete."
507
- msgstr ""
508
-
509
- #: core/options-pages.php:877 core/options-pages.php:1100
510
- msgid ""
511
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
512
- "backup of your database prior to cleanup!"
513
- msgstr ""
514
-
515
- #: core/options-pages.php:882
516
- msgid "Delete All Data & Deactivate"
517
- msgstr ""
518
-
519
- #: core/options-pages.php:945
520
- msgid "Network Settings"
521
- msgstr ""
522
-
523
- #: core/options-pages.php:952 core/options-pages.php:1003
524
- msgid "No settings available. The plugin is not network activated."
525
- msgstr ""
526
-
527
- #: core/options-pages.php:963
528
- msgid "Media Settings per site"
529
- msgstr ""
530
-
531
- #: core/options-pages.php:966
532
- msgid "Enable Media Settings"
533
- msgstr ""
534
-
535
- #: core/options-pages.php:967
536
- msgid "Allow an individual site admin to edit enhanced Media Settings"
537
- msgstr ""
538
-
539
- #: core/options-pages.php:968
540
- msgid ""
541
- "Otherwise, only a network (super) admin can see the menu and edit media "
542
- "settings."
543
- msgstr ""
544
-
545
- #: core/options-pages.php:974
546
- msgid "Plugin Utilities per site"
547
- msgstr ""
548
-
549
- #: core/options-pages.php:977
550
- msgid "Enable plugin Utilities"
551
- msgstr ""
552
-
553
- #: core/options-pages.php:978
554
- msgid ""
555
- "Allow an individual site admin to import / export / restore plugin settings "
556
- "and perform the complete cleanup for a specific site"
557
- msgstr ""
558
-
559
- #: core/options-pages.php:979
560
- msgid ""
561
- "Otherwise, only a network (super) admin can see the menu and perform those "
562
- "actions."
563
- msgstr ""
564
-
565
- #: core/options-pages.php:986 core/options-pages.php:1770
566
- #: core/options-pages.php:1824 core/options-pages.php:1861
567
- #: core/options-pages.php:1905 core/options-pages.php:2113
568
- #: core/options-pages.php:2177 core/options-pages.php:2215
569
- #: core/options-pages.php:2386 enhanced-media-library.php:571
570
- msgid "Save Changes"
571
- msgstr "שמור שינויים"
572
-
573
- #: core/options-pages.php:1012 core/options-pages.php:1015
574
- msgid "Media Library Settings"
575
- msgstr ""
576
-
577
- #: core/options-pages.php:1016 core/options-pages.php:1030
578
- #: core/options-pages.php:1044
579
- msgid "Apply to ALL Network websites"
580
- msgstr ""
581
-
582
- #: core/options-pages.php:1026 core/options-pages.php:1029
583
- msgid "Media Taxonomies Settings"
584
- msgstr ""
585
-
586
- #: core/options-pages.php:1040 core/options-pages.php:1043
587
- msgid "MIME Types Settings"
588
- msgstr ""
589
-
590
- #: core/options-pages.php:1087
591
- msgid "All plugin options on every site"
592
- msgstr ""
593
-
594
- #: core/options-pages.php:1088
595
- msgid "Network settings"
596
- msgstr ""
597
-
598
- #: core/options-pages.php:1105
599
- msgid "Delete All Data & Network Deactivate"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1225
603
- msgid "Network settings saved."
604
- msgstr ""
605
-
606
- #: core/options-pages.php:1319
607
- msgid "Settings cannot be imported. Please upload a file to import settings."
608
- msgstr ""
609
-
610
- #: core/options-pages.php:1340
611
- msgid ""
612
- "Settings cannot be imported. Please upload a correct JSON file to import "
613
- "settings."
614
- msgstr ""
615
-
616
- #: core/options-pages.php:1356
617
- msgid "Plugin settings imported."
618
- msgstr ""
619
-
620
- #: core/options-pages.php:1409
621
- msgid "Plugin settings restored from the backup."
622
- msgstr ""
623
-
624
- #: core/options-pages.php:1714
625
- msgid "Filters"
626
- msgstr ""
627
-
628
- #: core/options-pages.php:1723 core/options-pages.php:1726
629
- msgid "Force filters"
630
- msgstr "כפה מסננים"
631
-
632
- #: core/options-pages.php:1727
633
- msgid "Show media filters for ANY Media Popup"
634
- msgstr ""
635
-
636
- #: core/options-pages.php:1728
637
- msgid "Try this if filters are not shown for third-party plugins or themes."
638
- msgstr ""
639
-
640
- #: core/options-pages.php:1734 core/options-pages.php:1737
641
- msgid "Filters to show"
642
- msgstr ""
643
-
644
- #: core/options-pages.php:1738
645
- msgid "Types"
646
- msgstr ""
647
-
648
- #: core/options-pages.php:1739
649
- msgid "Can be disabled for Grid Mode only"
650
- msgstr ""
651
-
652
- #: core/options-pages.php:1740
653
- msgid "Dates"
654
- msgstr ""
655
-
656
- #: core/options-pages.php:1741
657
- msgid "Authors"
658
- msgstr ""
659
-
660
- #: core/options-pages.php:1748 core/options-pages.php:1751
661
- msgid "Show count"
662
- msgstr ""
663
-
664
- #: core/options-pages.php:1752
665
- msgid "Show item count per category for media filters"
666
- msgstr ""
667
-
668
- #: core/options-pages.php:1753
669
- msgid ""
670
- "Disable this if it slows down your site admin. The problem is resolved in "
671
- "the upcoming major update v3.0"
672
- msgstr ""
673
-
674
- #: core/options-pages.php:1759 core/options-pages.php:1762
675
- msgid "Include children"
676
- msgstr ""
677
-
678
- #: core/options-pages.php:1763
679
- msgid "Show media items of child media categories as a result of filtering"
680
- msgstr ""
681
-
682
- #: core/options-pages.php:1780
683
- msgid "Order"
684
- msgstr ""
685
-
686
- #: core/options-pages.php:1789
687
- msgid "Order media items by"
688
- msgstr ""
689
-
690
- #: core/options-pages.php:1792
691
- msgid "Date"
692
- msgstr ""
693
-
694
- #: core/options-pages.php:1793 core/options-pages.php:1853
695
- msgid "Title"
696
- msgstr ""
697
-
698
- #: core/options-pages.php:1794
699
- msgid "Custom Order"
700
- msgstr ""
701
-
702
- #: core/options-pages.php:1796 core/options-pages.php:1808
703
- msgid "For media library and media popups"
704
- msgstr ""
705
-
706
- #: core/options-pages.php:1797
707
- msgid ""
708
- "Allows changing media items order by drag and drop with Custom Order value."
709
- msgstr ""
710
-
711
- #: core/options-pages.php:1802
712
- msgid "Sort order"
713
- msgstr ""
714
-
715
- #: core/options-pages.php:1805
716
- msgid "Ascending"
717
- msgstr ""
718
-
719
- #: core/options-pages.php:1806
720
- msgid "Descending"
721
- msgstr ""
722
-
723
- #: core/options-pages.php:1813 core/options-pages.php:1816
724
- msgid "Natural sort order"
725
- msgstr ""
726
-
727
- #: core/options-pages.php:1817
728
- msgid "Apply human-friendly sort order to Media Library and Galleries"
729
- msgstr ""
730
-
731
- #: core/options-pages.php:1818
732
- msgid ""
733
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
734
- "3, abc-11, abc-2]"
735
- msgstr ""
736
-
737
- #: core/options-pages.php:1831
738
- msgid "Grid Mode"
739
- msgstr ""
740
-
741
- #: core/options-pages.php:1840 core/options-pages.php:1843
742
- msgid "Show caption"
743
- msgstr ""
744
-
745
- #: core/options-pages.php:1844
746
- msgid "Add text caption for media item thumbnails"
747
- msgstr ""
748
-
749
- #: core/options-pages.php:1850
750
- msgid "Caption type"
751
- msgstr ""
752
-
753
- #: core/options-pages.php:1854
754
- msgid "Filename"
755
- msgstr ""
756
-
757
- #: core/options-pages.php:1855
758
- msgid "Caption"
759
- msgstr ""
760
-
761
- #: core/options-pages.php:1868
762
- msgid "Media Shortcodes"
763
- msgstr ""
764
-
765
- #: core/options-pages.php:1877 core/options-pages.php:1880
766
- msgid "Enhanced media shortcodes"
767
- msgstr ""
768
-
769
- #: core/options-pages.php:1881
770
- msgid ""
771
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
772
- "upload date, and media items number limit"
773
- msgstr ""
774
-
775
- #: core/options-pages.php:1882
776
- msgid "Gallery example:"
777
- msgstr ""
778
-
779
- #: core/options-pages.php:1883
780
- msgid "Audio playlist example:"
781
- msgstr ""
782
-
783
- #: core/options-pages.php:1884
784
- msgid "Video playlist example:"
785
- msgstr ""
786
-
787
- #: core/options-pages.php:1888
788
- msgid "Warning"
789
- msgstr ""
790
-
791
- #: core/options-pages.php:1891
792
- #, php-format
793
- msgid ""
794
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
795
- "\">Learn more</a>."
796
- msgstr ""
797
-
798
- #: core/options-pages.php:1896
799
- #, php-format
800
- msgid ""
801
- "Please check out your gallery front-end and back-end functionality once this "
802
- "option activated. If you find an issue please inform plugin authors at %s or "
803
- "%s."
804
- msgstr ""
805
-
806
- #: core/options-pages.php:1977 core/options-pages.php:2124
807
- msgid "Assign following taxonomies to Media Library:"
808
- msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
809
-
810
- #: core/options-pages.php:1996 core/options-pages.php:2062
811
- #: core/options-pages.php:2146
812
- msgid "Assign Taxonomy"
813
- msgstr "הקצא תוית מיון"
814
-
815
- #: core/options-pages.php:1997 core/options-pages.php:2147
816
- msgid "Edit Taxonomy"
817
- msgstr "ערוך תוית מיון"
818
-
819
- #: core/options-pages.php:2001 core/options-pages.php:2064
820
- msgid "Delete Taxonomy"
821
- msgstr "מחק תוית מיון"
822
-
823
- #: core/options-pages.php:2006 core/options-pages.php:2069
824
- msgid "Labels"
825
- msgstr "תויות"
826
-
827
- #: core/options-pages.php:2008 core/options-pages.php:2071
828
- msgid "Singular"
829
- msgstr "יחיד"
830
-
831
- #: core/options-pages.php:2009 core/options-pages.php:2072
832
- msgid "Plural"
833
- msgstr "רבים"
834
-
835
- #: core/options-pages.php:2010 core/options-pages.php:2073
836
- msgid "Menu Name"
837
- msgstr "שם התפריט"
838
-
839
- #: core/options-pages.php:2023 core/options-pages.php:2046
840
- #: core/options-pages.php:2086 core/options-pages.php:2150
841
- msgid "Settings"
842
- msgstr "הגדרות"
843
-
844
- #: core/options-pages.php:2025 core/options-pages.php:2088
845
- msgid "Taxonomy Name"
846
- msgstr "שם תוית המיון"
847
-
848
- #: core/options-pages.php:2026 core/options-pages.php:2089
849
- msgid "Hierarchical"
850
- msgstr "היררכי"
851
-
852
- #: core/options-pages.php:2027 core/options-pages.php:2090
853
- msgid "Column for List View"
854
- msgstr ""
855
-
856
- #: core/options-pages.php:2028 core/options-pages.php:2048
857
- #: core/options-pages.php:2091 core/options-pages.php:2152
858
- msgid "Filter for List View"
859
- msgstr ""
860
-
861
- #: core/options-pages.php:2029 core/options-pages.php:2049
862
- #: core/options-pages.php:2092 core/options-pages.php:2153
863
- msgid "Filter for Grid View / Media Popup"
864
- msgstr ""
865
-
866
- #: core/options-pages.php:2030 core/options-pages.php:2050
867
- #: core/options-pages.php:2093 core/options-pages.php:2154
868
- msgid "Edit in Media Popup"
869
- msgstr "עריכה בחלון מדיה"
870
-
871
- #: core/options-pages.php:2031 core/options-pages.php:2094
872
- msgid "Show in Nav Menu"
873
- msgstr "הצג בתפריט הניווט"
874
-
875
- #: core/options-pages.php:2032 core/options-pages.php:2095
876
- msgid "Remember Terms Order (sort)"
877
- msgstr ""
878
-
879
- #: core/options-pages.php:2033 core/options-pages.php:2096
880
- msgid "Show in REST"
881
- msgstr ""
882
-
883
- #: core/options-pages.php:2034 core/options-pages.php:2097
884
- msgid "Rewrite Slug"
885
- msgstr "שכתב סלוגן"
886
-
887
- #: core/options-pages.php:2035 core/options-pages.php:2098
888
- msgid "Slug with Front"
889
- msgstr "סלוגן עם הקדמה"
890
-
891
- #: core/options-pages.php:2110
892
- msgid "Add New Taxonomy"
893
- msgstr "הוסף תוית מיון חדשה"
894
-
895
- #: core/options-pages.php:2120
896
- msgid "Non-Media Taxonomies"
897
- msgstr "תויות מיון ללא-מדיה"
898
-
899
- #: core/options-pages.php:2183
900
- msgid "Options"
901
- msgstr "אפשרויות"
902
-
903
- #: core/options-pages.php:2193 core/options-pages.php:2196
904
- msgid "Taxonomy archive pages"
905
- msgstr "ארכיון עמודי תויות מיון"
906
-
907
- #: core/options-pages.php:2197
908
- msgid "Turn on media taxonomy archive pages on the front-end"
909
- msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
910
-
911
- #: core/options-pages.php:2198
912
- msgid ""
913
- "Re-save your permalink settings after this option change to make it work."
914
- msgstr ""
915
- "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
916
-
917
- #: core/options-pages.php:2204 core/options-pages.php:2207
918
- msgid "Assign all like hierarchical"
919
- msgstr "הקצא הכל באופן היררכי"
920
-
921
- #: core/options-pages.php:2208
922
- msgid ""
923
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
924
- msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
925
-
926
- #: core/options-pages.php:2271
927
- msgid "Add New MIME Type"
928
- msgstr "הוסף סוג קובץ חדש"
929
-
930
- #: core/options-pages.php:2291 core/options-pages.php:2345
931
- msgid "Extension"
932
- msgstr "הרחבה"
933
-
934
- #: core/options-pages.php:2292 core/options-pages.php:2346
935
- msgid "MIME Type"
936
- msgstr "סוג קובץ (MIME Type)"
937
-
938
- #: core/options-pages.php:2293 core/options-pages.php:2347
939
- msgid "Singular Label"
940
- msgstr "תוית יחידה"
941
-
942
- #: core/options-pages.php:2294 core/options-pages.php:2348
943
- msgid "Plural Label"
944
- msgstr "תויות רבות"
945
-
946
- #: core/options-pages.php:2295 core/options-pages.php:2324
947
- #: core/options-pages.php:2337 core/options-pages.php:2349
948
- msgid "Add Filter"
949
- msgstr "הוסף מסנן"
950
-
951
- #: core/options-pages.php:2296 core/options-pages.php:2325
952
- #: core/options-pages.php:2338 core/options-pages.php:2350
953
- msgid "Allow Upload"
954
- msgstr "אפשר העלאה"
955
-
956
- #: core/options-pages.php:2326 core/options-pages.php:2339
957
- msgid "Delete MIME Type"
958
- msgstr "מחק סוג קובץ"
959
-
960
- #: core/options-pages.php:2415
961
- msgid "Changelog"
962
- msgstr ""
963
-
964
- #: core/options-pages.php:2416
965
- msgid "What's new in"
966
- msgstr ""
967
-
968
- #: core/options-pages.php:2416
969
- msgid "version"
970
- msgstr ""
971
-
972
- #: core/options-pages.php:2419
973
- msgid "More features under the hood"
974
- msgstr ""
975
-
976
- #: core/options-pages.php:2421
977
- msgid "Support"
978
- msgstr ""
979
-
980
- #: core/options-pages.php:2422
981
- msgid "Feel free to ask for help on"
982
- msgstr ""
983
-
984
- #: core/options-pages.php:2422
985
- msgid "Support is free for both versions of the plugin."
986
- msgstr ""
987
-
988
- #: core/options-pages.php:2424
989
- msgid "Plugin rating"
990
- msgstr ""
991
-
992
- #: core/options-pages.php:2425
993
- msgid "Please"
994
- msgstr ""
995
-
996
- #: core/options-pages.php:2425
997
- msgid "vote for the plugin"
998
- msgstr ""
999
-
1000
- #: core/options-pages.php:2425
1001
- msgid "Thanks!"
1002
- msgstr ""
1003
-
1004
- #: core/options-pages.php:2427
1005
- msgid "Other plugins you may find useful"
1006
- msgstr ""
1007
-
1008
- #: core/options-pages.php:2469
1009
- msgid "Utility"
1010
- msgstr ""
1011
-
1012
- #: core/options-pages.php:2494
1013
- msgid "Rate us:"
1014
- msgstr ""
1015
-
1016
- #: core/options-pages.php:2494
1017
- msgid "Poor"
1018
- msgstr ""
1019
-
1020
- #: core/options-pages.php:2494
1021
- msgid "Works"
1022
- msgstr ""
1023
-
1024
- #: core/options-pages.php:2494
1025
- msgid "Good"
1026
- msgstr ""
1027
-
1028
- #: core/options-pages.php:2494
1029
- msgid "Great"
1030
- msgstr ""
1031
-
1032
- #: core/options-pages.php:2494
1033
- msgid "Fantastic!"
1034
- msgstr ""
1035
-
1036
- #: core/taxonomies.php:101
1037
- msgid "Media Taxonomies settings saved."
1038
- msgstr ""
1039
-
1040
- #: core/taxonomies.php:174
1041
- msgid "Media Library settings saved."
1042
- msgstr ""
1043
-
1044
- #: core/taxonomies.php:353
1045
- msgid "Filter by author"
1046
- msgstr ""
1047
-
1048
- #: core/taxonomies.php:357
1049
- msgid "All Authors"
1050
- msgstr ""
1051
-
1052
- #: core/taxonomies.php:374 core/taxonomies.php:380
1053
- #: enhanced-media-library.php:561
1054
- msgid "Filter by"
1055
- msgstr "סנן על-פי"
1056
-
1057
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1058
- msgid "Not in a"
1059
- msgstr ""
1060
-
1061
- #: core/taxonomies.php:721
1062
- msgid "Add some"
1063
- msgstr ""
1064
-
1065
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1066
- msgid "All Uncategorized"
1067
- msgstr "הכל לא ממויין"
1068
-
1069
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1070
- msgid "Reset All Filters"
1071
- msgstr "אפס את כל המסננים"
1072
-
1073
- #: enhanced-media-library.php:391
1074
- msgid "More Details"
1075
- msgstr ""
1076
-
1077
- #: enhanced-media-library.php:392
1078
- msgid "Less Details"
1079
- msgstr ""
1080
-
1081
- #: enhanced-media-library.php:565
1082
- msgid "author"
1083
- msgstr ""
1084
-
1085
- #: enhanced-media-library.php:566
1086
- msgid "authors"
1087
- msgstr ""
1088
-
1089
- #: enhanced-media-library.php:569
1090
- msgid "Saved."
1091
- msgstr ""
1092
-
1093
- #: enhanced-media-library.php:570
1094
- msgid "Something went wrong."
1095
- msgstr "משהו השתבש."
1096
-
1097
- #: enhanced-media-library.php:573
1098
- msgid "Select All"
1099
- msgstr "בחר הכל"
1100
-
1101
- #: enhanced-media-library.php:574
1102
- msgid "Deselect "
1103
- msgstr ""
1104
-
1105
- #: enhanced-media-library.php:603
1106
- msgid "Uploaded to post #"
1107
- msgstr ""
1108
-
1109
- #: enhanced-media-library.php:604
1110
- msgid "Based On"
1111
- msgstr ""
1112
-
1113
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1114
- msgid "Media Categories"
1115
- msgstr ""
1116
-
1117
- #: enhanced-media-library.php:674
1118
- msgid "Media Category"
1119
- msgstr ""
1120
-
1121
- #: enhanced-media-library.php:676
1122
- msgid "All Media Categories"
1123
- msgstr ""
1124
-
1125
- #: enhanced-media-library.php:677
1126
- msgid "Edit Media Category"
1127
- msgstr ""
1128
-
1129
- #: enhanced-media-library.php:678
1130
- msgid "View Media Category"
1131
- msgstr ""
1132
-
1133
- #: enhanced-media-library.php:679
1134
- msgid "Update Media Category"
1135
- msgstr ""
1136
-
1137
- #: enhanced-media-library.php:680
1138
- msgid "Add New Media Category"
1139
- msgstr ""
1140
-
1141
- #: enhanced-media-library.php:681
1142
- msgid "New Media Category Name"
1143
- msgstr ""
1144
-
1145
- #: enhanced-media-library.php:682
1146
- msgid "Parent Media Category"
1147
- msgstr ""
1148
-
1149
- #: enhanced-media-library.php:683
1150
- msgid "Parent Media Category:"
1151
- msgstr ""
1152
-
1153
- #: enhanced-media-library.php:684
1154
- msgid "Search Media Categories"
1155
- msgstr ""
1156
-
1157
- #. Plugin URI of the plugin/theme
1158
- #. Author URI of the plugin/theme
1159
- msgid "http://wpUXsolutions.com"
1160
- msgstr ""
1161
-
1162
- #. Description of the plugin/theme
1163
- msgid ""
1164
- "This plugin will be handy for those who need to manage a lot of media files."
1165
- msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם קבצים רבים."
1166
-
1167
- #. Author of the plugin/theme
1168
- msgid "wpUXsolutions"
1169
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-it_IT.mo DELETED
Binary file
languages/enhanced-media-library-it_IT.po DELETED
@@ -1,1207 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Italian
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:50+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: it\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 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "Rimuovi"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "Deseleziona"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "Didascalia per questa immagine&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "Descrivi questo video&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "Descrivi questo file audio&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "Descrivi questo file multimediale&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr "Impostazioni tipi MIME ripristinate."
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr "Impostazioni tipi MIME salvate."
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] " <span class=\"count\">(%s)</span>"
54
- msgstr[1] " <span class=\"count\">(%s)</span>"
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "Impostazioni Media"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "Libreria Media"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "Tassonomie Media"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "Tipi MIME"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "Generale"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "Non disponi dei permessi sufficienti per accedere a questa pagina."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "Dimensioni immagine"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
- "Le misure qui sotto determinano le dimensioni massime in pixel da utilizzare "
109
- "quando si aggiunge un'immagine alla Libreria Media."
110
-
111
- #: core/options-pages.php:415
112
- msgid "Thumbnail size"
113
- msgstr "Dimensioni della miniatura"
114
-
115
- #: core/options-pages.php:417
116
- msgid "Width"
117
- msgstr "Larghezza"
118
-
119
- #: core/options-pages.php:419
120
- msgid "Height"
121
- msgstr "Altezza"
122
-
123
- #: core/options-pages.php:422
124
- msgid ""
125
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
126
- msgstr ""
127
- "Ritaglia la miniatura alle dimensioni esatte (solitamente le miniature sono "
128
- "proporzionali)"
129
-
130
- #: core/options-pages.php:427 core/options-pages.php:428
131
- msgid "Medium size"
132
- msgstr "Dimensioni medie"
133
-
134
- #: core/options-pages.php:429 core/options-pages.php:440
135
- msgid "Max Width"
136
- msgstr "Larghezza massima"
137
-
138
- #: core/options-pages.php:432 core/options-pages.php:443
139
- msgid "Max Height"
140
- msgstr "Altezza massima"
141
-
142
- #: core/options-pages.php:438 core/options-pages.php:439
143
- msgid "Large size"
144
- msgstr "Dimensioni grandi"
145
-
146
- #: core/options-pages.php:456
147
- msgid "Embeds"
148
- msgstr "Incorporamenti"
149
-
150
- #: core/options-pages.php:463
151
- msgid "Uploading Files"
152
- msgstr "Caricamento file"
153
-
154
- #: core/options-pages.php:470
155
- msgid "Store uploads in this folder"
156
- msgstr "Caricamento file"
157
-
158
- #: core/options-pages.php:474
159
- #, php-format
160
- msgid "Default is %s"
161
- msgstr "Il valore di default &egrave; %s"
162
-
163
- #: core/options-pages.php:480
164
- msgid "Full URL path to files"
165
- msgstr "URL completo dei file"
166
-
167
- #: core/options-pages.php:482
168
- msgid "Configuring this is optional. By default, it should be blank."
169
- msgstr ""
170
- "La configurazione &egrave; opzionale. Per impostazione predefinita, dovrebbe "
171
- "essere vuoto."
172
-
173
- #: core/options-pages.php:490
174
- msgid "Organize my uploads into month- and year-based folders"
175
- msgstr "Organizza gli upload in cartelle sulla base di mese e anno"
176
-
177
- #: core/options-pages.php:560 core/options-pages.php:1997
178
- #: core/options-pages.php:2012 core/options-pages.php:2075
179
- #: core/options-pages.php:2147
180
- msgid "Edit"
181
- msgstr "Modifica"
182
-
183
- #: core/options-pages.php:561
184
- msgid "Close"
185
- msgstr "Chiudi"
186
-
187
- #: core/options-pages.php:562 core/options-pages.php:2013
188
- #: core/options-pages.php:2076
189
- msgid "View"
190
- msgstr "Visualizza"
191
-
192
- #: core/options-pages.php:563 core/options-pages.php:2014
193
- #: core/options-pages.php:2077
194
- msgid "Update"
195
- msgstr "Aggiorna"
196
-
197
- #: core/options-pages.php:564 core/options-pages.php:2015
198
- #: core/options-pages.php:2078
199
- msgid "Add New"
200
- msgstr "Aggiungi nuovo"
201
-
202
- #: core/options-pages.php:565 core/options-pages.php:2016
203
- #: core/options-pages.php:2079
204
- msgid "New"
205
- msgstr "Nuovo"
206
-
207
- #: core/options-pages.php:566
208
- msgid "Name"
209
- msgstr "Nome"
210
-
211
- #: core/options-pages.php:567 core/options-pages.php:2017
212
- #: core/options-pages.php:2080
213
- msgid "Parent"
214
- msgstr "Genitore"
215
-
216
- #: core/options-pages.php:568 core/options-pages.php:862
217
- #: core/options-pages.php:1084 core/options-pages.php:2011
218
- #: core/options-pages.php:2074 core/taxonomies.php:381
219
- #: enhanced-media-library.php:562
220
- msgid "All"
221
- msgstr "Tutto"
222
-
223
- #: core/options-pages.php:569 core/options-pages.php:2018
224
- #: core/options-pages.php:2081
225
- msgid "Search"
226
- msgstr "Cerca"
227
-
228
- #: core/options-pages.php:571 core/options-pages.php:2062
229
- msgid "New Taxonomy"
230
- msgstr "Nuova tassonomia"
231
-
232
- #: core/options-pages.php:573
233
- msgid "Remove Taxonomy"
234
- msgstr "Elimina tassonomia"
235
-
236
- #: core/options-pages.php:574
237
- msgid "Taxonomy will be removed."
238
- msgstr "La tassonomia verr&agrave; rimossa."
239
-
240
- #: core/options-pages.php:575
241
- msgid ""
242
- "Taxonomy terms (categories) will remain intact in the database. If you "
243
- "create a taxonomy with the same name in the future, its terms (categories) "
244
- "will be available again."
245
- msgstr ""
246
- "I termini (categorie) di questa tassonomia rimarranno intatti nel database. "
247
- "Se in futuro verr&agrave; creata una tassonomia con lo stesso nome, i suoi "
248
- "termini (categorie) saranno nuovamente disponibili."
249
-
250
- #: core/options-pages.php:576
251
- msgid "Media items will remain intact."
252
- msgstr "Gli elementi Media rimarranno invariati."
253
-
254
- #: core/options-pages.php:577
255
- msgid "Are you still sure?"
256
- msgstr "Sei ancora sicuro?"
257
-
258
- #: core/options-pages.php:578
259
- msgid "Yes, remove taxonomy"
260
- msgstr "S&igrave;, rimuovi la tassonomia"
261
-
262
- #: core/options-pages.php:580
263
- msgid "Duplicate"
264
- msgstr "Doppione"
265
-
266
- #: core/options-pages.php:581
267
- msgid "Taxonomy with the same name already exists. Please chose other one."
268
- msgstr ""
269
- "Una tassonomia con questo nome esiste gi&agrave;. Si prega di sceglierne un "
270
- "altro."
271
-
272
- #: core/options-pages.php:583
273
- msgid "Empty Fields"
274
- msgstr "Campi vuoti"
275
-
276
- #: core/options-pages.php:584
277
- msgid "Wrong Taxonomy Name"
278
- msgstr ""
279
-
280
- #: core/options-pages.php:585
281
- msgid "Wrong Slug"
282
- msgstr ""
283
-
284
- #: core/options-pages.php:587
285
- msgid "Please choose Singular and Plural names for all new taxomonies."
286
- msgstr ""
287
- "Si prega di scegliere i nomi per il singolare e plurale per tutte le nuove "
288
- "tassonomie."
289
-
290
- #: core/options-pages.php:588
291
- msgid "Please choose Singular name for all new taxomonies."
292
- msgstr ""
293
-
294
- #: core/options-pages.php:589
295
- msgid "Please choose Plural name for all new taxomonies."
296
- msgstr ""
297
-
298
- #: core/options-pages.php:591
299
- msgid ""
300
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
301
- "name please enter it manually."
302
- msgstr ""
303
-
304
- #: core/options-pages.php:592
305
- msgid ""
306
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
307
- "character ( _ ), and be 3-32 characters long."
308
- msgstr ""
309
-
310
- #: core/options-pages.php:593
311
- msgid ""
312
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
313
- "or hyphen ( - ) characters."
314
- msgstr ""
315
-
316
- #: core/options-pages.php:595 core/options-pages.php:644
317
- msgid "Ok"
318
- msgstr "Ok"
319
-
320
- #: core/options-pages.php:596 core/options-pages.php:601
321
- #: core/options-pages.php:645 core/options-pages.php:690
322
- msgid "Cancel"
323
- msgstr "Annulla"
324
-
325
- #: core/options-pages.php:598
326
- msgid "Synchronize Now"
327
- msgstr "Sincronizza ora"
328
-
329
- #: core/options-pages.php:599 core/options-pages.php:687
330
- msgid "This operation cannot be canceled! Are you still sure?"
331
- msgstr " Questa operazione non può essere annullata! Sei sempre sicuro?"
332
-
333
- #: core/options-pages.php:600
334
- msgid "Synchronize"
335
- msgstr "Sincronizza"
336
-
337
- #: core/options-pages.php:602
338
- msgid "Synchronizing..."
339
- msgstr "Sincronizzazione..."
340
-
341
- #: core/options-pages.php:639 core/options-pages.php:2388
342
- msgid "Restore WordPress default MIME Types"
343
- msgstr "Ripristina i tipi MIME predefiniti di WordPress"
344
-
345
- #: core/options-pages.php:640
346
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
347
- msgstr ""
348
- "Attenzione! Tutti i tuoi tipi MIME personalizzati verranno eliminati con "
349
- "questa operazione."
350
-
351
- #: core/options-pages.php:641
352
- msgid "Restore Defaults"
353
- msgstr ""
354
-
355
- #: core/options-pages.php:642
356
- msgid "Restoring..."
357
- msgstr ""
358
-
359
- #: core/options-pages.php:647
360
- msgid "MIME Types cannot be saved"
361
- msgstr ""
362
-
363
- #: core/options-pages.php:648
364
- msgid "Please fill into all fields."
365
- msgstr "Si prega di compilare in tutti i campi."
366
-
367
- #: core/options-pages.php:649
368
- msgid "Duplicate extensions or MIME types. Please choose other one."
369
- msgstr "Estensione o tipo MIME duplicato. Si prega di sceglierne un altro."
370
-
371
- #: core/options-pages.php:685 core/options-pages.php:853
372
- #: core/options-pages.php:1063
373
- msgid "Complete Cleanup"
374
- msgstr "Pulizia completa"
375
-
376
- #: core/options-pages.php:686
377
- msgid ""
378
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
379
- "plugin data</strong> from the database including backups."
380
- msgstr ""
381
- "Stai per <strong style=\"text-transform:uppercase\">eliminare tutti i dati "
382
- "del plugin</strong> dal database inclusi i backup."
383
-
384
- #: core/options-pages.php:688
385
- msgid "Yes, delete all data"
386
- msgstr "S&igrave;, cancella tutti i dati"
387
-
388
- #: core/options-pages.php:689
389
- msgid "Cleaning..."
390
- msgstr "Pulizia in corso..."
391
-
392
- #: core/options-pages.php:693 core/options-pages.php:996
393
- msgid "Unify Media Settings over Network"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:696 core/options-pages.php:700
397
- #: core/options-pages.php:704
398
- msgid "will be overwritten"
399
- msgstr ""
400
-
401
- #: core/options-pages.php:706
402
- msgid "Apply"
403
- msgstr ""
404
-
405
- #: core/options-pages.php:707
406
- msgid "Applying Settings..."
407
- msgstr ""
408
-
409
- #: core/options-pages.php:746 core/options-pages.php:935
410
- msgid "Enhanced Media Library Utilities"
411
- msgstr ""
412
-
413
- #: core/options-pages.php:756
414
- msgid "Export"
415
- msgstr "Esporta"
416
-
417
- #: core/options-pages.php:761
418
- msgid "Plugin settings to export:"
419
- msgstr ""
420
-
421
- #: core/options-pages.php:762 core/options-pages.php:789
422
- #: core/options-pages.php:829
423
- msgid "Settings > Media Library"
424
- msgstr ""
425
-
426
- #: core/options-pages.php:763 core/options-pages.php:790
427
- #: core/options-pages.php:830
428
- msgid "Settings > Media Taxonomies"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:764 core/options-pages.php:791
432
- #: core/options-pages.php:831
433
- msgid "Settings > MIME Types"
434
- msgstr ""
435
-
436
- #: core/options-pages.php:768
437
- msgid ""
438
- "Use generated JSON file to import the configuration into another website."
439
- msgstr ""
440
-
441
- #: core/options-pages.php:773
442
- msgid "Export Plugin Settings"
443
- msgstr "Esporta le impostazioni del plugin"
444
-
445
- #: core/options-pages.php:783
446
- msgid "Import"
447
- msgstr "Importa"
448
-
449
- #: core/options-pages.php:788
450
- msgid "Plugin settings to import:"
451
- msgstr ""
452
-
453
- #: core/options-pages.php:794
454
- msgid ""
455
- "Plugin settings will be imported from a configuration JSON file which can be "
456
- "obtained by exporting the settings on another website using the export "
457
- "button above."
458
- msgstr ""
459
-
460
- #: core/options-pages.php:795
461
- msgid ""
462
- "All plugin settings will be overridden by the import. You will have a chance "
463
- "to restore current data from an automatic backup in case you are not "
464
- "satisfied with the result of the import."
465
- msgstr ""
466
- "Tutte le impostazioni del plugin saranno sovrascritte dall'importazione. "
467
- "Avrete la possibilità di ripristinare le impostazioni correnti da un backup "
468
- "automatico nel caso in cui non sarete soddisfatti del risultato "
469
- "dell'importazione."
470
-
471
- #: core/options-pages.php:801
472
- msgid "Import Plugin Settings"
473
- msgstr "Importa le impostazioni del plugin"
474
-
475
- #: core/options-pages.php:813
476
- msgid "Restore"
477
- msgstr "Ripristina"
478
-
479
- #: core/options-pages.php:819
480
- msgid "No backup available at the moment."
481
- msgstr "Nessun backup disponibile attualmente."
482
-
483
- #: core/options-pages.php:821
484
- msgid "Backup will be created automatically before any import operation."
485
- msgstr ""
486
- "Il backup verr&agrave; creato automaticamente prima di qualsiasi operazione "
487
- "di importazione."
488
-
489
- #: core/options-pages.php:825
490
- msgid ""
491
- "The backup has been automatically created before the latest import operation."
492
- msgstr ""
493
- "Il backup &egrave; stato creato automaticamente prima dell'ultima operazione "
494
- "di importazione."
495
-
496
- #: core/options-pages.php:828
497
- msgid "Plugin settings to restore:"
498
- msgstr ""
499
-
500
- #: core/options-pages.php:837
501
- msgid "Restore Settings from the Backup"
502
- msgstr "Ripristina le impostazioni dal backup"
503
-
504
- #: core/options-pages.php:860 core/options-pages.php:1082
505
- msgid "What will be deleted:"
506
- msgstr "Cosa sar&agrave; cancellato:"
507
-
508
- #: core/options-pages.php:865
509
- msgid "All plugin options"
510
- msgstr "Tutte le opzioni del plugin"
511
-
512
- #: core/options-pages.php:866 core/options-pages.php:1089
513
- msgid "All plugin backups stored in the database"
514
- msgstr ""
515
-
516
- #: core/options-pages.php:870 core/options-pages.php:1093
517
- msgid "What will remain intact:"
518
- msgstr "Cosa rester&agrave; invariato:"
519
-
520
- #: core/options-pages.php:871 core/options-pages.php:1094
521
- msgid "All media items"
522
- msgstr "Tutti gli elementi media"
523
-
524
- #: core/options-pages.php:872 core/options-pages.php:1095
525
- msgid "All taxonomies not listed above"
526
- msgstr " Tutte le tassonomie non elencate sopra"
527
-
528
- #: core/options-pages.php:875 core/options-pages.php:1098
529
- msgid ""
530
- "The plugin cannot delete itself for security reasons. Please delete it "
531
- "manually from the plugin list after the cleanup is complete."
532
- msgstr ""
533
-
534
- #: core/options-pages.php:877 core/options-pages.php:1100
535
- msgid ""
536
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
537
- "backup of your database prior to cleanup!"
538
- msgstr ""
539
-
540
- #: core/options-pages.php:882
541
- msgid "Delete All Data & Deactivate"
542
- msgstr "Elimina tutti i dati e disattiva il plugin"
543
-
544
- #: core/options-pages.php:945
545
- msgid "Network Settings"
546
- msgstr ""
547
-
548
- #: core/options-pages.php:952 core/options-pages.php:1003
549
- msgid "No settings available. The plugin is not network activated."
550
- msgstr ""
551
-
552
- #: core/options-pages.php:963
553
- msgid "Media Settings per site"
554
- msgstr ""
555
-
556
- #: core/options-pages.php:966
557
- msgid "Enable Media Settings"
558
- msgstr ""
559
-
560
- #: core/options-pages.php:967
561
- msgid "Allow an individual site admin to edit enhanced Media Settings"
562
- msgstr ""
563
-
564
- #: core/options-pages.php:968
565
- msgid ""
566
- "Otherwise, only a network (super) admin can see the menu and edit media "
567
- "settings."
568
- msgstr ""
569
-
570
- #: core/options-pages.php:974
571
- msgid "Plugin Utilities per site"
572
- msgstr ""
573
-
574
- #: core/options-pages.php:977
575
- msgid "Enable plugin Utilities"
576
- msgstr ""
577
-
578
- #: core/options-pages.php:978
579
- msgid ""
580
- "Allow an individual site admin to import / export / restore plugin settings "
581
- "and perform the complete cleanup for a specific site"
582
- msgstr ""
583
-
584
- #: core/options-pages.php:979
585
- msgid ""
586
- "Otherwise, only a network (super) admin can see the menu and perform those "
587
- "actions."
588
- msgstr ""
589
-
590
- #: core/options-pages.php:986 core/options-pages.php:1770
591
- #: core/options-pages.php:1824 core/options-pages.php:1861
592
- #: core/options-pages.php:1905 core/options-pages.php:2113
593
- #: core/options-pages.php:2177 core/options-pages.php:2215
594
- #: core/options-pages.php:2386 enhanced-media-library.php:571
595
- msgid "Save Changes"
596
- msgstr "Salva le modifiche"
597
-
598
- #: core/options-pages.php:1012 core/options-pages.php:1015
599
- msgid "Media Library Settings"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1016 core/options-pages.php:1030
603
- #: core/options-pages.php:1044
604
- msgid "Apply to ALL Network websites"
605
- msgstr ""
606
-
607
- #: core/options-pages.php:1026 core/options-pages.php:1029
608
- msgid "Media Taxonomies Settings"
609
- msgstr ""
610
-
611
- #: core/options-pages.php:1040 core/options-pages.php:1043
612
- msgid "MIME Types Settings"
613
- msgstr ""
614
-
615
- #: core/options-pages.php:1087
616
- msgid "All plugin options on every site"
617
- msgstr ""
618
-
619
- #: core/options-pages.php:1088
620
- msgid "Network settings"
621
- msgstr ""
622
-
623
- #: core/options-pages.php:1105
624
- msgid "Delete All Data & Network Deactivate"
625
- msgstr ""
626
-
627
- #: core/options-pages.php:1225
628
- msgid "Network settings saved."
629
- msgstr ""
630
-
631
- #: core/options-pages.php:1319
632
- msgid "Settings cannot be imported. Please upload a file to import settings."
633
- msgstr ""
634
-
635
- #: core/options-pages.php:1340
636
- msgid ""
637
- "Settings cannot be imported. Please upload a correct JSON file to import "
638
- "settings."
639
- msgstr ""
640
-
641
- #: core/options-pages.php:1356
642
- msgid "Plugin settings imported."
643
- msgstr "Impstazioni del plugin importate."
644
-
645
- #: core/options-pages.php:1409
646
- msgid "Plugin settings restored from the backup."
647
- msgstr "Impostazioni del plugin ripristinate dal backup."
648
-
649
- #: core/options-pages.php:1714
650
- msgid "Filters"
651
- msgstr ""
652
-
653
- #: core/options-pages.php:1723 core/options-pages.php:1726
654
- msgid "Force filters"
655
- msgstr "Forza i filtri"
656
-
657
- #: core/options-pages.php:1727
658
- msgid "Show media filters for ANY Media Popup"
659
- msgstr "Vistualizza i filtri media per tutti i pop-up media"
660
-
661
- #: core/options-pages.php:1728
662
- msgid "Try this if filters are not shown for third-party plugins or themes."
663
- msgstr ""
664
- "Prova questa opzione se i filtri non vengono visualizzati nei plugin o temi "
665
- "di terze parti."
666
-
667
- #: core/options-pages.php:1734 core/options-pages.php:1737
668
- msgid "Filters to show"
669
- msgstr ""
670
-
671
- #: core/options-pages.php:1738
672
- msgid "Types"
673
- msgstr ""
674
-
675
- #: core/options-pages.php:1739
676
- msgid "Can be disabled for Grid Mode only"
677
- msgstr ""
678
-
679
- #: core/options-pages.php:1740
680
- msgid "Dates"
681
- msgstr ""
682
-
683
- #: core/options-pages.php:1741
684
- msgid "Authors"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1748 core/options-pages.php:1751
688
- msgid "Show count"
689
- msgstr ""
690
-
691
- #: core/options-pages.php:1752
692
- msgid "Show item count per category for media filters"
693
- msgstr ""
694
-
695
- #: core/options-pages.php:1753
696
- msgid ""
697
- "Disable this if it slows down your site admin. The problem is resolved in "
698
- "the upcoming major update v3.0"
699
- msgstr ""
700
-
701
- #: core/options-pages.php:1759 core/options-pages.php:1762
702
- msgid "Include children"
703
- msgstr ""
704
-
705
- #: core/options-pages.php:1763
706
- msgid "Show media items of child media categories as a result of filtering"
707
- msgstr ""
708
-
709
- #: core/options-pages.php:1780
710
- msgid "Order"
711
- msgstr "Ordinamento"
712
-
713
- #: core/options-pages.php:1789
714
- msgid "Order media items by"
715
- msgstr "Ordina gli elementi media per"
716
-
717
- #: core/options-pages.php:1792
718
- msgid "Date"
719
- msgstr "Data"
720
-
721
- #: core/options-pages.php:1793 core/options-pages.php:1853
722
- msgid "Title"
723
- msgstr "Titolo"
724
-
725
- #: core/options-pages.php:1794
726
- msgid "Custom Order"
727
- msgstr "Ordinamento personalizzato"
728
-
729
- #: core/options-pages.php:1796 core/options-pages.php:1808
730
- msgid "For media library and media popups"
731
- msgstr "Per la libreria media e i pop-up media"
732
-
733
- #: core/options-pages.php:1797
734
- msgid ""
735
- "Allows changing media items order by drag and drop with Custom Order value."
736
- msgstr ""
737
-
738
- #: core/options-pages.php:1802
739
- msgid "Sort order"
740
- msgstr "Ordinamento"
741
-
742
- #: core/options-pages.php:1805
743
- msgid "Ascending"
744
- msgstr "Ascendente"
745
-
746
- #: core/options-pages.php:1806
747
- msgid "Descending"
748
- msgstr "Discendente"
749
-
750
- #: core/options-pages.php:1813 core/options-pages.php:1816
751
- msgid "Natural sort order"
752
- msgstr ""
753
-
754
- #: core/options-pages.php:1817
755
- msgid "Apply human-friendly sort order to Media Library and Galleries"
756
- msgstr ""
757
-
758
- #: core/options-pages.php:1818
759
- msgid ""
760
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
761
- "3, abc-11, abc-2]"
762
- msgstr ""
763
-
764
- #: core/options-pages.php:1831
765
- msgid "Grid Mode"
766
- msgstr ""
767
-
768
- #: core/options-pages.php:1840 core/options-pages.php:1843
769
- msgid "Show caption"
770
- msgstr ""
771
-
772
- #: core/options-pages.php:1844
773
- msgid "Add text caption for media item thumbnails"
774
- msgstr ""
775
-
776
- #: core/options-pages.php:1850
777
- msgid "Caption type"
778
- msgstr ""
779
-
780
- #: core/options-pages.php:1854
781
- msgid "Filename"
782
- msgstr ""
783
-
784
- #: core/options-pages.php:1855
785
- msgid "Caption"
786
- msgstr ""
787
-
788
- #: core/options-pages.php:1868
789
- msgid "Media Shortcodes"
790
- msgstr "Shortcode Media"
791
-
792
- #: core/options-pages.php:1877 core/options-pages.php:1880
793
- msgid "Enhanced media shortcodes"
794
- msgstr "Shortcode media avanzati"
795
-
796
- #: core/options-pages.php:1881
797
- msgid ""
798
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
799
- "upload date, and media items number limit"
800
- msgstr ""
801
- "Migliora gli shortcode media di WordPress in modo da poter usare le "
802
- "tassonomie Media, la data di caricamento e il limite di elementi media"
803
-
804
- #: core/options-pages.php:1882
805
- msgid "Gallery example:"
806
- msgstr "Esempio di galleria:"
807
-
808
- #: core/options-pages.php:1883
809
- msgid "Audio playlist example:"
810
- msgstr "Esempio di playlist audio:"
811
-
812
- #: core/options-pages.php:1884
813
- msgid "Video playlist example:"
814
- msgstr "Esempio di playlist video:"
815
-
816
- #: core/options-pages.php:1888
817
- msgid "Warning"
818
- msgstr ""
819
-
820
- #: core/options-pages.php:1891
821
- #, php-format
822
- msgid ""
823
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
824
- "\">Learn more</a>."
825
- msgstr ""
826
-
827
- #: core/options-pages.php:1896
828
- #, php-format
829
- msgid ""
830
- "Please check out your gallery front-end and back-end functionality once this "
831
- "option activated. If you find an issue please inform plugin authors at %s or "
832
- "%s."
833
- msgstr ""
834
- "Si prega di controllare la funzionalità vostra galleria di front-end e back-"
835
- "end funzionalità una volta che questa opzione &egrave; stata attivata. Se "
836
- "trovate un problema si prega di informare gli autori del plugin %s or %s."
837
-
838
- #: core/options-pages.php:1977 core/options-pages.php:2124
839
- msgid "Assign following taxonomies to Media Library:"
840
- msgstr "Assegna le seguenti tassonomie alla Libreria Media:"
841
-
842
- #: core/options-pages.php:1996 core/options-pages.php:2062
843
- #: core/options-pages.php:2146
844
- msgid "Assign Taxonomy"
845
- msgstr "Assegna tassonomia"
846
-
847
- #: core/options-pages.php:1997 core/options-pages.php:2147
848
- msgid "Edit Taxonomy"
849
- msgstr "Modifica tassonomia"
850
-
851
- #: core/options-pages.php:2001 core/options-pages.php:2064
852
- msgid "Delete Taxonomy"
853
- msgstr "Elimina tassonomia"
854
-
855
- #: core/options-pages.php:2006 core/options-pages.php:2069
856
- msgid "Labels"
857
- msgstr "Etichette"
858
-
859
- #: core/options-pages.php:2008 core/options-pages.php:2071
860
- msgid "Singular"
861
- msgstr "Singolare"
862
-
863
- #: core/options-pages.php:2009 core/options-pages.php:2072
864
- msgid "Plural"
865
- msgstr "Plurale"
866
-
867
- #: core/options-pages.php:2010 core/options-pages.php:2073
868
- msgid "Menu Name"
869
- msgstr "Nome menu"
870
-
871
- #: core/options-pages.php:2023 core/options-pages.php:2046
872
- #: core/options-pages.php:2086 core/options-pages.php:2150
873
- msgid "Settings"
874
- msgstr "Impostazioni"
875
-
876
- #: core/options-pages.php:2025 core/options-pages.php:2088
877
- msgid "Taxonomy Name"
878
- msgstr "Nome tassonomia"
879
-
880
- #: core/options-pages.php:2026 core/options-pages.php:2089
881
- msgid "Hierarchical"
882
- msgstr "Gerarchico"
883
-
884
- #: core/options-pages.php:2027 core/options-pages.php:2090
885
- msgid "Column for List View"
886
- msgstr "Colonna nella visualizzazione a lista"
887
-
888
- #: core/options-pages.php:2028 core/options-pages.php:2048
889
- #: core/options-pages.php:2091 core/options-pages.php:2152
890
- msgid "Filter for List View"
891
- msgstr "Filtro per la visualizzazione a lista"
892
-
893
- #: core/options-pages.php:2029 core/options-pages.php:2049
894
- #: core/options-pages.php:2092 core/options-pages.php:2153
895
- msgid "Filter for Grid View / Media Popup"
896
- msgstr "Filtro per la visualizzazione a griglia / pop-up Media"
897
-
898
- #: core/options-pages.php:2030 core/options-pages.php:2050
899
- #: core/options-pages.php:2093 core/options-pages.php:2154
900
- msgid "Edit in Media Popup"
901
- msgstr "Modifica nel pop-up media"
902
-
903
- #: core/options-pages.php:2031 core/options-pages.php:2094
904
- msgid "Show in Nav Menu"
905
- msgstr "Mostra nel menu di navigazione"
906
-
907
- #: core/options-pages.php:2032 core/options-pages.php:2095
908
- msgid "Remember Terms Order (sort)"
909
- msgstr "Ricorda l'ordinamento dei termini (sort)"
910
-
911
- #: core/options-pages.php:2033 core/options-pages.php:2096
912
- msgid "Show in REST"
913
- msgstr "Mostra in REST"
914
-
915
- #: core/options-pages.php:2034 core/options-pages.php:2097
916
- msgid "Rewrite Slug"
917
- msgstr "Rewrite per lo slug"
918
-
919
- #: core/options-pages.php:2035 core/options-pages.php:2098
920
- msgid "Slug with Front"
921
- msgstr "Slug (with_front)"
922
-
923
- #: core/options-pages.php:2110
924
- msgid "Add New Taxonomy"
925
- msgstr "Aggiungi nuova tassonomia"
926
-
927
- #: core/options-pages.php:2120
928
- msgid "Non-Media Taxonomies"
929
- msgstr "Tassonomie non Media"
930
-
931
- #: core/options-pages.php:2183
932
- msgid "Options"
933
- msgstr "Opzioni"
934
-
935
- #: core/options-pages.php:2193 core/options-pages.php:2196
936
- msgid "Taxonomy archive pages"
937
- msgstr "Pagine di archivio della tassonomia"
938
-
939
- #: core/options-pages.php:2197
940
- msgid "Turn on media taxonomy archive pages on the front-end"
941
- msgstr "Attiva le pagine di archivio della tassonomia sul front-end"
942
-
943
- #: core/options-pages.php:2198
944
- msgid ""
945
- "Re-save your permalink settings after this option change to make it work."
946
- msgstr ""
947
- "Salvare nuovamente le impostazioni dei permalink dopo la modifica di questa "
948
- "opzione affinch&egrave; i cambiamenti abbiano effetto."
949
-
950
- #: core/options-pages.php:2204 core/options-pages.php:2207
951
- msgid "Assign all like hierarchical"
952
- msgstr "Considera tutte le tassonomie come gerarchiche"
953
-
954
- #: core/options-pages.php:2208
955
- msgid ""
956
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
957
- msgstr ""
958
- "Mostra le tassonomie non gerarchiche come gerarchiche nella visualizzazione "
959
- "a griglia / pop-up media"
960
-
961
- #: core/options-pages.php:2271
962
- msgid "Add New MIME Type"
963
- msgstr "Aggiungi un nuovo tipo MIME"
964
-
965
- #: core/options-pages.php:2291 core/options-pages.php:2345
966
- msgid "Extension"
967
- msgstr "Estensione"
968
-
969
- #: core/options-pages.php:2292 core/options-pages.php:2346
970
- msgid "MIME Type"
971
- msgstr "Tipo MIME"
972
-
973
- #: core/options-pages.php:2293 core/options-pages.php:2347
974
- msgid "Singular Label"
975
- msgstr "Etichetta per il singolare"
976
-
977
- #: core/options-pages.php:2294 core/options-pages.php:2348
978
- msgid "Plural Label"
979
- msgstr "Etichetta per il plurale"
980
-
981
- #: core/options-pages.php:2295 core/options-pages.php:2324
982
- #: core/options-pages.php:2337 core/options-pages.php:2349
983
- msgid "Add Filter"
984
- msgstr "Aggiungi filtro"
985
-
986
- #: core/options-pages.php:2296 core/options-pages.php:2325
987
- #: core/options-pages.php:2338 core/options-pages.php:2350
988
- msgid "Allow Upload"
989
- msgstr "Permetti upload"
990
-
991
- #: core/options-pages.php:2326 core/options-pages.php:2339
992
- msgid "Delete MIME Type"
993
- msgstr "Elimina il tipo MIME"
994
-
995
- #: core/options-pages.php:2415
996
- msgid "Changelog"
997
- msgstr "Changelog"
998
-
999
- #: core/options-pages.php:2416
1000
- msgid "What's new in"
1001
- msgstr "Cosa c'&egrave; di nuovo nella"
1002
-
1003
- #: core/options-pages.php:2416
1004
- msgid "version"
1005
- msgstr "versione"
1006
-
1007
- #: core/options-pages.php:2419
1008
- msgid "More features under the hood"
1009
- msgstr "Ulteriori caratteristiche sotto il 'coperchio'"
1010
-
1011
- #: core/options-pages.php:2421
1012
- msgid "Support"
1013
- msgstr "Supporto"
1014
-
1015
- #: core/options-pages.php:2422
1016
- msgid "Feel free to ask for help on"
1017
- msgstr "Sentitevi liberi di chiedere aiuto su"
1018
-
1019
- #: core/options-pages.php:2422
1020
- msgid "Support is free for both versions of the plugin."
1021
- msgstr ""
1022
- "Il supporto tecnico &egrave; gratuito per entrambe le versioni del plugin."
1023
-
1024
- #: core/options-pages.php:2424
1025
- msgid "Plugin rating"
1026
- msgstr "Valutazione plugin"
1027
-
1028
- #: core/options-pages.php:2425
1029
- msgid "Please"
1030
- msgstr "Prego"
1031
-
1032
- #: core/options-pages.php:2425
1033
- msgid "vote for the plugin"
1034
- msgstr "vota il plugin"
1035
-
1036
- #: core/options-pages.php:2425
1037
- msgid "Thanks!"
1038
- msgstr "Grazie!"
1039
-
1040
- #: core/options-pages.php:2427
1041
- msgid "Other plugins you may find useful"
1042
- msgstr "Altri plugin che potresti trovare utili"
1043
-
1044
- #: core/options-pages.php:2469
1045
- msgid "Utility"
1046
- msgstr "Utilit&agrave;"
1047
-
1048
- #: core/options-pages.php:2494
1049
- msgid "Rate us:"
1050
- msgstr ""
1051
-
1052
- #: core/options-pages.php:2494
1053
- msgid "Poor"
1054
- msgstr ""
1055
-
1056
- #: core/options-pages.php:2494
1057
- msgid "Works"
1058
- msgstr ""
1059
-
1060
- #: core/options-pages.php:2494
1061
- msgid "Good"
1062
- msgstr ""
1063
-
1064
- #: core/options-pages.php:2494
1065
- msgid "Great"
1066
- msgstr ""
1067
-
1068
- #: core/options-pages.php:2494
1069
- msgid "Fantastic!"
1070
- msgstr ""
1071
-
1072
- #: core/taxonomies.php:101
1073
- msgid "Media Taxonomies settings saved."
1074
- msgstr "Impostazioni Tassonomie Media salvate."
1075
-
1076
- #: core/taxonomies.php:174
1077
- msgid "Media Library settings saved."
1078
- msgstr "Impostazioni Libreria Media salvate."
1079
-
1080
- #: core/taxonomies.php:353
1081
- msgid "Filter by author"
1082
- msgstr ""
1083
-
1084
- #: core/taxonomies.php:357
1085
- msgid "All Authors"
1086
- msgstr ""
1087
-
1088
- #: core/taxonomies.php:374 core/taxonomies.php:380
1089
- #: enhanced-media-library.php:561
1090
- msgid "Filter by"
1091
- msgstr "Filtra per"
1092
-
1093
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1094
- msgid "Not in a"
1095
- msgstr "Non in"
1096
-
1097
- #: core/taxonomies.php:721
1098
- msgid "Add some"
1099
- msgstr ""
1100
-
1101
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1102
- msgid "All Uncategorized"
1103
- msgstr "Tutti gli elementi non classificati"
1104
-
1105
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1106
- msgid "Reset All Filters"
1107
- msgstr "Reimposta tutti i filtri"
1108
-
1109
- #: enhanced-media-library.php:391
1110
- msgid "More Details"
1111
- msgstr ""
1112
-
1113
- #: enhanced-media-library.php:392
1114
- msgid "Less Details"
1115
- msgstr ""
1116
-
1117
- #: enhanced-media-library.php:565
1118
- msgid "author"
1119
- msgstr ""
1120
-
1121
- #: enhanced-media-library.php:566
1122
- msgid "authors"
1123
- msgstr ""
1124
-
1125
- #: enhanced-media-library.php:569
1126
- msgid "Saved."
1127
- msgstr ""
1128
-
1129
- #: enhanced-media-library.php:570
1130
- msgid "Something went wrong."
1131
- msgstr " Qualcosa è andato male."
1132
-
1133
- #: enhanced-media-library.php:573
1134
- msgid "Select All"
1135
- msgstr "Seleziona tutto"
1136
-
1137
- #: enhanced-media-library.php:574
1138
- msgid "Deselect "
1139
- msgstr ""
1140
-
1141
- #: enhanced-media-library.php:603
1142
- msgid "Uploaded to post #"
1143
- msgstr "Caricato nel post #"
1144
-
1145
- #: enhanced-media-library.php:604
1146
- msgid "Based On"
1147
- msgstr "Basato su"
1148
-
1149
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1150
- msgid "Media Categories"
1151
- msgstr "Categorie Media"
1152
-
1153
- #: enhanced-media-library.php:674
1154
- msgid "Media Category"
1155
- msgstr "Categoria Media"
1156
-
1157
- #: enhanced-media-library.php:676
1158
- msgid "All Media Categories"
1159
- msgstr "Tutte le categorie Media"
1160
-
1161
- #: enhanced-media-library.php:677
1162
- msgid "Edit Media Category"
1163
- msgstr "Modifica categoria Media"
1164
-
1165
- #: enhanced-media-library.php:678
1166
- msgid "View Media Category"
1167
- msgstr "Visualizza categoria Media"
1168
-
1169
- #: enhanced-media-library.php:679
1170
- msgid "Update Media Category"
1171
- msgstr "Aggiorna categoria Media"
1172
-
1173
- #: enhanced-media-library.php:680
1174
- msgid "Add New Media Category"
1175
- msgstr "Aggiungi nuova categoria Media"
1176
-
1177
- #: enhanced-media-library.php:681
1178
- msgid "New Media Category Name"
1179
- msgstr "Nome della nuova categoria Media"
1180
-
1181
- #: enhanced-media-library.php:682
1182
- msgid "Parent Media Category"
1183
- msgstr "Categoria media genitore"
1184
-
1185
- #: enhanced-media-library.php:683
1186
- msgid "Parent Media Category:"
1187
- msgstr "Categoria media genitore:"
1188
-
1189
- #: enhanced-media-library.php:684
1190
- msgid "Search Media Categories"
1191
- msgstr "Cerca nella categoria Media"
1192
-
1193
- #. Plugin URI of the plugin/theme
1194
- #. Author URI of the plugin/theme
1195
- msgid "http://wpUXsolutions.com"
1196
- msgstr ""
1197
-
1198
- #. Description of the plugin/theme
1199
- msgid ""
1200
- "This plugin will be handy for those who need to manage a lot of media files."
1201
- msgstr ""
1202
- "Questo plugin sar&agrave; utile per coloro che hanno bisogno di gestire "
1203
- "grandi quantit&agrave; di file multimediali."
1204
-
1205
- #. Author of the plugin/theme
1206
- msgid "wpUXsolutions"
1207
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ja_JP.mo DELETED
Binary file
languages/enhanced-media-library-ja_JP.po DELETED
@@ -1,1191 +0,0 @@
1
- # Translation of Plugins - Enhanced Media Library - Stable (latest release) in Japanese
2
- # This file is distributed under the same license as the Plugins - Enhanced Media Library - Stable (latest release) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Plugins - Enhanced Media Library - Stable (latest "
6
- "release)\n"
7
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
8
- "PO-Revision-Date: 2020-10-11 22:47+0300\n"
9
- "Last-Translator: \n"
10
- "Language-Team: \n"
11
- "Language: ja_JP\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "Plural-Forms: nplurals=1; plural=0;\n"
16
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr "削除"
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr "選択解除"
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr "この画像の説明"
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr "この動画の説明"
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr "このオーディオの説明"
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr "このメディアの説明"
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr "MIME タイプ設定を復元しました。"
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr "MIME タイプ設定を保存しました。"
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] ""
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "メディアの設定"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "メディアライブラリ"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "メディアタクソノミー"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "MIME タイプ"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "一般"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "このページを表示する権限がありません。"
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "画像サイズ"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
- "メディアファイルから画像を追加する際、以下でピクセル指定したサイズによって最"
109
- "大寸法が決定されます。"
110
-
111
- #: core/options-pages.php:415
112
- msgid "Thumbnail size"
113
- msgstr "サムネイルサイズ"
114
-
115
- #: core/options-pages.php:417
116
- msgid "Width"
117
- msgstr "幅"
118
-
119
- #: core/options-pages.php:419
120
- msgid "Height"
121
- msgstr "高さ"
122
-
123
- #: core/options-pages.php:422
124
- msgid ""
125
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
126
- msgstr ""
127
- "サムネイルを実寸法にトリミングする (通常は相対的な縮小によりサムネイルを作り"
128
- "ます)"
129
-
130
- #: core/options-pages.php:427 core/options-pages.php:428
131
- msgid "Medium size"
132
- msgstr "中サイズ"
133
-
134
- #: core/options-pages.php:429 core/options-pages.php:440
135
- msgid "Max Width"
136
- msgstr "幅の上限"
137
-
138
- #: core/options-pages.php:432 core/options-pages.php:443
139
- msgid "Max Height"
140
- msgstr "高さの上限"
141
-
142
- #: core/options-pages.php:438 core/options-pages.php:439
143
- msgid "Large size"
144
- msgstr "大サイズ"
145
-
146
- #: core/options-pages.php:456
147
- msgid "Embeds"
148
- msgstr "埋め込み"
149
-
150
- #: core/options-pages.php:463
151
- msgid "Uploading Files"
152
- msgstr "ファイルアップロード"
153
-
154
- #: core/options-pages.php:470
155
- msgid "Store uploads in this folder"
156
- msgstr "アップロードファイル保存フォルダ"
157
-
158
- #: core/options-pages.php:474
159
- #, php-format
160
- msgid "Default is %s"
161
- msgstr "デフォルトは %s"
162
-
163
- #: core/options-pages.php:480
164
- msgid "Full URL path to files"
165
- msgstr "ファイルへの完全 URL"
166
-
167
- #: core/options-pages.php:482
168
- msgid "Configuring this is optional. By default, it should be blank."
169
- msgstr "この設定はオプションです。デフォルトでは空白にする必要があります。"
170
-
171
- #: core/options-pages.php:490
172
- msgid "Organize my uploads into month- and year-based folders"
173
- msgstr "アップロードしたファイルを年月ベースのフォルダに整理"
174
-
175
- #: core/options-pages.php:560 core/options-pages.php:1997
176
- #: core/options-pages.php:2012 core/options-pages.php:2075
177
- #: core/options-pages.php:2147
178
- msgid "Edit"
179
- msgstr "編集"
180
-
181
- #: core/options-pages.php:561
182
- msgid "Close"
183
- msgstr "閉じる"
184
-
185
- #: core/options-pages.php:562 core/options-pages.php:2013
186
- #: core/options-pages.php:2076
187
- msgid "View"
188
- msgstr "表示"
189
-
190
- #: core/options-pages.php:563 core/options-pages.php:2014
191
- #: core/options-pages.php:2077
192
- msgid "Update"
193
- msgstr "更新"
194
-
195
- #: core/options-pages.php:564 core/options-pages.php:2015
196
- #: core/options-pages.php:2078
197
- msgid "Add New"
198
- msgstr "新規追加"
199
-
200
- #: core/options-pages.php:565 core/options-pages.php:2016
201
- #: core/options-pages.php:2079
202
- msgid "New"
203
- msgstr "新規"
204
-
205
- #: core/options-pages.php:566
206
- msgid "Name"
207
- msgstr "名前"
208
-
209
- #: core/options-pages.php:567 core/options-pages.php:2017
210
- #: core/options-pages.php:2080
211
- msgid "Parent"
212
- msgstr "親"
213
-
214
- #: core/options-pages.php:568 core/options-pages.php:862
215
- #: core/options-pages.php:1084 core/options-pages.php:2011
216
- #: core/options-pages.php:2074 core/taxonomies.php:381
217
- #: enhanced-media-library.php:562
218
- msgid "All"
219
- msgstr "すべて"
220
-
221
- #: core/options-pages.php:569 core/options-pages.php:2018
222
- #: core/options-pages.php:2081
223
- msgid "Search"
224
- msgstr "検索"
225
-
226
- #: core/options-pages.php:571 core/options-pages.php:2062
227
- msgid "New Taxonomy"
228
- msgstr "新しいタクソノミー"
229
-
230
- #: core/options-pages.php:573
231
- msgid "Remove Taxonomy"
232
- msgstr "タクソノミー削除"
233
-
234
- #: core/options-pages.php:574
235
- msgid "Taxonomy will be removed."
236
- msgstr "タクソノミーを削除しようとしています。"
237
-
238
- #: core/options-pages.php:575
239
- msgid ""
240
- "Taxonomy terms (categories) will remain intact in the database. If you "
241
- "create a taxonomy with the same name in the future, its terms (categories) "
242
- "will be available again."
243
- msgstr ""
244
- "タクソノミーターム (カテゴリー) はデータベースにそのまま残ります。同じ名前の"
245
- "タクソノミーを将来作成すると、そのターム (カテゴリー) は再び利用可能になりま"
246
- "す。"
247
-
248
- #: core/options-pages.php:576
249
- msgid "Media items will remain intact."
250
- msgstr "メディア項目はそのまま残ります。"
251
-
252
- #: core/options-pages.php:577
253
- msgid "Are you still sure?"
254
- msgstr "本当によろしいですか ?"
255
-
256
- #: core/options-pages.php:578
257
- msgid "Yes, remove taxonomy"
258
- msgstr "はい、タクソノミーを削除します"
259
-
260
- #: core/options-pages.php:580
261
- msgid "Duplicate"
262
- msgstr "複製"
263
-
264
- #: core/options-pages.php:581
265
- msgid "Taxonomy with the same name already exists. Please chose other one."
266
- msgstr "同じ名前のタクソノミーが既に存在します。他のものを選んでください。"
267
-
268
- #: core/options-pages.php:583
269
- msgid "Empty Fields"
270
- msgstr "空のフィールド"
271
-
272
- #: core/options-pages.php:584
273
- msgid "Wrong Taxonomy Name"
274
- msgstr ""
275
-
276
- #: core/options-pages.php:585
277
- msgid "Wrong Slug"
278
- msgstr ""
279
-
280
- #: core/options-pages.php:587
281
- msgid "Please choose Singular and Plural names for all new taxomonies."
282
- msgstr "新しいタクソノミーの単数形名および複数形名を設定してください。"
283
-
284
- #: core/options-pages.php:588
285
- msgid "Please choose Singular name for all new taxomonies."
286
- msgstr "新しいタクソノミーの複数形名を設定してください。"
287
-
288
- #: core/options-pages.php:589
289
- msgid "Please choose Plural name for all new taxomonies."
290
- msgstr ""
291
-
292
- #: core/options-pages.php:591
293
- msgid ""
294
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
295
- "name please enter it manually."
296
- msgstr ""
297
-
298
- #: core/options-pages.php:592
299
- msgid ""
300
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
301
- "character ( _ ), and be 3-32 characters long."
302
- msgstr ""
303
-
304
- #: core/options-pages.php:593
305
- msgid ""
306
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
307
- "or hyphen ( - ) characters."
308
- msgstr ""
309
-
310
- #: core/options-pages.php:595 core/options-pages.php:644
311
- msgid "Ok"
312
- msgstr "OK"
313
-
314
- #: core/options-pages.php:596 core/options-pages.php:601
315
- #: core/options-pages.php:645 core/options-pages.php:690
316
- msgid "Cancel"
317
- msgstr "キャンセル"
318
-
319
- #: core/options-pages.php:598
320
- msgid "Synchronize Now"
321
- msgstr "今すぐ同期"
322
-
323
- #: core/options-pages.php:599 core/options-pages.php:687
324
- msgid "This operation cannot be canceled! Are you still sure?"
325
- msgstr "この操作はキャンセルできません ! 本当によろしいですか ?"
326
-
327
- #: core/options-pages.php:600
328
- msgid "Synchronize"
329
- msgstr "同期"
330
-
331
- #: core/options-pages.php:602
332
- msgid "Synchronizing..."
333
- msgstr "同期中..."
334
-
335
- #: core/options-pages.php:639 core/options-pages.php:2388
336
- msgid "Restore WordPress default MIME Types"
337
- msgstr "WordPress のデフォルト MIME タイプを復元する"
338
-
339
- #: core/options-pages.php:640
340
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
341
- msgstr "警告 ! この操作ですべてのカスタム MIME タイプが削除されます。"
342
-
343
- #: core/options-pages.php:641
344
- msgid "Restore Defaults"
345
- msgstr "デフォルトに戻す"
346
-
347
- #: core/options-pages.php:642
348
- msgid "Restoring..."
349
- msgstr "復元中..."
350
-
351
- #: core/options-pages.php:647
352
- msgid "MIME Types cannot be saved"
353
- msgstr ""
354
-
355
- #: core/options-pages.php:648
356
- msgid "Please fill into all fields."
357
- msgstr "すべてのフィールドに入力してください。"
358
-
359
- #: core/options-pages.php:649
360
- msgid "Duplicate extensions or MIME types. Please choose other one."
361
- msgstr ""
362
-
363
- #: core/options-pages.php:685 core/options-pages.php:853
364
- #: core/options-pages.php:1063
365
- msgid "Complete Cleanup"
366
- msgstr "完全クリーンアップ"
367
-
368
- #: core/options-pages.php:686
369
- msgid ""
370
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
371
- "plugin data</strong> from the database including backups."
372
- msgstr ""
373
- "データベースからバックアップを含む<strong>すべてのプラグインデータを削除</"
374
- "strong>しようとしています。"
375
-
376
- #: core/options-pages.php:688
377
- msgid "Yes, delete all data"
378
- msgstr "はい、すべてのデータを削除します"
379
-
380
- #: core/options-pages.php:689
381
- msgid "Cleaning..."
382
- msgstr "削除中..."
383
-
384
- #: core/options-pages.php:693 core/options-pages.php:996
385
- msgid "Unify Media Settings over Network"
386
- msgstr ""
387
-
388
- #: core/options-pages.php:696 core/options-pages.php:700
389
- #: core/options-pages.php:704
390
- msgid "will be overwritten"
391
- msgstr ""
392
-
393
- #: core/options-pages.php:706
394
- msgid "Apply"
395
- msgstr ""
396
-
397
- #: core/options-pages.php:707
398
- msgid "Applying Settings..."
399
- msgstr ""
400
-
401
- #: core/options-pages.php:746 core/options-pages.php:935
402
- msgid "Enhanced Media Library Utilities"
403
- msgstr ""
404
-
405
- #: core/options-pages.php:756
406
- msgid "Export"
407
- msgstr "エクスポート"
408
-
409
- #: core/options-pages.php:761
410
- msgid "Plugin settings to export:"
411
- msgstr ""
412
-
413
- #: core/options-pages.php:762 core/options-pages.php:789
414
- #: core/options-pages.php:829
415
- msgid "Settings > Media Library"
416
- msgstr ""
417
-
418
- #: core/options-pages.php:763 core/options-pages.php:790
419
- #: core/options-pages.php:830
420
- msgid "Settings > Media Taxonomies"
421
- msgstr ""
422
-
423
- #: core/options-pages.php:764 core/options-pages.php:791
424
- #: core/options-pages.php:831
425
- msgid "Settings > MIME Types"
426
- msgstr ""
427
-
428
- #: core/options-pages.php:768
429
- msgid ""
430
- "Use generated JSON file to import the configuration into another website."
431
- msgstr ""
432
-
433
- #: core/options-pages.php:773
434
- msgid "Export Plugin Settings"
435
- msgstr "プラグイン設定をエクスポートする"
436
-
437
- #: core/options-pages.php:783
438
- msgid "Import"
439
- msgstr "インポート"
440
-
441
- #: core/options-pages.php:788
442
- msgid "Plugin settings to import:"
443
- msgstr ""
444
-
445
- #: core/options-pages.php:794
446
- msgid ""
447
- "Plugin settings will be imported from a configuration JSON file which can be "
448
- "obtained by exporting the settings on another website using the export "
449
- "button above."
450
- msgstr ""
451
-
452
- #: core/options-pages.php:795
453
- msgid ""
454
- "All plugin settings will be overridden by the import. You will have a chance "
455
- "to restore current data from an automatic backup in case you are not "
456
- "satisfied with the result of the import."
457
- msgstr ""
458
- "プラグイン設定は、インポートによってすべて上書きされます。インポート結果に満"
459
- "足できない場合は、自動バックアップから現在のデータを復元するチャンスがありま"
460
- "す。"
461
-
462
- #: core/options-pages.php:801
463
- msgid "Import Plugin Settings"
464
- msgstr "プラグイン設定をインポートする"
465
-
466
- #: core/options-pages.php:813
467
- msgid "Restore"
468
- msgstr "復元"
469
-
470
- #: core/options-pages.php:819
471
- msgid "No backup available at the moment."
472
- msgstr "現時点ではバックアップはありません。"
473
-
474
- #: core/options-pages.php:821
475
- msgid "Backup will be created automatically before any import operation."
476
- msgstr "バックアップはインポート操作の前に自動的に作成されます。"
477
-
478
- #: core/options-pages.php:825
479
- msgid ""
480
- "The backup has been automatically created before the latest import operation."
481
- msgstr "バックアップは、最新のインポート操作の前に自動的に作成されています。"
482
-
483
- #: core/options-pages.php:828
484
- msgid "Plugin settings to restore:"
485
- msgstr ""
486
-
487
- #: core/options-pages.php:837
488
- msgid "Restore Settings from the Backup"
489
- msgstr "バックアップから設定を復元する"
490
-
491
- #: core/options-pages.php:860 core/options-pages.php:1082
492
- msgid "What will be deleted:"
493
- msgstr "削除されるもの:"
494
-
495
- #: core/options-pages.php:865
496
- msgid "All plugin options"
497
- msgstr "すべてのプラグインオプション"
498
-
499
- #: core/options-pages.php:866 core/options-pages.php:1089
500
- msgid "All plugin backups stored in the database"
501
- msgstr ""
502
-
503
- #: core/options-pages.php:870 core/options-pages.php:1093
504
- msgid "What will remain intact:"
505
- msgstr "元通りになるもの:"
506
-
507
- #: core/options-pages.php:871 core/options-pages.php:1094
508
- msgid "All media items"
509
- msgstr "すべてのメディアアイテム"
510
-
511
- #: core/options-pages.php:872 core/options-pages.php:1095
512
- msgid "All taxonomies not listed above"
513
- msgstr "上に挙げられていないすべてのタクソノミー"
514
-
515
- #: core/options-pages.php:875 core/options-pages.php:1098
516
- msgid ""
517
- "The plugin cannot delete itself for security reasons. Please delete it "
518
- "manually from the plugin list after the cleanup is complete."
519
- msgstr ""
520
-
521
- #: core/options-pages.php:877 core/options-pages.php:1100
522
- msgid ""
523
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
524
- "backup of your database prior to cleanup!"
525
- msgstr ""
526
-
527
- #: core/options-pages.php:882
528
- msgid "Delete All Data & Deactivate"
529
- msgstr "すべてのデータを削除し、プラグインを停止する"
530
-
531
- #: core/options-pages.php:945
532
- msgid "Network Settings"
533
- msgstr ""
534
-
535
- #: core/options-pages.php:952 core/options-pages.php:1003
536
- msgid "No settings available. The plugin is not network activated."
537
- msgstr ""
538
-
539
- #: core/options-pages.php:963
540
- msgid "Media Settings per site"
541
- msgstr ""
542
-
543
- #: core/options-pages.php:966
544
- msgid "Enable Media Settings"
545
- msgstr ""
546
-
547
- #: core/options-pages.php:967
548
- msgid "Allow an individual site admin to edit enhanced Media Settings"
549
- msgstr ""
550
-
551
- #: core/options-pages.php:968
552
- msgid ""
553
- "Otherwise, only a network (super) admin can see the menu and edit media "
554
- "settings."
555
- msgstr ""
556
-
557
- #: core/options-pages.php:974
558
- msgid "Plugin Utilities per site"
559
- msgstr ""
560
-
561
- #: core/options-pages.php:977
562
- msgid "Enable plugin Utilities"
563
- msgstr ""
564
-
565
- #: core/options-pages.php:978
566
- msgid ""
567
- "Allow an individual site admin to import / export / restore plugin settings "
568
- "and perform the complete cleanup for a specific site"
569
- msgstr ""
570
-
571
- #: core/options-pages.php:979
572
- msgid ""
573
- "Otherwise, only a network (super) admin can see the menu and perform those "
574
- "actions."
575
- msgstr ""
576
-
577
- #: core/options-pages.php:986 core/options-pages.php:1770
578
- #: core/options-pages.php:1824 core/options-pages.php:1861
579
- #: core/options-pages.php:1905 core/options-pages.php:2113
580
- #: core/options-pages.php:2177 core/options-pages.php:2215
581
- #: core/options-pages.php:2386 enhanced-media-library.php:571
582
- msgid "Save Changes"
583
- msgstr "変更を保存"
584
-
585
- #: core/options-pages.php:1012 core/options-pages.php:1015
586
- msgid "Media Library Settings"
587
- msgstr ""
588
-
589
- #: core/options-pages.php:1016 core/options-pages.php:1030
590
- #: core/options-pages.php:1044
591
- msgid "Apply to ALL Network websites"
592
- msgstr ""
593
-
594
- #: core/options-pages.php:1026 core/options-pages.php:1029
595
- msgid "Media Taxonomies Settings"
596
- msgstr ""
597
-
598
- #: core/options-pages.php:1040 core/options-pages.php:1043
599
- msgid "MIME Types Settings"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1087
603
- msgid "All plugin options on every site"
604
- msgstr ""
605
-
606
- #: core/options-pages.php:1088
607
- msgid "Network settings"
608
- msgstr ""
609
-
610
- #: core/options-pages.php:1105
611
- msgid "Delete All Data & Network Deactivate"
612
- msgstr ""
613
-
614
- #: core/options-pages.php:1225
615
- msgid "Network settings saved."
616
- msgstr ""
617
-
618
- #: core/options-pages.php:1319
619
- msgid "Settings cannot be imported. Please upload a file to import settings."
620
- msgstr ""
621
-
622
- #: core/options-pages.php:1340
623
- msgid ""
624
- "Settings cannot be imported. Please upload a correct JSON file to import "
625
- "settings."
626
- msgstr ""
627
-
628
- #: core/options-pages.php:1356
629
- msgid "Plugin settings imported."
630
- msgstr "プラグイン設定がインポートされました。"
631
-
632
- #: core/options-pages.php:1409
633
- msgid "Plugin settings restored from the backup."
634
- msgstr "プラグイン設定がバックアップから復元されました。"
635
-
636
- #: core/options-pages.php:1714
637
- msgid "Filters"
638
- msgstr ""
639
-
640
- #: core/options-pages.php:1723 core/options-pages.php:1726
641
- msgid "Force filters"
642
- msgstr "絞り込みフィルター強制表示"
643
-
644
- #: core/options-pages.php:1727
645
- msgid "Show media filters for ANY Media Popup"
646
- msgstr "メディア絞り込み機能をすべてのメディアアップローダーに表示します。"
647
-
648
- #: core/options-pages.php:1728
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:1734 core/options-pages.php:1737
655
- msgid "Filters to show"
656
- msgstr ""
657
-
658
- #: core/options-pages.php:1738
659
- msgid "Types"
660
- msgstr ""
661
-
662
- #: core/options-pages.php:1739
663
- msgid "Can be disabled for Grid Mode only"
664
- msgstr ""
665
-
666
- #: core/options-pages.php:1740
667
- msgid "Dates"
668
- msgstr ""
669
-
670
- #: core/options-pages.php:1741
671
- msgid "Authors"
672
- msgstr ""
673
-
674
- #: core/options-pages.php:1748 core/options-pages.php:1751
675
- msgid "Show count"
676
- msgstr "個数表示"
677
-
678
- #: core/options-pages.php:1752
679
- msgid "Show item count per category for media filters"
680
- msgstr "メディア絞り込みフィルターの各カテゴリー毎に個数を表示する"
681
-
682
- #: core/options-pages.php:1753
683
- msgid ""
684
- "Disable this if it slows down your site admin. The problem is resolved in "
685
- "the upcoming major update v3.0"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1759 core/options-pages.php:1762
689
- msgid "Include children"
690
- msgstr ""
691
-
692
- #: core/options-pages.php:1763
693
- msgid "Show media items of child media categories as a result of filtering"
694
- msgstr ""
695
-
696
- #: core/options-pages.php:1780
697
- msgid "Order"
698
- msgstr ""
699
-
700
- #: core/options-pages.php:1789
701
- msgid "Order media items by"
702
- msgstr "メディア項目並べ替え基準"
703
-
704
- #: core/options-pages.php:1792
705
- msgid "Date"
706
- msgstr "日付"
707
-
708
- #: core/options-pages.php:1793 core/options-pages.php:1853
709
- msgid "Title"
710
- msgstr "タイトル"
711
-
712
- #: core/options-pages.php:1794
713
- msgid "Custom Order"
714
- msgstr "手動並べ替え"
715
-
716
- #: core/options-pages.php:1796 core/options-pages.php:1808
717
- msgid "For media library and media popups"
718
- msgstr "この設定はメディアライブラリとメディアアップローダーで有効になります。"
719
-
720
- #: core/options-pages.php:1797
721
- msgid ""
722
- "Allows changing media items order by drag and drop with Custom Order value."
723
- msgstr ""
724
-
725
- #: core/options-pages.php:1802
726
- msgid "Sort order"
727
- msgstr "ソート順"
728
-
729
- #: core/options-pages.php:1805
730
- msgid "Ascending"
731
- msgstr "昇順"
732
-
733
- #: core/options-pages.php:1806
734
- msgid "Descending"
735
- msgstr "降順"
736
-
737
- #: core/options-pages.php:1813 core/options-pages.php:1816
738
- msgid "Natural sort order"
739
- msgstr ""
740
-
741
- #: core/options-pages.php:1817
742
- msgid "Apply human-friendly sort order to Media Library and Galleries"
743
- msgstr ""
744
-
745
- #: core/options-pages.php:1818
746
- msgid ""
747
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
748
- "3, abc-11, abc-2]"
749
- msgstr ""
750
-
751
- #: core/options-pages.php:1831
752
- msgid "Grid Mode"
753
- msgstr ""
754
-
755
- #: core/options-pages.php:1840 core/options-pages.php:1843
756
- msgid "Show caption"
757
- msgstr ""
758
-
759
- #: core/options-pages.php:1844
760
- msgid "Add text caption for media item thumbnails"
761
- msgstr ""
762
-
763
- #: core/options-pages.php:1850
764
- msgid "Caption type"
765
- msgstr ""
766
-
767
- #: core/options-pages.php:1854
768
- msgid "Filename"
769
- msgstr ""
770
-
771
- #: core/options-pages.php:1855
772
- msgid "Caption"
773
- msgstr ""
774
-
775
- #: core/options-pages.php:1868
776
- msgid "Media Shortcodes"
777
- msgstr "メディアショートコード"
778
-
779
- #: core/options-pages.php:1877 core/options-pages.php:1880
780
- msgid "Enhanced media shortcodes"
781
- msgstr "強化されたメディアショートコード"
782
-
783
- #: core/options-pages.php:1881
784
- msgid ""
785
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
786
- "upload date, and media items number limit"
787
- msgstr ""
788
- "WordPress メディアショートコードを強化して、メディアショートコードがメディア"
789
- "タクソノミー、アップロード年月日、表示上限を認識できるようにする"
790
-
791
- #: core/options-pages.php:1882
792
- msgid "Gallery example:"
793
- msgstr "ギャラリー例:"
794
-
795
- #: core/options-pages.php:1883
796
- msgid "Audio playlist example:"
797
- msgstr "オーディオプレイリスト例:"
798
-
799
- #: core/options-pages.php:1884
800
- msgid "Video playlist example:"
801
- msgstr "動画プレイリスト例:"
802
-
803
- #: core/options-pages.php:1888
804
- msgid "Warning"
805
- msgstr ""
806
-
807
- #: core/options-pages.php:1891
808
- #, php-format
809
- msgid ""
810
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
811
- "\">Learn more</a>."
812
- msgstr ""
813
-
814
- #: core/options-pages.php:1896
815
- #, php-format
816
- msgid ""
817
- "Please check out your gallery front-end and back-end functionality once this "
818
- "option activated. If you find an issue please inform plugin authors at %s or "
819
- "%s."
820
- msgstr ""
821
- "このオプションを有効化したらギャラリーのフロントエンドとバックエンドの機能を"
822
- "確認してください。問題が見つかった場合は、 %s または %s でプラグイン作者にお"
823
- "知らせください。"
824
-
825
- #: core/options-pages.php:1977 core/options-pages.php:2124
826
- msgid "Assign following taxonomies to Media Library:"
827
- msgstr "メディアライブラリに以下のタクソノミーを割り当てる:"
828
-
829
- #: core/options-pages.php:1996 core/options-pages.php:2062
830
- #: core/options-pages.php:2146
831
- msgid "Assign Taxonomy"
832
- msgstr "タクソノミー割り当て"
833
-
834
- #: core/options-pages.php:1997 core/options-pages.php:2147
835
- msgid "Edit Taxonomy"
836
- msgstr "タクソノミーを編集"
837
-
838
- #: core/options-pages.php:2001 core/options-pages.php:2064
839
- msgid "Delete Taxonomy"
840
- msgstr "タクソノミーを削除"
841
-
842
- #: core/options-pages.php:2006 core/options-pages.php:2069
843
- msgid "Labels"
844
- msgstr "ラベル"
845
-
846
- #: core/options-pages.php:2008 core/options-pages.php:2071
847
- msgid "Singular"
848
- msgstr "単数形"
849
-
850
- #: core/options-pages.php:2009 core/options-pages.php:2072
851
- msgid "Plural"
852
- msgstr "複数形"
853
-
854
- #: core/options-pages.php:2010 core/options-pages.php:2073
855
- msgid "Menu Name"
856
- msgstr "メニュー名"
857
-
858
- #: core/options-pages.php:2023 core/options-pages.php:2046
859
- #: core/options-pages.php:2086 core/options-pages.php:2150
860
- msgid "Settings"
861
- msgstr "設定"
862
-
863
- #: core/options-pages.php:2025 core/options-pages.php:2088
864
- msgid "Taxonomy Name"
865
- msgstr "タクソノミー名"
866
-
867
- #: core/options-pages.php:2026 core/options-pages.php:2089
868
- msgid "Hierarchical"
869
- msgstr "階層化"
870
-
871
- #: core/options-pages.php:2027 core/options-pages.php:2090
872
- msgid "Column for List View"
873
- msgstr "リストビューへの列表示"
874
-
875
- #: core/options-pages.php:2028 core/options-pages.php:2048
876
- #: core/options-pages.php:2091 core/options-pages.php:2152
877
- msgid "Filter for List View"
878
- msgstr "リストビューへの絞り込みフィルター表示"
879
-
880
- #: core/options-pages.php:2029 core/options-pages.php:2049
881
- #: core/options-pages.php:2092 core/options-pages.php:2153
882
- msgid "Filter for Grid View / Media Popup"
883
- msgstr "グリッドビュー / メディアアップローダーへの絞り込みフィルター表示"
884
-
885
- #: core/options-pages.php:2030 core/options-pages.php:2050
886
- #: core/options-pages.php:2093 core/options-pages.php:2154
887
- msgid "Edit in Media Popup"
888
- msgstr "メディアアップローダー内での編集"
889
-
890
- #: core/options-pages.php:2031 core/options-pages.php:2094
891
- msgid "Show in Nav Menu"
892
- msgstr "ナビゲーションメニューに表示"
893
-
894
- #: core/options-pages.php:2032 core/options-pages.php:2095
895
- msgid "Remember Terms Order (sort)"
896
- msgstr "タームの並び順(ソート)を保持"
897
-
898
- #: core/options-pages.php:2033 core/options-pages.php:2096
899
- msgid "Show in REST"
900
- msgstr "REST で表示"
901
-
902
- #: core/options-pages.php:2034 core/options-pages.php:2097
903
- msgid "Rewrite Slug"
904
- msgstr "リライトスラッグ"
905
-
906
- #: core/options-pages.php:2035 core/options-pages.php:2098
907
- msgid "Slug with Front"
908
- msgstr ""
909
-
910
- #: core/options-pages.php:2110
911
- msgid "Add New Taxonomy"
912
- msgstr "新規タクソノミーを追加"
913
-
914
- #: core/options-pages.php:2120
915
- msgid "Non-Media Taxonomies"
916
- msgstr "メディアタクソノミー以外"
917
-
918
- #: core/options-pages.php:2183
919
- msgid "Options"
920
- msgstr "オプション"
921
-
922
- #: core/options-pages.php:2193 core/options-pages.php:2196
923
- msgid "Taxonomy archive pages"
924
- msgstr "タクソノミーアーカイブページ"
925
-
926
- #: core/options-pages.php:2197
927
- msgid "Turn on media taxonomy archive pages on the front-end"
928
- msgstr "フロントエンドのメディアタクソノミーアーカイブページを有効にする"
929
-
930
- #: core/options-pages.php:2198
931
- msgid ""
932
- "Re-save your permalink settings after this option change to make it work."
933
- msgstr ""
934
- "このオプションを変更した後、パーマリンクの設定を再度保存すると有効になりま"
935
- "す。"
936
-
937
- #: core/options-pages.php:2204 core/options-pages.php:2207
938
- msgid "Assign all like hierarchical"
939
- msgstr "すべてのタクソノミーを階層化風表示に設定"
940
-
941
- #: core/options-pages.php:2208
942
- msgid ""
943
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
944
- msgstr ""
945
- "グリッドビュー / メディアアップローダー内で非階層化タクソノミーを階層化タクソ"
946
- "ノミー風に表示する"
947
-
948
- #: core/options-pages.php:2271
949
- msgid "Add New MIME Type"
950
- msgstr "MIME タイプ新規追加"
951
-
952
- #: core/options-pages.php:2291 core/options-pages.php:2345
953
- msgid "Extension"
954
- msgstr "拡張子"
955
-
956
- #: core/options-pages.php:2292 core/options-pages.php:2346
957
- msgid "MIME Type"
958
- msgstr "MIME タイプ"
959
-
960
- #: core/options-pages.php:2293 core/options-pages.php:2347
961
- msgid "Singular Label"
962
- msgstr "単数形のラベル"
963
-
964
- #: core/options-pages.php:2294 core/options-pages.php:2348
965
- msgid "Plural Label"
966
- msgstr "複数形のラベル"
967
-
968
- #: core/options-pages.php:2295 core/options-pages.php:2324
969
- #: core/options-pages.php:2337 core/options-pages.php:2349
970
- msgid "Add Filter"
971
- msgstr "フィルターを追加"
972
-
973
- #: core/options-pages.php:2296 core/options-pages.php:2325
974
- #: core/options-pages.php:2338 core/options-pages.php:2350
975
- msgid "Allow Upload"
976
- msgstr "アップロードを許可"
977
-
978
- #: core/options-pages.php:2326 core/options-pages.php:2339
979
- msgid "Delete MIME Type"
980
- msgstr "MIME タイプ削除"
981
-
982
- #: core/options-pages.php:2415
983
- msgid "Changelog"
984
- msgstr "変更履歴"
985
-
986
- #: core/options-pages.php:2416
987
- msgid "What's new in"
988
- msgstr "新着情報"
989
-
990
- #: core/options-pages.php:2416
991
- msgid "version"
992
- msgstr "バージョン"
993
-
994
- #: core/options-pages.php:2419
995
- msgid "More features under the hood"
996
- msgstr "PRO の追加機能をウェブサイトで確認"
997
-
998
- #: core/options-pages.php:2421
999
- msgid "Support"
1000
- msgstr "サポート"
1001
-
1002
- #: core/options-pages.php:2422
1003
- msgid "Feel free to ask for help on"
1004
- msgstr "お気軽にお問い合わせください。"
1005
-
1006
- #: core/options-pages.php:2422
1007
- msgid "Support is free for both versions of the plugin."
1008
- msgstr "サポートはプラグインの両方のバージョンで無料です。"
1009
-
1010
- #: core/options-pages.php:2424
1011
- msgid "Plugin rating"
1012
- msgstr "プラグインの評価"
1013
-
1014
- #: core/options-pages.php:2425
1015
- msgid "Please"
1016
- msgstr "ぜひ"
1017
-
1018
- #: core/options-pages.php:2425
1019
- msgid "vote for the plugin"
1020
- msgstr "このプラグインに投票してください"
1021
-
1022
- #: core/options-pages.php:2425
1023
- msgid "Thanks!"
1024
- msgstr "ありがとうございます !"
1025
-
1026
- #: core/options-pages.php:2427
1027
- msgid "Other plugins you may find useful"
1028
- msgstr "その他の便利なプラグイン"
1029
-
1030
- #: core/options-pages.php:2469
1031
- msgid "Utility"
1032
- msgstr "ユーティリティー"
1033
-
1034
- #: core/options-pages.php:2494
1035
- msgid "Rate us:"
1036
- msgstr ""
1037
-
1038
- #: core/options-pages.php:2494
1039
- msgid "Poor"
1040
- msgstr ""
1041
-
1042
- #: core/options-pages.php:2494
1043
- msgid "Works"
1044
- msgstr ""
1045
-
1046
- #: core/options-pages.php:2494
1047
- msgid "Good"
1048
- msgstr ""
1049
-
1050
- #: core/options-pages.php:2494
1051
- msgid "Great"
1052
- msgstr ""
1053
-
1054
- #: core/options-pages.php:2494
1055
- msgid "Fantastic!"
1056
- msgstr ""
1057
-
1058
- #: core/taxonomies.php:101
1059
- msgid "Media Taxonomies settings saved."
1060
- msgstr "メディアタクソノミー設定を保存しました。"
1061
-
1062
- #: core/taxonomies.php:174
1063
- msgid "Media Library settings saved."
1064
- msgstr "メディアライブラリ設定を保存しました。"
1065
-
1066
- #: core/taxonomies.php:353
1067
- msgid "Filter by author"
1068
- msgstr ""
1069
-
1070
- #: core/taxonomies.php:357
1071
- msgid "All Authors"
1072
- msgstr ""
1073
-
1074
- #: core/taxonomies.php:374 core/taxonomies.php:380
1075
- #: enhanced-media-library.php:561
1076
- msgid "Filter by"
1077
- msgstr "絞り込みフィルター"
1078
-
1079
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1080
- msgid "Not in a"
1081
- msgstr "除外"
1082
-
1083
- #: core/taxonomies.php:721
1084
- msgid "Add some"
1085
- msgstr ""
1086
-
1087
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1088
- msgid "All Uncategorized"
1089
- msgstr "すべての未分類"
1090
-
1091
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1092
- msgid "Reset All Filters"
1093
- msgstr "絞り込みを解除"
1094
-
1095
- #: enhanced-media-library.php:391
1096
- msgid "More Details"
1097
- msgstr ""
1098
-
1099
- #: enhanced-media-library.php:392
1100
- msgid "Less Details"
1101
- msgstr ""
1102
-
1103
- #: enhanced-media-library.php:565
1104
- msgid "author"
1105
- msgstr ""
1106
-
1107
- #: enhanced-media-library.php:566
1108
- msgid "authors"
1109
- msgstr ""
1110
-
1111
- #: enhanced-media-library.php:569
1112
- msgid "Saved."
1113
- msgstr ""
1114
-
1115
- #: enhanced-media-library.php:570
1116
- msgid "Something went wrong."
1117
- msgstr ""
1118
-
1119
- #: enhanced-media-library.php:573
1120
- msgid "Select All"
1121
- msgstr ""
1122
-
1123
- #: enhanced-media-library.php:574
1124
- msgid "Deselect "
1125
- msgstr ""
1126
-
1127
- #: enhanced-media-library.php:603
1128
- msgid "Uploaded to post #"
1129
- msgstr "ファイルがアップロードされている投稿 ID"
1130
-
1131
- #: enhanced-media-library.php:604
1132
- msgid "Based On"
1133
- msgstr "参照"
1134
-
1135
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1136
- msgid "Media Categories"
1137
- msgstr "メディアカテゴリー"
1138
-
1139
- #: enhanced-media-library.php:674
1140
- msgid "Media Category"
1141
- msgstr "メディアカテゴリー"
1142
-
1143
- #: enhanced-media-library.php:676
1144
- msgid "All Media Categories"
1145
- msgstr "すべてのメディアカテゴリー"
1146
-
1147
- #: enhanced-media-library.php:677
1148
- msgid "Edit Media Category"
1149
- msgstr "メディアカテゴリーを編集"
1150
-
1151
- #: enhanced-media-library.php:678
1152
- msgid "View Media Category"
1153
- msgstr "メディアカテゴリーを表示"
1154
-
1155
- #: enhanced-media-library.php:679
1156
- msgid "Update Media Category"
1157
- msgstr "メディアカテゴリーを更新"
1158
-
1159
- #: enhanced-media-library.php:680
1160
- msgid "Add New Media Category"
1161
- msgstr "新規メディアカテゴリーを追加"
1162
-
1163
- #: enhanced-media-library.php:681
1164
- msgid "New Media Category Name"
1165
- msgstr "新規メディアカテゴリー名"
1166
-
1167
- #: enhanced-media-library.php:682
1168
- msgid "Parent Media Category"
1169
- msgstr "親メディアカテゴリー"
1170
-
1171
- #: enhanced-media-library.php:683
1172
- msgid "Parent Media Category:"
1173
- msgstr "親メディアカテゴリー:"
1174
-
1175
- #: enhanced-media-library.php:684
1176
- msgid "Search Media Categories"
1177
- msgstr "メディアカテゴリーを検索"
1178
-
1179
- #. Plugin URI of the plugin/theme
1180
- #. Author URI of the plugin/theme
1181
- msgid "http://wpUXsolutions.com"
1182
- msgstr "http://wpUXsolutions.com"
1183
-
1184
- #. Description of the plugin/theme
1185
- msgid ""
1186
- "This plugin will be handy for those who need to manage a lot of media files."
1187
- msgstr "このプラグインは、多くのメディアファイルを管理したい人に便利です。"
1188
-
1189
- #. Author of the plugin/theme
1190
- msgid "wpUXsolutions"
1191
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ko_KR.mo DELETED
Binary file
languages/enhanced-media-library-ko_KR.po DELETED
@@ -1,1168 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Korean
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:47+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ko_KR\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=1; plural=0;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "제거"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "선택 해제"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "이 이미지에 캡션을 추가..."
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "이 비디오를 설명..."
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "이 오디오 파일을 설명..."
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "이 미디어 파일을 설명..."
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr ""
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr ""
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] ""
54
-
55
- #: core/options-pages.php:97 core/options-pages.php:106
56
- #: core/options-pages.php:115 core/options-pages.php:124
57
- #: core/options-pages.php:321 core/options-pages.php:399
58
- #: core/options-pages.php:1694 core/options-pages.php:1952
59
- #: core/options-pages.php:2265 core/options-pages.php:2465
60
- msgid "Media Settings"
61
- msgstr "미디어 설정"
62
-
63
- #: core/options-pages.php:106 core/options-pages.php:107
64
- #: core/options-pages.php:363 core/options-pages.php:1019
65
- msgid "Media Library"
66
- msgstr "미디어 라이브러리"
67
-
68
- #: core/options-pages.php:115 core/options-pages.php:116
69
- #: core/options-pages.php:364 core/options-pages.php:1033
70
- #: core/options-pages.php:1742 core/options-pages.php:1973
71
- msgid "Media Taxonomies"
72
- msgstr "미디어 카테고리"
73
-
74
- #: core/options-pages.php:124 core/options-pages.php:125
75
- #: core/options-pages.php:365 core/options-pages.php:1047
76
- msgid "MIME Types"
77
- msgstr "MIME 유형"
78
-
79
- #. Plugin Name of the plugin/theme
80
- #: core/options-pages.php:166 core/options-pages.php:167
81
- #: core/options-pages.php:194 core/options-pages.php:195
82
- msgid "Enhanced Media Library"
83
- msgstr "Enhanced Media Library"
84
-
85
- #: core/options-pages.php:362
86
- msgid "General"
87
- msgstr ""
88
-
89
- #: core/options-pages.php:388 core/options-pages.php:395
90
- #: core/options-pages.php:732 core/options-pages.php:740
91
- #: core/options-pages.php:925 core/options-pages.php:1682
92
- #: core/options-pages.php:1689 core/options-pages.php:1940
93
- #: core/options-pages.php:1947 core/options-pages.php:2252
94
- #: core/options-pages.php:2259
95
- msgid "You do not have sufficient permissions to access this page."
96
- msgstr "이 페이지에 접근할 권한이 없습니다."
97
-
98
- #: core/options-pages.php:410
99
- msgid "Image sizes"
100
- msgstr ""
101
-
102
- #: core/options-pages.php:411
103
- msgid ""
104
- "The sizes listed below determine the maximum dimensions in pixels to use "
105
- "when adding an image to the Media Library."
106
- msgstr ""
107
-
108
- #: core/options-pages.php:415
109
- msgid "Thumbnail size"
110
- msgstr ""
111
-
112
- #: core/options-pages.php:417
113
- msgid "Width"
114
- msgstr ""
115
-
116
- #: core/options-pages.php:419
117
- msgid "Height"
118
- msgstr ""
119
-
120
- #: core/options-pages.php:422
121
- msgid ""
122
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
123
- msgstr ""
124
-
125
- #: core/options-pages.php:427 core/options-pages.php:428
126
- msgid "Medium size"
127
- msgstr ""
128
-
129
- #: core/options-pages.php:429 core/options-pages.php:440
130
- msgid "Max Width"
131
- msgstr ""
132
-
133
- #: core/options-pages.php:432 core/options-pages.php:443
134
- msgid "Max Height"
135
- msgstr ""
136
-
137
- #: core/options-pages.php:438 core/options-pages.php:439
138
- msgid "Large size"
139
- msgstr ""
140
-
141
- #: core/options-pages.php:456
142
- msgid "Embeds"
143
- msgstr ""
144
-
145
- #: core/options-pages.php:463
146
- msgid "Uploading Files"
147
- msgstr ""
148
-
149
- #: core/options-pages.php:470
150
- msgid "Store uploads in this folder"
151
- msgstr ""
152
-
153
- #: core/options-pages.php:474
154
- #, php-format
155
- msgid "Default is %s"
156
- msgstr ""
157
-
158
- #: core/options-pages.php:480
159
- msgid "Full URL path to files"
160
- msgstr ""
161
-
162
- #: core/options-pages.php:482
163
- msgid "Configuring this is optional. By default, it should be blank."
164
- msgstr ""
165
-
166
- #: core/options-pages.php:490
167
- msgid "Organize my uploads into month- and year-based folders"
168
- msgstr ""
169
-
170
- #: core/options-pages.php:560 core/options-pages.php:1997
171
- #: core/options-pages.php:2012 core/options-pages.php:2075
172
- #: core/options-pages.php:2147
173
- msgid "Edit"
174
- msgstr "편집"
175
-
176
- #: core/options-pages.php:561
177
- msgid "Close"
178
- msgstr "닫기"
179
-
180
- #: core/options-pages.php:562 core/options-pages.php:2013
181
- #: core/options-pages.php:2076
182
- msgid "View"
183
- msgstr "보기"
184
-
185
- #: core/options-pages.php:563 core/options-pages.php:2014
186
- #: core/options-pages.php:2077
187
- msgid "Update"
188
- msgstr "업데이트"
189
-
190
- #: core/options-pages.php:564 core/options-pages.php:2015
191
- #: core/options-pages.php:2078
192
- msgid "Add New"
193
- msgstr "새로 추가하기"
194
-
195
- #: core/options-pages.php:565 core/options-pages.php:2016
196
- #: core/options-pages.php:2079
197
- msgid "New"
198
- msgstr "신규"
199
-
200
- #: core/options-pages.php:566
201
- msgid "Name"
202
- msgstr "이름"
203
-
204
- #: core/options-pages.php:567 core/options-pages.php:2017
205
- #: core/options-pages.php:2080
206
- msgid "Parent"
207
- msgstr "부모"
208
-
209
- #: core/options-pages.php:568 core/options-pages.php:862
210
- #: core/options-pages.php:1084 core/options-pages.php:2011
211
- #: core/options-pages.php:2074 core/taxonomies.php:381
212
- #: enhanced-media-library.php:562
213
- msgid "All"
214
- msgstr "모두"
215
-
216
- #: core/options-pages.php:569 core/options-pages.php:2018
217
- #: core/options-pages.php:2081
218
- msgid "Search"
219
- msgstr "검색"
220
-
221
- #: core/options-pages.php:571 core/options-pages.php:2062
222
- msgid "New Taxonomy"
223
- msgstr "새로운 카테고리"
224
-
225
- #: core/options-pages.php:573
226
- msgid "Remove Taxonomy"
227
- msgstr ""
228
-
229
- #: core/options-pages.php:574
230
- msgid "Taxonomy will be removed."
231
- msgstr ""
232
-
233
- #: core/options-pages.php:575
234
- msgid ""
235
- "Taxonomy terms (categories) will remain intact in the database. If you "
236
- "create a taxonomy with the same name in the future, its terms (categories) "
237
- "will be available again."
238
- msgstr ""
239
-
240
- #: core/options-pages.php:576
241
- msgid "Media items will remain intact."
242
- msgstr ""
243
-
244
- #: core/options-pages.php:577
245
- msgid "Are you still sure?"
246
- msgstr ""
247
-
248
- #: core/options-pages.php:578
249
- msgid "Yes, remove taxonomy"
250
- msgstr ""
251
-
252
- #: core/options-pages.php:580
253
- msgid "Duplicate"
254
- msgstr ""
255
-
256
- #: core/options-pages.php:581
257
- msgid "Taxonomy with the same name already exists. Please chose other one."
258
- msgstr ""
259
-
260
- #: core/options-pages.php:583
261
- msgid "Empty Fields"
262
- msgstr ""
263
-
264
- #: core/options-pages.php:584
265
- msgid "Wrong Taxonomy Name"
266
- msgstr ""
267
-
268
- #: core/options-pages.php:585
269
- msgid "Wrong Slug"
270
- msgstr ""
271
-
272
- #: core/options-pages.php:587
273
- msgid "Please choose Singular and Plural names for all new taxomonies."
274
- msgstr ""
275
-
276
- #: core/options-pages.php:588
277
- msgid "Please choose Singular name for all new taxomonies."
278
- msgstr ""
279
-
280
- #: core/options-pages.php:589
281
- msgid "Please choose Plural name for all new taxomonies."
282
- msgstr ""
283
-
284
- #: core/options-pages.php:591
285
- msgid ""
286
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
287
- "name please enter it manually."
288
- msgstr ""
289
-
290
- #: core/options-pages.php:592
291
- msgid ""
292
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
293
- "character ( _ ), and be 3-32 characters long."
294
- msgstr ""
295
-
296
- #: core/options-pages.php:593
297
- msgid ""
298
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
299
- "or hyphen ( - ) characters."
300
- msgstr ""
301
-
302
- #: core/options-pages.php:595 core/options-pages.php:644
303
- msgid "Ok"
304
- msgstr ""
305
-
306
- #: core/options-pages.php:596 core/options-pages.php:601
307
- #: core/options-pages.php:645 core/options-pages.php:690
308
- msgid "Cancel"
309
- msgstr ""
310
-
311
- #: core/options-pages.php:598
312
- msgid "Synchronize Now"
313
- msgstr ""
314
-
315
- #: core/options-pages.php:599 core/options-pages.php:687
316
- msgid "This operation cannot be canceled! Are you still sure?"
317
- msgstr ""
318
-
319
- #: core/options-pages.php:600
320
- msgid "Synchronize"
321
- msgstr ""
322
-
323
- #: core/options-pages.php:602
324
- msgid "Synchronizing..."
325
- msgstr ""
326
-
327
- #: core/options-pages.php:639 core/options-pages.php:2388
328
- msgid "Restore WordPress default MIME Types"
329
- msgstr ""
330
-
331
- #: core/options-pages.php:640
332
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
333
- msgstr "경고! 이 작업으로 인해 모든 사용자 지정 MIME 유형이 삭제됩니다."
334
-
335
- #: core/options-pages.php:641
336
- msgid "Restore Defaults"
337
- msgstr ""
338
-
339
- #: core/options-pages.php:642
340
- msgid "Restoring..."
341
- msgstr ""
342
-
343
- #: core/options-pages.php:647
344
- msgid "MIME Types cannot be saved"
345
- msgstr ""
346
-
347
- #: core/options-pages.php:648
348
- msgid "Please fill into all fields."
349
- msgstr "모든 필드에 입력해주세요."
350
-
351
- #: core/options-pages.php:649
352
- msgid "Duplicate extensions or MIME types. Please choose other one."
353
- msgstr "중복 확장자 또는 MIME 유형. 다른 것을 선택해주세요."
354
-
355
- #: core/options-pages.php:685 core/options-pages.php:853
356
- #: core/options-pages.php:1063
357
- msgid "Complete Cleanup"
358
- msgstr ""
359
-
360
- #: core/options-pages.php:686
361
- msgid ""
362
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
363
- "plugin data</strong> from the database including backups."
364
- msgstr ""
365
-
366
- #: core/options-pages.php:688
367
- msgid "Yes, delete all data"
368
- msgstr ""
369
-
370
- #: core/options-pages.php:689
371
- msgid "Cleaning..."
372
- msgstr ""
373
-
374
- #: core/options-pages.php:693 core/options-pages.php:996
375
- msgid "Unify Media Settings over Network"
376
- msgstr ""
377
-
378
- #: core/options-pages.php:696 core/options-pages.php:700
379
- #: core/options-pages.php:704
380
- msgid "will be overwritten"
381
- msgstr ""
382
-
383
- #: core/options-pages.php:706
384
- msgid "Apply"
385
- msgstr ""
386
-
387
- #: core/options-pages.php:707
388
- msgid "Applying Settings..."
389
- msgstr ""
390
-
391
- #: core/options-pages.php:746 core/options-pages.php:935
392
- msgid "Enhanced Media Library Utilities"
393
- msgstr ""
394
-
395
- #: core/options-pages.php:756
396
- msgid "Export"
397
- msgstr ""
398
-
399
- #: core/options-pages.php:761
400
- msgid "Plugin settings to export:"
401
- msgstr ""
402
-
403
- #: core/options-pages.php:762 core/options-pages.php:789
404
- #: core/options-pages.php:829
405
- msgid "Settings > Media Library"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:763 core/options-pages.php:790
409
- #: core/options-pages.php:830
410
- msgid "Settings > Media Taxonomies"
411
- msgstr ""
412
-
413
- #: core/options-pages.php:764 core/options-pages.php:791
414
- #: core/options-pages.php:831
415
- msgid "Settings > MIME Types"
416
- msgstr ""
417
-
418
- #: core/options-pages.php:768
419
- msgid ""
420
- "Use generated JSON file to import the configuration into another website."
421
- msgstr ""
422
-
423
- #: core/options-pages.php:773
424
- msgid "Export Plugin Settings"
425
- msgstr ""
426
-
427
- #: core/options-pages.php:783
428
- msgid "Import"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:788
432
- msgid "Plugin settings to import:"
433
- msgstr ""
434
-
435
- #: core/options-pages.php:794
436
- msgid ""
437
- "Plugin settings will be imported from a configuration JSON file which can be "
438
- "obtained by exporting the settings on another website using the export "
439
- "button above."
440
- msgstr ""
441
-
442
- #: core/options-pages.php:795
443
- msgid ""
444
- "All plugin settings will be overridden by the import. You will have a chance "
445
- "to restore current data from an automatic backup in case you are not "
446
- "satisfied with the result of the import."
447
- msgstr ""
448
-
449
- #: core/options-pages.php:801
450
- msgid "Import Plugin Settings"
451
- msgstr ""
452
-
453
- #: core/options-pages.php:813
454
- msgid "Restore"
455
- msgstr ""
456
-
457
- #: core/options-pages.php:819
458
- msgid "No backup available at the moment."
459
- msgstr ""
460
-
461
- #: core/options-pages.php:821
462
- msgid "Backup will be created automatically before any import operation."
463
- msgstr ""
464
-
465
- #: core/options-pages.php:825
466
- msgid ""
467
- "The backup has been automatically created before the latest import operation."
468
- msgstr ""
469
-
470
- #: core/options-pages.php:828
471
- msgid "Plugin settings to restore:"
472
- msgstr ""
473
-
474
- #: core/options-pages.php:837
475
- msgid "Restore Settings from the Backup"
476
- msgstr ""
477
-
478
- #: core/options-pages.php:860 core/options-pages.php:1082
479
- msgid "What will be deleted:"
480
- msgstr ""
481
-
482
- #: core/options-pages.php:865
483
- msgid "All plugin options"
484
- msgstr ""
485
-
486
- #: core/options-pages.php:866 core/options-pages.php:1089
487
- msgid "All plugin backups stored in the database"
488
- msgstr ""
489
-
490
- #: core/options-pages.php:870 core/options-pages.php:1093
491
- msgid "What will remain intact:"
492
- msgstr ""
493
-
494
- #: core/options-pages.php:871 core/options-pages.php:1094
495
- msgid "All media items"
496
- msgstr ""
497
-
498
- #: core/options-pages.php:872 core/options-pages.php:1095
499
- msgid "All taxonomies not listed above"
500
- msgstr ""
501
-
502
- #: core/options-pages.php:875 core/options-pages.php:1098
503
- msgid ""
504
- "The plugin cannot delete itself for security reasons. Please delete it "
505
- "manually from the plugin list after the cleanup is complete."
506
- msgstr ""
507
-
508
- #: core/options-pages.php:877 core/options-pages.php:1100
509
- msgid ""
510
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
511
- "backup of your database prior to cleanup!"
512
- msgstr ""
513
-
514
- #: core/options-pages.php:882
515
- msgid "Delete All Data & Deactivate"
516
- msgstr ""
517
-
518
- #: core/options-pages.php:945
519
- msgid "Network Settings"
520
- msgstr ""
521
-
522
- #: core/options-pages.php:952 core/options-pages.php:1003
523
- msgid "No settings available. The plugin is not network activated."
524
- msgstr ""
525
-
526
- #: core/options-pages.php:963
527
- msgid "Media Settings per site"
528
- msgstr ""
529
-
530
- #: core/options-pages.php:966
531
- msgid "Enable Media Settings"
532
- msgstr ""
533
-
534
- #: core/options-pages.php:967
535
- msgid "Allow an individual site admin to edit enhanced Media Settings"
536
- msgstr ""
537
-
538
- #: core/options-pages.php:968
539
- msgid ""
540
- "Otherwise, only a network (super) admin can see the menu and edit media "
541
- "settings."
542
- msgstr ""
543
-
544
- #: core/options-pages.php:974
545
- msgid "Plugin Utilities per site"
546
- msgstr ""
547
-
548
- #: core/options-pages.php:977
549
- msgid "Enable plugin Utilities"
550
- msgstr ""
551
-
552
- #: core/options-pages.php:978
553
- msgid ""
554
- "Allow an individual site admin to import / export / restore plugin settings "
555
- "and perform the complete cleanup for a specific site"
556
- msgstr ""
557
-
558
- #: core/options-pages.php:979
559
- msgid ""
560
- "Otherwise, only a network (super) admin can see the menu and perform those "
561
- "actions."
562
- msgstr ""
563
-
564
- #: core/options-pages.php:986 core/options-pages.php:1770
565
- #: core/options-pages.php:1824 core/options-pages.php:1861
566
- #: core/options-pages.php:1905 core/options-pages.php:2113
567
- #: core/options-pages.php:2177 core/options-pages.php:2215
568
- #: core/options-pages.php:2386 enhanced-media-library.php:571
569
- msgid "Save Changes"
570
- msgstr "변경 사항 저장"
571
-
572
- #: core/options-pages.php:1012 core/options-pages.php:1015
573
- msgid "Media Library Settings"
574
- msgstr ""
575
-
576
- #: core/options-pages.php:1016 core/options-pages.php:1030
577
- #: core/options-pages.php:1044
578
- msgid "Apply to ALL Network websites"
579
- msgstr ""
580
-
581
- #: core/options-pages.php:1026 core/options-pages.php:1029
582
- msgid "Media Taxonomies Settings"
583
- msgstr ""
584
-
585
- #: core/options-pages.php:1040 core/options-pages.php:1043
586
- msgid "MIME Types Settings"
587
- msgstr ""
588
-
589
- #: core/options-pages.php:1087
590
- msgid "All plugin options on every site"
591
- msgstr ""
592
-
593
- #: core/options-pages.php:1088
594
- msgid "Network settings"
595
- msgstr ""
596
-
597
- #: core/options-pages.php:1105
598
- msgid "Delete All Data & Network Deactivate"
599
- msgstr ""
600
-
601
- #: core/options-pages.php:1225
602
- msgid "Network settings saved."
603
- msgstr ""
604
-
605
- #: core/options-pages.php:1319
606
- msgid "Settings cannot be imported. Please upload a file to import settings."
607
- msgstr ""
608
-
609
- #: core/options-pages.php:1340
610
- msgid ""
611
- "Settings cannot be imported. Please upload a correct JSON file to import "
612
- "settings."
613
- msgstr ""
614
-
615
- #: core/options-pages.php:1356
616
- msgid "Plugin settings imported."
617
- msgstr ""
618
-
619
- #: core/options-pages.php:1409
620
- msgid "Plugin settings restored from the backup."
621
- msgstr ""
622
-
623
- #: core/options-pages.php:1714
624
- msgid "Filters"
625
- msgstr ""
626
-
627
- #: core/options-pages.php:1723 core/options-pages.php:1726
628
- msgid "Force filters"
629
- msgstr "필터 강제 적용"
630
-
631
- #: core/options-pages.php:1727
632
- msgid "Show media filters for ANY Media Popup"
633
- msgstr ""
634
-
635
- #: core/options-pages.php:1728
636
- msgid "Try this if filters are not shown for third-party plugins or themes."
637
- msgstr ""
638
-
639
- #: core/options-pages.php:1734 core/options-pages.php:1737
640
- msgid "Filters to show"
641
- msgstr ""
642
-
643
- #: core/options-pages.php:1738
644
- msgid "Types"
645
- msgstr ""
646
-
647
- #: core/options-pages.php:1739
648
- msgid "Can be disabled for Grid Mode only"
649
- msgstr ""
650
-
651
- #: core/options-pages.php:1740
652
- msgid "Dates"
653
- msgstr ""
654
-
655
- #: core/options-pages.php:1741
656
- msgid "Authors"
657
- msgstr ""
658
-
659
- #: core/options-pages.php:1748 core/options-pages.php:1751
660
- msgid "Show count"
661
- msgstr ""
662
-
663
- #: core/options-pages.php:1752
664
- msgid "Show item count per category for media filters"
665
- msgstr ""
666
-
667
- #: core/options-pages.php:1753
668
- msgid ""
669
- "Disable this if it slows down your site admin. The problem is resolved in "
670
- "the upcoming major update v3.0"
671
- msgstr ""
672
-
673
- #: core/options-pages.php:1759 core/options-pages.php:1762
674
- msgid "Include children"
675
- msgstr ""
676
-
677
- #: core/options-pages.php:1763
678
- msgid "Show media items of child media categories as a result of filtering"
679
- msgstr ""
680
-
681
- #: core/options-pages.php:1780
682
- msgid "Order"
683
- msgstr ""
684
-
685
- #: core/options-pages.php:1789
686
- msgid "Order media items by"
687
- msgstr ""
688
-
689
- #: core/options-pages.php:1792
690
- msgid "Date"
691
- msgstr ""
692
-
693
- #: core/options-pages.php:1793 core/options-pages.php:1853
694
- msgid "Title"
695
- msgstr ""
696
-
697
- #: core/options-pages.php:1794
698
- msgid "Custom Order"
699
- msgstr ""
700
-
701
- #: core/options-pages.php:1796 core/options-pages.php:1808
702
- msgid "For media library and media popups"
703
- msgstr ""
704
-
705
- #: core/options-pages.php:1797
706
- msgid ""
707
- "Allows changing media items order by drag and drop with Custom Order value."
708
- msgstr ""
709
-
710
- #: core/options-pages.php:1802
711
- msgid "Sort order"
712
- msgstr ""
713
-
714
- #: core/options-pages.php:1805
715
- msgid "Ascending"
716
- msgstr ""
717
-
718
- #: core/options-pages.php:1806
719
- msgid "Descending"
720
- msgstr ""
721
-
722
- #: core/options-pages.php:1813 core/options-pages.php:1816
723
- msgid "Natural sort order"
724
- msgstr ""
725
-
726
- #: core/options-pages.php:1817
727
- msgid "Apply human-friendly sort order to Media Library and Galleries"
728
- msgstr ""
729
-
730
- #: core/options-pages.php:1818
731
- msgid ""
732
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
733
- "3, abc-11, abc-2]"
734
- msgstr ""
735
-
736
- #: core/options-pages.php:1831
737
- msgid "Grid Mode"
738
- msgstr ""
739
-
740
- #: core/options-pages.php:1840 core/options-pages.php:1843
741
- msgid "Show caption"
742
- msgstr ""
743
-
744
- #: core/options-pages.php:1844
745
- msgid "Add text caption for media item thumbnails"
746
- msgstr ""
747
-
748
- #: core/options-pages.php:1850
749
- msgid "Caption type"
750
- msgstr ""
751
-
752
- #: core/options-pages.php:1854
753
- msgid "Filename"
754
- msgstr ""
755
-
756
- #: core/options-pages.php:1855
757
- msgid "Caption"
758
- msgstr ""
759
-
760
- #: core/options-pages.php:1868
761
- msgid "Media Shortcodes"
762
- msgstr ""
763
-
764
- #: core/options-pages.php:1877 core/options-pages.php:1880
765
- msgid "Enhanced media shortcodes"
766
- msgstr ""
767
-
768
- #: core/options-pages.php:1881
769
- msgid ""
770
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
771
- "upload date, and media items number limit"
772
- msgstr ""
773
-
774
- #: core/options-pages.php:1882
775
- msgid "Gallery example:"
776
- msgstr ""
777
-
778
- #: core/options-pages.php:1883
779
- msgid "Audio playlist example:"
780
- msgstr ""
781
-
782
- #: core/options-pages.php:1884
783
- msgid "Video playlist example:"
784
- msgstr ""
785
-
786
- #: core/options-pages.php:1888
787
- msgid "Warning"
788
- msgstr ""
789
-
790
- #: core/options-pages.php:1891
791
- #, php-format
792
- msgid ""
793
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
794
- "\">Learn more</a>."
795
- msgstr ""
796
-
797
- #: core/options-pages.php:1896
798
- #, php-format
799
- msgid ""
800
- "Please check out your gallery front-end and back-end functionality once this "
801
- "option activated. If you find an issue please inform plugin authors at %s or "
802
- "%s."
803
- msgstr ""
804
-
805
- #: core/options-pages.php:1977 core/options-pages.php:2124
806
- msgid "Assign following taxonomies to Media Library:"
807
- msgstr "다음 카테고리를 미디어 라이브러리에 할당:"
808
-
809
- #: core/options-pages.php:1996 core/options-pages.php:2062
810
- #: core/options-pages.php:2146
811
- msgid "Assign Taxonomy"
812
- msgstr "카테고리 할당"
813
-
814
- #: core/options-pages.php:1997 core/options-pages.php:2147
815
- msgid "Edit Taxonomy"
816
- msgstr "카테고리 편집"
817
-
818
- #: core/options-pages.php:2001 core/options-pages.php:2064
819
- msgid "Delete Taxonomy"
820
- msgstr "카테고리 삭제"
821
-
822
- #: core/options-pages.php:2006 core/options-pages.php:2069
823
- msgid "Labels"
824
- msgstr "라벨"
825
-
826
- #: core/options-pages.php:2008 core/options-pages.php:2071
827
- msgid "Singular"
828
- msgstr "단수"
829
-
830
- #: core/options-pages.php:2009 core/options-pages.php:2072
831
- msgid "Plural"
832
- msgstr "복수"
833
-
834
- #: core/options-pages.php:2010 core/options-pages.php:2073
835
- msgid "Menu Name"
836
- msgstr "메뉴명"
837
-
838
- #: core/options-pages.php:2023 core/options-pages.php:2046
839
- #: core/options-pages.php:2086 core/options-pages.php:2150
840
- msgid "Settings"
841
- msgstr "설정"
842
-
843
- #: core/options-pages.php:2025 core/options-pages.php:2088
844
- msgid "Taxonomy Name"
845
- msgstr "카테고리명"
846
-
847
- #: core/options-pages.php:2026 core/options-pages.php:2089
848
- msgid "Hierarchical"
849
- msgstr "계층 구조"
850
-
851
- #: core/options-pages.php:2027 core/options-pages.php:2090
852
- msgid "Column for List View"
853
- msgstr ""
854
-
855
- #: core/options-pages.php:2028 core/options-pages.php:2048
856
- #: core/options-pages.php:2091 core/options-pages.php:2152
857
- msgid "Filter for List View"
858
- msgstr ""
859
-
860
- #: core/options-pages.php:2029 core/options-pages.php:2049
861
- #: core/options-pages.php:2092 core/options-pages.php:2153
862
- msgid "Filter for Grid View / Media Popup"
863
- msgstr ""
864
-
865
- #: core/options-pages.php:2030 core/options-pages.php:2050
866
- #: core/options-pages.php:2093 core/options-pages.php:2154
867
- msgid "Edit in Media Popup"
868
- msgstr "미디어 팝업에서 편집"
869
-
870
- #: core/options-pages.php:2031 core/options-pages.php:2094
871
- msgid "Show in Nav Menu"
872
- msgstr "탐색 메뉴에서 표시"
873
-
874
- #: core/options-pages.php:2032 core/options-pages.php:2095
875
- msgid "Remember Terms Order (sort)"
876
- msgstr ""
877
-
878
- #: core/options-pages.php:2033 core/options-pages.php:2096
879
- msgid "Show in REST"
880
- msgstr ""
881
-
882
- #: core/options-pages.php:2034 core/options-pages.php:2097
883
- msgid "Rewrite Slug"
884
- msgstr "슬러그 다시 쓰기"
885
-
886
- #: core/options-pages.php:2035 core/options-pages.php:2098
887
- msgid "Slug with Front"
888
- msgstr "프런트를 포함한 슬러그"
889
-
890
- #: core/options-pages.php:2110
891
- msgid "Add New Taxonomy"
892
- msgstr "새로운 카테고리 추가"
893
-
894
- #: core/options-pages.php:2120
895
- msgid "Non-Media Taxonomies"
896
- msgstr "비 미디어 카테고리"
897
-
898
- #: core/options-pages.php:2183
899
- msgid "Options"
900
- msgstr "옵션"
901
-
902
- #: core/options-pages.php:2193 core/options-pages.php:2196
903
- msgid "Taxonomy archive pages"
904
- msgstr "카테고리 보관 페이지"
905
-
906
- #: core/options-pages.php:2197
907
- msgid "Turn on media taxonomy archive pages on the front-end"
908
- msgstr "전면에 미디어 카테고리 보관 페이지를 켜기"
909
-
910
- #: core/options-pages.php:2198
911
- msgid ""
912
- "Re-save your permalink settings after this option change to make it work."
913
- msgstr "이 옵션의 변경 사항을 적용하려면 고유주소 설정을 다시 저장하세요."
914
-
915
- #: core/options-pages.php:2204 core/options-pages.php:2207
916
- msgid "Assign all like hierarchical"
917
- msgstr "모두 계층 구조와 같이 할당"
918
-
919
- #: core/options-pages.php:2208
920
- msgid ""
921
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
922
- msgstr ""
923
- "그리드 화면 / 미디어 그룹에서 비 계층 구조 카테고리를 계층 구조와 같이 표시"
924
-
925
- #: core/options-pages.php:2271
926
- msgid "Add New MIME Type"
927
- msgstr "새로운 MIME 유형 추가"
928
-
929
- #: core/options-pages.php:2291 core/options-pages.php:2345
930
- msgid "Extension"
931
- msgstr "확장자"
932
-
933
- #: core/options-pages.php:2292 core/options-pages.php:2346
934
- msgid "MIME Type"
935
- msgstr "MIME 유형"
936
-
937
- #: core/options-pages.php:2293 core/options-pages.php:2347
938
- msgid "Singular Label"
939
- msgstr "단수 라벨"
940
-
941
- #: core/options-pages.php:2294 core/options-pages.php:2348
942
- msgid "Plural Label"
943
- msgstr "복수 라벨"
944
-
945
- #: core/options-pages.php:2295 core/options-pages.php:2324
946
- #: core/options-pages.php:2337 core/options-pages.php:2349
947
- msgid "Add Filter"
948
- msgstr "필터 추가"
949
-
950
- #: core/options-pages.php:2296 core/options-pages.php:2325
951
- #: core/options-pages.php:2338 core/options-pages.php:2350
952
- msgid "Allow Upload"
953
- msgstr "업로드 허용"
954
-
955
- #: core/options-pages.php:2326 core/options-pages.php:2339
956
- msgid "Delete MIME Type"
957
- msgstr "MIME 유형 삭제"
958
-
959
- #: core/options-pages.php:2415
960
- msgid "Changelog"
961
- msgstr ""
962
-
963
- #: core/options-pages.php:2416
964
- msgid "What's new in"
965
- msgstr ""
966
-
967
- #: core/options-pages.php:2416
968
- msgid "version"
969
- msgstr ""
970
-
971
- #: core/options-pages.php:2419
972
- msgid "More features under the hood"
973
- msgstr ""
974
-
975
- #: core/options-pages.php:2421
976
- msgid "Support"
977
- msgstr ""
978
-
979
- #: core/options-pages.php:2422
980
- msgid "Feel free to ask for help on"
981
- msgstr ""
982
-
983
- #: core/options-pages.php:2422
984
- msgid "Support is free for both versions of the plugin."
985
- msgstr ""
986
-
987
- #: core/options-pages.php:2424
988
- msgid "Plugin rating"
989
- msgstr ""
990
-
991
- #: core/options-pages.php:2425
992
- msgid "Please"
993
- msgstr ""
994
-
995
- #: core/options-pages.php:2425
996
- msgid "vote for the plugin"
997
- msgstr ""
998
-
999
- #: core/options-pages.php:2425
1000
- msgid "Thanks!"
1001
- msgstr ""
1002
-
1003
- #: core/options-pages.php:2427
1004
- msgid "Other plugins you may find useful"
1005
- msgstr ""
1006
-
1007
- #: core/options-pages.php:2469
1008
- msgid "Utility"
1009
- msgstr ""
1010
-
1011
- #: core/options-pages.php:2494
1012
- msgid "Rate us:"
1013
- msgstr ""
1014
-
1015
- #: core/options-pages.php:2494
1016
- msgid "Poor"
1017
- msgstr ""
1018
-
1019
- #: core/options-pages.php:2494
1020
- msgid "Works"
1021
- msgstr ""
1022
-
1023
- #: core/options-pages.php:2494
1024
- msgid "Good"
1025
- msgstr ""
1026
-
1027
- #: core/options-pages.php:2494
1028
- msgid "Great"
1029
- msgstr ""
1030
-
1031
- #: core/options-pages.php:2494
1032
- msgid "Fantastic!"
1033
- msgstr ""
1034
-
1035
- #: core/taxonomies.php:101
1036
- msgid "Media Taxonomies settings saved."
1037
- msgstr ""
1038
-
1039
- #: core/taxonomies.php:174
1040
- msgid "Media Library settings saved."
1041
- msgstr ""
1042
-
1043
- #: core/taxonomies.php:353
1044
- msgid "Filter by author"
1045
- msgstr ""
1046
-
1047
- #: core/taxonomies.php:357
1048
- msgid "All Authors"
1049
- msgstr ""
1050
-
1051
- #: core/taxonomies.php:374 core/taxonomies.php:380
1052
- #: enhanced-media-library.php:561
1053
- msgid "Filter by"
1054
- msgstr "필터 적용:"
1055
-
1056
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1057
- msgid "Not in a"
1058
- msgstr "포함되지 않음:"
1059
-
1060
- #: core/taxonomies.php:721
1061
- msgid "Add some"
1062
- msgstr ""
1063
-
1064
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1065
- msgid "All Uncategorized"
1066
- msgstr "모두 미분류됨"
1067
-
1068
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1069
- msgid "Reset All Filters"
1070
- msgstr "모든 필터 재설정"
1071
-
1072
- #: enhanced-media-library.php:391
1073
- msgid "More Details"
1074
- msgstr ""
1075
-
1076
- #: enhanced-media-library.php:392
1077
- msgid "Less Details"
1078
- msgstr ""
1079
-
1080
- #: enhanced-media-library.php:565
1081
- msgid "author"
1082
- msgstr ""
1083
-
1084
- #: enhanced-media-library.php:566
1085
- msgid "authors"
1086
- msgstr ""
1087
-
1088
- #: enhanced-media-library.php:569
1089
- msgid "Saved."
1090
- msgstr ""
1091
-
1092
- #: enhanced-media-library.php:570
1093
- msgid "Something went wrong."
1094
- msgstr "문제가 발생했습니다."
1095
-
1096
- #: enhanced-media-library.php:573
1097
- msgid "Select All"
1098
- msgstr "모두 선택"
1099
-
1100
- #: enhanced-media-library.php:574
1101
- msgid "Deselect "
1102
- msgstr ""
1103
-
1104
- #: enhanced-media-library.php:603
1105
- msgid "Uploaded to post #"
1106
- msgstr ""
1107
-
1108
- #: enhanced-media-library.php:604
1109
- msgid "Based On"
1110
- msgstr ""
1111
-
1112
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1113
- msgid "Media Categories"
1114
- msgstr ""
1115
-
1116
- #: enhanced-media-library.php:674
1117
- msgid "Media Category"
1118
- msgstr ""
1119
-
1120
- #: enhanced-media-library.php:676
1121
- msgid "All Media Categories"
1122
- msgstr ""
1123
-
1124
- #: enhanced-media-library.php:677
1125
- msgid "Edit Media Category"
1126
- msgstr ""
1127
-
1128
- #: enhanced-media-library.php:678
1129
- msgid "View Media Category"
1130
- msgstr ""
1131
-
1132
- #: enhanced-media-library.php:679
1133
- msgid "Update Media Category"
1134
- msgstr ""
1135
-
1136
- #: enhanced-media-library.php:680
1137
- msgid "Add New Media Category"
1138
- msgstr ""
1139
-
1140
- #: enhanced-media-library.php:681
1141
- msgid "New Media Category Name"
1142
- msgstr ""
1143
-
1144
- #: enhanced-media-library.php:682
1145
- msgid "Parent Media Category"
1146
- msgstr ""
1147
-
1148
- #: enhanced-media-library.php:683
1149
- msgid "Parent Media Category:"
1150
- msgstr ""
1151
-
1152
- #: enhanced-media-library.php:684
1153
- msgid "Search Media Categories"
1154
- msgstr ""
1155
-
1156
- #. Plugin URI of the plugin/theme
1157
- #. Author URI of the plugin/theme
1158
- msgid "http://wpUXsolutions.com"
1159
- msgstr ""
1160
-
1161
- #. Description of the plugin/theme
1162
- msgid ""
1163
- "This plugin will be handy for those who need to manage a lot of media files."
1164
- msgstr "이 플러그인은 많은 미디어 파일을 관리해야 하는 사용자에게 유용합니다."
1165
-
1166
- #. Author of the plugin/theme
1167
- msgid "wpUXsolutions"
1168
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-nl_NL.mo DELETED
Binary file
languages/enhanced-media-library-nl_NL.po DELETED
@@ -1,1237 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Dutch
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:47+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: nl\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 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "Verwijderen"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "Deselecteren"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "Onderschrift voor deze afbeelding&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "Beschrijven van deze video&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "Beschrijven van dit audio bestand&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "Beschrijven van dit media bestand&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr "Instellingen MIME Types hersteld."
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr "Instellingen MIME Types opgeslagen."
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] " Enkelvoud: <span class=\"count\">(%s)</span>"
54
- msgstr[1] " Meervoud: <span class=\"count\">(%s)</span>"
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "Media Instellingen"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "Media Bibliotheek"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "Media Taxonomieën"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "MIME Types"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "Algemeen"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "U hebt onvoldoende toegangsrechten voor deze pagina."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "Beeldformaten"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
- "De onderstaande formaten bepalen de maximale afmetingen in pixels die moeten "
109
- "worden gebruikt bij het toevoegen van een afbeelding aan de Media "
110
- "Bibliotheek."
111
-
112
- #: core/options-pages.php:415
113
- msgid "Thumbnail size"
114
- msgstr "Afmeting Thumbnail"
115
-
116
- #: core/options-pages.php:417
117
- msgid "Width"
118
- msgstr "Breedte"
119
-
120
- #: core/options-pages.php:419
121
- msgid "Height"
122
- msgstr "Hoogte"
123
-
124
- #: core/options-pages.php:422
125
- msgid ""
126
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
127
- msgstr ""
128
- "Thumbnail bijsnijden tot exacte afmetingen (normaal zijn thumbnails "
129
- "proportioneel)"
130
-
131
- #: core/options-pages.php:427 core/options-pages.php:428
132
- msgid "Medium size"
133
- msgstr "Medium formaat"
134
-
135
- #: core/options-pages.php:429 core/options-pages.php:440
136
- msgid "Max Width"
137
- msgstr "Maximale Breedte"
138
-
139
- #: core/options-pages.php:432 core/options-pages.php:443
140
- msgid "Max Height"
141
- msgstr "Maximale Hoogte"
142
-
143
- #: core/options-pages.php:438 core/options-pages.php:439
144
- msgid "Large size"
145
- msgstr "Groot formaat"
146
-
147
- #: core/options-pages.php:456
148
- msgid "Embeds"
149
- msgstr "Insluitingen"
150
-
151
- #: core/options-pages.php:463
152
- msgid "Uploading Files"
153
- msgstr "Uploaden Bestanden"
154
-
155
- #: core/options-pages.php:470
156
- msgid "Store uploads in this folder"
157
- msgstr "Uploads in deze map bewaren"
158
-
159
- #: core/options-pages.php:474
160
- #, php-format
161
- msgid "Default is %s"
162
- msgstr "Standaard is %s"
163
-
164
- #: core/options-pages.php:480
165
- msgid "Full URL path to files"
166
- msgstr "Volledige URL pad naar bestanden"
167
-
168
- #: core/options-pages.php:482
169
- msgid "Configuring this is optional. By default, it should be blank."
170
- msgstr "Dit configureren is optioneel. Standaard moet dit leeg zijn."
171
-
172
- #: core/options-pages.php:490
173
- msgid "Organize my uploads into month- and year-based folders"
174
- msgstr "Mijn uploads organiseren in maand - en jaar-gebaseerde mappen"
175
-
176
- #: core/options-pages.php:560 core/options-pages.php:1997
177
- #: core/options-pages.php:2012 core/options-pages.php:2075
178
- #: core/options-pages.php:2147
179
- msgid "Edit"
180
- msgstr "Bewerken"
181
-
182
- #: core/options-pages.php:561
183
- msgid "Close"
184
- msgstr "Sluiten"
185
-
186
- #: core/options-pages.php:562 core/options-pages.php:2013
187
- #: core/options-pages.php:2076
188
- msgid "View"
189
- msgstr "Bekijken"
190
-
191
- #: core/options-pages.php:563 core/options-pages.php:2014
192
- #: core/options-pages.php:2077
193
- msgid "Update"
194
- msgstr "Bijwerken"
195
-
196
- #: core/options-pages.php:564 core/options-pages.php:2015
197
- #: core/options-pages.php:2078
198
- msgid "Add New"
199
- msgstr "Nieuwe Toevoegen"
200
-
201
- #: core/options-pages.php:565 core/options-pages.php:2016
202
- #: core/options-pages.php:2079
203
- msgid "New"
204
- msgstr "Nieuw"
205
-
206
- #: core/options-pages.php:566
207
- msgid "Name"
208
- msgstr "Naam"
209
-
210
- #: core/options-pages.php:567 core/options-pages.php:2017
211
- #: core/options-pages.php:2080
212
- msgid "Parent"
213
- msgstr "Hoofd"
214
-
215
- #: core/options-pages.php:568 core/options-pages.php:862
216
- #: core/options-pages.php:1084 core/options-pages.php:2011
217
- #: core/options-pages.php:2074 core/taxonomies.php:381
218
- #: enhanced-media-library.php:562
219
- msgid "All"
220
- msgstr "Alle"
221
-
222
- #: core/options-pages.php:569 core/options-pages.php:2018
223
- #: core/options-pages.php:2081
224
- msgid "Search"
225
- msgstr "Zoeken"
226
-
227
- #: core/options-pages.php:571 core/options-pages.php:2062
228
- msgid "New Taxonomy"
229
- msgstr "Nieuwe Taxonomie"
230
-
231
- #: core/options-pages.php:573
232
- msgid "Remove Taxonomy"
233
- msgstr "Verwijderen Taxonomie"
234
-
235
- #: core/options-pages.php:574
236
- msgid "Taxonomy will be removed."
237
- msgstr "Taxonomie zal worden verwijderd."
238
-
239
- #: core/options-pages.php:575
240
- msgid ""
241
- "Taxonomy terms (categories) will remain intact in the database. If you "
242
- "create a taxonomy with the same name in the future, its terms (categories) "
243
- "will be available again."
244
- msgstr ""
245
- "De taxonomie termen (categorieën) blijven intact in de database. Als u in de "
246
- "toekomst een taxonomie met dezelfde naam maakt, zijn deze termen "
247
- "(categorieën) weer beschikbaar."
248
-
249
- #: core/options-pages.php:576
250
- msgid "Media items will remain intact."
251
- msgstr "Media items blijven intact."
252
-
253
- #: core/options-pages.php:577
254
- msgid "Are you still sure?"
255
- msgstr "Bent u nog steeds zeker?"
256
-
257
- #: core/options-pages.php:578
258
- msgid "Yes, remove taxonomy"
259
- msgstr "Ja, taxonomie verwijderen"
260
-
261
- #: core/options-pages.php:580
262
- msgid "Duplicate"
263
- msgstr "Dupliceren"
264
-
265
- #: core/options-pages.php:581
266
- msgid "Taxonomy with the same name already exists. Please chose other one."
267
- msgstr "Er bestaat al een Taxonomie met deze naam. Gelieve andere te kiezen."
268
-
269
- #: core/options-pages.php:583
270
- msgid "Empty Fields"
271
- msgstr "Lege Velden"
272
-
273
- #: core/options-pages.php:584
274
- msgid "Wrong Taxonomy Name"
275
- msgstr "Verkeerde taxonomie naam"
276
-
277
- #: core/options-pages.php:585
278
- msgid "Wrong Slug"
279
- msgstr "Verkeerde Slug"
280
-
281
- #: core/options-pages.php:587
282
- msgid "Please choose Singular and Plural names for all new taxomonies."
283
- msgstr ""
284
- "Gelieve Enkelvoudige en Meervoudige namen te kiezen voor alle nieuwe "
285
- "taxonomieën."
286
-
287
- #: core/options-pages.php:588
288
- msgid "Please choose Singular name for all new taxomonies."
289
- msgstr "Gelieve Enkelvoudige naam te kiezen voor alle nieuwe taxonomieën."
290
-
291
- #: core/options-pages.php:589
292
- msgid "Please choose Plural name for all new taxomonies."
293
- msgstr "Gelieve Meervoudige naam te kiezen voor alle nieuwe taxonomieën."
294
-
295
- #: core/options-pages.php:591
296
- msgid ""
297
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
298
- "name please enter it manually."
299
- msgstr ""
300
- "Taxonomie Naam mag niet leeg zijn. Als het niet gegenereerd is met de "
301
- "enkelvoudige naam, voer dit dan handmatig in."
302
-
303
- #: core/options-pages.php:592
304
- msgid ""
305
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
306
- "character ( _ ), and be 3-32 characters long."
307
- msgstr ""
308
- "Taxonomie Naam mag enkel Latijnse kleine letters bevatten, underscore ( _ ), "
309
- "en moet 3-32 tekens lang zijn."
310
-
311
- #: core/options-pages.php:593
312
- msgid ""
313
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
314
- "or hyphen ( - ) characters."
315
- msgstr ""
316
- "Slug mag enkel Latijnse kleine letters, cijfers, underscore ( _ ) of "
317
- "koppeltekens ( - ) bevatten."
318
-
319
- #: core/options-pages.php:595 core/options-pages.php:644
320
- msgid "Ok"
321
- msgstr "Ok"
322
-
323
- #: core/options-pages.php:596 core/options-pages.php:601
324
- #: core/options-pages.php:645 core/options-pages.php:690
325
- msgid "Cancel"
326
- msgstr "Annuleren"
327
-
328
- #: core/options-pages.php:598
329
- msgid "Synchronize Now"
330
- msgstr "Nu Synchroniseren"
331
-
332
- #: core/options-pages.php:599 core/options-pages.php:687
333
- msgid "This operation cannot be canceled! Are you still sure?"
334
- msgstr "Deze bewerking kan niet worden geannuleerd! Bent u nog steeds zeker?"
335
-
336
- #: core/options-pages.php:600
337
- msgid "Synchronize"
338
- msgstr "Synchroniseren"
339
-
340
- #: core/options-pages.php:602
341
- msgid "Synchronizing..."
342
- msgstr "Synchroniseren..."
343
-
344
- #: core/options-pages.php:639 core/options-pages.php:2388
345
- msgid "Restore WordPress default MIME Types"
346
- msgstr "Herstellen WordPress standaard MIME Types"
347
-
348
- #: core/options-pages.php:640
349
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
350
- msgstr ""
351
- "Waarschuwing! Door deze bewerking worden al uw aangepaste MIME Types "
352
- "verwijderd."
353
-
354
- #: core/options-pages.php:641
355
- msgid "Restore Defaults"
356
- msgstr "Herstellen Standaardwaarden"
357
-
358
- #: core/options-pages.php:642
359
- msgid "Restoring..."
360
- msgstr "Herstellen..."
361
-
362
- #: core/options-pages.php:647
363
- msgid "MIME Types cannot be saved"
364
- msgstr "MIME-types kunnen niet worden opgeslagen"
365
-
366
- #: core/options-pages.php:648
367
- msgid "Please fill into all fields."
368
- msgstr "In alle velden invullen alstublieft."
369
-
370
- #: core/options-pages.php:649
371
- msgid "Duplicate extensions or MIME types. Please choose other one."
372
- msgstr "Dubbele extensies of MIME types. Gelieve andere te kiezen."
373
-
374
- #: core/options-pages.php:685 core/options-pages.php:853
375
- #: core/options-pages.php:1063
376
- msgid "Complete Cleanup"
377
- msgstr "Volledige Cleanup"
378
-
379
- #: core/options-pages.php:686
380
- msgid ""
381
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
382
- "plugin data</strong> from the database including backups."
383
- msgstr ""
384
- "U staat op het punt <strong style=\"text-transform:uppercase\">alle plugin "
385
- "gegevens te verwijderen</strong> uit de database inclusief backups."
386
-
387
- #: core/options-pages.php:688
388
- msgid "Yes, delete all data"
389
- msgstr "Ja, alle gegevens verwijderen"
390
-
391
- #: core/options-pages.php:689
392
- msgid "Cleaning..."
393
- msgstr "Reinigen..."
394
-
395
- #: core/options-pages.php:693 core/options-pages.php:996
396
- msgid "Unify Media Settings over Network"
397
- msgstr ""
398
-
399
- #: core/options-pages.php:696 core/options-pages.php:700
400
- #: core/options-pages.php:704
401
- msgid "will be overwritten"
402
- msgstr ""
403
-
404
- #: core/options-pages.php:706
405
- msgid "Apply"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:707
409
- msgid "Applying Settings..."
410
- msgstr ""
411
-
412
- #: core/options-pages.php:746 core/options-pages.php:935
413
- msgid "Enhanced Media Library Utilities"
414
- msgstr "Hulpprogramma's Enhanced Media Library"
415
-
416
- #: core/options-pages.php:756
417
- msgid "Export"
418
- msgstr "Exporteren"
419
-
420
- #: core/options-pages.php:761
421
- msgid "Plugin settings to export:"
422
- msgstr "Te exporteren Plugin instellingen:"
423
-
424
- #: core/options-pages.php:762 core/options-pages.php:789
425
- #: core/options-pages.php:829
426
- msgid "Settings > Media Library"
427
- msgstr "Instellingen > Media Bibliotheek"
428
-
429
- #: core/options-pages.php:763 core/options-pages.php:790
430
- #: core/options-pages.php:830
431
- msgid "Settings > Media Taxonomies"
432
- msgstr "Instellingen > Media Taxonomieën"
433
-
434
- #: core/options-pages.php:764 core/options-pages.php:791
435
- #: core/options-pages.php:831
436
- msgid "Settings > MIME Types"
437
- msgstr "Instellingen > MIME-types"
438
-
439
- #: core/options-pages.php:768
440
- msgid ""
441
- "Use generated JSON file to import the configuration into another website."
442
- msgstr ""
443
- "Gebruik het gegenereerde JSON bestand om de configuratie op een andere "
444
- "website te importeren."
445
-
446
- #: core/options-pages.php:773
447
- msgid "Export Plugin Settings"
448
- msgstr "Plugin Instellingen Exporteren"
449
-
450
- #: core/options-pages.php:783
451
- msgid "Import"
452
- msgstr "Importeren"
453
-
454
- #: core/options-pages.php:788
455
- msgid "Plugin settings to import:"
456
- msgstr "Te importeren plugin instellingen:"
457
-
458
- #: core/options-pages.php:794
459
- msgid ""
460
- "Plugin settings will be imported from a configuration JSON file which can be "
461
- "obtained by exporting the settings on another website using the export "
462
- "button above."
463
- msgstr ""
464
- "Plugin instellingen worden geïmporteerd uit een JSON configuratie bestand "
465
- "dat kan worden verkregen door de instellingen te exporteren op een andere "
466
- "website met behulp van de export knop hierboven."
467
-
468
- #: core/options-pages.php:795
469
- msgid ""
470
- "All plugin settings will be overridden by the import. You will have a chance "
471
- "to restore current data from an automatic backup in case you are not "
472
- "satisfied with the result of the import."
473
- msgstr ""
474
- "Alle plugin instellingen zullen overschreven worden door de import. U krijgt "
475
- "de kans om de huidige gegevens te herstellen vanaf een automatische backup "
476
- "voor het geval dat u niet tevreden bent met het resultaat van de import."
477
-
478
- #: core/options-pages.php:801
479
- msgid "Import Plugin Settings"
480
- msgstr "Importeer Plugin Instellingen"
481
-
482
- #: core/options-pages.php:813
483
- msgid "Restore"
484
- msgstr "Herstellen"
485
-
486
- #: core/options-pages.php:819
487
- msgid "No backup available at the moment."
488
- msgstr "Geen backup beschikbaar op dit moment."
489
-
490
- #: core/options-pages.php:821
491
- msgid "Backup will be created automatically before any import operation."
492
- msgstr "Backup wordt automatisch aangemaakt vóór elke import bewerking."
493
-
494
- #: core/options-pages.php:825
495
- msgid ""
496
- "The backup has been automatically created before the latest import operation."
497
- msgstr "De backup is automatisch aangemaakt vóór de laatste import bewerking."
498
-
499
- #: core/options-pages.php:828
500
- msgid "Plugin settings to restore:"
501
- msgstr "Te herstellen plugin instellingen:"
502
-
503
- #: core/options-pages.php:837
504
- msgid "Restore Settings from the Backup"
505
- msgstr "Herstellen Instellingen vanaf de Backup"
506
-
507
- #: core/options-pages.php:860 core/options-pages.php:1082
508
- msgid "What will be deleted:"
509
- msgstr "Wat verwijderd zal worden:"
510
-
511
- #: core/options-pages.php:865
512
- msgid "All plugin options"
513
- msgstr "Alle plugin opties"
514
-
515
- #: core/options-pages.php:866 core/options-pages.php:1089
516
- msgid "All plugin backups stored in the database"
517
- msgstr "Alle plugin backups opgeslagen in de database"
518
-
519
- #: core/options-pages.php:870 core/options-pages.php:1093
520
- msgid "What will remain intact:"
521
- msgstr "Wat intact zal blijven:"
522
-
523
- #: core/options-pages.php:871 core/options-pages.php:1094
524
- msgid "All media items"
525
- msgstr "Alle media items"
526
-
527
- #: core/options-pages.php:872 core/options-pages.php:1095
528
- msgid "All taxonomies not listed above"
529
- msgstr "Alle taxonomieën niet vermeld hierboven"
530
-
531
- #: core/options-pages.php:875 core/options-pages.php:1098
532
- msgid ""
533
- "The plugin cannot delete itself for security reasons. Please delete it "
534
- "manually from the plugin list after the cleanup is complete."
535
- msgstr ""
536
- "De plugin kan zichzelf om veiligheidsredenen niet verwijderen. Verwijder het "
537
- "handmatig uit de lijst met plugins na het voltooien van de cleanup."
538
-
539
- #: core/options-pages.php:877 core/options-pages.php:1100
540
- msgid ""
541
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
542
- "backup of your database prior to cleanup!"
543
- msgstr ""
544
- "Als u niet zeker bent van deze bewerking, wordt u AANBEVOLEN OM een backup "
545
- "van uw database te maken voordat u start met de cleanup!"
546
-
547
- #: core/options-pages.php:882
548
- msgid "Delete All Data & Deactivate"
549
- msgstr "Alle Gegevens Verwijderen & Deactiveren"
550
-
551
- #: core/options-pages.php:945
552
- msgid "Network Settings"
553
- msgstr "Netwerk Instellingen"
554
-
555
- #: core/options-pages.php:952 core/options-pages.php:1003
556
- msgid "No settings available. The plugin is not network activated."
557
- msgstr ""
558
- "Geen instellingen beschikbaar. De plugin is niet via het netwerk geactiveerd."
559
-
560
- #: core/options-pages.php:963
561
- msgid "Media Settings per site"
562
- msgstr "Media Instellingen per website"
563
-
564
- #: core/options-pages.php:966
565
- msgid "Enable Media Settings"
566
- msgstr "Inschakelen Media Instellingen"
567
-
568
- #: core/options-pages.php:967
569
- msgid "Allow an individual site admin to edit enhanced Media Settings"
570
- msgstr ""
571
- "Een individuele website beheerder toestaan om enhanced Media Settings te "
572
- "bewerken"
573
-
574
- #: core/options-pages.php:968
575
- msgid ""
576
- "Otherwise, only a network (super) admin can see the menu and edit media "
577
- "settings."
578
- msgstr ""
579
- "Anders kan alleen een netwerk (super) beheerder het menu bekijken en media "
580
- "instellingen bewerken."
581
-
582
- #: core/options-pages.php:974
583
- msgid "Plugin Utilities per site"
584
- msgstr "Plugin Hulpprogramma's per website"
585
-
586
- #: core/options-pages.php:977
587
- msgid "Enable plugin Utilities"
588
- msgstr "Plugin hulpprogramma's inschakelen"
589
-
590
- #: core/options-pages.php:978
591
- msgid ""
592
- "Allow an individual site admin to import / export / restore plugin settings "
593
- "and perform the complete cleanup for a specific site"
594
- msgstr ""
595
- "Laat een individuele website beheerder plugin instellingen importeren / "
596
- "exporteren / herstellen en de volledige cleanup voor een specifieke website "
597
- "uitvoeren"
598
-
599
- #: core/options-pages.php:979
600
- msgid ""
601
- "Otherwise, only a network (super) admin can see the menu and perform those "
602
- "actions."
603
- msgstr ""
604
- "Anders kan alleen een netwerk (super) beheerder het menu zien en deze acties "
605
- "uitvoeren."
606
-
607
- #: core/options-pages.php:986 core/options-pages.php:1770
608
- #: core/options-pages.php:1824 core/options-pages.php:1861
609
- #: core/options-pages.php:1905 core/options-pages.php:2113
610
- #: core/options-pages.php:2177 core/options-pages.php:2215
611
- #: core/options-pages.php:2386 enhanced-media-library.php:571
612
- msgid "Save Changes"
613
- msgstr "Opslaan Wijzigingen"
614
-
615
- #: core/options-pages.php:1012 core/options-pages.php:1015
616
- msgid "Media Library Settings"
617
- msgstr ""
618
-
619
- #: core/options-pages.php:1016 core/options-pages.php:1030
620
- #: core/options-pages.php:1044
621
- msgid "Apply to ALL Network websites"
622
- msgstr ""
623
-
624
- #: core/options-pages.php:1026 core/options-pages.php:1029
625
- msgid "Media Taxonomies Settings"
626
- msgstr ""
627
-
628
- #: core/options-pages.php:1040 core/options-pages.php:1043
629
- msgid "MIME Types Settings"
630
- msgstr ""
631
-
632
- #: core/options-pages.php:1087
633
- msgid "All plugin options on every site"
634
- msgstr "Alle plugin opties op elke website"
635
-
636
- #: core/options-pages.php:1088
637
- msgid "Network settings"
638
- msgstr "Netwerk instellingen"
639
-
640
- #: core/options-pages.php:1105
641
- msgid "Delete All Data & Network Deactivate"
642
- msgstr "Alle Gegevens Verwijderen & Netwerk Deactiveren"
643
-
644
- #: core/options-pages.php:1225
645
- msgid "Network settings saved."
646
- msgstr "Netwerk instellingen opgeslagen."
647
-
648
- #: core/options-pages.php:1319
649
- msgid "Settings cannot be imported. Please upload a file to import settings."
650
- msgstr ""
651
- "Instellingen kunnen niet worden geïmporteerd. Upload een bestand om "
652
- "instellingen te importeren."
653
-
654
- #: core/options-pages.php:1340
655
- msgid ""
656
- "Settings cannot be imported. Please upload a correct JSON file to import "
657
- "settings."
658
- msgstr ""
659
- "Instellingen kunnen niet worden geïmporteerd. Upload een correct JSON "
660
- "bestand om instellingen te importeren."
661
-
662
- #: core/options-pages.php:1356
663
- msgid "Plugin settings imported."
664
- msgstr "Plugin instellingen geïmporteerd."
665
-
666
- #: core/options-pages.php:1409
667
- msgid "Plugin settings restored from the backup."
668
- msgstr "Plugin instellingen hersteld vanaf de backup."
669
-
670
- #: core/options-pages.php:1714
671
- msgid "Filters"
672
- msgstr "Filters"
673
-
674
- #: core/options-pages.php:1723 core/options-pages.php:1726
675
- msgid "Force filters"
676
- msgstr "Forceer filters"
677
-
678
- #: core/options-pages.php:1727
679
- msgid "Show media filters for ANY Media Popup"
680
- msgstr "Tonen media filters voor ELKE Media Popup"
681
-
682
- #: core/options-pages.php:1728
683
- msgid "Try this if filters are not shown for third-party plugins or themes."
684
- msgstr ""
685
- "Dit proberen als filters niet worden weergegeven voor plugins of thema's van "
686
- "derden."
687
-
688
- #: core/options-pages.php:1734 core/options-pages.php:1737
689
- msgid "Filters to show"
690
- msgstr "Weer te geven Filters"
691
-
692
- #: core/options-pages.php:1738
693
- msgid "Types"
694
- msgstr "Types"
695
-
696
- #: core/options-pages.php:1739
697
- msgid "Can be disabled for Grid Mode only"
698
- msgstr "Kan alleen worden uitgeschakeld voor Raster Modus"
699
-
700
- #: core/options-pages.php:1740
701
- msgid "Dates"
702
- msgstr "Datums"
703
-
704
- #: core/options-pages.php:1741
705
- msgid "Authors"
706
- msgstr "Auteurs"
707
-
708
- #: core/options-pages.php:1748 core/options-pages.php:1751
709
- msgid "Show count"
710
- msgstr "Tonen aantal"
711
-
712
- #: core/options-pages.php:1752
713
- msgid "Show item count per category for media filters"
714
- msgstr "Tonen aantal items per categorie voor media filters"
715
-
716
- #: core/options-pages.php:1753
717
- msgid ""
718
- "Disable this if it slows down your site admin. The problem is resolved in "
719
- "the upcoming major update v3.0"
720
- msgstr ""
721
- "Schakel dit uit als het uw website beheerder vertraagt. Het probleem is "
722
- "opgelost in de aankomende grote update v3.0"
723
-
724
- #: core/options-pages.php:1759 core/options-pages.php:1762
725
- msgid "Include children"
726
- msgstr "Inclusief subs"
727
-
728
- #: core/options-pages.php:1763
729
- msgid "Show media items of child media categories as a result of filtering"
730
- msgstr ""
731
- "Media items weergeven van media subcategorieën als resultaat van filteren"
732
-
733
- #: core/options-pages.php:1780
734
- msgid "Order"
735
- msgstr "Volgorde"
736
-
737
- #: core/options-pages.php:1789
738
- msgid "Order media items by"
739
- msgstr "Media items sorteren volgens"
740
-
741
- #: core/options-pages.php:1792
742
- msgid "Date"
743
- msgstr "Datum"
744
-
745
- #: core/options-pages.php:1793 core/options-pages.php:1853
746
- msgid "Title"
747
- msgstr "Titel"
748
-
749
- #: core/options-pages.php:1794
750
- msgid "Custom Order"
751
- msgstr "Aangepaste Volgorde"
752
-
753
- #: core/options-pages.php:1796 core/options-pages.php:1808
754
- msgid "For media library and media popups"
755
- msgstr "Voor media bibliotheek en media popups"
756
-
757
- #: core/options-pages.php:1797
758
- msgid ""
759
- "Allows changing media items order by drag and drop with Custom Order value."
760
- msgstr ""
761
- "Door slepen en plaatsen kunt u de volgorde van media items wijzigen met de "
762
- "waarde Aangepaste Volgorde."
763
-
764
- #: core/options-pages.php:1802
765
- msgid "Sort order"
766
- msgstr "Sorteer volgorde"
767
-
768
- #: core/options-pages.php:1805
769
- msgid "Ascending"
770
- msgstr "Oplopend"
771
-
772
- #: core/options-pages.php:1806
773
- msgid "Descending"
774
- msgstr "Aflopend"
775
-
776
- #: core/options-pages.php:1813 core/options-pages.php:1816
777
- msgid "Natural sort order"
778
- msgstr "Natuurlijke sorteer volgorde"
779
-
780
- #: core/options-pages.php:1817
781
- msgid "Apply human-friendly sort order to Media Library and Galleries"
782
- msgstr ""
783
- "Mens-vriendelijke sorteer volgorde toepassen op Media Bibliotheek en "
784
- "Galerijen"
785
-
786
- #: core/options-pages.php:1818
787
- msgid ""
788
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
789
- "3, abc-11, abc-2]"
790
- msgstr ""
791
- "Voorbeeld: [1, 2, 3, 10, 18, 22, abc-2, abc-11] in plaats van [1, 10, 18, 2, "
792
- "22, 3, abc-11, abc-2]"
793
-
794
- #: core/options-pages.php:1831
795
- msgid "Grid Mode"
796
- msgstr "Raster Modus"
797
-
798
- #: core/options-pages.php:1840 core/options-pages.php:1843
799
- msgid "Show caption"
800
- msgstr "Toon onderschrift"
801
-
802
- #: core/options-pages.php:1844
803
- msgid "Add text caption for media item thumbnails"
804
- msgstr "Toevoegen tekst onderschrift voor media item thumbnails"
805
-
806
- #: core/options-pages.php:1850
807
- msgid "Caption type"
808
- msgstr "Type Onderschrift"
809
-
810
- #: core/options-pages.php:1854
811
- msgid "Filename"
812
- msgstr "Bestandsnaam"
813
-
814
- #: core/options-pages.php:1855
815
- msgid "Caption"
816
- msgstr "Onderschrift"
817
-
818
- #: core/options-pages.php:1868
819
- msgid "Media Shortcodes"
820
- msgstr "Media Shortcodes"
821
-
822
- #: core/options-pages.php:1877 core/options-pages.php:1880
823
- msgid "Enhanced media shortcodes"
824
- msgstr "Enhanced media shortcodes"
825
-
826
- #: core/options-pages.php:1881
827
- msgid ""
828
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
829
- "upload date, and media items number limit"
830
- msgstr ""
831
- "Verbeteren WordPress media shortcodes zodat ze media taxonomieën, upload "
832
- "datum en media items limiet aantal begrijpen"
833
-
834
- #: core/options-pages.php:1882
835
- msgid "Gallery example:"
836
- msgstr "Voorbeeld Galerij:"
837
-
838
- #: core/options-pages.php:1883
839
- msgid "Audio playlist example:"
840
- msgstr "Voorbeeld audio afspeellijst:"
841
-
842
- #: core/options-pages.php:1884
843
- msgid "Video playlist example:"
844
- msgstr "Voorbeeld video afspeellijst:"
845
-
846
- #: core/options-pages.php:1888
847
- msgid "Warning"
848
- msgstr "Waarschuwing"
849
-
850
- #: core/options-pages.php:1891
851
- #, php-format
852
- msgid ""
853
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
854
- "\">Learn more</a>."
855
- msgstr ""
856
- "Mogelijke incompatibiliteit met andere galerij plugins of thema's! <a href="
857
- "\"%s\">Meer informatie</a>."
858
-
859
- #: core/options-pages.php:1896
860
- #, php-format
861
- msgid ""
862
- "Please check out your gallery front-end and back-end functionality once this "
863
- "option activated. If you find an issue please inform plugin authors at %s or "
864
- "%s."
865
- msgstr ""
866
- "Controleer de front-end en back-end functionaliteit van uw galerij zodra "
867
- "deze optie is geactiveerd. Als u een probleem ondervindt, informeer de "
868
- "plugin auteurs hierover op %s of %s."
869
-
870
- #: core/options-pages.php:1977 core/options-pages.php:2124
871
- msgid "Assign following taxonomies to Media Library:"
872
- msgstr "Volgende taxonomieën toewijzen aan Media Bibliotheek:"
873
-
874
- #: core/options-pages.php:1996 core/options-pages.php:2062
875
- #: core/options-pages.php:2146
876
- msgid "Assign Taxonomy"
877
- msgstr "Toewijzen Taxonomie"
878
-
879
- #: core/options-pages.php:1997 core/options-pages.php:2147
880
- msgid "Edit Taxonomy"
881
- msgstr "Bewerken Taxonomie"
882
-
883
- #: core/options-pages.php:2001 core/options-pages.php:2064
884
- msgid "Delete Taxonomy"
885
- msgstr "Verwijderen Taxonomie"
886
-
887
- #: core/options-pages.php:2006 core/options-pages.php:2069
888
- msgid "Labels"
889
- msgstr "Labels"
890
-
891
- #: core/options-pages.php:2008 core/options-pages.php:2071
892
- msgid "Singular"
893
- msgstr "Enkelvoudig"
894
-
895
- #: core/options-pages.php:2009 core/options-pages.php:2072
896
- msgid "Plural"
897
- msgstr "Meervoud"
898
-
899
- #: core/options-pages.php:2010 core/options-pages.php:2073
900
- msgid "Menu Name"
901
- msgstr "Menu Naam"
902
-
903
- #: core/options-pages.php:2023 core/options-pages.php:2046
904
- #: core/options-pages.php:2086 core/options-pages.php:2150
905
- msgid "Settings"
906
- msgstr "Instellingen"
907
-
908
- #: core/options-pages.php:2025 core/options-pages.php:2088
909
- msgid "Taxonomy Name"
910
- msgstr "Taxonomie Naam"
911
-
912
- #: core/options-pages.php:2026 core/options-pages.php:2089
913
- msgid "Hierarchical"
914
- msgstr "Hiërarchisch"
915
-
916
- #: core/options-pages.php:2027 core/options-pages.php:2090
917
- msgid "Column for List View"
918
- msgstr "Kolom voor Lijst Weergave"
919
-
920
- #: core/options-pages.php:2028 core/options-pages.php:2048
921
- #: core/options-pages.php:2091 core/options-pages.php:2152
922
- msgid "Filter for List View"
923
- msgstr "Filter voor Lijst Weergave"
924
-
925
- #: core/options-pages.php:2029 core/options-pages.php:2049
926
- #: core/options-pages.php:2092 core/options-pages.php:2153
927
- msgid "Filter for Grid View / Media Popup"
928
- msgstr "Filter voor Raster Weergave / Media Popup"
929
-
930
- #: core/options-pages.php:2030 core/options-pages.php:2050
931
- #: core/options-pages.php:2093 core/options-pages.php:2154
932
- msgid "Edit in Media Popup"
933
- msgstr "Bewerken in Media popup"
934
-
935
- #: core/options-pages.php:2031 core/options-pages.php:2094
936
- msgid "Show in Nav Menu"
937
- msgstr "Tonen in Nav Menu"
938
-
939
- #: core/options-pages.php:2032 core/options-pages.php:2095
940
- msgid "Remember Terms Order (sort)"
941
- msgstr "Onthouden Voorwaarden Volgorde (sorteren)"
942
-
943
- #: core/options-pages.php:2033 core/options-pages.php:2096
944
- msgid "Show in REST"
945
- msgstr "Tonen in REST"
946
-
947
- #: core/options-pages.php:2034 core/options-pages.php:2097
948
- msgid "Rewrite Slug"
949
- msgstr "Herschrijven Slug"
950
-
951
- #: core/options-pages.php:2035 core/options-pages.php:2098
952
- msgid "Slug with Front"
953
- msgstr "Slug met Voorvoegsel"
954
-
955
- #: core/options-pages.php:2110
956
- msgid "Add New Taxonomy"
957
- msgstr "Toevoegen Nieuwe Taxonomie"
958
-
959
- #: core/options-pages.php:2120
960
- msgid "Non-Media Taxonomies"
961
- msgstr "Niet-Media Taxonomieën"
962
-
963
- #: core/options-pages.php:2183
964
- msgid "Options"
965
- msgstr "Opties"
966
-
967
- #: core/options-pages.php:2193 core/options-pages.php:2196
968
- msgid "Taxonomy archive pages"
969
- msgstr "Taxonomie archief pagina's"
970
-
971
- #: core/options-pages.php:2197
972
- msgid "Turn on media taxonomy archive pages on the front-end"
973
- msgstr "Inschakelen media taxonomie archief pagina's op de front-end"
974
-
975
- #: core/options-pages.php:2198
976
- msgid ""
977
- "Re-save your permalink settings after this option change to make it work."
978
- msgstr ""
979
- "Bewaar uw permalink instellingen opnieuw na wijzigingen in deze optie om het "
980
- "te laten werken."
981
-
982
- #: core/options-pages.php:2204 core/options-pages.php:2207
983
- msgid "Assign all like hierarchical"
984
- msgstr "Alles toekennen als hiërarchisch"
985
-
986
- #: core/options-pages.php:2208
987
- msgid ""
988
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
989
- msgstr ""
990
- "Niet-hiërarchische taxonomieën tonen als hiërarchisch in Raster Weergave / "
991
- "Media popup"
992
-
993
- #: core/options-pages.php:2271
994
- msgid "Add New MIME Type"
995
- msgstr "Toevoegen Nieuw MIME Type"
996
-
997
- #: core/options-pages.php:2291 core/options-pages.php:2345
998
- msgid "Extension"
999
- msgstr "Extensie"
1000
-
1001
- #: core/options-pages.php:2292 core/options-pages.php:2346
1002
- msgid "MIME Type"
1003
- msgstr "MIME Type"
1004
-
1005
- #: core/options-pages.php:2293 core/options-pages.php:2347
1006
- msgid "Singular Label"
1007
- msgstr "Enkelvoudig Label"
1008
-
1009
- #: core/options-pages.php:2294 core/options-pages.php:2348
1010
- msgid "Plural Label"
1011
- msgstr "Meervoudig Label"
1012
-
1013
- #: core/options-pages.php:2295 core/options-pages.php:2324
1014
- #: core/options-pages.php:2337 core/options-pages.php:2349
1015
- msgid "Add Filter"
1016
- msgstr "Toevoegen Filter"
1017
-
1018
- #: core/options-pages.php:2296 core/options-pages.php:2325
1019
- #: core/options-pages.php:2338 core/options-pages.php:2350
1020
- msgid "Allow Upload"
1021
- msgstr "Toestaan Upload"
1022
-
1023
- #: core/options-pages.php:2326 core/options-pages.php:2339
1024
- msgid "Delete MIME Type"
1025
- msgstr "Verwijderen MIME Type"
1026
-
1027
- #: core/options-pages.php:2415
1028
- msgid "Changelog"
1029
- msgstr "Logboek"
1030
-
1031
- #: core/options-pages.php:2416
1032
- msgid "What's new in"
1033
- msgstr "Wat is er nieuw in"
1034
-
1035
- #: core/options-pages.php:2416
1036
- msgid "version"
1037
- msgstr "versie"
1038
-
1039
- #: core/options-pages.php:2419
1040
- msgid "More features under the hood"
1041
- msgstr "Meer mogelijkheden onder de motorkap"
1042
-
1043
- #: core/options-pages.php:2421
1044
- msgid "Support"
1045
- msgstr "Support"
1046
-
1047
- #: core/options-pages.php:2422
1048
- msgid "Feel free to ask for help on"
1049
- msgstr "Aarzel niet om hulp te vragen over"
1050
-
1051
- #: core/options-pages.php:2422
1052
- msgid "Support is free for both versions of the plugin."
1053
- msgstr "Support is gratis voor beide versies van de plugin."
1054
-
1055
- #: core/options-pages.php:2424
1056
- msgid "Plugin rating"
1057
- msgstr "Plugin waardering"
1058
-
1059
- #: core/options-pages.php:2425
1060
- msgid "Please"
1061
- msgstr "Alsjeblieft"
1062
-
1063
- #: core/options-pages.php:2425
1064
- msgid "vote for the plugin"
1065
- msgstr "stem op de plugin"
1066
-
1067
- #: core/options-pages.php:2425
1068
- msgid "Thanks!"
1069
- msgstr "Bedankt!"
1070
-
1071
- #: core/options-pages.php:2427
1072
- msgid "Other plugins you may find useful"
1073
- msgstr "Andere plugins die u mogelijk handig vindt"
1074
-
1075
- #: core/options-pages.php:2469
1076
- msgid "Utility"
1077
- msgstr "Hulpprogramma"
1078
-
1079
- #: core/options-pages.php:2494
1080
- msgid "Rate us:"
1081
- msgstr ""
1082
-
1083
- #: core/options-pages.php:2494
1084
- msgid "Poor"
1085
- msgstr ""
1086
-
1087
- #: core/options-pages.php:2494
1088
- msgid "Works"
1089
- msgstr ""
1090
-
1091
- #: core/options-pages.php:2494
1092
- msgid "Good"
1093
- msgstr ""
1094
-
1095
- #: core/options-pages.php:2494
1096
- msgid "Great"
1097
- msgstr ""
1098
-
1099
- #: core/options-pages.php:2494
1100
- msgid "Fantastic!"
1101
- msgstr ""
1102
-
1103
- #: core/taxonomies.php:101
1104
- msgid "Media Taxonomies settings saved."
1105
- msgstr "Instellingen Media Taxonomieën opgeslagen."
1106
-
1107
- #: core/taxonomies.php:174
1108
- msgid "Media Library settings saved."
1109
- msgstr "Instellingen Media Bibliotheek opgeslagen."
1110
-
1111
- #: core/taxonomies.php:353
1112
- msgid "Filter by author"
1113
- msgstr "Filteren op auteur"
1114
-
1115
- #: core/taxonomies.php:357
1116
- msgid "All Authors"
1117
- msgstr "Alle Auteurs"
1118
-
1119
- #: core/taxonomies.php:374 core/taxonomies.php:380
1120
- #: enhanced-media-library.php:561
1121
- msgid "Filter by"
1122
- msgstr "Filteren op"
1123
-
1124
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1125
- msgid "Not in a"
1126
- msgstr "Niet in een"
1127
-
1128
- #: core/taxonomies.php:721
1129
- msgid "Add some"
1130
- msgstr ""
1131
-
1132
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1133
- msgid "All Uncategorized"
1134
- msgstr "Alle ongecategoriseerd"
1135
-
1136
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1137
- msgid "Reset All Filters"
1138
- msgstr "Resetten Alle Filters"
1139
-
1140
- #: enhanced-media-library.php:391
1141
- msgid "More Details"
1142
- msgstr ""
1143
-
1144
- #: enhanced-media-library.php:392
1145
- msgid "Less Details"
1146
- msgstr ""
1147
-
1148
- #: enhanced-media-library.php:565
1149
- msgid "author"
1150
- msgstr "auteur"
1151
-
1152
- #: enhanced-media-library.php:566
1153
- msgid "authors"
1154
- msgstr "auteurs"
1155
-
1156
- #: enhanced-media-library.php:569
1157
- msgid "Saved."
1158
- msgstr ""
1159
-
1160
- #: enhanced-media-library.php:570
1161
- msgid "Something went wrong."
1162
- msgstr "Er is iets fout gegaan."
1163
-
1164
- #: enhanced-media-library.php:573
1165
- msgid "Select All"
1166
- msgstr "Alles Selecteren"
1167
-
1168
- #: enhanced-media-library.php:574
1169
- msgid "Deselect "
1170
- msgstr ""
1171
-
1172
- #: enhanced-media-library.php:603
1173
- msgid "Uploaded to post #"
1174
- msgstr "Geüpload naar bericht #"
1175
-
1176
- #: enhanced-media-library.php:604
1177
- msgid "Based On"
1178
- msgstr "Gebaseerd Op"
1179
-
1180
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1181
- msgid "Media Categories"
1182
- msgstr "Media Categorieën"
1183
-
1184
- #: enhanced-media-library.php:674
1185
- msgid "Media Category"
1186
- msgstr "Media Categorie"
1187
-
1188
- #: enhanced-media-library.php:676
1189
- msgid "All Media Categories"
1190
- msgstr "Alle Media Categorieën"
1191
-
1192
- #: enhanced-media-library.php:677
1193
- msgid "Edit Media Category"
1194
- msgstr "Bewerken Media Categorie"
1195
-
1196
- #: enhanced-media-library.php:678
1197
- msgid "View Media Category"
1198
- msgstr "Bekijken Media Categorie"
1199
-
1200
- #: enhanced-media-library.php:679
1201
- msgid "Update Media Category"
1202
- msgstr "Updaten Media Categorie"
1203
-
1204
- #: enhanced-media-library.php:680
1205
- msgid "Add New Media Category"
1206
- msgstr "Toevoegen Nieuwe Media Categorie"
1207
-
1208
- #: enhanced-media-library.php:681
1209
- msgid "New Media Category Name"
1210
- msgstr "Nieuwe Media Categorie Naam"
1211
-
1212
- #: enhanced-media-library.php:682
1213
- msgid "Parent Media Category"
1214
- msgstr "Hoofd Media Categorie"
1215
-
1216
- #: enhanced-media-library.php:683
1217
- msgid "Parent Media Category:"
1218
- msgstr "Hoofd Media Categorie:"
1219
-
1220
- #: enhanced-media-library.php:684
1221
- msgid "Search Media Categories"
1222
- msgstr "Zoeken Media Categorieën"
1223
-
1224
- #. Plugin URI of the plugin/theme
1225
- #. Author URI of the plugin/theme
1226
- msgid "http://wpUXsolutions.com"
1227
- msgstr "http://wpUXsolutions.com"
1228
-
1229
- #. Description of the plugin/theme
1230
- msgid ""
1231
- "This plugin will be handy for those who need to manage a lot of media files."
1232
- msgstr ""
1233
- "Deze plugin is handig voor diegenen die veel media bestanden moeten beheren."
1234
-
1235
- #. Author of the plugin/theme
1236
- msgid "wpUXsolutions"
1237
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-pl_PL.mo DELETED
Binary file
languages/enhanced-media-library-pl_PL.po DELETED
@@ -1,1176 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Polish
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 23:54+0300\n"
7
- "PO-Revision-Date: 2020-10-11 23:57+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: pl\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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
15
- "|| n%100>=20) ? 1 : 2);\n"
16
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr ""
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr ""
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr ""
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr ""
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr ""
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr ""
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr ""
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr ""
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] ""
55
- msgstr[1] ""
56
- msgstr[2] ""
57
-
58
- #: core/options-pages.php:97 core/options-pages.php:106
59
- #: core/options-pages.php:115 core/options-pages.php:124
60
- #: core/options-pages.php:321 core/options-pages.php:399
61
- #: core/options-pages.php:1694 core/options-pages.php:1952
62
- #: core/options-pages.php:2265 core/options-pages.php:2465
63
- msgid "Media Settings"
64
- msgstr "Ustawienia Mediów"
65
-
66
- #: core/options-pages.php:106 core/options-pages.php:107
67
- #: core/options-pages.php:363 core/options-pages.php:1019
68
- msgid "Media Library"
69
- msgstr ""
70
-
71
- #: core/options-pages.php:115 core/options-pages.php:116
72
- #: core/options-pages.php:364 core/options-pages.php:1033
73
- #: core/options-pages.php:1742 core/options-pages.php:1973
74
- msgid "Media Taxonomies"
75
- msgstr "Taksonomie mediów"
76
-
77
- #: core/options-pages.php:124 core/options-pages.php:125
78
- #: core/options-pages.php:365 core/options-pages.php:1047
79
- msgid "MIME Types"
80
- msgstr "Typy MIME"
81
-
82
- #. Plugin Name of the plugin/theme
83
- #: core/options-pages.php:166 core/options-pages.php:167
84
- #: core/options-pages.php:194 core/options-pages.php:195
85
- msgid "Enhanced Media Library"
86
- msgstr "Rozszerzona Biblioteka Mediów"
87
-
88
- #: core/options-pages.php:362
89
- msgid "General"
90
- msgstr ""
91
-
92
- #: core/options-pages.php:388 core/options-pages.php:395
93
- #: core/options-pages.php:732 core/options-pages.php:740
94
- #: core/options-pages.php:925 core/options-pages.php:1682
95
- #: core/options-pages.php:1689 core/options-pages.php:1940
96
- #: core/options-pages.php:1947 core/options-pages.php:2252
97
- #: core/options-pages.php:2259
98
- msgid "You do not have sufficient permissions to access this page."
99
- msgstr "Nie masz wystarczających uprawnień dostępu do tej strony."
100
-
101
- #: core/options-pages.php:410
102
- msgid "Image sizes"
103
- msgstr ""
104
-
105
- #: core/options-pages.php:411
106
- msgid ""
107
- "The sizes listed below determine the maximum dimensions in pixels to use "
108
- "when adding an image to the Media Library."
109
- msgstr ""
110
-
111
- #: core/options-pages.php:415
112
- msgid "Thumbnail size"
113
- msgstr ""
114
-
115
- #: core/options-pages.php:417
116
- msgid "Width"
117
- msgstr ""
118
-
119
- #: core/options-pages.php:419
120
- msgid "Height"
121
- msgstr ""
122
-
123
- #: core/options-pages.php:422
124
- msgid ""
125
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
126
- msgstr ""
127
-
128
- #: core/options-pages.php:427 core/options-pages.php:428
129
- msgid "Medium size"
130
- msgstr ""
131
-
132
- #: core/options-pages.php:429 core/options-pages.php:440
133
- msgid "Max Width"
134
- msgstr ""
135
-
136
- #: core/options-pages.php:432 core/options-pages.php:443
137
- msgid "Max Height"
138
- msgstr ""
139
-
140
- #: core/options-pages.php:438 core/options-pages.php:439
141
- msgid "Large size"
142
- msgstr ""
143
-
144
- #: core/options-pages.php:456
145
- msgid "Embeds"
146
- msgstr ""
147
-
148
- #: core/options-pages.php:463
149
- msgid "Uploading Files"
150
- msgstr ""
151
-
152
- #: core/options-pages.php:470
153
- msgid "Store uploads in this folder"
154
- msgstr ""
155
-
156
- #: core/options-pages.php:474
157
- #, php-format
158
- msgid "Default is %s"
159
- msgstr ""
160
-
161
- #: core/options-pages.php:480
162
- msgid "Full URL path to files"
163
- msgstr ""
164
-
165
- #: core/options-pages.php:482
166
- msgid "Configuring this is optional. By default, it should be blank."
167
- msgstr ""
168
-
169
- #: core/options-pages.php:490
170
- msgid "Organize my uploads into month- and year-based folders"
171
- msgstr ""
172
-
173
- #: core/options-pages.php:560 core/options-pages.php:1997
174
- #: core/options-pages.php:2012 core/options-pages.php:2075
175
- #: core/options-pages.php:2147
176
- msgid "Edit"
177
- msgstr "Edytuj"
178
-
179
- #: core/options-pages.php:561
180
- msgid "Close"
181
- msgstr "Zamknij"
182
-
183
- #: core/options-pages.php:562 core/options-pages.php:2013
184
- #: core/options-pages.php:2076
185
- msgid "View"
186
- msgstr "Zobacz"
187
-
188
- #: core/options-pages.php:563 core/options-pages.php:2014
189
- #: core/options-pages.php:2077
190
- msgid "Update"
191
- msgstr "Aktualizuj"
192
-
193
- #: core/options-pages.php:564 core/options-pages.php:2015
194
- #: core/options-pages.php:2078
195
- msgid "Add New"
196
- msgstr "Dodaj nowy"
197
-
198
- #: core/options-pages.php:565 core/options-pages.php:2016
199
- #: core/options-pages.php:2079
200
- msgid "New"
201
- msgstr "Nowy"
202
-
203
- #: core/options-pages.php:566
204
- msgid "Name"
205
- msgstr "Nazwa"
206
-
207
- #: core/options-pages.php:567 core/options-pages.php:2017
208
- #: core/options-pages.php:2080
209
- msgid "Parent"
210
- msgstr "Rodzic"
211
-
212
- #: core/options-pages.php:568 core/options-pages.php:862
213
- #: core/options-pages.php:1084 core/options-pages.php:2011
214
- #: core/options-pages.php:2074 core/taxonomies.php:381
215
- #: enhanced-media-library.php:562
216
- msgid "All"
217
- msgstr "Wszystkie"
218
-
219
- #: core/options-pages.php:569 core/options-pages.php:2018
220
- #: core/options-pages.php:2081
221
- msgid "Search"
222
- msgstr "Szukaj"
223
-
224
- #: core/options-pages.php:571 core/options-pages.php:2062
225
- msgid "New Taxonomy"
226
- msgstr "Nowa taksonomia"
227
-
228
- #: core/options-pages.php:573
229
- msgid "Remove Taxonomy"
230
- msgstr ""
231
-
232
- #: core/options-pages.php:574
233
- msgid "Taxonomy will be removed."
234
- msgstr ""
235
-
236
- #: core/options-pages.php:575
237
- msgid ""
238
- "Taxonomy terms (categories) will remain intact in the database. If you "
239
- "create a taxonomy with the same name in the future, its terms (categories) "
240
- "will be available again."
241
- msgstr ""
242
-
243
- #: core/options-pages.php:576
244
- msgid "Media items will remain intact."
245
- msgstr ""
246
-
247
- #: core/options-pages.php:577
248
- msgid "Are you still sure?"
249
- msgstr ""
250
-
251
- #: core/options-pages.php:578
252
- msgid "Yes, remove taxonomy"
253
- msgstr ""
254
-
255
- #: core/options-pages.php:580
256
- msgid "Duplicate"
257
- msgstr ""
258
-
259
- #: core/options-pages.php:581
260
- msgid "Taxonomy with the same name already exists. Please chose other one."
261
- msgstr "Istnieje już taksonomia o takiej nazwie. Wybierz inną nazwę."
262
-
263
- #: core/options-pages.php:583
264
- msgid "Empty Fields"
265
- msgstr ""
266
-
267
- #: core/options-pages.php:584
268
- msgid "Wrong Taxonomy Name"
269
- msgstr ""
270
-
271
- #: core/options-pages.php:585
272
- msgid "Wrong Slug"
273
- msgstr ""
274
-
275
- #: core/options-pages.php:587
276
- msgid "Please choose Singular and Plural names for all new taxomonies."
277
- msgstr ""
278
-
279
- #: core/options-pages.php:588
280
- msgid "Please choose Singular name for all new taxomonies."
281
- msgstr ""
282
-
283
- #: core/options-pages.php:589
284
- msgid "Please choose Plural name for all new taxomonies."
285
- msgstr ""
286
-
287
- #: core/options-pages.php:591
288
- msgid ""
289
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
290
- "name please enter it manually."
291
- msgstr ""
292
-
293
- #: core/options-pages.php:592
294
- msgid ""
295
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
296
- "character ( _ ), and be 3-32 characters long."
297
- msgstr ""
298
-
299
- #: core/options-pages.php:593
300
- msgid ""
301
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
302
- "or hyphen ( - ) characters."
303
- msgstr ""
304
-
305
- #: core/options-pages.php:595 core/options-pages.php:644
306
- msgid "Ok"
307
- msgstr ""
308
-
309
- #: core/options-pages.php:596 core/options-pages.php:601
310
- #: core/options-pages.php:645 core/options-pages.php:690
311
- msgid "Cancel"
312
- msgstr ""
313
-
314
- #: core/options-pages.php:598
315
- msgid "Synchronize Now"
316
- msgstr ""
317
-
318
- #: core/options-pages.php:599 core/options-pages.php:687
319
- msgid "This operation cannot be canceled! Are you still sure?"
320
- msgstr ""
321
-
322
- #: core/options-pages.php:600
323
- msgid "Synchronize"
324
- msgstr ""
325
-
326
- #: core/options-pages.php:602
327
- msgid "Synchronizing..."
328
- msgstr ""
329
-
330
- #: core/options-pages.php:639 core/options-pages.php:2388
331
- msgid "Restore WordPress default MIME Types"
332
- msgstr ""
333
-
334
- #: core/options-pages.php:640
335
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
336
- msgstr ""
337
- "Ostrzeżenie! Wszystkie niestandardowe typy MIME będą usunięte przez tę "
338
- "operację. "
339
-
340
- #: core/options-pages.php:641
341
- msgid "Restore Defaults"
342
- msgstr ""
343
-
344
- #: core/options-pages.php:642
345
- msgid "Restoring..."
346
- msgstr ""
347
-
348
- #: core/options-pages.php:647
349
- msgid "MIME Types cannot be saved"
350
- msgstr ""
351
-
352
- #: core/options-pages.php:648
353
- msgid "Please fill into all fields."
354
- msgstr "Proszę wypełnić wszystkie pola"
355
-
356
- #: core/options-pages.php:649
357
- msgid "Duplicate extensions or MIME types. Please choose other one."
358
- msgstr ""
359
- "Duplikat rozszerzeń lub typów MIME. Proszę wybrać inny typ lub rozszerzenie "
360
- "pliku"
361
-
362
- #: core/options-pages.php:685 core/options-pages.php:853
363
- #: core/options-pages.php:1063
364
- msgid "Complete Cleanup"
365
- msgstr ""
366
-
367
- #: core/options-pages.php:686
368
- msgid ""
369
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
370
- "plugin data</strong> from the database including backups."
371
- msgstr ""
372
-
373
- #: core/options-pages.php:688
374
- msgid "Yes, delete all data"
375
- msgstr ""
376
-
377
- #: core/options-pages.php:689
378
- msgid "Cleaning..."
379
- msgstr ""
380
-
381
- #: core/options-pages.php:693 core/options-pages.php:996
382
- msgid "Unify Media Settings over Network"
383
- msgstr ""
384
-
385
- #: core/options-pages.php:696 core/options-pages.php:700
386
- #: core/options-pages.php:704
387
- msgid "will be overwritten"
388
- msgstr ""
389
-
390
- #: core/options-pages.php:706
391
- msgid "Apply"
392
- msgstr ""
393
-
394
- #: core/options-pages.php:707
395
- msgid "Applying Settings..."
396
- msgstr ""
397
-
398
- #: core/options-pages.php:746 core/options-pages.php:935
399
- msgid "Enhanced Media Library Utilities"
400
- msgstr ""
401
-
402
- #: core/options-pages.php:756
403
- msgid "Export"
404
- msgstr ""
405
-
406
- #: core/options-pages.php:761
407
- msgid "Plugin settings to export:"
408
- msgstr ""
409
-
410
- #: core/options-pages.php:762 core/options-pages.php:789
411
- #: core/options-pages.php:829
412
- msgid "Settings > Media Library"
413
- msgstr ""
414
-
415
- #: core/options-pages.php:763 core/options-pages.php:790
416
- #: core/options-pages.php:830
417
- msgid "Settings > Media Taxonomies"
418
- msgstr ""
419
-
420
- #: core/options-pages.php:764 core/options-pages.php:791
421
- #: core/options-pages.php:831
422
- msgid "Settings > MIME Types"
423
- msgstr ""
424
-
425
- #: core/options-pages.php:768
426
- msgid ""
427
- "Use generated JSON file to import the configuration into another website."
428
- msgstr ""
429
-
430
- #: core/options-pages.php:773
431
- msgid "Export Plugin Settings"
432
- msgstr ""
433
-
434
- #: core/options-pages.php:783
435
- msgid "Import"
436
- msgstr ""
437
-
438
- #: core/options-pages.php:788
439
- msgid "Plugin settings to import:"
440
- msgstr ""
441
-
442
- #: core/options-pages.php:794
443
- msgid ""
444
- "Plugin settings will be imported from a configuration JSON file which can be "
445
- "obtained by exporting the settings on another website using the export "
446
- "button above."
447
- msgstr ""
448
-
449
- #: core/options-pages.php:795
450
- msgid ""
451
- "All plugin settings will be overridden by the import. You will have a chance "
452
- "to restore current data from an automatic backup in case you are not "
453
- "satisfied with the result of the import."
454
- msgstr ""
455
-
456
- #: core/options-pages.php:801
457
- msgid "Import Plugin Settings"
458
- msgstr ""
459
-
460
- #: core/options-pages.php:813
461
- msgid "Restore"
462
- msgstr ""
463
-
464
- #: core/options-pages.php:819
465
- msgid "No backup available at the moment."
466
- msgstr ""
467
-
468
- #: core/options-pages.php:821
469
- msgid "Backup will be created automatically before any import operation."
470
- msgstr ""
471
-
472
- #: core/options-pages.php:825
473
- msgid ""
474
- "The backup has been automatically created before the latest import operation."
475
- msgstr ""
476
-
477
- #: core/options-pages.php:828
478
- msgid "Plugin settings to restore:"
479
- msgstr ""
480
-
481
- #: core/options-pages.php:837
482
- msgid "Restore Settings from the Backup"
483
- msgstr ""
484
-
485
- #: core/options-pages.php:860 core/options-pages.php:1082
486
- msgid "What will be deleted:"
487
- msgstr ""
488
-
489
- #: core/options-pages.php:865
490
- msgid "All plugin options"
491
- msgstr ""
492
-
493
- #: core/options-pages.php:866 core/options-pages.php:1089
494
- msgid "All plugin backups stored in the database"
495
- msgstr ""
496
-
497
- #: core/options-pages.php:870 core/options-pages.php:1093
498
- msgid "What will remain intact:"
499
- msgstr ""
500
-
501
- #: core/options-pages.php:871 core/options-pages.php:1094
502
- msgid "All media items"
503
- msgstr ""
504
-
505
- #: core/options-pages.php:872 core/options-pages.php:1095
506
- msgid "All taxonomies not listed above"
507
- msgstr ""
508
-
509
- #: core/options-pages.php:875 core/options-pages.php:1098
510
- msgid ""
511
- "The plugin cannot delete itself for security reasons. Please delete it "
512
- "manually from the plugin list after the cleanup is complete."
513
- msgstr ""
514
-
515
- #: core/options-pages.php:877 core/options-pages.php:1100
516
- msgid ""
517
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
518
- "backup of your database prior to cleanup!"
519
- msgstr ""
520
-
521
- #: core/options-pages.php:882
522
- msgid "Delete All Data & Deactivate"
523
- msgstr ""
524
-
525
- #: core/options-pages.php:945
526
- msgid "Network Settings"
527
- msgstr ""
528
-
529
- #: core/options-pages.php:952 core/options-pages.php:1003
530
- msgid "No settings available. The plugin is not network activated."
531
- msgstr ""
532
-
533
- #: core/options-pages.php:963
534
- msgid "Media Settings per site"
535
- msgstr ""
536
-
537
- #: core/options-pages.php:966
538
- msgid "Enable Media Settings"
539
- msgstr ""
540
-
541
- #: core/options-pages.php:967
542
- msgid "Allow an individual site admin to edit enhanced Media Settings"
543
- msgstr ""
544
-
545
- #: core/options-pages.php:968
546
- msgid ""
547
- "Otherwise, only a network (super) admin can see the menu and edit media "
548
- "settings."
549
- msgstr ""
550
-
551
- #: core/options-pages.php:974
552
- msgid "Plugin Utilities per site"
553
- msgstr ""
554
-
555
- #: core/options-pages.php:977
556
- msgid "Enable plugin Utilities"
557
- msgstr ""
558
-
559
- #: core/options-pages.php:978
560
- msgid ""
561
- "Allow an individual site admin to import / export / restore plugin settings "
562
- "and perform the complete cleanup for a specific site"
563
- msgstr ""
564
-
565
- #: core/options-pages.php:979
566
- msgid ""
567
- "Otherwise, only a network (super) admin can see the menu and perform those "
568
- "actions."
569
- msgstr ""
570
-
571
- #: core/options-pages.php:986 core/options-pages.php:1770
572
- #: core/options-pages.php:1824 core/options-pages.php:1861
573
- #: core/options-pages.php:1905 core/options-pages.php:2113
574
- #: core/options-pages.php:2177 core/options-pages.php:2215
575
- #: core/options-pages.php:2386 enhanced-media-library.php:571
576
- msgid "Save Changes"
577
- msgstr ""
578
-
579
- #: core/options-pages.php:1012 core/options-pages.php:1015
580
- msgid "Media Library Settings"
581
- msgstr ""
582
-
583
- #: core/options-pages.php:1016 core/options-pages.php:1030
584
- #: core/options-pages.php:1044
585
- msgid "Apply to ALL Network websites"
586
- msgstr ""
587
-
588
- #: core/options-pages.php:1026 core/options-pages.php:1029
589
- msgid "Media Taxonomies Settings"
590
- msgstr ""
591
-
592
- #: core/options-pages.php:1040 core/options-pages.php:1043
593
- msgid "MIME Types Settings"
594
- msgstr ""
595
-
596
- #: core/options-pages.php:1087
597
- msgid "All plugin options on every site"
598
- msgstr ""
599
-
600
- #: core/options-pages.php:1088
601
- msgid "Network settings"
602
- msgstr ""
603
-
604
- #: core/options-pages.php:1105
605
- msgid "Delete All Data & Network Deactivate"
606
- msgstr ""
607
-
608
- #: core/options-pages.php:1225
609
- msgid "Network settings saved."
610
- msgstr ""
611
-
612
- #: core/options-pages.php:1319
613
- msgid "Settings cannot be imported. Please upload a file to import settings."
614
- msgstr ""
615
-
616
- #: core/options-pages.php:1340
617
- msgid ""
618
- "Settings cannot be imported. Please upload a correct JSON file to import "
619
- "settings."
620
- msgstr ""
621
-
622
- #: core/options-pages.php:1356
623
- msgid "Plugin settings imported."
624
- msgstr ""
625
-
626
- #: core/options-pages.php:1409
627
- msgid "Plugin settings restored from the backup."
628
- msgstr ""
629
-
630
- #: core/options-pages.php:1714
631
- msgid "Filters"
632
- msgstr ""
633
-
634
- #: core/options-pages.php:1723 core/options-pages.php:1726
635
- msgid "Force filters"
636
- msgstr ""
637
-
638
- #: core/options-pages.php:1727
639
- msgid "Show media filters for ANY Media Popup"
640
- msgstr ""
641
-
642
- #: core/options-pages.php:1728
643
- msgid "Try this if filters are not shown for third-party plugins or themes."
644
- msgstr ""
645
-
646
- #: core/options-pages.php:1734 core/options-pages.php:1737
647
- msgid "Filters to show"
648
- msgstr ""
649
-
650
- #: core/options-pages.php:1738
651
- msgid "Types"
652
- msgstr ""
653
-
654
- #: core/options-pages.php:1739
655
- msgid "Can be disabled for Grid Mode only"
656
- msgstr ""
657
-
658
- #: core/options-pages.php:1740
659
- msgid "Dates"
660
- msgstr ""
661
-
662
- #: core/options-pages.php:1741
663
- msgid "Authors"
664
- msgstr ""
665
-
666
- #: core/options-pages.php:1748 core/options-pages.php:1751
667
- msgid "Show count"
668
- msgstr ""
669
-
670
- #: core/options-pages.php:1752
671
- msgid "Show item count per category for media filters"
672
- msgstr ""
673
-
674
- #: core/options-pages.php:1753
675
- msgid ""
676
- "Disable this if it slows down your site admin. The problem is resolved in "
677
- "the upcoming major update v3.0"
678
- msgstr ""
679
-
680
- #: core/options-pages.php:1759 core/options-pages.php:1762
681
- msgid "Include children"
682
- msgstr ""
683
-
684
- #: core/options-pages.php:1763
685
- msgid "Show media items of child media categories as a result of filtering"
686
- msgstr ""
687
-
688
- #: core/options-pages.php:1780
689
- msgid "Order"
690
- msgstr ""
691
-
692
- #: core/options-pages.php:1789
693
- msgid "Order media items by"
694
- msgstr ""
695
-
696
- #: core/options-pages.php:1792
697
- msgid "Date"
698
- msgstr ""
699
-
700
- #: core/options-pages.php:1793 core/options-pages.php:1853
701
- msgid "Title"
702
- msgstr ""
703
-
704
- #: core/options-pages.php:1794
705
- msgid "Custom Order"
706
- msgstr ""
707
-
708
- #: core/options-pages.php:1796 core/options-pages.php:1808
709
- msgid "For media library and media popups"
710
- msgstr ""
711
-
712
- #: core/options-pages.php:1797
713
- msgid ""
714
- "Allows changing media items order by drag and drop with Custom Order value."
715
- msgstr ""
716
-
717
- #: core/options-pages.php:1802
718
- msgid "Sort order"
719
- msgstr ""
720
-
721
- #: core/options-pages.php:1805
722
- msgid "Ascending"
723
- msgstr ""
724
-
725
- #: core/options-pages.php:1806
726
- msgid "Descending"
727
- msgstr ""
728
-
729
- #: core/options-pages.php:1813 core/options-pages.php:1816
730
- msgid "Natural sort order"
731
- msgstr ""
732
-
733
- #: core/options-pages.php:1817
734
- msgid "Apply human-friendly sort order to Media Library and Galleries"
735
- msgstr ""
736
-
737
- #: core/options-pages.php:1818
738
- msgid ""
739
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
740
- "3, abc-11, abc-2]"
741
- msgstr ""
742
-
743
- #: core/options-pages.php:1831
744
- msgid "Grid Mode"
745
- msgstr ""
746
-
747
- #: core/options-pages.php:1840 core/options-pages.php:1843
748
- msgid "Show caption"
749
- msgstr ""
750
-
751
- #: core/options-pages.php:1844
752
- msgid "Add text caption for media item thumbnails"
753
- msgstr ""
754
-
755
- #: core/options-pages.php:1850
756
- msgid "Caption type"
757
- msgstr ""
758
-
759
- #: core/options-pages.php:1854
760
- msgid "Filename"
761
- msgstr ""
762
-
763
- #: core/options-pages.php:1855
764
- msgid "Caption"
765
- msgstr ""
766
-
767
- #: core/options-pages.php:1868
768
- msgid "Media Shortcodes"
769
- msgstr ""
770
-
771
- #: core/options-pages.php:1877 core/options-pages.php:1880
772
- msgid "Enhanced media shortcodes"
773
- msgstr ""
774
-
775
- #: core/options-pages.php:1881
776
- msgid ""
777
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
778
- "upload date, and media items number limit"
779
- msgstr ""
780
-
781
- #: core/options-pages.php:1882
782
- msgid "Gallery example:"
783
- msgstr ""
784
-
785
- #: core/options-pages.php:1883
786
- msgid "Audio playlist example:"
787
- msgstr ""
788
-
789
- #: core/options-pages.php:1884
790
- msgid "Video playlist example:"
791
- msgstr ""
792
-
793
- #: core/options-pages.php:1888
794
- msgid "Warning"
795
- msgstr ""
796
-
797
- #: core/options-pages.php:1891
798
- #, php-format
799
- msgid ""
800
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
801
- "\">Learn more</a>."
802
- msgstr ""
803
-
804
- #: core/options-pages.php:1896
805
- #, php-format
806
- msgid ""
807
- "Please check out your gallery front-end and back-end functionality once this "
808
- "option activated. If you find an issue please inform plugin authors at %s or "
809
- "%s."
810
- msgstr ""
811
-
812
- #: core/options-pages.php:1977 core/options-pages.php:2124
813
- msgid "Assign following taxonomies to Media Library:"
814
- msgstr "Przypisz następujące taksonomie do biblioteki mediów:"
815
-
816
- #: core/options-pages.php:1996 core/options-pages.php:2062
817
- #: core/options-pages.php:2146
818
- msgid "Assign Taxonomy"
819
- msgstr "Przypisz taksonomię"
820
-
821
- #: core/options-pages.php:1997 core/options-pages.php:2147
822
- msgid "Edit Taxonomy"
823
- msgstr "Edytuj taksonomię"
824
-
825
- #: core/options-pages.php:2001 core/options-pages.php:2064
826
- msgid "Delete Taxonomy"
827
- msgstr "Usuń taksonomię"
828
-
829
- #: core/options-pages.php:2006 core/options-pages.php:2069
830
- msgid "Labels"
831
- msgstr "Etykiety"
832
-
833
- #: core/options-pages.php:2008 core/options-pages.php:2071
834
- msgid "Singular"
835
- msgstr "Liczba pojedyncza"
836
-
837
- #: core/options-pages.php:2009 core/options-pages.php:2072
838
- msgid "Plural"
839
- msgstr "Liczba mnoga"
840
-
841
- #: core/options-pages.php:2010 core/options-pages.php:2073
842
- msgid "Menu Name"
843
- msgstr "Nazwa w menu"
844
-
845
- #: core/options-pages.php:2023 core/options-pages.php:2046
846
- #: core/options-pages.php:2086 core/options-pages.php:2150
847
- msgid "Settings"
848
- msgstr "Ustawienia"
849
-
850
- #: core/options-pages.php:2025 core/options-pages.php:2088
851
- msgid "Taxonomy Name"
852
- msgstr ""
853
-
854
- #: core/options-pages.php:2026 core/options-pages.php:2089
855
- msgid "Hierarchical"
856
- msgstr "Hierachicznie"
857
-
858
- #: core/options-pages.php:2027 core/options-pages.php:2090
859
- msgid "Column for List View"
860
- msgstr ""
861
-
862
- #: core/options-pages.php:2028 core/options-pages.php:2048
863
- #: core/options-pages.php:2091 core/options-pages.php:2152
864
- msgid "Filter for List View"
865
- msgstr ""
866
-
867
- #: core/options-pages.php:2029 core/options-pages.php:2049
868
- #: core/options-pages.php:2092 core/options-pages.php:2153
869
- msgid "Filter for Grid View / Media Popup"
870
- msgstr ""
871
-
872
- #: core/options-pages.php:2030 core/options-pages.php:2050
873
- #: core/options-pages.php:2093 core/options-pages.php:2154
874
- msgid "Edit in Media Popup"
875
- msgstr ""
876
-
877
- #: core/options-pages.php:2031 core/options-pages.php:2094
878
- msgid "Show in Nav Menu"
879
- msgstr "Pokaż w menu nawigacyjnym"
880
-
881
- #: core/options-pages.php:2032 core/options-pages.php:2095
882
- msgid "Remember Terms Order (sort)"
883
- msgstr ""
884
-
885
- #: core/options-pages.php:2033 core/options-pages.php:2096
886
- msgid "Show in REST"
887
- msgstr ""
888
-
889
- #: core/options-pages.php:2034 core/options-pages.php:2097
890
- msgid "Rewrite Slug"
891
- msgstr ""
892
-
893
- #: core/options-pages.php:2035 core/options-pages.php:2098
894
- msgid "Slug with Front"
895
- msgstr ""
896
-
897
- #: core/options-pages.php:2110
898
- msgid "Add New Taxonomy"
899
- msgstr "Dodaj nową taksonomię"
900
-
901
- #: core/options-pages.php:2120
902
- msgid "Non-Media Taxonomies"
903
- msgstr "Pozostałe taksonomie"
904
-
905
- #: core/options-pages.php:2183
906
- msgid "Options"
907
- msgstr "Opcje"
908
-
909
- #: core/options-pages.php:2193 core/options-pages.php:2196
910
- msgid "Taxonomy archive pages"
911
- msgstr ""
912
-
913
- #: core/options-pages.php:2197
914
- msgid "Turn on media taxonomy archive pages on the front-end"
915
- msgstr ""
916
-
917
- #: core/options-pages.php:2198
918
- msgid ""
919
- "Re-save your permalink settings after this option change to make it work."
920
- msgstr ""
921
-
922
- #: core/options-pages.php:2204 core/options-pages.php:2207
923
- msgid "Assign all like hierarchical"
924
- msgstr ""
925
-
926
- #: core/options-pages.php:2208
927
- msgid ""
928
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
929
- msgstr ""
930
-
931
- #: core/options-pages.php:2271
932
- msgid "Add New MIME Type"
933
- msgstr "Dodaj nowy typ MIME"
934
-
935
- #: core/options-pages.php:2291 core/options-pages.php:2345
936
- msgid "Extension"
937
- msgstr "Rozszerzenie"
938
-
939
- #: core/options-pages.php:2292 core/options-pages.php:2346
940
- msgid "MIME Type"
941
- msgstr "Typ MIME"
942
-
943
- #: core/options-pages.php:2293 core/options-pages.php:2347
944
- msgid "Singular Label"
945
- msgstr "Etykieta dla liczby pojedynczej"
946
-
947
- #: core/options-pages.php:2294 core/options-pages.php:2348
948
- msgid "Plural Label"
949
- msgstr "Etykieta dla liczby mnogiej"
950
-
951
- #: core/options-pages.php:2295 core/options-pages.php:2324
952
- #: core/options-pages.php:2337 core/options-pages.php:2349
953
- msgid "Add Filter"
954
- msgstr "Dodaj filtr"
955
-
956
- #: core/options-pages.php:2296 core/options-pages.php:2325
957
- #: core/options-pages.php:2338 core/options-pages.php:2350
958
- msgid "Allow Upload"
959
- msgstr "Zezwól na przesyłanie"
960
-
961
- #: core/options-pages.php:2326 core/options-pages.php:2339
962
- msgid "Delete MIME Type"
963
- msgstr "Usuń typ MIME"
964
-
965
- #: core/options-pages.php:2415
966
- msgid "Changelog"
967
- msgstr ""
968
-
969
- #: core/options-pages.php:2416
970
- msgid "What's new in"
971
- msgstr ""
972
-
973
- #: core/options-pages.php:2416
974
- msgid "version"
975
- msgstr ""
976
-
977
- #: core/options-pages.php:2419
978
- msgid "More features under the hood"
979
- msgstr ""
980
-
981
- #: core/options-pages.php:2421
982
- msgid "Support"
983
- msgstr ""
984
-
985
- #: core/options-pages.php:2422
986
- msgid "Feel free to ask for help on"
987
- msgstr ""
988
-
989
- #: core/options-pages.php:2422
990
- msgid "Support is free for both versions of the plugin."
991
- msgstr ""
992
-
993
- #: core/options-pages.php:2424
994
- msgid "Plugin rating"
995
- msgstr ""
996
-
997
- #: core/options-pages.php:2425
998
- msgid "Please"
999
- msgstr ""
1000
-
1001
- #: core/options-pages.php:2425
1002
- msgid "vote for the plugin"
1003
- msgstr ""
1004
-
1005
- #: core/options-pages.php:2425
1006
- msgid "Thanks!"
1007
- msgstr ""
1008
-
1009
- #: core/options-pages.php:2427
1010
- msgid "Other plugins you may find useful"
1011
- msgstr ""
1012
-
1013
- #: core/options-pages.php:2469
1014
- msgid "Utility"
1015
- msgstr ""
1016
-
1017
- #: core/options-pages.php:2494
1018
- msgid "Rate us:"
1019
- msgstr ""
1020
-
1021
- #: core/options-pages.php:2494
1022
- msgid "Poor"
1023
- msgstr ""
1024
-
1025
- #: core/options-pages.php:2494
1026
- msgid "Works"
1027
- msgstr ""
1028
-
1029
- #: core/options-pages.php:2494
1030
- msgid "Good"
1031
- msgstr ""
1032
-
1033
- #: core/options-pages.php:2494
1034
- msgid "Great"
1035
- msgstr ""
1036
-
1037
- #: core/options-pages.php:2494
1038
- msgid "Fantastic!"
1039
- msgstr ""
1040
-
1041
- #: core/taxonomies.php:101
1042
- msgid "Media Taxonomies settings saved."
1043
- msgstr ""
1044
-
1045
- #: core/taxonomies.php:174
1046
- msgid "Media Library settings saved."
1047
- msgstr ""
1048
-
1049
- #: core/taxonomies.php:353
1050
- msgid "Filter by author"
1051
- msgstr ""
1052
-
1053
- #: core/taxonomies.php:357
1054
- msgid "All Authors"
1055
- msgstr ""
1056
-
1057
- #: core/taxonomies.php:374 core/taxonomies.php:380
1058
- #: enhanced-media-library.php:561
1059
- msgid "Filter by"
1060
- msgstr ""
1061
-
1062
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1063
- msgid "Not in a"
1064
- msgstr ""
1065
-
1066
- #: core/taxonomies.php:721
1067
- msgid "Add some"
1068
- msgstr ""
1069
-
1070
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1071
- msgid "All Uncategorized"
1072
- msgstr ""
1073
-
1074
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1075
- msgid "Reset All Filters"
1076
- msgstr ""
1077
-
1078
- #: enhanced-media-library.php:391
1079
- msgid "More Details"
1080
- msgstr ""
1081
-
1082
- #: enhanced-media-library.php:392
1083
- msgid "Less Details"
1084
- msgstr ""
1085
-
1086
- #: enhanced-media-library.php:565
1087
- msgid "author"
1088
- msgstr ""
1089
-
1090
- #: enhanced-media-library.php:566
1091
- msgid "authors"
1092
- msgstr ""
1093
-
1094
- #: enhanced-media-library.php:569
1095
- msgid "Saved."
1096
- msgstr ""
1097
-
1098
- #: enhanced-media-library.php:570
1099
- msgid "Something went wrong."
1100
- msgstr ""
1101
-
1102
- #: enhanced-media-library.php:573
1103
- msgid "Select All"
1104
- msgstr ""
1105
-
1106
- #: enhanced-media-library.php:574
1107
- msgid "Deselect "
1108
- msgstr ""
1109
-
1110
- #: enhanced-media-library.php:603
1111
- msgid "Uploaded to post #"
1112
- msgstr ""
1113
-
1114
- #: enhanced-media-library.php:604
1115
- msgid "Based On"
1116
- msgstr ""
1117
-
1118
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1119
- msgid "Media Categories"
1120
- msgstr ""
1121
-
1122
- #: enhanced-media-library.php:674
1123
- msgid "Media Category"
1124
- msgstr ""
1125
-
1126
- #: enhanced-media-library.php:676
1127
- msgid "All Media Categories"
1128
- msgstr ""
1129
-
1130
- #: enhanced-media-library.php:677
1131
- msgid "Edit Media Category"
1132
- msgstr ""
1133
-
1134
- #: enhanced-media-library.php:678
1135
- msgid "View Media Category"
1136
- msgstr ""
1137
-
1138
- #: enhanced-media-library.php:679
1139
- msgid "Update Media Category"
1140
- msgstr ""
1141
-
1142
- #: enhanced-media-library.php:680
1143
- msgid "Add New Media Category"
1144
- msgstr ""
1145
-
1146
- #: enhanced-media-library.php:681
1147
- msgid "New Media Category Name"
1148
- msgstr ""
1149
-
1150
- #: enhanced-media-library.php:682
1151
- msgid "Parent Media Category"
1152
- msgstr ""
1153
-
1154
- #: enhanced-media-library.php:683
1155
- msgid "Parent Media Category:"
1156
- msgstr ""
1157
-
1158
- #: enhanced-media-library.php:684
1159
- msgid "Search Media Categories"
1160
- msgstr ""
1161
-
1162
- #. Plugin URI of the plugin/theme
1163
- #. Author URI of the plugin/theme
1164
- msgid "http://wpUXsolutions.com"
1165
- msgstr ""
1166
-
1167
- #. Description of the plugin/theme
1168
- msgid ""
1169
- "This plugin will be handy for those who need to manage a lot of media files."
1170
- msgstr ""
1171
- "Wtyczka ta będzie przydatna tym, którzy muszą zarządzać wieloma plikami "
1172
- "multimedialnymi."
1173
-
1174
- #. Author of the plugin/theme
1175
- msgid "wpUXsolutions"
1176
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-ru.mo DELETED
Binary file
languages/enhanced-media-library-ru.po DELETED
@@ -1,1196 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Russian
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:48+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: ru\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=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
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr "Удалить"
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr "Снять выбор"
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr "Подпись к этому изображению&hellip;"
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr "Опишите это видео&hellip;"
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr "Опишите это аудио&hellip;"
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr "Опиши этот медиафайл&hellip;"
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr "Настройки MIME-типов восстановлены."
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr "Настройки MIME-типов сохранены."
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] " <span class=\"count\">(%s)</span>"
55
- msgstr[1] " <span class=\"count\">(%s)</span>"
56
- msgstr[2] " <span class=\"count\">(%s)</span>"
57
-
58
- #: core/options-pages.php:97 core/options-pages.php:106
59
- #: core/options-pages.php:115 core/options-pages.php:124
60
- #: core/options-pages.php:321 core/options-pages.php:399
61
- #: core/options-pages.php:1694 core/options-pages.php:1952
62
- #: core/options-pages.php:2265 core/options-pages.php:2465
63
- msgid "Media Settings"
64
- msgstr "Настройки медиа"
65
-
66
- #: core/options-pages.php:106 core/options-pages.php:107
67
- #: core/options-pages.php:363 core/options-pages.php:1019
68
- msgid "Media Library"
69
- msgstr "Библиотека"
70
-
71
- #: core/options-pages.php:115 core/options-pages.php:116
72
- #: core/options-pages.php:364 core/options-pages.php:1033
73
- #: core/options-pages.php:1742 core/options-pages.php:1973
74
- msgid "Media Taxonomies"
75
- msgstr "Таксономия"
76
-
77
- #: core/options-pages.php:124 core/options-pages.php:125
78
- #: core/options-pages.php:365 core/options-pages.php:1047
79
- msgid "MIME Types"
80
- msgstr "MIME-типы"
81
-
82
- #. Plugin Name of the plugin/theme
83
- #: core/options-pages.php:166 core/options-pages.php:167
84
- #: core/options-pages.php:194 core/options-pages.php:195
85
- msgid "Enhanced Media Library"
86
- msgstr "Enhanced Media Library"
87
-
88
- #: core/options-pages.php:362
89
- msgid "General"
90
- msgstr "Основные"
91
-
92
- #: core/options-pages.php:388 core/options-pages.php:395
93
- #: core/options-pages.php:732 core/options-pages.php:740
94
- #: core/options-pages.php:925 core/options-pages.php:1682
95
- #: core/options-pages.php:1689 core/options-pages.php:1940
96
- #: core/options-pages.php:1947 core/options-pages.php:2252
97
- #: core/options-pages.php:2259
98
- msgid "You do not have sufficient permissions to access this page."
99
- msgstr "У вас недостаточно прав для доступа к этой странице."
100
-
101
- #: core/options-pages.php:410
102
- msgid "Image sizes"
103
- msgstr "Размеры изображений"
104
-
105
- #: core/options-pages.php:411
106
- msgid ""
107
- "The sizes listed below determine the maximum dimensions in pixels to use "
108
- "when adding an image to the Media Library."
109
- msgstr ""
110
- "Указанные ниже размеры определяют максимальные размеры в пикселях, которые "
111
- "следует использовать при добавлении изображения в медиа-библиотеку."
112
-
113
- #: core/options-pages.php:415
114
- msgid "Thumbnail size"
115
- msgstr "Размер миниатюр"
116
-
117
- #: core/options-pages.php:417
118
- msgid "Width"
119
- msgstr "Ширина"
120
-
121
- #: core/options-pages.php:419
122
- msgid "Height"
123
- msgstr "Высота"
124
-
125
- #: core/options-pages.php:422
126
- msgid ""
127
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
128
- msgstr ""
129
- "Обрезать миниатюру точно по размерам (обычно сохраняются пропорции миниатюр)"
130
-
131
- #: core/options-pages.php:427 core/options-pages.php:428
132
- msgid "Medium size"
133
- msgstr "Средний размер"
134
-
135
- #: core/options-pages.php:429 core/options-pages.php:440
136
- msgid "Max Width"
137
- msgstr "Макс. ширина"
138
-
139
- #: core/options-pages.php:432 core/options-pages.php:443
140
- msgid "Max Height"
141
- msgstr " Макс. высота"
142
-
143
- #: core/options-pages.php:438 core/options-pages.php:439
144
- msgid "Large size"
145
- msgstr "Крупный размер"
146
-
147
- #: core/options-pages.php:456
148
- msgid "Embeds"
149
- msgstr "Встраивание"
150
-
151
- #: core/options-pages.php:463
152
- msgid "Uploading Files"
153
- msgstr "Загрузка файлов"
154
-
155
- #: core/options-pages.php:470
156
- msgid "Store uploads in this folder"
157
- msgstr "Сохранять загруженные файлы в этой папке"
158
-
159
- #: core/options-pages.php:474
160
- #, php-format
161
- msgid "Default is %s"
162
- msgstr "По умолчанию %s"
163
-
164
- #: core/options-pages.php:480
165
- msgid "Full URL path to files"
166
- msgstr "Полный URL-путь к файлам"
167
-
168
- #: core/options-pages.php:482
169
- msgid "Configuring this is optional. By default, it should be blank."
170
- msgstr ""
171
- "Настройка этого параметра необязательна. По умолчанию он должен быть пустым."
172
-
173
- #: core/options-pages.php:490
174
- msgid "Organize my uploads into month- and year-based folders"
175
- msgstr "Помещать загруженные мной файлы в папки по месяцу и году"
176
-
177
- #: core/options-pages.php:560 core/options-pages.php:1997
178
- #: core/options-pages.php:2012 core/options-pages.php:2075
179
- #: core/options-pages.php:2147
180
- msgid "Edit"
181
- msgstr "Редактировать"
182
-
183
- #: core/options-pages.php:561
184
- msgid "Close"
185
- msgstr "Закрыть"
186
-
187
- #: core/options-pages.php:562 core/options-pages.php:2013
188
- #: core/options-pages.php:2076
189
- msgid "View"
190
- msgstr "Просмотр"
191
-
192
- #: core/options-pages.php:563 core/options-pages.php:2014
193
- #: core/options-pages.php:2077
194
- msgid "Update"
195
- msgstr "Обновить"
196
-
197
- #: core/options-pages.php:564 core/options-pages.php:2015
198
- #: core/options-pages.php:2078
199
- msgid "Add New"
200
- msgstr "Добавить новый"
201
-
202
- #: core/options-pages.php:565 core/options-pages.php:2016
203
- #: core/options-pages.php:2079
204
- msgid "New"
205
- msgstr "Новый"
206
-
207
- #: core/options-pages.php:566
208
- msgid "Name"
209
- msgstr "Название"
210
-
211
- #: core/options-pages.php:567 core/options-pages.php:2017
212
- #: core/options-pages.php:2080
213
- msgid "Parent"
214
- msgstr "Родитель"
215
-
216
- #: core/options-pages.php:568 core/options-pages.php:862
217
- #: core/options-pages.php:1084 core/options-pages.php:2011
218
- #: core/options-pages.php:2074 core/taxonomies.php:381
219
- #: enhanced-media-library.php:562
220
- msgid "All"
221
- msgstr "Все"
222
-
223
- #: core/options-pages.php:569 core/options-pages.php:2018
224
- #: core/options-pages.php:2081
225
- msgid "Search"
226
- msgstr "Поиск"
227
-
228
- #: core/options-pages.php:571 core/options-pages.php:2062
229
- msgid "New Taxonomy"
230
- msgstr "Новая таксономия"
231
-
232
- #: core/options-pages.php:573
233
- msgid "Remove Taxonomy"
234
- msgstr "Удалить таксономию"
235
-
236
- #: core/options-pages.php:574
237
- msgid "Taxonomy will be removed."
238
- msgstr "Таксономия будет удалена."
239
-
240
- #: core/options-pages.php:575
241
- msgid ""
242
- "Taxonomy terms (categories) will remain intact in the database. If you "
243
- "create a taxonomy with the same name in the future, its terms (categories) "
244
- "will be available again."
245
- msgstr ""
246
- "Объекты таксономии останутся в базе данных. Если в будущем вы создадите "
247
- "таксономию с тем же именем, ее объекты будут снова доступны."
248
-
249
- #: core/options-pages.php:576
250
- msgid "Media items will remain intact."
251
- msgstr "Медиа объекты останутся нетронутыми."
252
-
253
- #: core/options-pages.php:577
254
- msgid "Are you still sure?"
255
- msgstr "Вы уверены?"
256
-
257
- #: core/options-pages.php:578
258
- msgid "Yes, remove taxonomy"
259
- msgstr "Да, удалить таксономию"
260
-
261
- #: core/options-pages.php:580
262
- msgid "Duplicate"
263
- msgstr "Дублировать"
264
-
265
- #: core/options-pages.php:581
266
- msgid "Taxonomy with the same name already exists. Please chose other one."
267
- msgstr ""
268
- "Таксономия с таким названием уже существует. Пожалуйста, выберите другое."
269
-
270
- #: core/options-pages.php:583
271
- msgid "Empty Fields"
272
- msgstr "Пустые поля"
273
-
274
- #: core/options-pages.php:584
275
- msgid "Wrong Taxonomy Name"
276
- msgstr ""
277
-
278
- #: core/options-pages.php:585
279
- msgid "Wrong Slug"
280
- msgstr ""
281
-
282
- #: core/options-pages.php:587
283
- msgid "Please choose Singular and Plural names for all new taxomonies."
284
- msgstr "Выберите единственные и множественные имена для всех новых таксономий."
285
-
286
- #: core/options-pages.php:588
287
- msgid "Please choose Singular name for all new taxomonies."
288
- msgstr "Выберите единственное имя для всех новых таксономий."
289
-
290
- #: core/options-pages.php:589
291
- msgid "Please choose Plural name for all new taxomonies."
292
- msgstr ""
293
-
294
- #: core/options-pages.php:591
295
- msgid ""
296
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
297
- "name please enter it manually."
298
- msgstr ""
299
-
300
- #: core/options-pages.php:592
301
- msgid ""
302
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
303
- "character ( _ ), and be 3-32 characters long."
304
- msgstr ""
305
-
306
- #: core/options-pages.php:593
307
- msgid ""
308
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
309
- "or hyphen ( - ) characters."
310
- msgstr ""
311
-
312
- #: core/options-pages.php:595 core/options-pages.php:644
313
- msgid "Ok"
314
- msgstr "Ок"
315
-
316
- #: core/options-pages.php:596 core/options-pages.php:601
317
- #: core/options-pages.php:645 core/options-pages.php:690
318
- msgid "Cancel"
319
- msgstr "Отмена"
320
-
321
- #: core/options-pages.php:598
322
- msgid "Synchronize Now"
323
- msgstr "Синхронизировать сейчас"
324
-
325
- #: core/options-pages.php:599 core/options-pages.php:687
326
- msgid "This operation cannot be canceled! Are you still sure?"
327
- msgstr "Эту операцию нельзя отменить! Вы уверены?"
328
-
329
- #: core/options-pages.php:600
330
- msgid "Synchronize"
331
- msgstr "Синхронизировать"
332
-
333
- #: core/options-pages.php:602
334
- msgid "Synchronizing..."
335
- msgstr "Синхронизация..."
336
-
337
- #: core/options-pages.php:639 core/options-pages.php:2388
338
- msgid "Restore WordPress default MIME Types"
339
- msgstr "Восстановить MIME-типы по умолчанию"
340
-
341
- #: core/options-pages.php:640
342
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
343
- msgstr ""
344
- "Внимание! Все ваши пользовательские MIME-типы будут удалены этой операцией."
345
-
346
- #: core/options-pages.php:641
347
- msgid "Restore Defaults"
348
- msgstr "Восстановить значения по умолчанию"
349
-
350
- #: core/options-pages.php:642
351
- msgid "Restoring..."
352
- msgstr "Восстановление..."
353
-
354
- #: core/options-pages.php:647
355
- msgid "MIME Types cannot be saved"
356
- msgstr ""
357
-
358
- #: core/options-pages.php:648
359
- msgid "Please fill into all fields."
360
- msgstr "Пожалуйста, заполните все поля."
361
-
362
- #: core/options-pages.php:649
363
- msgid "Duplicate extensions or MIME types. Please choose other one."
364
- msgstr "Дублирующееся расширение или MIME-тип. Пожалуйста, выберите другой"
365
-
366
- #: core/options-pages.php:685 core/options-pages.php:853
367
- #: core/options-pages.php:1063
368
- msgid "Complete Cleanup"
369
- msgstr "Полная очистка"
370
-
371
- #: core/options-pages.php:686
372
- msgid ""
373
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
374
- "plugin data</strong> from the database including backups."
375
- msgstr ""
376
- "Вы собираетесь удалить <strong style=\"text-transform:uppercase\">все данные "
377
- "плагина</strong> из базы данных, включая резервные копии."
378
-
379
- #: core/options-pages.php:688
380
- msgid "Yes, delete all data"
381
- msgstr "Да, удалить все данные"
382
-
383
- #: core/options-pages.php:689
384
- msgid "Cleaning..."
385
- msgstr "Очистка..."
386
-
387
- #: core/options-pages.php:693 core/options-pages.php:996
388
- msgid "Unify Media Settings over Network"
389
- msgstr ""
390
-
391
- #: core/options-pages.php:696 core/options-pages.php:700
392
- #: core/options-pages.php:704
393
- msgid "will be overwritten"
394
- msgstr ""
395
-
396
- #: core/options-pages.php:706
397
- msgid "Apply"
398
- msgstr ""
399
-
400
- #: core/options-pages.php:707
401
- msgid "Applying Settings..."
402
- msgstr ""
403
-
404
- #: core/options-pages.php:746 core/options-pages.php:935
405
- msgid "Enhanced Media Library Utilities"
406
- msgstr ""
407
-
408
- #: core/options-pages.php:756
409
- msgid "Export"
410
- msgstr "Экспорт"
411
-
412
- #: core/options-pages.php:761
413
- msgid "Plugin settings to export:"
414
- msgstr ""
415
-
416
- #: core/options-pages.php:762 core/options-pages.php:789
417
- #: core/options-pages.php:829
418
- msgid "Settings > Media Library"
419
- msgstr ""
420
-
421
- #: core/options-pages.php:763 core/options-pages.php:790
422
- #: core/options-pages.php:830
423
- msgid "Settings > Media Taxonomies"
424
- msgstr ""
425
-
426
- #: core/options-pages.php:764 core/options-pages.php:791
427
- #: core/options-pages.php:831
428
- msgid "Settings > MIME Types"
429
- msgstr ""
430
-
431
- #: core/options-pages.php:768
432
- msgid ""
433
- "Use generated JSON file to import the configuration into another website."
434
- msgstr ""
435
-
436
- #: core/options-pages.php:773
437
- msgid "Export Plugin Settings"
438
- msgstr "Экспортировать настройки плагина"
439
-
440
- #: core/options-pages.php:783
441
- msgid "Import"
442
- msgstr "Импорт"
443
-
444
- #: core/options-pages.php:788
445
- msgid "Plugin settings to import:"
446
- msgstr ""
447
-
448
- #: core/options-pages.php:794
449
- msgid ""
450
- "Plugin settings will be imported from a configuration JSON file which can be "
451
- "obtained by exporting the settings on another website using the export "
452
- "button above."
453
- msgstr ""
454
-
455
- #: core/options-pages.php:795
456
- msgid ""
457
- "All plugin settings will be overridden by the import. You will have a chance "
458
- "to restore current data from an automatic backup in case you are not "
459
- "satisfied with the result of the import."
460
- msgstr ""
461
- "При импорте все существующие настройки плагина будет перезаписаны. У вас "
462
- "будет возможность восстановить текущие данные из автоматического резервного "
463
- "копирования, если вас не устроит результат импорта."
464
-
465
- #: core/options-pages.php:801
466
- msgid "Import Plugin Settings"
467
- msgstr "Импортировать настройки плагина"
468
-
469
- #: core/options-pages.php:813
470
- msgid "Restore"
471
- msgstr "Восстановить"
472
-
473
- #: core/options-pages.php:819
474
- msgid "No backup available at the moment."
475
- msgstr "На текущий момент резервная копия недоступна."
476
-
477
- #: core/options-pages.php:821
478
- msgid "Backup will be created automatically before any import operation."
479
- msgstr "Резервная копия будет создана автоматически перед операцией импорта."
480
-
481
- #: core/options-pages.php:825
482
- msgid ""
483
- "The backup has been automatically created before the latest import operation."
484
- msgstr ""
485
- "Резервная копия была создана автоматически перед последней операцией импорта."
486
-
487
- #: core/options-pages.php:828
488
- msgid "Plugin settings to restore:"
489
- msgstr ""
490
-
491
- #: core/options-pages.php:837
492
- msgid "Restore Settings from the Backup"
493
- msgstr "Восстановить настройки из резервной копии"
494
-
495
- #: core/options-pages.php:860 core/options-pages.php:1082
496
- msgid "What will be deleted:"
497
- msgstr "Что будет удалено:"
498
-
499
- #: core/options-pages.php:865
500
- msgid "All plugin options"
501
- msgstr "Все параметры плагина"
502
-
503
- #: core/options-pages.php:866 core/options-pages.php:1089
504
- msgid "All plugin backups stored in the database"
505
- msgstr ""
506
-
507
- #: core/options-pages.php:870 core/options-pages.php:1093
508
- msgid "What will remain intact:"
509
- msgstr "Что останется нетронутым:"
510
-
511
- #: core/options-pages.php:871 core/options-pages.php:1094
512
- msgid "All media items"
513
- msgstr "Все медиа объекты"
514
-
515
- #: core/options-pages.php:872 core/options-pages.php:1095
516
- msgid "All taxonomies not listed above"
517
- msgstr "Все таксономии, не перечисленные выше"
518
-
519
- #: core/options-pages.php:875 core/options-pages.php:1098
520
- msgid ""
521
- "The plugin cannot delete itself for security reasons. Please delete it "
522
- "manually from the plugin list after the cleanup is complete."
523
- msgstr ""
524
-
525
- #: core/options-pages.php:877 core/options-pages.php:1100
526
- msgid ""
527
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
528
- "backup of your database prior to cleanup!"
529
- msgstr ""
530
-
531
- #: core/options-pages.php:882
532
- msgid "Delete All Data & Deactivate"
533
- msgstr "Удалить все данные и деактивировать"
534
-
535
- #: core/options-pages.php:945
536
- msgid "Network Settings"
537
- msgstr ""
538
-
539
- #: core/options-pages.php:952 core/options-pages.php:1003
540
- msgid "No settings available. The plugin is not network activated."
541
- msgstr ""
542
-
543
- #: core/options-pages.php:963
544
- msgid "Media Settings per site"
545
- msgstr ""
546
-
547
- #: core/options-pages.php:966
548
- msgid "Enable Media Settings"
549
- msgstr ""
550
-
551
- #: core/options-pages.php:967
552
- msgid "Allow an individual site admin to edit enhanced Media Settings"
553
- msgstr ""
554
-
555
- #: core/options-pages.php:968
556
- msgid ""
557
- "Otherwise, only a network (super) admin can see the menu and edit media "
558
- "settings."
559
- msgstr ""
560
-
561
- #: core/options-pages.php:974
562
- msgid "Plugin Utilities per site"
563
- msgstr ""
564
-
565
- #: core/options-pages.php:977
566
- msgid "Enable plugin Utilities"
567
- msgstr ""
568
-
569
- #: core/options-pages.php:978
570
- msgid ""
571
- "Allow an individual site admin to import / export / restore plugin settings "
572
- "and perform the complete cleanup for a specific site"
573
- msgstr ""
574
-
575
- #: core/options-pages.php:979
576
- msgid ""
577
- "Otherwise, only a network (super) admin can see the menu and perform those "
578
- "actions."
579
- msgstr ""
580
-
581
- #: core/options-pages.php:986 core/options-pages.php:1770
582
- #: core/options-pages.php:1824 core/options-pages.php:1861
583
- #: core/options-pages.php:1905 core/options-pages.php:2113
584
- #: core/options-pages.php:2177 core/options-pages.php:2215
585
- #: core/options-pages.php:2386 enhanced-media-library.php:571
586
- msgid "Save Changes"
587
- msgstr "Сохранить изменения"
588
-
589
- #: core/options-pages.php:1012 core/options-pages.php:1015
590
- msgid "Media Library Settings"
591
- msgstr ""
592
-
593
- #: core/options-pages.php:1016 core/options-pages.php:1030
594
- #: core/options-pages.php:1044
595
- msgid "Apply to ALL Network websites"
596
- msgstr ""
597
-
598
- #: core/options-pages.php:1026 core/options-pages.php:1029
599
- msgid "Media Taxonomies Settings"
600
- msgstr ""
601
-
602
- #: core/options-pages.php:1040 core/options-pages.php:1043
603
- msgid "MIME Types Settings"
604
- msgstr ""
605
-
606
- #: core/options-pages.php:1087
607
- msgid "All plugin options on every site"
608
- msgstr ""
609
-
610
- #: core/options-pages.php:1088
611
- msgid "Network settings"
612
- msgstr ""
613
-
614
- #: core/options-pages.php:1105
615
- msgid "Delete All Data & Network Deactivate"
616
- msgstr ""
617
-
618
- #: core/options-pages.php:1225
619
- msgid "Network settings saved."
620
- msgstr ""
621
-
622
- #: core/options-pages.php:1319
623
- msgid "Settings cannot be imported. Please upload a file to import settings."
624
- msgstr ""
625
-
626
- #: core/options-pages.php:1340
627
- msgid ""
628
- "Settings cannot be imported. Please upload a correct JSON file to import "
629
- "settings."
630
- msgstr ""
631
-
632
- #: core/options-pages.php:1356
633
- msgid "Plugin settings imported."
634
- msgstr "Настройки плагина импортированы"
635
-
636
- #: core/options-pages.php:1409
637
- msgid "Plugin settings restored from the backup."
638
- msgstr "Настройки плагина восстановлены из резервной копии."
639
-
640
- #: core/options-pages.php:1714
641
- msgid "Filters"
642
- msgstr ""
643
-
644
- #: core/options-pages.php:1723 core/options-pages.php:1726
645
- msgid "Force filters"
646
- msgstr "Принудительные фильтры"
647
-
648
- #: core/options-pages.php:1727
649
- msgid "Show media filters for ANY Media Popup"
650
- msgstr "Показывать фильтры в любом медиа окне"
651
-
652
- #: core/options-pages.php:1728
653
- msgid "Try this if filters are not shown for third-party plugins or themes."
654
- msgstr ""
655
- "Попробуй это, если фильтры не показываются для сторонних плагинов или тем."
656
-
657
- #: core/options-pages.php:1734 core/options-pages.php:1737
658
- msgid "Filters to show"
659
- msgstr ""
660
-
661
- #: core/options-pages.php:1738
662
- msgid "Types"
663
- msgstr ""
664
-
665
- #: core/options-pages.php:1739
666
- msgid "Can be disabled for Grid Mode only"
667
- msgstr ""
668
-
669
- #: core/options-pages.php:1740
670
- msgid "Dates"
671
- msgstr ""
672
-
673
- #: core/options-pages.php:1741
674
- msgid "Authors"
675
- msgstr ""
676
-
677
- #: core/options-pages.php:1748 core/options-pages.php:1751
678
- msgid "Show count"
679
- msgstr "Количество"
680
-
681
- #: core/options-pages.php:1752
682
- msgid "Show item count per category for media filters"
683
- msgstr "Показывать количество объектов в категориях в медиа фильтрах"
684
-
685
- #: core/options-pages.php:1753
686
- msgid ""
687
- "Disable this if it slows down your site admin. The problem is resolved in "
688
- "the upcoming major update v3.0"
689
- msgstr ""
690
-
691
- #: core/options-pages.php:1759 core/options-pages.php:1762
692
- msgid "Include children"
693
- msgstr ""
694
-
695
- #: core/options-pages.php:1763
696
- msgid "Show media items of child media categories as a result of filtering"
697
- msgstr ""
698
-
699
- #: core/options-pages.php:1780
700
- msgid "Order"
701
- msgstr "Порядок"
702
-
703
- #: core/options-pages.php:1789
704
- msgid "Order media items by"
705
- msgstr "Сортировать по"
706
-
707
- #: core/options-pages.php:1792
708
- msgid "Date"
709
- msgstr "Дате"
710
-
711
- #: core/options-pages.php:1793 core/options-pages.php:1853
712
- msgid "Title"
713
- msgstr "Названию"
714
-
715
- #: core/options-pages.php:1794
716
- msgid "Custom Order"
717
- msgstr "Пользовательская сортировка"
718
-
719
- #: core/options-pages.php:1796 core/options-pages.php:1808
720
- msgid "For media library and media popups"
721
- msgstr "Для медиа библиотеки и медиа окна"
722
-
723
- #: core/options-pages.php:1797
724
- msgid ""
725
- "Allows changing media items order by drag and drop with Custom Order value."
726
- msgstr ""
727
-
728
- #: core/options-pages.php:1802
729
- msgid "Sort order"
730
- msgstr "Порядок сортировки"
731
-
732
- #: core/options-pages.php:1805
733
- msgid "Ascending"
734
- msgstr "По возрастанию"
735
-
736
- #: core/options-pages.php:1806
737
- msgid "Descending"
738
- msgstr "По убыванию"
739
-
740
- #: core/options-pages.php:1813 core/options-pages.php:1816
741
- msgid "Natural sort order"
742
- msgstr ""
743
-
744
- #: core/options-pages.php:1817
745
- msgid "Apply human-friendly sort order to Media Library and Galleries"
746
- msgstr ""
747
-
748
- #: core/options-pages.php:1818
749
- msgid ""
750
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
751
- "3, abc-11, abc-2]"
752
- msgstr ""
753
-
754
- #: core/options-pages.php:1831
755
- msgid "Grid Mode"
756
- msgstr ""
757
-
758
- #: core/options-pages.php:1840 core/options-pages.php:1843
759
- msgid "Show caption"
760
- msgstr ""
761
-
762
- #: core/options-pages.php:1844
763
- msgid "Add text caption for media item thumbnails"
764
- msgstr ""
765
-
766
- #: core/options-pages.php:1850
767
- msgid "Caption type"
768
- msgstr ""
769
-
770
- #: core/options-pages.php:1854
771
- msgid "Filename"
772
- msgstr ""
773
-
774
- #: core/options-pages.php:1855
775
- msgid "Caption"
776
- msgstr ""
777
-
778
- #: core/options-pages.php:1868
779
- msgid "Media Shortcodes"
780
- msgstr "Медиа шорткоды"
781
-
782
- #: core/options-pages.php:1877 core/options-pages.php:1880
783
- msgid "Enhanced media shortcodes"
784
- msgstr "Расширенные медиа шорткоды"
785
-
786
- #: core/options-pages.php:1881
787
- msgid ""
788
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
789
- "upload date, and media items number limit"
790
- msgstr ""
791
- "Расширить стандартные шорткоды в WordPress, включив в них таксономию, дату "
792
- "загрузки и количество медиа элементов."
793
-
794
- #: core/options-pages.php:1882
795
- msgid "Gallery example:"
796
- msgstr "Пример галереи:"
797
-
798
- #: core/options-pages.php:1883
799
- msgid "Audio playlist example:"
800
- msgstr "Пример аудио плейлиста:"
801
-
802
- #: core/options-pages.php:1884
803
- msgid "Video playlist example:"
804
- msgstr "Пример видео плейлиста:"
805
-
806
- #: core/options-pages.php:1888
807
- msgid "Warning"
808
- msgstr ""
809
-
810
- #: core/options-pages.php:1891
811
- #, php-format
812
- msgid ""
813
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
814
- "\">Learn more</a>."
815
- msgstr ""
816
-
817
- #: core/options-pages.php:1896
818
- #, php-format
819
- msgid ""
820
- "Please check out your gallery front-end and back-end functionality once this "
821
- "option activated. If you find an issue please inform plugin authors at %s or "
822
- "%s."
823
- msgstr ""
824
- "<br>Пожалуйста, проверьте фронтенд/бэкенд вашей галереи после активации этой "
825
- "опции. Если вы обнаружили ошибку, сообщите об этом авторам плагинов по "
826
- "адресу %s или %s."
827
-
828
- #: core/options-pages.php:1977 core/options-pages.php:2124
829
- msgid "Assign following taxonomies to Media Library:"
830
- msgstr "Включить следующие таксономии в медиа-библиотеке:"
831
-
832
- #: core/options-pages.php:1996 core/options-pages.php:2062
833
- #: core/options-pages.php:2146
834
- msgid "Assign Taxonomy"
835
- msgstr "Назначить таксономию"
836
-
837
- #: core/options-pages.php:1997 core/options-pages.php:2147
838
- msgid "Edit Taxonomy"
839
- msgstr "Изменить таксономию"
840
-
841
- #: core/options-pages.php:2001 core/options-pages.php:2064
842
- msgid "Delete Taxonomy"
843
- msgstr "Удалить таксономию"
844
-
845
- #: core/options-pages.php:2006 core/options-pages.php:2069
846
- msgid "Labels"
847
- msgstr "Названия"
848
-
849
- #: core/options-pages.php:2008 core/options-pages.php:2071
850
- msgid "Singular"
851
- msgstr "Еденичное"
852
-
853
- #: core/options-pages.php:2009 core/options-pages.php:2072
854
- msgid "Plural"
855
- msgstr "Множественное"
856
-
857
- #: core/options-pages.php:2010 core/options-pages.php:2073
858
- msgid "Menu Name"
859
- msgstr "В меню"
860
-
861
- #: core/options-pages.php:2023 core/options-pages.php:2046
862
- #: core/options-pages.php:2086 core/options-pages.php:2150
863
- msgid "Settings"
864
- msgstr "Настройки"
865
-
866
- #: core/options-pages.php:2025 core/options-pages.php:2088
867
- msgid "Taxonomy Name"
868
- msgstr "Название таксономии"
869
-
870
- #: core/options-pages.php:2026 core/options-pages.php:2089
871
- msgid "Hierarchical"
872
- msgstr "Древовидность"
873
-
874
- #: core/options-pages.php:2027 core/options-pages.php:2090
875
- msgid "Column for List View"
876
- msgstr "Столбец в таблице объектов"
877
-
878
- #: core/options-pages.php:2028 core/options-pages.php:2048
879
- #: core/options-pages.php:2091 core/options-pages.php:2152
880
- msgid "Filter for List View"
881
- msgstr "Фильтр в таблице объектов"
882
-
883
- #: core/options-pages.php:2029 core/options-pages.php:2049
884
- #: core/options-pages.php:2092 core/options-pages.php:2153
885
- msgid "Filter for Grid View / Media Popup"
886
- msgstr "Фильтр в сетке / медиа окне"
887
-
888
- #: core/options-pages.php:2030 core/options-pages.php:2050
889
- #: core/options-pages.php:2093 core/options-pages.php:2154
890
- msgid "Edit in Media Popup"
891
- msgstr "Редактировать в медиа окне"
892
-
893
- #: core/options-pages.php:2031 core/options-pages.php:2094
894
- msgid "Show in Nav Menu"
895
- msgstr "Показать в меню навигации"
896
-
897
- #: core/options-pages.php:2032 core/options-pages.php:2095
898
- msgid "Remember Terms Order (sort)"
899
- msgstr "Запомнить порядок объектов таксономии"
900
-
901
- #: core/options-pages.php:2033 core/options-pages.php:2096
902
- msgid "Show in REST"
903
- msgstr "Включить в REST"
904
-
905
- #: core/options-pages.php:2034 core/options-pages.php:2097
906
- msgid "Rewrite Slug"
907
- msgstr "Префикс в ЧПУ"
908
-
909
- #: core/options-pages.php:2035 core/options-pages.php:2098
910
- msgid "Slug with Front"
911
- msgstr "Нужно ли в начало вставлять общий префикс из настроек"
912
-
913
- #: core/options-pages.php:2110
914
- msgid "Add New Taxonomy"
915
- msgstr "Добавить таксономию"
916
-
917
- #: core/options-pages.php:2120
918
- msgid "Non-Media Taxonomies"
919
- msgstr "Не-Медиа таксономии"
920
-
921
- #: core/options-pages.php:2183
922
- msgid "Options"
923
- msgstr "Опции"
924
-
925
- #: core/options-pages.php:2193 core/options-pages.php:2196
926
- msgid "Taxonomy archive pages"
927
- msgstr "Страницы архива таксономии"
928
-
929
- #: core/options-pages.php:2197
930
- msgid "Turn on media taxonomy archive pages on the front-end"
931
- msgstr "Включить страницы архива медиа таксономии на фронтенде"
932
-
933
- #: core/options-pages.php:2198
934
- msgid ""
935
- "Re-save your permalink settings after this option change to make it work."
936
- msgstr ""
937
- "Повторно сохраните настройки постоянных ссылок после изменения этой опции, "
938
- "чтобы она точно заработала."
939
-
940
- #: core/options-pages.php:2204 core/options-pages.php:2207
941
- msgid "Assign all like hierarchical"
942
- msgstr "Древовидность"
943
-
944
- #: core/options-pages.php:2208
945
- msgid ""
946
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
947
- msgstr ""
948
- "Показывать недревовидные таксономии, как древовидные в режиме просмотра "
949
- "сеткой / медиа окне"
950
-
951
- #: core/options-pages.php:2271
952
- msgid "Add New MIME Type"
953
- msgstr "Добавить MIME-тип"
954
-
955
- #: core/options-pages.php:2291 core/options-pages.php:2345
956
- msgid "Extension"
957
- msgstr "Расширение"
958
-
959
- #: core/options-pages.php:2292 core/options-pages.php:2346
960
- msgid "MIME Type"
961
- msgstr "MIME-тип"
962
-
963
- #: core/options-pages.php:2293 core/options-pages.php:2347
964
- msgid "Singular Label"
965
- msgstr "Единичное название"
966
-
967
- #: core/options-pages.php:2294 core/options-pages.php:2348
968
- msgid "Plural Label"
969
- msgstr "Множественное название"
970
-
971
- #: core/options-pages.php:2295 core/options-pages.php:2324
972
- #: core/options-pages.php:2337 core/options-pages.php:2349
973
- msgid "Add Filter"
974
- msgstr "Добавить фильтр"
975
-
976
- #: core/options-pages.php:2296 core/options-pages.php:2325
977
- #: core/options-pages.php:2338 core/options-pages.php:2350
978
- msgid "Allow Upload"
979
- msgstr "Разрешить загрузку"
980
-
981
- #: core/options-pages.php:2326 core/options-pages.php:2339
982
- msgid "Delete MIME Type"
983
- msgstr "Удалить MIME-тип"
984
-
985
- #: core/options-pages.php:2415
986
- msgid "Changelog"
987
- msgstr "Список изменений"
988
-
989
- #: core/options-pages.php:2416
990
- msgid "What's new in"
991
- msgstr "Что нового в"
992
-
993
- #: core/options-pages.php:2416
994
- msgid "version"
995
- msgstr "версии"
996
-
997
- #: core/options-pages.php:2419
998
- msgid "More features under the hood"
999
- msgstr "Дополнительные возможности на сайте"
1000
-
1001
- #: core/options-pages.php:2421
1002
- msgid "Support"
1003
- msgstr "Поддержка"
1004
-
1005
- #: core/options-pages.php:2422
1006
- msgid "Feel free to ask for help on"
1007
- msgstr "Не стесняйтесь обратиться за помощью к"
1008
-
1009
- #: core/options-pages.php:2422
1010
- msgid "Support is free for both versions of the plugin."
1011
- msgstr "Поддержка бесплатна для обеих версий плагина."
1012
-
1013
- #: core/options-pages.php:2424
1014
- msgid "Plugin rating"
1015
- msgstr "Рейтинг плагина"
1016
-
1017
- #: core/options-pages.php:2425
1018
- msgid "Please"
1019
- msgstr "Пожалуйста"
1020
-
1021
- #: core/options-pages.php:2425
1022
- msgid "vote for the plugin"
1023
- msgstr "проголосуйте за плагин"
1024
-
1025
- #: core/options-pages.php:2425
1026
- msgid "Thanks!"
1027
- msgstr "Спасибо!"
1028
-
1029
- #: core/options-pages.php:2427
1030
- msgid "Other plugins you may find useful"
1031
- msgstr "Другие плагины, которые могут вам пригодиться"
1032
-
1033
- #: core/options-pages.php:2469
1034
- msgid "Utility"
1035
- msgstr "Утилита"
1036
-
1037
- #: core/options-pages.php:2494
1038
- msgid "Rate us:"
1039
- msgstr ""
1040
-
1041
- #: core/options-pages.php:2494
1042
- msgid "Poor"
1043
- msgstr ""
1044
-
1045
- #: core/options-pages.php:2494
1046
- msgid "Works"
1047
- msgstr ""
1048
-
1049
- #: core/options-pages.php:2494
1050
- msgid "Good"
1051
- msgstr ""
1052
-
1053
- #: core/options-pages.php:2494
1054
- msgid "Great"
1055
- msgstr ""
1056
-
1057
- #: core/options-pages.php:2494
1058
- msgid "Fantastic!"
1059
- msgstr ""
1060
-
1061
- #: core/taxonomies.php:101
1062
- msgid "Media Taxonomies settings saved."
1063
- msgstr "Настройки медиа таксономий сохранены."
1064
-
1065
- #: core/taxonomies.php:174
1066
- msgid "Media Library settings saved."
1067
- msgstr "Настройки медиа библиотеки сохранены."
1068
-
1069
- #: core/taxonomies.php:353
1070
- msgid "Filter by author"
1071
- msgstr ""
1072
-
1073
- #: core/taxonomies.php:357
1074
- msgid "All Authors"
1075
- msgstr ""
1076
-
1077
- #: core/taxonomies.php:374 core/taxonomies.php:380
1078
- #: enhanced-media-library.php:561
1079
- msgid "Filter by"
1080
- msgstr "Фильтровать по"
1081
-
1082
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1083
- msgid "Not in a"
1084
- msgstr "Не в"
1085
-
1086
- #: core/taxonomies.php:721
1087
- msgid "Add some"
1088
- msgstr ""
1089
-
1090
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1091
- msgid "All Uncategorized"
1092
- msgstr "Все без категории"
1093
-
1094
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1095
- msgid "Reset All Filters"
1096
- msgstr "Сброс"
1097
-
1098
- #: enhanced-media-library.php:391
1099
- msgid "More Details"
1100
- msgstr ""
1101
-
1102
- #: enhanced-media-library.php:392
1103
- msgid "Less Details"
1104
- msgstr ""
1105
-
1106
- #: enhanced-media-library.php:565
1107
- msgid "author"
1108
- msgstr ""
1109
-
1110
- #: enhanced-media-library.php:566
1111
- msgid "authors"
1112
- msgstr ""
1113
-
1114
- #: enhanced-media-library.php:569
1115
- msgid "Saved."
1116
- msgstr ""
1117
-
1118
- #: enhanced-media-library.php:570
1119
- msgid "Something went wrong."
1120
- msgstr "Что-то пошло не так."
1121
-
1122
- #: enhanced-media-library.php:573
1123
- msgid "Select All"
1124
- msgstr "Выбрать все"
1125
-
1126
- #: enhanced-media-library.php:574
1127
- msgid "Deselect "
1128
- msgstr ""
1129
-
1130
- #: enhanced-media-library.php:603
1131
- msgid "Uploaded to post #"
1132
- msgstr "Загружено для записи #"
1133
-
1134
- #: enhanced-media-library.php:604
1135
- msgid "Based On"
1136
- msgstr "На основе"
1137
-
1138
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1139
- msgid "Media Categories"
1140
- msgstr "Медиа категории"
1141
-
1142
- #: enhanced-media-library.php:674
1143
- msgid "Media Category"
1144
- msgstr "Медиа категория"
1145
-
1146
- #: enhanced-media-library.php:676
1147
- msgid "All Media Categories"
1148
- msgstr "Все медиа категории"
1149
-
1150
- #: enhanced-media-library.php:677
1151
- msgid "Edit Media Category"
1152
- msgstr "Изменить медиа категорию"
1153
-
1154
- #: enhanced-media-library.php:678
1155
- msgid "View Media Category"
1156
- msgstr "Смотреть медиа категорию"
1157
-
1158
- #: enhanced-media-library.php:679
1159
- msgid "Update Media Category"
1160
- msgstr "Обновить медиа категорию"
1161
-
1162
- #: enhanced-media-library.php:680
1163
- msgid "Add New Media Category"
1164
- msgstr "Добавить новую медиа категорию"
1165
-
1166
- #: enhanced-media-library.php:681
1167
- msgid "New Media Category Name"
1168
- msgstr "Название новой медиа категории"
1169
-
1170
- #: enhanced-media-library.php:682
1171
- msgid "Parent Media Category"
1172
- msgstr "Родительская категория"
1173
-
1174
- #: enhanced-media-library.php:683
1175
- msgid "Parent Media Category:"
1176
- msgstr "Родительская категория:"
1177
-
1178
- #: enhanced-media-library.php:684
1179
- msgid "Search Media Categories"
1180
- msgstr "Поиск медиа категорий"
1181
-
1182
- #. Plugin URI of the plugin/theme
1183
- #. Author URI of the plugin/theme
1184
- msgid "http://wpUXsolutions.com"
1185
- msgstr "http://wpUXsolutions.com"
1186
-
1187
- #. Description of the plugin/theme
1188
- msgid ""
1189
- "This plugin will be handy for those who need to manage a lot of media files."
1190
- msgstr ""
1191
- "Этот плагин будет удобен для тех, кому нужно управлять множеством "
1192
- "медиафайлов."
1193
-
1194
- #. Author of the plugin/theme
1195
- msgid "wpUXsolutions"
1196
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-sv_SE.mo DELETED
Binary file
languages/enhanced-media-library-sv_SE.po DELETED
@@ -1,1173 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Swedish
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 23:54+0300\n"
7
- "PO-Revision-Date: 2020-10-11 23:55+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: sv_SE\n"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 2.4.1\n"
16
-
17
- #: core/media-templates.php:21
18
- msgid "Remove"
19
- msgstr "Ta bort"
20
-
21
- #: core/media-templates.php:23
22
- msgid "Deselect"
23
- msgstr "Avmarkera"
24
-
25
- #: core/media-templates.php:79
26
- msgid "Caption this image&hellip;"
27
- msgstr "Rubrik på denna bild&hellip;"
28
-
29
- #: core/media-templates.php:83
30
- msgid "Describe this video&hellip;"
31
- msgstr "Beskriv denna video&hellip;"
32
-
33
- #: core/media-templates.php:85
34
- msgid "Describe this audio file&hellip;"
35
- msgstr "Beskriv denna ljudfil&hellip;"
36
-
37
- #: core/media-templates.php:87
38
- msgid "Describe this media file&hellip;"
39
- msgstr "Beskriv denna mediefil&hellip;"
40
-
41
- #: core/mime-types.php:30
42
- msgid "MIME Types settings restored."
43
- msgstr ""
44
-
45
- #: core/mime-types.php:39
46
- msgid "MIME Types settings saved."
47
- msgstr ""
48
-
49
- #: core/mime-types.php:117
50
- #, php-format
51
- msgid " <span class=\"count\">(%s)</span>"
52
- msgid_plural " <span class=\"count\">(%s)</span>"
53
- msgstr[0] ""
54
- msgstr[1] ""
55
-
56
- #: core/options-pages.php:97 core/options-pages.php:106
57
- #: core/options-pages.php:115 core/options-pages.php:124
58
- #: core/options-pages.php:321 core/options-pages.php:399
59
- #: core/options-pages.php:1694 core/options-pages.php:1952
60
- #: core/options-pages.php:2265 core/options-pages.php:2465
61
- msgid "Media Settings"
62
- msgstr "Mediainställningar"
63
-
64
- #: core/options-pages.php:106 core/options-pages.php:107
65
- #: core/options-pages.php:363 core/options-pages.php:1019
66
- msgid "Media Library"
67
- msgstr "Mediabiblioteket"
68
-
69
- #: core/options-pages.php:115 core/options-pages.php:116
70
- #: core/options-pages.php:364 core/options-pages.php:1033
71
- #: core/options-pages.php:1742 core/options-pages.php:1973
72
- msgid "Media Taxonomies"
73
- msgstr "Mediataxonomier"
74
-
75
- #: core/options-pages.php:124 core/options-pages.php:125
76
- #: core/options-pages.php:365 core/options-pages.php:1047
77
- msgid "MIME Types"
78
- msgstr "MIME-typer"
79
-
80
- #. Plugin Name of the plugin/theme
81
- #: core/options-pages.php:166 core/options-pages.php:167
82
- #: core/options-pages.php:194 core/options-pages.php:195
83
- msgid "Enhanced Media Library"
84
- msgstr "Enhanced Media Library"
85
-
86
- #: core/options-pages.php:362
87
- msgid "General"
88
- msgstr "Allmänt"
89
-
90
- #: core/options-pages.php:388 core/options-pages.php:395
91
- #: core/options-pages.php:732 core/options-pages.php:740
92
- #: core/options-pages.php:925 core/options-pages.php:1682
93
- #: core/options-pages.php:1689 core/options-pages.php:1940
94
- #: core/options-pages.php:1947 core/options-pages.php:2252
95
- #: core/options-pages.php:2259
96
- msgid "You do not have sufficient permissions to access this page."
97
- msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
98
-
99
- #: core/options-pages.php:410
100
- msgid "Image sizes"
101
- msgstr "Bildstorlekar"
102
-
103
- #: core/options-pages.php:411
104
- msgid ""
105
- "The sizes listed below determine the maximum dimensions in pixels to use "
106
- "when adding an image to the Media Library."
107
- msgstr ""
108
-
109
- #: core/options-pages.php:415
110
- msgid "Thumbnail size"
111
- msgstr "Miniatyrstorlek"
112
-
113
- #: core/options-pages.php:417
114
- msgid "Width"
115
- msgstr "Bredd"
116
-
117
- #: core/options-pages.php:419
118
- msgid "Height"
119
- msgstr "Höjd"
120
-
121
- #: core/options-pages.php:422
122
- msgid ""
123
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
124
- msgstr ""
125
-
126
- #: core/options-pages.php:427 core/options-pages.php:428
127
- msgid "Medium size"
128
- msgstr ""
129
-
130
- #: core/options-pages.php:429 core/options-pages.php:440
131
- msgid "Max Width"
132
- msgstr ""
133
-
134
- #: core/options-pages.php:432 core/options-pages.php:443
135
- msgid "Max Height"
136
- msgstr ""
137
-
138
- #: core/options-pages.php:438 core/options-pages.php:439
139
- msgid "Large size"
140
- msgstr "Stor storlek"
141
-
142
- #: core/options-pages.php:456
143
- msgid "Embeds"
144
- msgstr ""
145
-
146
- #: core/options-pages.php:463
147
- msgid "Uploading Files"
148
- msgstr ""
149
-
150
- #: core/options-pages.php:470
151
- msgid "Store uploads in this folder"
152
- msgstr ""
153
-
154
- #: core/options-pages.php:474
155
- #, php-format
156
- msgid "Default is %s"
157
- msgstr "Standard är %s"
158
-
159
- #: core/options-pages.php:480
160
- msgid "Full URL path to files"
161
- msgstr ""
162
-
163
- #: core/options-pages.php:482
164
- msgid "Configuring this is optional. By default, it should be blank."
165
- msgstr ""
166
-
167
- #: core/options-pages.php:490
168
- msgid "Organize my uploads into month- and year-based folders"
169
- msgstr ""
170
-
171
- #: core/options-pages.php:560 core/options-pages.php:1997
172
- #: core/options-pages.php:2012 core/options-pages.php:2075
173
- #: core/options-pages.php:2147
174
- msgid "Edit"
175
- msgstr "Redigera"
176
-
177
- #: core/options-pages.php:561
178
- msgid "Close"
179
- msgstr "Stäng"
180
-
181
- #: core/options-pages.php:562 core/options-pages.php:2013
182
- #: core/options-pages.php:2076
183
- msgid "View"
184
- msgstr "Visa"
185
-
186
- #: core/options-pages.php:563 core/options-pages.php:2014
187
- #: core/options-pages.php:2077
188
- msgid "Update"
189
- msgstr "Uppdatera"
190
-
191
- #: core/options-pages.php:564 core/options-pages.php:2015
192
- #: core/options-pages.php:2078
193
- msgid "Add New"
194
- msgstr "Lägg Till Ny"
195
-
196
- #: core/options-pages.php:565 core/options-pages.php:2016
197
- #: core/options-pages.php:2079
198
- msgid "New"
199
- msgstr "Ny"
200
-
201
- #: core/options-pages.php:566
202
- msgid "Name"
203
- msgstr "Namn"
204
-
205
- #: core/options-pages.php:567 core/options-pages.php:2017
206
- #: core/options-pages.php:2080
207
- msgid "Parent"
208
- msgstr "Förälder"
209
-
210
- #: core/options-pages.php:568 core/options-pages.php:862
211
- #: core/options-pages.php:1084 core/options-pages.php:2011
212
- #: core/options-pages.php:2074 core/taxonomies.php:381
213
- #: enhanced-media-library.php:562
214
- msgid "All"
215
- msgstr "Alla"
216
-
217
- #: core/options-pages.php:569 core/options-pages.php:2018
218
- #: core/options-pages.php:2081
219
- msgid "Search"
220
- msgstr "Sök"
221
-
222
- #: core/options-pages.php:571 core/options-pages.php:2062
223
- msgid "New Taxonomy"
224
- msgstr "Ny Taxonomi"
225
-
226
- #: core/options-pages.php:573
227
- msgid "Remove Taxonomy"
228
- msgstr ""
229
-
230
- #: core/options-pages.php:574
231
- msgid "Taxonomy will be removed."
232
- msgstr ""
233
-
234
- #: core/options-pages.php:575
235
- msgid ""
236
- "Taxonomy terms (categories) will remain intact in the database. If you "
237
- "create a taxonomy with the same name in the future, its terms (categories) "
238
- "will be available again."
239
- msgstr ""
240
-
241
- #: core/options-pages.php:576
242
- msgid "Media items will remain intact."
243
- msgstr "Medieobjekten kommer att förbli intakta."
244
-
245
- #: core/options-pages.php:577
246
- msgid "Are you still sure?"
247
- msgstr "Är du fortfarande säker?"
248
-
249
- #: core/options-pages.php:578
250
- msgid "Yes, remove taxonomy"
251
- msgstr "Ja, ta bort taxonomi"
252
-
253
- #: core/options-pages.php:580
254
- msgid "Duplicate"
255
- msgstr "Duplicera"
256
-
257
- #: core/options-pages.php:581
258
- msgid "Taxonomy with the same name already exists. Please chose other one."
259
- msgstr "Taxonomi med samma namn finns redan. Välj ett annat."
260
-
261
- #: core/options-pages.php:583
262
- msgid "Empty Fields"
263
- msgstr ""
264
-
265
- #: core/options-pages.php:584
266
- msgid "Wrong Taxonomy Name"
267
- msgstr ""
268
-
269
- #: core/options-pages.php:585
270
- msgid "Wrong Slug"
271
- msgstr ""
272
-
273
- #: core/options-pages.php:587
274
- msgid "Please choose Singular and Plural names for all new taxomonies."
275
- msgstr ""
276
-
277
- #: core/options-pages.php:588
278
- msgid "Please choose Singular name for all new taxomonies."
279
- msgstr ""
280
-
281
- #: core/options-pages.php:589
282
- msgid "Please choose Plural name for all new taxomonies."
283
- msgstr ""
284
-
285
- #: core/options-pages.php:591
286
- msgid ""
287
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
288
- "name please enter it manually."
289
- msgstr ""
290
-
291
- #: core/options-pages.php:592
292
- msgid ""
293
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
294
- "character ( _ ), and be 3-32 characters long."
295
- msgstr ""
296
-
297
- #: core/options-pages.php:593
298
- msgid ""
299
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
300
- "or hyphen ( - ) characters."
301
- msgstr ""
302
-
303
- #: core/options-pages.php:595 core/options-pages.php:644
304
- msgid "Ok"
305
- msgstr "OK"
306
-
307
- #: core/options-pages.php:596 core/options-pages.php:601
308
- #: core/options-pages.php:645 core/options-pages.php:690
309
- msgid "Cancel"
310
- msgstr "Avbryt"
311
-
312
- #: core/options-pages.php:598
313
- msgid "Synchronize Now"
314
- msgstr "Synkronisera nu"
315
-
316
- #: core/options-pages.php:599 core/options-pages.php:687
317
- msgid "This operation cannot be canceled! Are you still sure?"
318
- msgstr ""
319
-
320
- #: core/options-pages.php:600
321
- msgid "Synchronize"
322
- msgstr "Synkronisera"
323
-
324
- #: core/options-pages.php:602
325
- msgid "Synchronizing..."
326
- msgstr ""
327
-
328
- #: core/options-pages.php:639 core/options-pages.php:2388
329
- msgid "Restore WordPress default MIME Types"
330
- msgstr ""
331
-
332
- #: core/options-pages.php:640
333
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
334
- msgstr ""
335
- "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
336
-
337
- #: core/options-pages.php:641
338
- msgid "Restore Defaults"
339
- msgstr "Återställ standard"
340
-
341
- #: core/options-pages.php:642
342
- msgid "Restoring..."
343
- msgstr "Återställer…"
344
-
345
- #: core/options-pages.php:647
346
- msgid "MIME Types cannot be saved"
347
- msgstr ""
348
-
349
- #: core/options-pages.php:648
350
- msgid "Please fill into all fields."
351
- msgstr "Var god fyll i alla fält."
352
-
353
- #: core/options-pages.php:649
354
- msgid "Duplicate extensions or MIME types. Please choose other one."
355
- msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
356
-
357
- #: core/options-pages.php:685 core/options-pages.php:853
358
- #: core/options-pages.php:1063
359
- msgid "Complete Cleanup"
360
- msgstr ""
361
-
362
- #: core/options-pages.php:686
363
- msgid ""
364
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
365
- "plugin data</strong> from the database including backups."
366
- msgstr ""
367
-
368
- #: core/options-pages.php:688
369
- msgid "Yes, delete all data"
370
- msgstr "Ja, ta bort all data"
371
-
372
- #: core/options-pages.php:689
373
- msgid "Cleaning..."
374
- msgstr ""
375
-
376
- #: core/options-pages.php:693 core/options-pages.php:996
377
- msgid "Unify Media Settings over Network"
378
- msgstr ""
379
-
380
- #: core/options-pages.php:696 core/options-pages.php:700
381
- #: core/options-pages.php:704
382
- msgid "will be overwritten"
383
- msgstr ""
384
-
385
- #: core/options-pages.php:706
386
- msgid "Apply"
387
- msgstr ""
388
-
389
- #: core/options-pages.php:707
390
- msgid "Applying Settings..."
391
- msgstr ""
392
-
393
- #: core/options-pages.php:746 core/options-pages.php:935
394
- msgid "Enhanced Media Library Utilities"
395
- msgstr ""
396
-
397
- #: core/options-pages.php:756
398
- msgid "Export"
399
- msgstr "Exportera"
400
-
401
- #: core/options-pages.php:761
402
- msgid "Plugin settings to export:"
403
- msgstr ""
404
-
405
- #: core/options-pages.php:762 core/options-pages.php:789
406
- #: core/options-pages.php:829
407
- msgid "Settings > Media Library"
408
- msgstr ""
409
-
410
- #: core/options-pages.php:763 core/options-pages.php:790
411
- #: core/options-pages.php:830
412
- msgid "Settings > Media Taxonomies"
413
- msgstr ""
414
-
415
- #: core/options-pages.php:764 core/options-pages.php:791
416
- #: core/options-pages.php:831
417
- msgid "Settings > MIME Types"
418
- msgstr ""
419
-
420
- #: core/options-pages.php:768
421
- msgid ""
422
- "Use generated JSON file to import the configuration into another website."
423
- msgstr ""
424
-
425
- #: core/options-pages.php:773
426
- msgid "Export Plugin Settings"
427
- msgstr "Exportera tilläggets inställningar"
428
-
429
- #: core/options-pages.php:783
430
- msgid "Import"
431
- msgstr "Importera"
432
-
433
- #: core/options-pages.php:788
434
- msgid "Plugin settings to import:"
435
- msgstr ""
436
-
437
- #: core/options-pages.php:794
438
- msgid ""
439
- "Plugin settings will be imported from a configuration JSON file which can be "
440
- "obtained by exporting the settings on another website using the export "
441
- "button above."
442
- msgstr ""
443
-
444
- #: core/options-pages.php:795
445
- msgid ""
446
- "All plugin settings will be overridden by the import. You will have a chance "
447
- "to restore current data from an automatic backup in case you are not "
448
- "satisfied with the result of the import."
449
- msgstr ""
450
-
451
- #: core/options-pages.php:801
452
- msgid "Import Plugin Settings"
453
- msgstr "Importera tilläggets inställningar"
454
-
455
- #: core/options-pages.php:813
456
- msgid "Restore"
457
- msgstr "Återställ"
458
-
459
- #: core/options-pages.php:819
460
- msgid "No backup available at the moment."
461
- msgstr ""
462
-
463
- #: core/options-pages.php:821
464
- msgid "Backup will be created automatically before any import operation."
465
- msgstr ""
466
-
467
- #: core/options-pages.php:825
468
- msgid ""
469
- "The backup has been automatically created before the latest import operation."
470
- msgstr ""
471
-
472
- #: core/options-pages.php:828
473
- msgid "Plugin settings to restore:"
474
- msgstr ""
475
-
476
- #: core/options-pages.php:837
477
- msgid "Restore Settings from the Backup"
478
- msgstr ""
479
-
480
- #: core/options-pages.php:860 core/options-pages.php:1082
481
- msgid "What will be deleted:"
482
- msgstr "Vad som kommer att tas bort:"
483
-
484
- #: core/options-pages.php:865
485
- msgid "All plugin options"
486
- msgstr ""
487
-
488
- #: core/options-pages.php:866 core/options-pages.php:1089
489
- msgid "All plugin backups stored in the database"
490
- msgstr ""
491
-
492
- #: core/options-pages.php:870 core/options-pages.php:1093
493
- msgid "What will remain intact:"
494
- msgstr "Vad som kommer att förbli intakt:"
495
-
496
- #: core/options-pages.php:871 core/options-pages.php:1094
497
- msgid "All media items"
498
- msgstr ""
499
-
500
- #: core/options-pages.php:872 core/options-pages.php:1095
501
- msgid "All taxonomies not listed above"
502
- msgstr ""
503
-
504
- #: core/options-pages.php:875 core/options-pages.php:1098
505
- msgid ""
506
- "The plugin cannot delete itself for security reasons. Please delete it "
507
- "manually from the plugin list after the cleanup is complete."
508
- msgstr ""
509
-
510
- #: core/options-pages.php:877 core/options-pages.php:1100
511
- msgid ""
512
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
513
- "backup of your database prior to cleanup!"
514
- msgstr ""
515
-
516
- #: core/options-pages.php:882
517
- msgid "Delete All Data & Deactivate"
518
- msgstr "Ta bort alla data och inaktivera"
519
-
520
- #: core/options-pages.php:945
521
- msgid "Network Settings"
522
- msgstr ""
523
-
524
- #: core/options-pages.php:952 core/options-pages.php:1003
525
- msgid "No settings available. The plugin is not network activated."
526
- msgstr ""
527
-
528
- #: core/options-pages.php:963
529
- msgid "Media Settings per site"
530
- msgstr ""
531
-
532
- #: core/options-pages.php:966
533
- msgid "Enable Media Settings"
534
- msgstr ""
535
-
536
- #: core/options-pages.php:967
537
- msgid "Allow an individual site admin to edit enhanced Media Settings"
538
- msgstr ""
539
-
540
- #: core/options-pages.php:968
541
- msgid ""
542
- "Otherwise, only a network (super) admin can see the menu and edit media "
543
- "settings."
544
- msgstr ""
545
-
546
- #: core/options-pages.php:974
547
- msgid "Plugin Utilities per site"
548
- msgstr ""
549
-
550
- #: core/options-pages.php:977
551
- msgid "Enable plugin Utilities"
552
- msgstr ""
553
-
554
- #: core/options-pages.php:978
555
- msgid ""
556
- "Allow an individual site admin to import / export / restore plugin settings "
557
- "and perform the complete cleanup for a specific site"
558
- msgstr ""
559
-
560
- #: core/options-pages.php:979
561
- msgid ""
562
- "Otherwise, only a network (super) admin can see the menu and perform those "
563
- "actions."
564
- msgstr ""
565
-
566
- #: core/options-pages.php:986 core/options-pages.php:1770
567
- #: core/options-pages.php:1824 core/options-pages.php:1861
568
- #: core/options-pages.php:1905 core/options-pages.php:2113
569
- #: core/options-pages.php:2177 core/options-pages.php:2215
570
- #: core/options-pages.php:2386 enhanced-media-library.php:571
571
- msgid "Save Changes"
572
- msgstr "Spara ändringar"
573
-
574
- #: core/options-pages.php:1012 core/options-pages.php:1015
575
- msgid "Media Library Settings"
576
- msgstr ""
577
-
578
- #: core/options-pages.php:1016 core/options-pages.php:1030
579
- #: core/options-pages.php:1044
580
- msgid "Apply to ALL Network websites"
581
- msgstr ""
582
-
583
- #: core/options-pages.php:1026 core/options-pages.php:1029
584
- msgid "Media Taxonomies Settings"
585
- msgstr ""
586
-
587
- #: core/options-pages.php:1040 core/options-pages.php:1043
588
- msgid "MIME Types Settings"
589
- msgstr ""
590
-
591
- #: core/options-pages.php:1087
592
- msgid "All plugin options on every site"
593
- msgstr ""
594
-
595
- #: core/options-pages.php:1088
596
- msgid "Network settings"
597
- msgstr ""
598
-
599
- #: core/options-pages.php:1105
600
- msgid "Delete All Data & Network Deactivate"
601
- msgstr ""
602
-
603
- #: core/options-pages.php:1225
604
- msgid "Network settings saved."
605
- msgstr ""
606
-
607
- #: core/options-pages.php:1319
608
- msgid "Settings cannot be imported. Please upload a file to import settings."
609
- msgstr ""
610
-
611
- #: core/options-pages.php:1340
612
- msgid ""
613
- "Settings cannot be imported. Please upload a correct JSON file to import "
614
- "settings."
615
- msgstr ""
616
-
617
- #: core/options-pages.php:1356
618
- msgid "Plugin settings imported."
619
- msgstr ""
620
-
621
- #: core/options-pages.php:1409
622
- msgid "Plugin settings restored from the backup."
623
- msgstr ""
624
-
625
- #: core/options-pages.php:1714
626
- msgid "Filters"
627
- msgstr ""
628
-
629
- #: core/options-pages.php:1723 core/options-pages.php:1726
630
- msgid "Force filters"
631
- msgstr "Tvinga filter"
632
-
633
- #: core/options-pages.php:1727
634
- msgid "Show media filters for ANY Media Popup"
635
- msgstr ""
636
-
637
- #: core/options-pages.php:1728
638
- msgid "Try this if filters are not shown for third-party plugins or themes."
639
- msgstr ""
640
-
641
- #: core/options-pages.php:1734 core/options-pages.php:1737
642
- msgid "Filters to show"
643
- msgstr ""
644
-
645
- #: core/options-pages.php:1738
646
- msgid "Types"
647
- msgstr ""
648
-
649
- #: core/options-pages.php:1739
650
- msgid "Can be disabled for Grid Mode only"
651
- msgstr ""
652
-
653
- #: core/options-pages.php:1740
654
- msgid "Dates"
655
- msgstr ""
656
-
657
- #: core/options-pages.php:1741
658
- msgid "Authors"
659
- msgstr ""
660
-
661
- #: core/options-pages.php:1748 core/options-pages.php:1751
662
- msgid "Show count"
663
- msgstr "Visa antal"
664
-
665
- #: core/options-pages.php:1752
666
- msgid "Show item count per category for media filters"
667
- msgstr "Visa antal objekt per kategori för mediefilter"
668
-
669
- #: core/options-pages.php:1753
670
- msgid ""
671
- "Disable this if it slows down your site admin. The problem is resolved in "
672
- "the upcoming major update v3.0"
673
- msgstr ""
674
-
675
- #: core/options-pages.php:1759 core/options-pages.php:1762
676
- msgid "Include children"
677
- msgstr ""
678
-
679
- #: core/options-pages.php:1763
680
- msgid "Show media items of child media categories as a result of filtering"
681
- msgstr ""
682
-
683
- #: core/options-pages.php:1780
684
- msgid "Order"
685
- msgstr ""
686
-
687
- #: core/options-pages.php:1789
688
- msgid "Order media items by"
689
- msgstr ""
690
-
691
- #: core/options-pages.php:1792
692
- msgid "Date"
693
- msgstr "Datum"
694
-
695
- #: core/options-pages.php:1793 core/options-pages.php:1853
696
- msgid "Title"
697
- msgstr "Rubrik"
698
-
699
- #: core/options-pages.php:1794
700
- msgid "Custom Order"
701
- msgstr "Anpassad sortering"
702
-
703
- #: core/options-pages.php:1796 core/options-pages.php:1808
704
- msgid "For media library and media popups"
705
- msgstr ""
706
-
707
- #: core/options-pages.php:1797
708
- msgid ""
709
- "Allows changing media items order by drag and drop with Custom Order value."
710
- msgstr ""
711
-
712
- #: core/options-pages.php:1802
713
- msgid "Sort order"
714
- msgstr ""
715
-
716
- #: core/options-pages.php:1805
717
- msgid "Ascending"
718
- msgstr "Stigande"
719
-
720
- #: core/options-pages.php:1806
721
- msgid "Descending"
722
- msgstr "Fallande"
723
-
724
- #: core/options-pages.php:1813 core/options-pages.php:1816
725
- msgid "Natural sort order"
726
- msgstr ""
727
-
728
- #: core/options-pages.php:1817
729
- msgid "Apply human-friendly sort order to Media Library and Galleries"
730
- msgstr ""
731
-
732
- #: core/options-pages.php:1818
733
- msgid ""
734
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
735
- "3, abc-11, abc-2]"
736
- msgstr ""
737
-
738
- #: core/options-pages.php:1831
739
- msgid "Grid Mode"
740
- msgstr ""
741
-
742
- #: core/options-pages.php:1840 core/options-pages.php:1843
743
- msgid "Show caption"
744
- msgstr ""
745
-
746
- #: core/options-pages.php:1844
747
- msgid "Add text caption for media item thumbnails"
748
- msgstr ""
749
-
750
- #: core/options-pages.php:1850
751
- msgid "Caption type"
752
- msgstr ""
753
-
754
- #: core/options-pages.php:1854
755
- msgid "Filename"
756
- msgstr ""
757
-
758
- #: core/options-pages.php:1855
759
- msgid "Caption"
760
- msgstr ""
761
-
762
- #: core/options-pages.php:1868
763
- msgid "Media Shortcodes"
764
- msgstr ""
765
-
766
- #: core/options-pages.php:1877 core/options-pages.php:1880
767
- msgid "Enhanced media shortcodes"
768
- msgstr ""
769
-
770
- #: core/options-pages.php:1881
771
- msgid ""
772
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
773
- "upload date, and media items number limit"
774
- msgstr ""
775
-
776
- #: core/options-pages.php:1882
777
- msgid "Gallery example:"
778
- msgstr "Galleriexempel:"
779
-
780
- #: core/options-pages.php:1883
781
- msgid "Audio playlist example:"
782
- msgstr "Exempel på ljudspellista:"
783
-
784
- #: core/options-pages.php:1884
785
- msgid "Video playlist example:"
786
- msgstr "Exempel på videospellista:"
787
-
788
- #: core/options-pages.php:1888
789
- msgid "Warning"
790
- msgstr ""
791
-
792
- #: core/options-pages.php:1891
793
- #, php-format
794
- msgid ""
795
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
796
- "\">Learn more</a>."
797
- msgstr ""
798
-
799
- #: core/options-pages.php:1896
800
- #, php-format
801
- msgid ""
802
- "Please check out your gallery front-end and back-end functionality once this "
803
- "option activated. If you find an issue please inform plugin authors at %s or "
804
- "%s."
805
- msgstr ""
806
-
807
- #: core/options-pages.php:1977 core/options-pages.php:2124
808
- msgid "Assign following taxonomies to Media Library:"
809
- msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
810
-
811
- #: core/options-pages.php:1996 core/options-pages.php:2062
812
- #: core/options-pages.php:2146
813
- msgid "Assign Taxonomy"
814
- msgstr "Tilldela Taxonomi"
815
-
816
- #: core/options-pages.php:1997 core/options-pages.php:2147
817
- msgid "Edit Taxonomy"
818
- msgstr "Redigera Taxonomi"
819
-
820
- #: core/options-pages.php:2001 core/options-pages.php:2064
821
- msgid "Delete Taxonomy"
822
- msgstr "Ta Bort Taxonomi"
823
-
824
- #: core/options-pages.php:2006 core/options-pages.php:2069
825
- msgid "Labels"
826
- msgstr "Etiketter"
827
-
828
- #: core/options-pages.php:2008 core/options-pages.php:2071
829
- msgid "Singular"
830
- msgstr "Singular"
831
-
832
- #: core/options-pages.php:2009 core/options-pages.php:2072
833
- msgid "Plural"
834
- msgstr "Plural"
835
-
836
- #: core/options-pages.php:2010 core/options-pages.php:2073
837
- msgid "Menu Name"
838
- msgstr "Menynamn"
839
-
840
- #: core/options-pages.php:2023 core/options-pages.php:2046
841
- #: core/options-pages.php:2086 core/options-pages.php:2150
842
- msgid "Settings"
843
- msgstr "Inställningar"
844
-
845
- #: core/options-pages.php:2025 core/options-pages.php:2088
846
- msgid "Taxonomy Name"
847
- msgstr "Taxonominamn"
848
-
849
- #: core/options-pages.php:2026 core/options-pages.php:2089
850
- msgid "Hierarchical"
851
- msgstr "Hierarkisk"
852
-
853
- #: core/options-pages.php:2027 core/options-pages.php:2090
854
- msgid "Column for List View"
855
- msgstr ""
856
-
857
- #: core/options-pages.php:2028 core/options-pages.php:2048
858
- #: core/options-pages.php:2091 core/options-pages.php:2152
859
- msgid "Filter for List View"
860
- msgstr ""
861
-
862
- #: core/options-pages.php:2029 core/options-pages.php:2049
863
- #: core/options-pages.php:2092 core/options-pages.php:2153
864
- msgid "Filter for Grid View / Media Popup"
865
- msgstr ""
866
-
867
- #: core/options-pages.php:2030 core/options-pages.php:2050
868
- #: core/options-pages.php:2093 core/options-pages.php:2154
869
- msgid "Edit in Media Popup"
870
- msgstr "Redigera i Media-popup"
871
-
872
- #: core/options-pages.php:2031 core/options-pages.php:2094
873
- msgid "Show in Nav Menu"
874
- msgstr "Visa i Nav Menu"
875
-
876
- #: core/options-pages.php:2032 core/options-pages.php:2095
877
- msgid "Remember Terms Order (sort)"
878
- msgstr ""
879
-
880
- #: core/options-pages.php:2033 core/options-pages.php:2096
881
- msgid "Show in REST"
882
- msgstr ""
883
-
884
- #: core/options-pages.php:2034 core/options-pages.php:2097
885
- msgid "Rewrite Slug"
886
- msgstr "Skriv Om Slug"
887
-
888
- #: core/options-pages.php:2035 core/options-pages.php:2098
889
- msgid "Slug with Front"
890
- msgstr "Slug med Framsida"
891
-
892
- #: core/options-pages.php:2110
893
- msgid "Add New Taxonomy"
894
- msgstr "Lägg Till Ny Taxonomi"
895
-
896
- #: core/options-pages.php:2120
897
- msgid "Non-Media Taxonomies"
898
- msgstr "Icke-Media-taxonomier"
899
-
900
- #: core/options-pages.php:2183
901
- msgid "Options"
902
- msgstr "Alternativ"
903
-
904
- #: core/options-pages.php:2193 core/options-pages.php:2196
905
- msgid "Taxonomy archive pages"
906
- msgstr "Arkivsidor för Taxonomier"
907
-
908
- #: core/options-pages.php:2197
909
- msgid "Turn on media taxonomy archive pages on the front-end"
910
- msgstr "Slå på arkivsidor för mediataxonomier i frontend"
911
-
912
- #: core/options-pages.php:2198
913
- msgid ""
914
- "Re-save your permalink settings after this option change to make it work."
915
- msgstr ""
916
- "Återspara inställningarna för permalänkar efter en ändring av detta "
917
- "alternativ för att få det att fungera."
918
-
919
- #: core/options-pages.php:2204 core/options-pages.php:2207
920
- msgid "Assign all like hierarchical"
921
- msgstr "Tilldela alla som hierarkiska"
922
-
923
- #: core/options-pages.php:2208
924
- msgid ""
925
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
926
- msgstr ""
927
- "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
928
-
929
- #: core/options-pages.php:2271
930
- msgid "Add New MIME Type"
931
- msgstr "Lägg Till Ny MIME-typ"
932
-
933
- #: core/options-pages.php:2291 core/options-pages.php:2345
934
- msgid "Extension"
935
- msgstr "Utökning"
936
-
937
- #: core/options-pages.php:2292 core/options-pages.php:2346
938
- msgid "MIME Type"
939
- msgstr "MIME-typ"
940
-
941
- #: core/options-pages.php:2293 core/options-pages.php:2347
942
- msgid "Singular Label"
943
- msgstr "Singular-etikett"
944
-
945
- #: core/options-pages.php:2294 core/options-pages.php:2348
946
- msgid "Plural Label"
947
- msgstr "Plural-etikett"
948
-
949
- #: core/options-pages.php:2295 core/options-pages.php:2324
950
- #: core/options-pages.php:2337 core/options-pages.php:2349
951
- msgid "Add Filter"
952
- msgstr "Lägg Till Filter"
953
-
954
- #: core/options-pages.php:2296 core/options-pages.php:2325
955
- #: core/options-pages.php:2338 core/options-pages.php:2350
956
- msgid "Allow Upload"
957
- msgstr "Tillåt Uppladdning"
958
-
959
- #: core/options-pages.php:2326 core/options-pages.php:2339
960
- msgid "Delete MIME Type"
961
- msgstr "Ta Bort MIME-typ"
962
-
963
- #: core/options-pages.php:2415
964
- msgid "Changelog"
965
- msgstr "Ändringslogg"
966
-
967
- #: core/options-pages.php:2416
968
- msgid "What's new in"
969
- msgstr "Vad är nytt i"
970
-
971
- #: core/options-pages.php:2416
972
- msgid "version"
973
- msgstr "version"
974
-
975
- #: core/options-pages.php:2419
976
- msgid "More features under the hood"
977
- msgstr "Flera funktioner under huven"
978
-
979
- #: core/options-pages.php:2421
980
- msgid "Support"
981
- msgstr "Support"
982
-
983
- #: core/options-pages.php:2422
984
- msgid "Feel free to ask for help on"
985
- msgstr ""
986
-
987
- #: core/options-pages.php:2422
988
- msgid "Support is free for both versions of the plugin."
989
- msgstr ""
990
-
991
- #: core/options-pages.php:2424
992
- msgid "Plugin rating"
993
- msgstr ""
994
-
995
- #: core/options-pages.php:2425
996
- msgid "Please"
997
- msgstr ""
998
-
999
- #: core/options-pages.php:2425
1000
- msgid "vote for the plugin"
1001
- msgstr "rösta på tillägget"
1002
-
1003
- #: core/options-pages.php:2425
1004
- msgid "Thanks!"
1005
- msgstr "Tack!"
1006
-
1007
- #: core/options-pages.php:2427
1008
- msgid "Other plugins you may find useful"
1009
- msgstr ""
1010
-
1011
- #: core/options-pages.php:2469
1012
- msgid "Utility"
1013
- msgstr ""
1014
-
1015
- #: core/options-pages.php:2494
1016
- msgid "Rate us:"
1017
- msgstr ""
1018
-
1019
- #: core/options-pages.php:2494
1020
- msgid "Poor"
1021
- msgstr ""
1022
-
1023
- #: core/options-pages.php:2494
1024
- msgid "Works"
1025
- msgstr ""
1026
-
1027
- #: core/options-pages.php:2494
1028
- msgid "Good"
1029
- msgstr ""
1030
-
1031
- #: core/options-pages.php:2494
1032
- msgid "Great"
1033
- msgstr ""
1034
-
1035
- #: core/options-pages.php:2494
1036
- msgid "Fantastic!"
1037
- msgstr ""
1038
-
1039
- #: core/taxonomies.php:101
1040
- msgid "Media Taxonomies settings saved."
1041
- msgstr ""
1042
-
1043
- #: core/taxonomies.php:174
1044
- msgid "Media Library settings saved."
1045
- msgstr ""
1046
-
1047
- #: core/taxonomies.php:353
1048
- msgid "Filter by author"
1049
- msgstr ""
1050
-
1051
- #: core/taxonomies.php:357
1052
- msgid "All Authors"
1053
- msgstr ""
1054
-
1055
- #: core/taxonomies.php:374 core/taxonomies.php:380
1056
- #: enhanced-media-library.php:561
1057
- msgid "Filter by"
1058
- msgstr "Filtrera efter "
1059
-
1060
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1061
- msgid "Not in a"
1062
- msgstr "Inte i en"
1063
-
1064
- #: core/taxonomies.php:721
1065
- msgid "Add some"
1066
- msgstr ""
1067
-
1068
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1069
- msgid "All Uncategorized"
1070
- msgstr "Alla Okategoriserade"
1071
-
1072
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1073
- msgid "Reset All Filters"
1074
- msgstr "Återställ alla filter"
1075
-
1076
- #: enhanced-media-library.php:391
1077
- msgid "More Details"
1078
- msgstr ""
1079
-
1080
- #: enhanced-media-library.php:392
1081
- msgid "Less Details"
1082
- msgstr ""
1083
-
1084
- #: enhanced-media-library.php:565
1085
- msgid "author"
1086
- msgstr ""
1087
-
1088
- #: enhanced-media-library.php:566
1089
- msgid "authors"
1090
- msgstr ""
1091
-
1092
- #: enhanced-media-library.php:569
1093
- msgid "Saved."
1094
- msgstr ""
1095
-
1096
- #: enhanced-media-library.php:570
1097
- msgid "Something went wrong."
1098
- msgstr "Någonting gick fel."
1099
-
1100
- #: enhanced-media-library.php:573
1101
- msgid "Select All"
1102
- msgstr "Välj Alla"
1103
-
1104
- #: enhanced-media-library.php:574
1105
- msgid "Deselect "
1106
- msgstr ""
1107
-
1108
- #: enhanced-media-library.php:603
1109
- msgid "Uploaded to post #"
1110
- msgstr ""
1111
-
1112
- #: enhanced-media-library.php:604
1113
- msgid "Based On"
1114
- msgstr ""
1115
-
1116
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1117
- msgid "Media Categories"
1118
- msgstr ""
1119
-
1120
- #: enhanced-media-library.php:674
1121
- msgid "Media Category"
1122
- msgstr ""
1123
-
1124
- #: enhanced-media-library.php:676
1125
- msgid "All Media Categories"
1126
- msgstr ""
1127
-
1128
- #: enhanced-media-library.php:677
1129
- msgid "Edit Media Category"
1130
- msgstr ""
1131
-
1132
- #: enhanced-media-library.php:678
1133
- msgid "View Media Category"
1134
- msgstr ""
1135
-
1136
- #: enhanced-media-library.php:679
1137
- msgid "Update Media Category"
1138
- msgstr ""
1139
-
1140
- #: enhanced-media-library.php:680
1141
- msgid "Add New Media Category"
1142
- msgstr "Lägg till ny mediakategori"
1143
-
1144
- #: enhanced-media-library.php:681
1145
- msgid "New Media Category Name"
1146
- msgstr "Nytt mediakategorinamn"
1147
-
1148
- #: enhanced-media-library.php:682
1149
- msgid "Parent Media Category"
1150
- msgstr "Överordnad mediakategori"
1151
-
1152
- #: enhanced-media-library.php:683
1153
- msgid "Parent Media Category:"
1154
- msgstr "Överordnad mediakategori:"
1155
-
1156
- #: enhanced-media-library.php:684
1157
- msgid "Search Media Categories"
1158
- msgstr "Sök mediakategorier"
1159
-
1160
- #. Plugin URI of the plugin/theme
1161
- #. Author URI of the plugin/theme
1162
- msgid "http://wpUXsolutions.com"
1163
- msgstr "http://wpUXsolutions.com"
1164
-
1165
- #. Description of the plugin/theme
1166
- msgid ""
1167
- "This plugin will be handy for those who need to manage a lot of media files."
1168
- msgstr ""
1169
- "Detta är ett praktiskt tillägg för de som behöver hantera många mediafiler."
1170
-
1171
- #. Author of the plugin/theme
1172
- msgid "wpUXsolutions"
1173
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library-uk.mo DELETED
Binary file
languages/enhanced-media-library-uk.po DELETED
@@ -1,1240 +0,0 @@
1
- # Translation of Enhanced Media Library (Free & PRO) in Ukrainian
2
- # This file is distributed under the same license as the Enhanced Media Library (Free & PRO) package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
- "POT-Creation-Date: 2020-10-11 22:46+0300\n"
7
- "PO-Revision-Date: 2020-10-11 22:48+0300\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "Language: uk_UA\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=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
- "X-Generator: Poedit 2.4.1\n"
17
-
18
- #: core/media-templates.php:21
19
- msgid "Remove"
20
- msgstr "Видалити"
21
-
22
- #: core/media-templates.php:23
23
- msgid "Deselect"
24
- msgstr "Зняти виділення"
25
-
26
- #: core/media-templates.php:79
27
- msgid "Caption this image&hellip;"
28
- msgstr "Підпис для цього фото&hellip;"
29
-
30
- #: core/media-templates.php:83
31
- msgid "Describe this video&hellip;"
32
- msgstr "Опишіть це відео&hellip;"
33
-
34
- #: core/media-templates.php:85
35
- msgid "Describe this audio file&hellip;"
36
- msgstr "Опишіть це аудіо&hellip;"
37
-
38
- #: core/media-templates.php:87
39
- msgid "Describe this media file&hellip;"
40
- msgstr "Опишіть цей медіа-файл&hellip;"
41
-
42
- #: core/mime-types.php:30
43
- msgid "MIME Types settings restored."
44
- msgstr "Налаштування MIME-типів відновлено."
45
-
46
- #: core/mime-types.php:39
47
- msgid "MIME Types settings saved."
48
- msgstr "Налаштування MIME-типів збережено."
49
-
50
- #: core/mime-types.php:117
51
- #, php-format
52
- msgid " <span class=\"count\">(%s)</span>"
53
- msgid_plural " <span class=\"count\">(%s)</span>"
54
- msgstr[0] " <span class=\"count\">(%s)</span>"
55
- msgstr[1] " <span class=\"count\">(%s)</span>"
56
- msgstr[2] " <span class=\"count\">(%s)</span>"
57
-
58
- #: core/options-pages.php:97 core/options-pages.php:106
59
- #: core/options-pages.php:115 core/options-pages.php:124
60
- #: core/options-pages.php:321 core/options-pages.php:399
61
- #: core/options-pages.php:1694 core/options-pages.php:1952
62
- #: core/options-pages.php:2265 core/options-pages.php:2465
63
- msgid "Media Settings"
64
- msgstr "Налаштування медіа"
65
-
66
- #: core/options-pages.php:106 core/options-pages.php:107
67
- #: core/options-pages.php:363 core/options-pages.php:1019
68
- msgid "Media Library"
69
- msgstr "Медіа-бібліотека"
70
-
71
- #: core/options-pages.php:115 core/options-pages.php:116
72
- #: core/options-pages.php:364 core/options-pages.php:1033
73
- #: core/options-pages.php:1742 core/options-pages.php:1973
74
- msgid "Media Taxonomies"
75
- msgstr "Медіа-таксономії"
76
-
77
- #: core/options-pages.php:124 core/options-pages.php:125
78
- #: core/options-pages.php:365 core/options-pages.php:1047
79
- msgid "MIME Types"
80
- msgstr "MIME-типи"
81
-
82
- #. Plugin Name of the plugin/theme
83
- #: core/options-pages.php:166 core/options-pages.php:167
84
- #: core/options-pages.php:194 core/options-pages.php:195
85
- msgid "Enhanced Media Library"
86
- msgstr "Enhanced Media Library"
87
-
88
- #: core/options-pages.php:362
89
- msgid "General"
90
- msgstr "Загальні"
91
-
92
- #: core/options-pages.php:388 core/options-pages.php:395
93
- #: core/options-pages.php:732 core/options-pages.php:740
94
- #: core/options-pages.php:925 core/options-pages.php:1682
95
- #: core/options-pages.php:1689 core/options-pages.php:1940
96
- #: core/options-pages.php:1947 core/options-pages.php:2252
97
- #: core/options-pages.php:2259
98
- msgid "You do not have sufficient permissions to access this page."
99
- msgstr "У вас недостатньо прав для доступу до цієї сторінки."
100
-
101
- #: core/options-pages.php:410
102
- msgid "Image sizes"
103
- msgstr "Розміри зображень"
104
-
105
- #: core/options-pages.php:411
106
- msgid ""
107
- "The sizes listed below determine the maximum dimensions in pixels to use "
108
- "when adding an image to the Media Library."
109
- msgstr ""
110
- "Розміри, перераховані нижче, визначають найбільші розміри в пікселях при "
111
- "додаванні зображення до медіа-бібліотеки."
112
-
113
- #: core/options-pages.php:415
114
- msgid "Thumbnail size"
115
- msgstr "Розмір мініатюри"
116
-
117
- #: core/options-pages.php:417
118
- msgid "Width"
119
- msgstr "Ширина"
120
-
121
- #: core/options-pages.php:419
122
- msgid "Height"
123
- msgstr "Висота"
124
-
125
- #: core/options-pages.php:422
126
- msgid ""
127
- "Crop thumbnail to exact dimensions (normally thumbnails are proportional)"
128
- msgstr ""
129
- "Обрізати мініатюри до вказаних розмірів (зазвичай мініатюри пропорційні)"
130
-
131
- #: core/options-pages.php:427 core/options-pages.php:428
132
- msgid "Medium size"
133
- msgstr "Середній розмір"
134
-
135
- #: core/options-pages.php:429 core/options-pages.php:440
136
- msgid "Max Width"
137
- msgstr "Макс. ширина"
138
-
139
- #: core/options-pages.php:432 core/options-pages.php:443
140
- msgid "Max Height"
141
- msgstr "Макс. висота"
142
-
143
- #: core/options-pages.php:438 core/options-pages.php:439
144
- msgid "Large size"
145
- msgstr "Великий розмір"
146
-
147
- #: core/options-pages.php:456
148
- msgid "Embeds"
149
- msgstr "Вставки"
150
-
151
- #: core/options-pages.php:463
152
- msgid "Uploading Files"
153
- msgstr "Завантаження файлів"
154
-
155
- #: core/options-pages.php:470
156
- msgid "Store uploads in this folder"
157
- msgstr "Зберігати завантаження у цю папку"
158
-
159
- #: core/options-pages.php:474
160
- #, php-format
161
- msgid "Default is %s"
162
- msgstr "За замовчуванням %s"
163
-
164
- #: core/options-pages.php:480
165
- msgid "Full URL path to files"
166
- msgstr "Повний URL-шлях до файлів"
167
-
168
- #: core/options-pages.php:482
169
- msgid "Configuring this is optional. By default, it should be blank."
170
- msgstr "Налаштування не є обов'язковим. За замовчуванням має бути пустим."
171
-
172
- #: core/options-pages.php:490
173
- msgid "Organize my uploads into month- and year-based folders"
174
- msgstr "Впорядкувати мої завантаження в теки відповідно до місяця і року"
175
-
176
- #: core/options-pages.php:560 core/options-pages.php:1997
177
- #: core/options-pages.php:2012 core/options-pages.php:2075
178
- #: core/options-pages.php:2147
179
- msgid "Edit"
180
- msgstr "Редагувати"
181
-
182
- #: core/options-pages.php:561
183
- msgid "Close"
184
- msgstr "Закрити"
185
-
186
- #: core/options-pages.php:562 core/options-pages.php:2013
187
- #: core/options-pages.php:2076
188
- msgid "View"
189
- msgstr "Перегляд"
190
-
191
- #: core/options-pages.php:563 core/options-pages.php:2014
192
- #: core/options-pages.php:2077
193
- msgid "Update"
194
- msgstr "Оновити"
195
-
196
- #: core/options-pages.php:564 core/options-pages.php:2015
197
- #: core/options-pages.php:2078
198
- msgid "Add New"
199
- msgstr "Додати"
200
-
201
- #: core/options-pages.php:565 core/options-pages.php:2016
202
- #: core/options-pages.php:2079
203
- msgid "New"
204
- msgstr "Новий"
205
-
206
- #: core/options-pages.php:566
207
- msgid "Name"
208
- msgstr "Назва"
209
-
210
- #: core/options-pages.php:567 core/options-pages.php:2017
211
- #: core/options-pages.php:2080
212
- msgid "Parent"
213
- msgstr "Батьківський"
214
-
215
- #: core/options-pages.php:568 core/options-pages.php:862
216
- #: core/options-pages.php:1084 core/options-pages.php:2011
217
- #: core/options-pages.php:2074 core/taxonomies.php:381
218
- #: enhanced-media-library.php:562
219
- msgid "All"
220
- msgstr "Всі"
221
-
222
- #: core/options-pages.php:569 core/options-pages.php:2018
223
- #: core/options-pages.php:2081
224
- msgid "Search"
225
- msgstr "Шукати"
226
-
227
- #: core/options-pages.php:571 core/options-pages.php:2062
228
- msgid "New Taxonomy"
229
- msgstr "Нова таксономія"
230
-
231
- #: core/options-pages.php:573
232
- msgid "Remove Taxonomy"
233
- msgstr "Видалити таксономію"
234
-
235
- #: core/options-pages.php:574
236
- msgid "Taxonomy will be removed."
237
- msgstr "Таксономію буде видалено."
238
-
239
- #: core/options-pages.php:575
240
- msgid ""
241
- "Taxonomy terms (categories) will remain intact in the database. If you "
242
- "create a taxonomy with the same name in the future, its terms (categories) "
243
- "will be available again."
244
- msgstr ""
245
- "Всі елементи таксономії (категорії) залишаться без змін у базі даних. Якщо у "
246
- "майбутньому ви створите таксономію з такою самою назвою, її елементи "
247
- "(категорії) будуть доступні знову."
248
-
249
- #: core/options-pages.php:576
250
- msgid "Media items will remain intact."
251
- msgstr "Медіа-файли залишаться без змін."
252
-
253
- #: core/options-pages.php:577
254
- msgid "Are you still sure?"
255
- msgstr "Ви досі впевнені?"
256
-
257
- #: core/options-pages.php:578
258
- msgid "Yes, remove taxonomy"
259
- msgstr "Так, видалити таксономію"
260
-
261
- #: core/options-pages.php:580
262
- msgid "Duplicate"
263
- msgstr "Дублікат"
264
-
265
- #: core/options-pages.php:581
266
- msgid "Taxonomy with the same name already exists. Please chose other one."
267
- msgstr "Таксономія з такою назвою вже існує. Будь ласка, виберіть іншу."
268
-
269
- #: core/options-pages.php:583
270
- msgid "Empty Fields"
271
- msgstr "Порожні поля"
272
-
273
- #: core/options-pages.php:584
274
- msgid "Wrong Taxonomy Name"
275
- msgstr "Невірна назва таксономії"
276
-
277
- #: core/options-pages.php:585
278
- msgid "Wrong Slug"
279
- msgstr "Невірний слаґ"
280
-
281
- #: core/options-pages.php:587
282
- msgid "Please choose Singular and Plural names for all new taxomonies."
283
- msgstr ""
284
- "Будь ласка, оберіть назву в однині та множині для всіх нових таксономій."
285
-
286
- #: core/options-pages.php:588
287
- msgid "Please choose Singular name for all new taxomonies."
288
- msgstr "Будь ласка, оберіть назву в однині для всіх нових таксономій."
289
-
290
- #: core/options-pages.php:589
291
- msgid "Please choose Plural name for all new taxomonies."
292
- msgstr "Будь ласка, оберіть назву в множині для всіх нових таксономій."
293
-
294
- #: core/options-pages.php:591
295
- msgid ""
296
- "Taxonomy Name cannot be empty. If it was not generated from the Singular "
297
- "name please enter it manually."
298
- msgstr ""
299
- "Назва таксономії не може бути відсутньою. Якщо вона не була згенерована з "
300
- "ярлика, будь ласка, введіть її вручну."
301
-
302
- #: core/options-pages.php:592
303
- msgid ""
304
- "Taxonomy Name should only contain lowercase Latin letters, the underscore "
305
- "character ( _ ), and be 3-32 characters long."
306
- msgstr ""
307
- "Назва таксономії повина містити лише латинські літери нижнього регістру, "
308
- "символ підкреслення (_), та бути довжиною 3-32 символи."
309
-
310
- #: core/options-pages.php:593
311
- msgid ""
312
- "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
313
- "or hyphen ( - ) characters."
314
- msgstr ""
315
- "Слаґ повинен містити лише латинські літери нижнього регістру, цифри, символ "
316
- "підкреслення (_) або дефіс (-)."
317
-
318
- #: core/options-pages.php:595 core/options-pages.php:644
319
- msgid "Ok"
320
- msgstr "Ok"
321
-
322
- #: core/options-pages.php:596 core/options-pages.php:601
323
- #: core/options-pages.php:645 core/options-pages.php:690
324
- msgid "Cancel"
325
- msgstr "Скасувати"
326
-
327
- #: core/options-pages.php:598
328
- msgid "Synchronize Now"
329
- msgstr "Синхронізувати зараз"
330
-
331
- #: core/options-pages.php:599 core/options-pages.php:687
332
- msgid "This operation cannot be canceled! Are you still sure?"
333
- msgstr "Ця операція не може бути скасована. Ви досі впевнені?"
334
-
335
- #: core/options-pages.php:600
336
- msgid "Synchronize"
337
- msgstr "Синхронізувати"
338
-
339
- #: core/options-pages.php:602
340
- msgid "Synchronizing..."
341
- msgstr "Синхронізація..."
342
-
343
- #: core/options-pages.php:639 core/options-pages.php:2388
344
- msgid "Restore WordPress default MIME Types"
345
- msgstr "Відновити стандартні MIME-типи WordPress-у"
346
-
347
- #: core/options-pages.php:640
348
- msgid "Warning! All your custom MIME Types will be deleted by this operation."
349
- msgstr ""
350
- "Увага! Всі ваші власні MIME-типи будуть видалені в результаті цієї операції."
351
-
352
- #: core/options-pages.php:641
353
- msgid "Restore Defaults"
354
- msgstr "Відновити стандартні"
355
-
356
- #: core/options-pages.php:642
357
- msgid "Restoring..."
358
- msgstr "Відновлення..."
359
-
360
- #: core/options-pages.php:647
361
- msgid "MIME Types cannot be saved"
362
- msgstr "MIME-типи не можуть бути збережені"
363
-
364
- #: core/options-pages.php:648
365
- msgid "Please fill into all fields."
366
- msgstr "Будь ласка, заповніть всі поля."
367
-
368
- #: core/options-pages.php:649
369
- msgid "Duplicate extensions or MIME types. Please choose other one."
370
- msgstr "Такий MIME-тип вже існує. Будь ласка, оберіть інший."
371
-
372
- #: core/options-pages.php:685 core/options-pages.php:853
373
- #: core/options-pages.php:1063
374
- msgid "Complete Cleanup"
375
- msgstr "Повне очищення"
376
-
377
- #: core/options-pages.php:686
378
- msgid ""
379
- "You are about to <strong style=\"text-transform:uppercase\">delete all "
380
- "plugin data</strong> from the database including backups."
381
- msgstr ""
382
- "Ви збираєтеся <strong style=\"text-transform:uppercase\">видалити всі дані "
383
- "плагіна</strong> з бази даних, у тому числі резервні копії."
384
-
385
- #: core/options-pages.php:688
386
- msgid "Yes, delete all data"
387
- msgstr "Так, видалити усі дані"
388
-
389
- #: core/options-pages.php:689
390
- msgid "Cleaning..."
391
- msgstr "Очищення..."
392
-
393
- #: core/options-pages.php:693 core/options-pages.php:996
394
- msgid "Unify Media Settings over Network"
395
- msgstr "Поширити медіа-налаштування на всю мережу"
396
-
397
- #: core/options-pages.php:696 core/options-pages.php:700
398
- #: core/options-pages.php:704
399
- msgid "will be overwritten"
400
- msgstr "буде перезаписано"
401
-
402
- #: core/options-pages.php:706
403
- msgid "Apply"
404
- msgstr "Застосувати"
405
-
406
- #: core/options-pages.php:707
407
- msgid "Applying Settings..."
408
- msgstr "Налаштування застосовуються..."
409
-
410
- #: core/options-pages.php:746 core/options-pages.php:935
411
- msgid "Enhanced Media Library Utilities"
412
- msgstr "Утиліти Enhanced Media Library"
413
-
414
- #: core/options-pages.php:756
415
- msgid "Export"
416
- msgstr "Експорт"
417
-
418
- #: core/options-pages.php:761
419
- msgid "Plugin settings to export:"
420
- msgstr "Налаштування плагіна, що експортуються:"
421
-
422
- #: core/options-pages.php:762 core/options-pages.php:789
423
- #: core/options-pages.php:829
424
- msgid "Settings > Media Library"
425
- msgstr "Налаштування > Медіа-бібліотека"
426
-
427
- #: core/options-pages.php:763 core/options-pages.php:790
428
- #: core/options-pages.php:830
429
- msgid "Settings > Media Taxonomies"
430
- msgstr "Налаштування > Медіа-таксономії"
431
-
432
- #: core/options-pages.php:764 core/options-pages.php:791
433
- #: core/options-pages.php:831
434
- msgid "Settings > MIME Types"
435
- msgstr "Налаштування > MIME-типи"
436
-
437
- #: core/options-pages.php:768
438
- msgid ""
439
- "Use generated JSON file to import the configuration into another website."
440
- msgstr ""
441
- "Використовуйте згенерований JSON-файл, щоб імпортувати конфігурацію плагіна "
442
- "до іншого сайту."
443
-
444
- #: core/options-pages.php:773
445
- msgid "Export Plugin Settings"
446
- msgstr "Експорт налаштувань плагіна"
447
-
448
- #: core/options-pages.php:783
449
- msgid "Import"
450
- msgstr "Імпорт"
451
-
452
- #: core/options-pages.php:788
453
- msgid "Plugin settings to import:"
454
- msgstr "Налаштування плагіна, що імпортуються:"
455
-
456
- #: core/options-pages.php:794
457
- msgid ""
458
- "Plugin settings will be imported from a configuration JSON file which can be "
459
- "obtained by exporting the settings on another website using the export "
460
- "button above."
461
- msgstr ""
462
- "Налаштування плагіна буде імпортовано з JSON-файлу конфігурації, який може "
463
- "бути отриманий шляхом експорту налаштувань на іншому веб-сайті за допомогою "
464
- "кнопки \"Експорт\" вище."
465
-
466
- #: core/options-pages.php:795
467
- msgid ""
468
- "All plugin settings will be overridden by the import. You will have a chance "
469
- "to restore current data from an automatic backup in case you are not "
470
- "satisfied with the result of the import."
471
- msgstr ""
472
- "Всі налаштування плагіна будуть заміщені шляхом імпорту. У вас є можливість "
473
- "відновити поточні дані з автоматичної резервної копії у випадку, якщо ви не "
474
- "задоволені результатом імпорту."
475
-
476
- #: core/options-pages.php:801
477
- msgid "Import Plugin Settings"
478
- msgstr "Імпорт налаштувань плагіна"
479
-
480
- #: core/options-pages.php:813
481
- msgid "Restore"
482
- msgstr "Відновити"
483
-
484
- #: core/options-pages.php:819
485
- msgid "No backup available at the moment."
486
- msgstr "На даний момент резервних копій немає."
487
-
488
- #: core/options-pages.php:821
489
- msgid "Backup will be created automatically before any import operation."
490
- msgstr ""
491
- "Резервну копію буде створено автоматично перед будь-якою операцією імпорту."
492
-
493
- #: core/options-pages.php:825
494
- msgid ""
495
- "The backup has been automatically created before the latest import operation."
496
- msgstr ""
497
- "Резервну копію було автоматично створено перед останньою операцією імпорту."
498
-
499
- #: core/options-pages.php:828
500
- msgid "Plugin settings to restore:"
501
- msgstr "Налаштування плагіна, що будуть відновлені:"
502
-
503
- #: core/options-pages.php:837
504
- msgid "Restore Settings from the Backup"
505
- msgstr "Відновити налаштування з резервної копії"
506
-
507
- #: core/options-pages.php:860 core/options-pages.php:1082
508
- msgid "What will be deleted:"
509
- msgstr "Що буде видалено:"
510
-
511
- #: core/options-pages.php:865
512
- msgid "All plugin options"
513
- msgstr "Всі налаштування плагіна"
514
-
515
- #: core/options-pages.php:866 core/options-pages.php:1089
516
- msgid "All plugin backups stored in the database"
517
- msgstr "Всі резервні копії плагіна збережені у базі даних"
518
-
519
- #: core/options-pages.php:870 core/options-pages.php:1093
520
- msgid "What will remain intact:"
521
- msgstr "Що лишиться, як є:"
522
-
523
- #: core/options-pages.php:871 core/options-pages.php:1094
524
- msgid "All media items"
525
- msgstr "Всі медіа-файли"
526
-
527
- #: core/options-pages.php:872 core/options-pages.php:1095
528
- msgid "All taxonomies not listed above"
529
- msgstr "Всі таксономії не перераховані вище"
530
-
531
- #: core/options-pages.php:875 core/options-pages.php:1098
532
- msgid ""
533
- "The plugin cannot delete itself for security reasons. Please delete it "
534
- "manually from the plugin list after the cleanup is complete."
535
- msgstr ""
536
- "Плагін не може видалити сам себе з міркувань безпеки. Будь ласка, видаліть "
537
- "його самостійно зі списку плагінів після очищення."
538
-
539
- #: core/options-pages.php:877 core/options-pages.php:1100
540
- msgid ""
541
- "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
542
- "backup of your database prior to cleanup!"
543
- msgstr ""
544
- "Якщо ви не впевнені щодо цієї операції, НАСТІЙНО РЕКОМЕНДУЄМО створити "
545
- "резервну копію бази даних перед очищенням!"
546
-
547
- #: core/options-pages.php:882
548
- msgid "Delete All Data & Deactivate"
549
- msgstr "Видалити всі дані та деактивувати"
550
-
551
- #: core/options-pages.php:945
552
- msgid "Network Settings"
553
- msgstr "Налаштування мережі"
554
-
555
- #: core/options-pages.php:952 core/options-pages.php:1003
556
- msgid "No settings available. The plugin is not network activated."
557
- msgstr "Немає доступних налаштувань. Плагін не активований у мережі."
558
-
559
- #: core/options-pages.php:963
560
- msgid "Media Settings per site"
561
- msgstr "Налаштування медіа для кожного сайту"
562
-
563
- #: core/options-pages.php:966
564
- msgid "Enable Media Settings"
565
- msgstr "Увімкнути налаштування медіа"
566
-
567
- #: core/options-pages.php:967
568
- msgid "Allow an individual site admin to edit enhanced Media Settings"
569
- msgstr ""
570
- "Дозволити адміністраторам окремих сайтів редагувати розширені налаштування "
571
- "медіа"
572
-
573
- #: core/options-pages.php:968
574
- msgid ""
575
- "Otherwise, only a network (super) admin can see the menu and edit media "
576
- "settings."
577
- msgstr ""
578
- "Інакше тільки адміністратор мережі (супер-адмін) зможе бачити меню та "
579
- "редагувати налаштування медіа."
580
-
581
- #: core/options-pages.php:974
582
- msgid "Plugin Utilities per site"
583
- msgstr "Утиліти плагіна для кожного сайту окремо"
584
-
585
- #: core/options-pages.php:977
586
- msgid "Enable plugin Utilities"
587
- msgstr "Увімкнути утиліти плагіна"
588
-
589
- #: core/options-pages.php:978
590
- msgid ""
591
- "Allow an individual site admin to import / export / restore plugin settings "
592
- "and perform the complete cleanup for a specific site"
593
- msgstr ""
594
- "Дозволити адміністраторам окремих сайтів імпортувати / експортувати / "
595
- "відновлювати налаштування плагіна та виконувати повне очищення налаштувань "
596
- "конкретного сайту"
597
-
598
- #: core/options-pages.php:979
599
- msgid ""
600
- "Otherwise, only a network (super) admin can see the menu and perform those "
601
- "actions."
602
- msgstr ""
603
- "Інакше тільки адміністратор мережі (супер-адмін) зможе бачити меню та "
604
- "виконувати ці дії."
605
-
606
- #: core/options-pages.php:986 core/options-pages.php:1770
607
- #: core/options-pages.php:1824 core/options-pages.php:1861
608
- #: core/options-pages.php:1905 core/options-pages.php:2113
609
- #: core/options-pages.php:2177 core/options-pages.php:2215
610
- #: core/options-pages.php:2386 enhanced-media-library.php:571
611
- msgid "Save Changes"
612
- msgstr "Зберегти зміни"
613
-
614
- #: core/options-pages.php:1012 core/options-pages.php:1015
615
- msgid "Media Library Settings"
616
- msgstr "Налаштування медіа-бібліотеки"
617
-
618
- #: core/options-pages.php:1016 core/options-pages.php:1030
619
- #: core/options-pages.php:1044
620
- msgid "Apply to ALL Network websites"
621
- msgstr "Застосувати до всіх сайтів мережі"
622
-
623
- #: core/options-pages.php:1026 core/options-pages.php:1029
624
- msgid "Media Taxonomies Settings"
625
- msgstr "Налаштування медіа-таксономій"
626
-
627
- #: core/options-pages.php:1040 core/options-pages.php:1043
628
- msgid "MIME Types Settings"
629
- msgstr "Налаштування MIME-типів"
630
-
631
- #: core/options-pages.php:1087
632
- msgid "All plugin options on every site"
633
- msgstr "Всі налаштування плагіна на кожному сайті"
634
-
635
- #: core/options-pages.php:1088
636
- msgid "Network settings"
637
- msgstr "Налаштування мережі"
638
-
639
- #: core/options-pages.php:1105
640
- msgid "Delete All Data & Network Deactivate"
641
- msgstr "Видалити всі дані та деактивувати у мережі"
642
-
643
- #: core/options-pages.php:1225
644
- msgid "Network settings saved."
645
- msgstr "Налаштування мережі збережено."
646
-
647
- #: core/options-pages.php:1319
648
- msgid "Settings cannot be imported. Please upload a file to import settings."
649
- msgstr ""
650
- "Налаштування не можуть бути імпортовані. Будь ласка, загрузіть файл для "
651
- "імпорту налаштувань."
652
-
653
- #: core/options-pages.php:1340
654
- msgid ""
655
- "Settings cannot be imported. Please upload a correct JSON file to import "
656
- "settings."
657
- msgstr ""
658
- "Налаштування не можуть бути імпортовані. Будь ласка, загрузіть коректний "
659
- "JSON-файл для імпорту налаштувань."
660
-
661
- #: core/options-pages.php:1356
662
- msgid "Plugin settings imported."
663
- msgstr "Налаштування плагіна імпортовано."
664
-
665
- #: core/options-pages.php:1409
666
- msgid "Plugin settings restored from the backup."
667
- msgstr "Налаштування плагіна відновлено з резервної копії."
668
-
669
- #: core/options-pages.php:1714
670
- msgid "Filters"
671
- msgstr "Фільтри"
672
-
673
- #: core/options-pages.php:1723 core/options-pages.php:1726
674
- msgid "Force filters"
675
- msgstr "Фільтри примусово"
676
-
677
- #: core/options-pages.php:1727
678
- msgid "Show media filters for ANY Media Popup"
679
- msgstr "Показувати медіа-фільтри у будь-якому спливаючому вікні"
680
-
681
- #: core/options-pages.php:1728
682
- msgid "Try this if filters are not shown for third-party plugins or themes."
683
- msgstr ""
684
- "Спробуйте це, якщо фільтри не відображаються для стороннього плагіну або "
685
- "теми."
686
-
687
- #: core/options-pages.php:1734 core/options-pages.php:1737
688
- msgid "Filters to show"
689
- msgstr "Фільтри для показу"
690
-
691
- #: core/options-pages.php:1738
692
- msgid "Types"
693
- msgstr "Типи"
694
-
695
- #: core/options-pages.php:1739
696
- msgid "Can be disabled for Grid Mode only"
697
- msgstr "Може бути вимкнено тільки для режиму \"Сітка\""
698
-
699
- #: core/options-pages.php:1740
700
- msgid "Dates"
701
- msgstr "Дати"
702
-
703
- #: core/options-pages.php:1741
704
- msgid "Authors"
705
- msgstr "Автори"
706
-
707
- #: core/options-pages.php:1748 core/options-pages.php:1751
708
- msgid "Show count"
709
- msgstr "Показувати кількість"
710
-
711
- #: core/options-pages.php:1752
712
- msgid "Show item count per category for media filters"
713
- msgstr ""
714
- "Показувати кількість медіа-файлів для кожної категорії у медіа-фільтрах"
715
-
716
- #: core/options-pages.php:1753
717
- msgid ""
718
- "Disable this if it slows down your site admin. The problem is resolved in "
719
- "the upcoming major update v3.0"
720
- msgstr ""
721
- "Вимкніть, якщо це уповільнює роботу вашого сайту. Проблема вирішена у "
722
- "майбутньому великому оновленні v3.0"
723
-
724
- #: core/options-pages.php:1759 core/options-pages.php:1762
725
- msgid "Include children"
726
- msgstr "Включати дочірні медіа-файли"
727
-
728
- #: core/options-pages.php:1763
729
- msgid "Show media items of child media categories as a result of filtering"
730
- msgstr ""
731
- "Показувати медіа-файли з дочірніх медіа-категорій в результаті фільтрування"
732
-
733
- #: core/options-pages.php:1780
734
- msgid "Order"
735
- msgstr "Порядок"
736
-
737
- #: core/options-pages.php:1789
738
- msgid "Order media items by"
739
- msgstr "Сортувати медіа-файли за"
740
-
741
- #: core/options-pages.php:1792
742
- msgid "Date"
743
- msgstr "Дата"
744
-
745
- #: core/options-pages.php:1793 core/options-pages.php:1853
746
- msgid "Title"
747
- msgstr "Заголовок"
748
-
749
- #: core/options-pages.php:1794
750
- msgid "Custom Order"
751
- msgstr "Довільний порядок"
752
-
753
- #: core/options-pages.php:1796 core/options-pages.php:1808
754
- msgid "For media library and media popups"
755
- msgstr "Для медіа-бібліотеки та спливаючих вікон"
756
-
757
- #: core/options-pages.php:1797
758
- msgid ""
759
- "Allows changing media items order by drag and drop with Custom Order value."
760
- msgstr ""
761
- "Дозволяє змінювати порядок медіа-файлів перетягуванням, коли \"Довільний "
762
- "порядок\" обрано."
763
-
764
- #: core/options-pages.php:1802
765
- msgid "Sort order"
766
- msgstr "Порядок сортування"
767
-
768
- #: core/options-pages.php:1805
769
- msgid "Ascending"
770
- msgstr "За зростанням"
771
-
772
- #: core/options-pages.php:1806
773
- msgid "Descending"
774
- msgstr "За зменшенням"
775
-
776
- #: core/options-pages.php:1813 core/options-pages.php:1816
777
- msgid "Natural sort order"
778
- msgstr "Природній порядок"
779
-
780
- #: core/options-pages.php:1817
781
- msgid "Apply human-friendly sort order to Media Library and Galleries"
782
- msgstr ""
783
- "Застосувати природній для людини порядок сортування до медіа бібліотеки та "
784
- "галерей"
785
-
786
- #: core/options-pages.php:1818
787
- msgid ""
788
- "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
789
- "3, abc-11, abc-2]"
790
- msgstr ""
791
- "Наприклад: [1, 2, 3, 10, 18, 22, abc-2, abc-11] замість [1, 10, 18, 2, 22, "
792
- "3, abc-11, abc-2]"
793
-
794
- #: core/options-pages.php:1831
795
- msgid "Grid Mode"
796
- msgstr "Режим \"Сітка\""
797
-
798
- #: core/options-pages.php:1840 core/options-pages.php:1843
799
- msgid "Show caption"
800
- msgstr "Показувати підпис"
801
-
802
- #: core/options-pages.php:1844
803
- msgid "Add text caption for media item thumbnails"
804
- msgstr "Додати текстовий підпис для мініатюр медіа-файлів"
805
-
806
- #: core/options-pages.php:1850
807
- msgid "Caption type"
808
- msgstr "Тип підпису"
809
-
810
- #: core/options-pages.php:1854
811
- msgid "Filename"
812
- msgstr "Ім'я файлу"
813
-
814
- #: core/options-pages.php:1855
815
- msgid "Caption"
816
- msgstr "Підпис"
817
-
818
- #: core/options-pages.php:1868
819
- msgid "Media Shortcodes"
820
- msgstr "Медіа-шорткоди"
821
-
822
- #: core/options-pages.php:1877 core/options-pages.php:1880
823
- msgid "Enhanced media shortcodes"
824
- msgstr "Розширені медіа-шорткоди"
825
-
826
- #: core/options-pages.php:1881
827
- msgid ""
828
- "Enhance WordPress media shortcodes to make them understand media taxonomies, "
829
- "upload date, and media items number limit"
830
- msgstr ""
831
- "Розширити WordPress медіа-шорткоди таким чином, щоб вони розуміли такі "
832
- "параметри, як медіа-таксономії, дату завантаження та обмеження кількості "
833
- "медіа-файлів"
834
-
835
- #: core/options-pages.php:1882
836
- msgid "Gallery example:"
837
- msgstr "Приклад галереї:"
838
-
839
- #: core/options-pages.php:1883
840
- msgid "Audio playlist example:"
841
- msgstr "Приклад аудіо плейлиста:"
842
-
843
- #: core/options-pages.php:1884
844
- msgid "Video playlist example:"
845
- msgstr "Приклад відео плейлиста:"
846
-
847
- #: core/options-pages.php:1888
848
- msgid "Warning"
849
- msgstr "Увага"
850
-
851
- #: core/options-pages.php:1891
852
- #, php-format
853
- msgid ""
854
- "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
855
- "\">Learn more</a>."
856
- msgstr ""
857
- "Можлива несумісність з іншими плагінами або темами! <a href=\"%s\">Дізнатись "
858
- "більше</a>."
859
-
860
- #: core/options-pages.php:1896
861
- #, php-format
862
- msgid ""
863
- "Please check out your gallery front-end and back-end functionality once this "
864
- "option activated. If you find an issue please inform plugin authors at %s or "
865
- "%s."
866
- msgstr ""
867
- "Будь ласка, перевірте функціональність вашої галереї для інтерфейсу "
868
- "користувача вашого сайту, та інтерфейсу адмінки, як тільки цей параметр "
869
- "активовано. Якщо ви виявили проблему, будь ласка, поінформуйте авторів "
870
- "плагіну на %s або %s."
871
-
872
- #: core/options-pages.php:1977 core/options-pages.php:2124
873
- msgid "Assign following taxonomies to Media Library:"
874
- msgstr "Прив'язати наступні таксономії до медіа-бібліотеки:"
875
-
876
- #: core/options-pages.php:1996 core/options-pages.php:2062
877
- #: core/options-pages.php:2146
878
- msgid "Assign Taxonomy"
879
- msgstr "Призначати таксономію"
880
-
881
- #: core/options-pages.php:1997 core/options-pages.php:2147
882
- msgid "Edit Taxonomy"
883
- msgstr "Редагувати таксономію"
884
-
885
- #: core/options-pages.php:2001 core/options-pages.php:2064
886
- msgid "Delete Taxonomy"
887
- msgstr "Видалити таксономію"
888
-
889
- #: core/options-pages.php:2006 core/options-pages.php:2069
890
- msgid "Labels"
891
- msgstr "Ярлики"
892
-
893
- #: core/options-pages.php:2008 core/options-pages.php:2071
894
- msgid "Singular"
895
- msgstr "Однина"
896
-
897
- #: core/options-pages.php:2009 core/options-pages.php:2072
898
- msgid "Plural"
899
- msgstr "Множина"
900
-
901
- #: core/options-pages.php:2010 core/options-pages.php:2073
902
- msgid "Menu Name"
903
- msgstr "Назва меню"
904
-
905
- #: core/options-pages.php:2023 core/options-pages.php:2046
906
- #: core/options-pages.php:2086 core/options-pages.php:2150
907
- msgid "Settings"
908
- msgstr "Налаштування"
909
-
910
- #: core/options-pages.php:2025 core/options-pages.php:2088
911
- msgid "Taxonomy Name"
912
- msgstr "Назва таксономії"
913
-
914
- #: core/options-pages.php:2026 core/options-pages.php:2089
915
- msgid "Hierarchical"
916
- msgstr "Ієрархічна"
917
-
918
- #: core/options-pages.php:2027 core/options-pages.php:2090
919
- msgid "Column for List View"
920
- msgstr "Стовпчик для режиму \"Список\""
921
-
922
- #: core/options-pages.php:2028 core/options-pages.php:2048
923
- #: core/options-pages.php:2091 core/options-pages.php:2152
924
- msgid "Filter for List View"
925
- msgstr "Фільтр для режиму \"Список\""
926
-
927
- #: core/options-pages.php:2029 core/options-pages.php:2049
928
- #: core/options-pages.php:2092 core/options-pages.php:2153
929
- msgid "Filter for Grid View / Media Popup"
930
- msgstr "Фільтр для режиму \"Сітка\" / спливаючого вікна"
931
-
932
- #: core/options-pages.php:2030 core/options-pages.php:2050
933
- #: core/options-pages.php:2093 core/options-pages.php:2154
934
- msgid "Edit in Media Popup"
935
- msgstr "Редагувати у спливаючому вікні"
936
-
937
- #: core/options-pages.php:2031 core/options-pages.php:2094
938
- msgid "Show in Nav Menu"
939
- msgstr "Показувати в меню"
940
-
941
- #: core/options-pages.php:2032 core/options-pages.php:2095
942
- msgid "Remember Terms Order (sort)"
943
- msgstr "Пам'ятати порядок елементів (параметр sort)"
944
-
945
- #: core/options-pages.php:2033 core/options-pages.php:2096
946
- msgid "Show in REST"
947
- msgstr "Показувати в REST"
948
-
949
- #: core/options-pages.php:2034 core/options-pages.php:2097
950
- msgid "Rewrite Slug"
951
- msgstr "Переписати слаґ"
952
-
953
- #: core/options-pages.php:2035 core/options-pages.php:2098
954
- msgid "Slug with Front"
955
- msgstr "Слаґ з передньою частиною"
956
-
957
- #: core/options-pages.php:2110
958
- msgid "Add New Taxonomy"
959
- msgstr "Додати нову таксономію"
960
-
961
- #: core/options-pages.php:2120
962
- msgid "Non-Media Taxonomies"
963
- msgstr "Не-медіа таксономії"
964
-
965
- #: core/options-pages.php:2183
966
- msgid "Options"
967
- msgstr "Налаштування"
968
-
969
- #: core/options-pages.php:2193 core/options-pages.php:2196
970
- msgid "Taxonomy archive pages"
971
- msgstr "Архіви таксономій"
972
-
973
- #: core/options-pages.php:2197
974
- msgid "Turn on media taxonomy archive pages on the front-end"
975
- msgstr "Увімкнути архіви таксономій для інтерфейсу користувача вашого сайту"
976
-
977
- #: core/options-pages.php:2198
978
- msgid ""
979
- "Re-save your permalink settings after this option change to make it work."
980
- msgstr ""
981
- "Для того, щоб це працювало, збережіть повторно ваші налаштування постійних "
982
- "посилань після того, як цей параметр був змінений."
983
-
984
- #: core/options-pages.php:2204 core/options-pages.php:2207
985
- msgid "Assign all like hierarchical"
986
- msgstr "Обробляти всі як ієрархічні"
987
-
988
- #: core/options-pages.php:2208
989
- msgid ""
990
- "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
991
- msgstr ""
992
- "Показувати не-ієрархічні таксономії як ієрархічні у режимі \"Сітка\" / "
993
- "спливаючому вікні"
994
-
995
- #: core/options-pages.php:2271
996
- msgid "Add New MIME Type"
997
- msgstr "Додати новий MIME-тип"
998
-
999
- #: core/options-pages.php:2291 core/options-pages.php:2345
1000
- msgid "Extension"
1001
- msgstr "Розширення файлу"
1002
-
1003
- #: core/options-pages.php:2292 core/options-pages.php:2346
1004
- msgid "MIME Type"
1005
- msgstr "MIME-тип"
1006
-
1007
- #: core/options-pages.php:2293 core/options-pages.php:2347
1008
- msgid "Singular Label"
1009
- msgstr "Ярлик у однині"
1010
-
1011
- #: core/options-pages.php:2294 core/options-pages.php:2348
1012
- msgid "Plural Label"
1013
- msgstr "Ярлик у множині"
1014
-
1015
- #: core/options-pages.php:2295 core/options-pages.php:2324
1016
- #: core/options-pages.php:2337 core/options-pages.php:2349
1017
- msgid "Add Filter"
1018
- msgstr "Додати фільтр"
1019
-
1020
- #: core/options-pages.php:2296 core/options-pages.php:2325
1021
- #: core/options-pages.php:2338 core/options-pages.php:2350
1022
- msgid "Allow Upload"
1023
- msgstr "Дозволити завантаження"
1024
-
1025
- #: core/options-pages.php:2326 core/options-pages.php:2339
1026
- msgid "Delete MIME Type"
1027
- msgstr "Видалити MIME-тип"
1028
-
1029
- #: core/options-pages.php:2415
1030
- msgid "Changelog"
1031
- msgstr "Список змін"
1032
-
1033
- #: core/options-pages.php:2416
1034
- msgid "What's new in"
1035
- msgstr "Що новенького у"
1036
-
1037
- #: core/options-pages.php:2416
1038
- msgid "version"
1039
- msgstr "версії"
1040
-
1041
- #: core/options-pages.php:2419
1042
- msgid "More features under the hood"
1043
- msgstr "Більше функцій під капотом"
1044
-
1045
- #: core/options-pages.php:2421
1046
- msgid "Support"
1047
- msgstr "Підтримка"
1048
-
1049
- #: core/options-pages.php:2422
1050
- msgid "Feel free to ask for help on"
1051
- msgstr "Не соромтеся просити допомоги на"
1052
-
1053
- #: core/options-pages.php:2422
1054
- msgid "Support is free for both versions of the plugin."
1055
- msgstr "Підтримка є безкоштовною для обох версій плагіна."
1056
-
1057
- #: core/options-pages.php:2424
1058
- msgid "Plugin rating"
1059
- msgstr "Рейтинг плагіна"
1060
-
1061
- #: core/options-pages.php:2425
1062
- msgid "Please"
1063
- msgstr "Будь ласка"
1064
-
1065
- #: core/options-pages.php:2425
1066
- msgid "vote for the plugin"
1067
- msgstr "проголосуйте за плагін"
1068
-
1069
- #: core/options-pages.php:2425
1070
- msgid "Thanks!"
1071
- msgstr "Дякуємо!"
1072
-
1073
- #: core/options-pages.php:2427
1074
- msgid "Other plugins you may find useful"
1075
- msgstr "Інші корисні плагіни"
1076
-
1077
- #: core/options-pages.php:2469
1078
- msgid "Utility"
1079
- msgstr "Утиліти"
1080
-
1081
- #: core/options-pages.php:2494
1082
- msgid "Rate us:"
1083
- msgstr "Оцініть нас:"
1084
-
1085
- #: core/options-pages.php:2494
1086
- msgid "Poor"
1087
- msgstr "Погано"
1088
-
1089
- #: core/options-pages.php:2494
1090
- msgid "Works"
1091
- msgstr "Працює"
1092
-
1093
- #: core/options-pages.php:2494
1094
- msgid "Good"
1095
- msgstr "Добре"
1096
-
1097
- #: core/options-pages.php:2494
1098
- msgid "Great"
1099
- msgstr "Чудово"
1100
-
1101
- #: core/options-pages.php:2494
1102
- msgid "Fantastic!"
1103
- msgstr "Фантастично!"
1104
-
1105
- #: core/taxonomies.php:101
1106
- msgid "Media Taxonomies settings saved."
1107
- msgstr "Налаштування медіа-таксономій збережено."
1108
-
1109
- #: core/taxonomies.php:174
1110
- msgid "Media Library settings saved."
1111
- msgstr "Налаштування медіа-бібліотеки збережено."
1112
-
1113
- #: core/taxonomies.php:353
1114
- msgid "Filter by author"
1115
- msgstr "Фільтрувати за автором"
1116
-
1117
- #: core/taxonomies.php:357
1118
- msgid "All Authors"
1119
- msgstr "Всі автори"
1120
-
1121
- #: core/taxonomies.php:374 core/taxonomies.php:380
1122
- #: enhanced-media-library.php:561
1123
- msgid "Filter by"
1124
- msgstr "Фільтрувати за"
1125
-
1126
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1127
- msgid "Not in a"
1128
- msgstr "Не в"
1129
-
1130
- #: core/taxonomies.php:721
1131
- msgid "Add some"
1132
- msgstr "Додати кілька"
1133
-
1134
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1135
- msgid "All Uncategorized"
1136
- msgstr "Всі без категорії"
1137
-
1138
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1139
- msgid "Reset All Filters"
1140
- msgstr "Скинути всі фільтри"
1141
-
1142
- #: enhanced-media-library.php:391
1143
- msgid "More Details"
1144
- msgstr "Більше деталей"
1145
-
1146
- #: enhanced-media-library.php:392
1147
- msgid "Less Details"
1148
- msgstr "Менше деталей"
1149
-
1150
- #: enhanced-media-library.php:565
1151
- msgid "author"
1152
- msgstr "автор"
1153
-
1154
- #: enhanced-media-library.php:566
1155
- msgid "authors"
1156
- msgstr "автори"
1157
-
1158
- #: enhanced-media-library.php:569
1159
- msgid "Saved."
1160
- msgstr "Збережено."
1161
-
1162
- #: enhanced-media-library.php:570
1163
- msgid "Something went wrong."
1164
- msgstr "Щось пішло не так."
1165
-
1166
- #: enhanced-media-library.php:573
1167
- msgid "Select All"
1168
- msgstr "Виділити всі"
1169
-
1170
- #: enhanced-media-library.php:574
1171
- msgid "Deselect "
1172
- msgstr "Зняти виділення"
1173
-
1174
- #: enhanced-media-library.php:603
1175
- msgid "Uploaded to post #"
1176
- msgstr "Завантажені до допису #"
1177
-
1178
- #: enhanced-media-library.php:604
1179
- msgid "Based On"
1180
- msgstr "На основі"
1181
-
1182
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1183
- msgid "Media Categories"
1184
- msgstr "Медіа-категорії"
1185
-
1186
- #: enhanced-media-library.php:674
1187
- msgid "Media Category"
1188
- msgstr "Медіа-категорія"
1189
-
1190
- #: enhanced-media-library.php:676
1191
- msgid "All Media Categories"
1192
- msgstr "Всі медіа-категорії"
1193
-
1194
- #: enhanced-media-library.php:677
1195
- msgid "Edit Media Category"
1196
- msgstr "Редагувати медіа-категорію"
1197
-
1198
- #: enhanced-media-library.php:678
1199
- msgid "View Media Category"
1200
- msgstr "Переглянуи медіа-категорію"
1201
-
1202
- #: enhanced-media-library.php:679
1203
- msgid "Update Media Category"
1204
- msgstr "Оновити медіа-категорію"
1205
-
1206
- #: enhanced-media-library.php:680
1207
- msgid "Add New Media Category"
1208
- msgstr "Додати нову медіа-категорію"
1209
-
1210
- #: enhanced-media-library.php:681
1211
- msgid "New Media Category Name"
1212
- msgstr "Назва нової медіа-категорії"
1213
-
1214
- #: enhanced-media-library.php:682
1215
- msgid "Parent Media Category"
1216
- msgstr "Батьківська медіа-категорія"
1217
-
1218
- #: enhanced-media-library.php:683
1219
- msgid "Parent Media Category:"
1220
- msgstr "Батьківська медіа-категорія:"
1221
-
1222
- #: enhanced-media-library.php:684
1223
- msgid "Search Media Categories"
1224
- msgstr "Шукати медіа-категорії"
1225
-
1226
- #. Plugin URI of the plugin/theme
1227
- #. Author URI of the plugin/theme
1228
- msgid "http://wpUXsolutions.com"
1229
- msgstr "http://wpUXsolutions.com"
1230
-
1231
- #. Description of the plugin/theme
1232
- msgid ""
1233
- "This plugin will be handy for those who need to manage a lot of media files."
1234
- msgstr ""
1235
- "Плагін буде корисний для тих, кому потрібно вправлятися з багатьма медіа-"
1236
- "файлами."
1237
-
1238
- #. Author of the plugin/theme
1239
- msgid "wpUXsolutions"
1240
- msgstr "wpUXsolutions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/enhanced-media-library.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
- "POT-Creation-Date: 2020-10-11 23:54+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"
@@ -62,8 +62,8 @@ msgstr[1] ""
62
  #: core/options-pages.php:97 core/options-pages.php:106
63
  #: core/options-pages.php:115 core/options-pages.php:124
64
  #: core/options-pages.php:321 core/options-pages.php:399
65
- #: core/options-pages.php:1694 core/options-pages.php:1952
66
- #: core/options-pages.php:2265 core/options-pages.php:2465
67
  msgid "Media Settings"
68
  msgstr ""
69
 
@@ -74,7 +74,8 @@ msgstr ""
74
 
75
  #: core/options-pages.php:115 core/options-pages.php:116
76
  #: core/options-pages.php:364 core/options-pages.php:1033
77
- #: core/options-pages.php:1742 core/options-pages.php:1973
 
78
  msgid "Media Taxonomies"
79
  msgstr ""
80
 
@@ -83,8 +84,16 @@ msgstr ""
83
  msgid "MIME Types"
84
  msgstr ""
85
 
 
 
 
 
 
 
 
 
 
86
  #. Plugin Name of the plugin/theme
87
- #: core/options-pages.php:166 core/options-pages.php:167
88
  #: core/options-pages.php:194 core/options-pages.php:195
89
  msgid "Enhanced Media Library"
90
  msgstr ""
@@ -96,9 +105,9 @@ msgstr ""
96
  #: core/options-pages.php:388 core/options-pages.php:395
97
  #: core/options-pages.php:732 core/options-pages.php:740
98
  #: core/options-pages.php:925 core/options-pages.php:1682
99
- #: core/options-pages.php:1689 core/options-pages.php:1940
100
- #: core/options-pages.php:1947 core/options-pages.php:2252
101
- #: core/options-pages.php:2259
102
  msgid "You do not have sufficient permissions to access this page."
103
  msgstr ""
104
 
@@ -174,9 +183,9 @@ msgstr ""
174
  msgid "Organize my uploads into month- and year-based folders"
175
  msgstr ""
176
 
177
- #: core/options-pages.php:560 core/options-pages.php:1997
178
- #: core/options-pages.php:2012 core/options-pages.php:2075
179
- #: core/options-pages.php:2147
180
  msgid "Edit"
181
  msgstr ""
182
 
@@ -184,23 +193,23 @@ msgstr ""
184
  msgid "Close"
185
  msgstr ""
186
 
187
- #: core/options-pages.php:562 core/options-pages.php:2013
188
- #: core/options-pages.php:2076
189
  msgid "View"
190
  msgstr ""
191
 
192
- #: core/options-pages.php:563 core/options-pages.php:2014
193
- #: core/options-pages.php:2077
194
  msgid "Update"
195
  msgstr ""
196
 
197
- #: core/options-pages.php:564 core/options-pages.php:2015
198
- #: core/options-pages.php:2078
199
  msgid "Add New"
200
  msgstr ""
201
 
202
- #: core/options-pages.php:565 core/options-pages.php:2016
203
- #: core/options-pages.php:2079
204
  msgid "New"
205
  msgstr ""
206
 
@@ -208,24 +217,24 @@ msgstr ""
208
  msgid "Name"
209
  msgstr ""
210
 
211
- #: core/options-pages.php:567 core/options-pages.php:2017
212
- #: core/options-pages.php:2080
213
  msgid "Parent"
214
  msgstr ""
215
 
216
  #: core/options-pages.php:568 core/options-pages.php:862
217
- #: core/options-pages.php:1084 core/options-pages.php:2011
218
- #: core/options-pages.php:2074 core/taxonomies.php:381
219
- #: enhanced-media-library.php:562
220
  msgid "All"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:569 core/options-pages.php:2018
224
- #: core/options-pages.php:2081
225
  msgid "Search"
226
  msgstr ""
227
 
228
- #: core/options-pages.php:571 core/options-pages.php:2062
229
  msgid "New Taxonomy"
230
  msgstr ""
231
 
@@ -315,7 +324,7 @@ msgstr ""
315
  msgid "Cancel"
316
  msgstr ""
317
 
318
- #: core/options-pages.php:598
319
  msgid "Synchronize Now"
320
  msgstr ""
321
 
@@ -331,7 +340,7 @@ msgstr ""
331
  msgid "Synchronizing..."
332
  msgstr ""
333
 
334
- #: core/options-pages.php:639 core/options-pages.php:2388
335
  msgid "Restore WordPress default MIME Types"
336
  msgstr ""
337
 
@@ -395,10 +404,6 @@ msgstr ""
395
  msgid "Applying Settings..."
396
  msgstr ""
397
 
398
- #: core/options-pages.php:746 core/options-pages.php:935
399
- msgid "Enhanced Media Library Utilities"
400
- msgstr ""
401
-
402
  #: core/options-pages.php:756
403
  msgid "Export"
404
  msgstr ""
@@ -569,10 +574,11 @@ msgid ""
569
  msgstr ""
570
 
571
  #: core/options-pages.php:986 core/options-pages.php:1770
572
- #: core/options-pages.php:1824 core/options-pages.php:1861
573
- #: core/options-pages.php:1905 core/options-pages.php:2113
574
- #: core/options-pages.php:2177 core/options-pages.php:2215
575
- #: core/options-pages.php:2386 enhanced-media-library.php:571
 
576
  msgid "Save Changes"
577
  msgstr ""
578
 
@@ -659,7 +665,7 @@ msgstr ""
659
  msgid "Dates"
660
  msgstr ""
661
 
662
- #: core/options-pages.php:1741
663
  msgid "Authors"
664
  msgstr ""
665
 
@@ -685,123 +691,145 @@ msgstr ""
685
  msgid "Show media items of child media categories as a result of filtering"
686
  msgstr ""
687
 
688
- #: core/options-pages.php:1780
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  msgid "Order"
690
  msgstr ""
691
 
692
- #: core/options-pages.php:1789
693
  msgid "Order media items by"
694
  msgstr ""
695
 
696
- #: core/options-pages.php:1792
697
  msgid "Date"
698
  msgstr ""
699
 
700
- #: core/options-pages.php:1793 core/options-pages.php:1853
701
  msgid "Title"
702
  msgstr ""
703
 
704
- #: core/options-pages.php:1794
705
  msgid "Custom Order"
706
  msgstr ""
707
 
708
- #: core/options-pages.php:1796 core/options-pages.php:1808
709
  msgid "For media library and media popups"
710
  msgstr ""
711
 
712
- #: core/options-pages.php:1797
713
  msgid ""
714
  "Allows changing media items order by drag and drop with Custom Order value."
715
  msgstr ""
716
 
717
- #: core/options-pages.php:1802
718
  msgid "Sort order"
719
  msgstr ""
720
 
721
- #: core/options-pages.php:1805
722
  msgid "Ascending"
723
  msgstr ""
724
 
725
- #: core/options-pages.php:1806
726
  msgid "Descending"
727
  msgstr ""
728
 
729
- #: core/options-pages.php:1813 core/options-pages.php:1816
730
  msgid "Natural sort order"
731
  msgstr ""
732
 
733
- #: core/options-pages.php:1817
734
  msgid "Apply human-friendly sort order to Media Library and Galleries"
735
  msgstr ""
736
 
737
- #: core/options-pages.php:1818
738
  msgid ""
739
  "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
740
  "3, abc-11, abc-2]"
741
  msgstr ""
742
 
743
- #: core/options-pages.php:1831
744
  msgid "Grid Mode"
745
  msgstr ""
746
 
747
- #: core/options-pages.php:1840 core/options-pages.php:1843
748
  msgid "Show caption"
749
  msgstr ""
750
 
751
- #: core/options-pages.php:1844
752
  msgid "Add text caption for media item thumbnails"
753
  msgstr ""
754
 
755
- #: core/options-pages.php:1850
756
  msgid "Caption type"
757
  msgstr ""
758
 
759
- #: core/options-pages.php:1854
760
  msgid "Filename"
761
  msgstr ""
762
 
763
- #: core/options-pages.php:1855
764
  msgid "Caption"
765
  msgstr ""
766
 
767
- #: core/options-pages.php:1868
768
  msgid "Media Shortcodes"
769
  msgstr ""
770
 
771
- #: core/options-pages.php:1877 core/options-pages.php:1880
772
  msgid "Enhanced media shortcodes"
773
  msgstr ""
774
 
775
- #: core/options-pages.php:1881
776
  msgid ""
777
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
778
  "upload date, and media items number limit"
779
  msgstr ""
780
 
781
- #: core/options-pages.php:1882
782
  msgid "Gallery example:"
783
  msgstr ""
784
 
785
- #: core/options-pages.php:1883
786
  msgid "Audio playlist example:"
787
  msgstr ""
788
 
789
- #: core/options-pages.php:1884
790
  msgid "Video playlist example:"
791
  msgstr ""
792
 
793
- #: core/options-pages.php:1888
794
  msgid "Warning"
795
  msgstr ""
796
 
797
- #: core/options-pages.php:1891
798
  #, php-format
799
  msgid ""
800
  "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
801
  "\">Learn more</a>."
802
  msgstr ""
803
 
804
- #: core/options-pages.php:1896
805
  #, php-format
806
  msgid ""
807
  "Please check out your gallery front-end and back-end functionality once this "
@@ -809,232 +837,273 @@ msgid ""
809
  "%s."
810
  msgstr ""
811
 
812
- #: core/options-pages.php:1977 core/options-pages.php:2124
813
  msgid "Assign following taxonomies to Media Library:"
814
  msgstr ""
815
 
816
- #: core/options-pages.php:1996 core/options-pages.php:2062
817
- #: core/options-pages.php:2146
818
  msgid "Assign Taxonomy"
819
  msgstr ""
820
 
821
- #: core/options-pages.php:1997 core/options-pages.php:2147
822
  msgid "Edit Taxonomy"
823
  msgstr ""
824
 
825
- #: core/options-pages.php:2001 core/options-pages.php:2064
826
  msgid "Delete Taxonomy"
827
  msgstr ""
828
 
829
- #: core/options-pages.php:2006 core/options-pages.php:2069
830
  msgid "Labels"
831
  msgstr ""
832
 
833
- #: core/options-pages.php:2008 core/options-pages.php:2071
834
  msgid "Singular"
835
  msgstr ""
836
 
837
- #: core/options-pages.php:2009 core/options-pages.php:2072
838
  msgid "Plural"
839
  msgstr ""
840
 
841
- #: core/options-pages.php:2010 core/options-pages.php:2073
842
  msgid "Menu Name"
843
  msgstr ""
844
 
845
- #: core/options-pages.php:2023 core/options-pages.php:2046
846
- #: core/options-pages.php:2086 core/options-pages.php:2150
847
  msgid "Settings"
848
  msgstr ""
849
 
850
- #: core/options-pages.php:2025 core/options-pages.php:2088
851
  msgid "Taxonomy Name"
852
  msgstr ""
853
 
854
- #: core/options-pages.php:2026 core/options-pages.php:2089
855
  msgid "Hierarchical"
856
  msgstr ""
857
 
858
- #: core/options-pages.php:2027 core/options-pages.php:2090
859
  msgid "Column for List View"
860
  msgstr ""
861
 
862
- #: core/options-pages.php:2028 core/options-pages.php:2048
863
- #: core/options-pages.php:2091 core/options-pages.php:2152
864
  msgid "Filter for List View"
865
  msgstr ""
866
 
867
- #: core/options-pages.php:2029 core/options-pages.php:2049
868
- #: core/options-pages.php:2092 core/options-pages.php:2153
869
  msgid "Filter for Grid View / Media Popup"
870
  msgstr ""
871
 
872
- #: core/options-pages.php:2030 core/options-pages.php:2050
873
- #: core/options-pages.php:2093 core/options-pages.php:2154
874
  msgid "Edit in Media Popup"
875
  msgstr ""
876
 
877
- #: core/options-pages.php:2031 core/options-pages.php:2094
878
  msgid "Show in Nav Menu"
879
  msgstr ""
880
 
881
- #: core/options-pages.php:2032 core/options-pages.php:2095
882
  msgid "Remember Terms Order (sort)"
883
  msgstr ""
884
 
885
- #: core/options-pages.php:2033 core/options-pages.php:2096
886
  msgid "Show in REST"
887
  msgstr ""
888
 
889
- #: core/options-pages.php:2034 core/options-pages.php:2097
890
  msgid "Rewrite Slug"
891
  msgstr ""
892
 
893
- #: core/options-pages.php:2035 core/options-pages.php:2098
894
  msgid "Slug with Front"
895
  msgstr ""
896
 
897
- #: core/options-pages.php:2110
898
  msgid "Add New Taxonomy"
899
  msgstr ""
900
 
901
- #: core/options-pages.php:2120
902
  msgid "Non-Media Taxonomies"
903
  msgstr ""
904
 
905
- #: core/options-pages.php:2183
 
 
 
 
 
 
 
 
 
 
 
 
 
906
  msgid "Options"
907
  msgstr ""
908
 
909
- #: core/options-pages.php:2193 core/options-pages.php:2196
910
  msgid "Taxonomy archive pages"
911
  msgstr ""
912
 
913
- #: core/options-pages.php:2197
914
  msgid "Turn on media taxonomy archive pages on the front-end"
915
  msgstr ""
916
 
917
- #: core/options-pages.php:2198
918
  msgid ""
919
  "Re-save your permalink settings after this option change to make it work."
920
  msgstr ""
921
 
922
- #: core/options-pages.php:2204 core/options-pages.php:2207
923
  msgid "Assign all like hierarchical"
924
  msgstr ""
925
 
926
- #: core/options-pages.php:2208
927
  msgid ""
928
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
929
  msgstr ""
930
 
931
- #: core/options-pages.php:2271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
932
  msgid "Add New MIME Type"
933
  msgstr ""
934
 
935
- #: core/options-pages.php:2291 core/options-pages.php:2345
936
  msgid "Extension"
937
  msgstr ""
938
 
939
- #: core/options-pages.php:2292 core/options-pages.php:2346
940
  msgid "MIME Type"
941
  msgstr ""
942
 
943
- #: core/options-pages.php:2293 core/options-pages.php:2347
944
  msgid "Singular Label"
945
  msgstr ""
946
 
947
- #: core/options-pages.php:2294 core/options-pages.php:2348
948
  msgid "Plural Label"
949
  msgstr ""
950
 
951
- #: core/options-pages.php:2295 core/options-pages.php:2324
952
- #: core/options-pages.php:2337 core/options-pages.php:2349
953
  msgid "Add Filter"
954
  msgstr ""
955
 
956
- #: core/options-pages.php:2296 core/options-pages.php:2325
957
- #: core/options-pages.php:2338 core/options-pages.php:2350
958
  msgid "Allow Upload"
959
  msgstr ""
960
 
961
- #: core/options-pages.php:2326 core/options-pages.php:2339
962
  msgid "Delete MIME Type"
963
  msgstr ""
964
 
965
- #: core/options-pages.php:2415
966
  msgid "Changelog"
967
  msgstr ""
968
 
969
- #: core/options-pages.php:2416
970
  msgid "What's new in"
971
  msgstr ""
972
 
973
- #: core/options-pages.php:2416
974
  msgid "version"
975
  msgstr ""
976
 
977
- #: core/options-pages.php:2419
978
  msgid "More features under the hood"
979
  msgstr ""
980
 
981
- #: core/options-pages.php:2421
982
  msgid "Support"
983
  msgstr ""
984
 
985
- #: core/options-pages.php:2422
986
  msgid "Feel free to ask for help on"
987
  msgstr ""
988
 
989
- #: core/options-pages.php:2422
990
  msgid "Support is free for both versions of the plugin."
991
  msgstr ""
992
 
993
- #: core/options-pages.php:2424
994
  msgid "Plugin rating"
995
  msgstr ""
996
 
997
- #: core/options-pages.php:2425
998
  msgid "Please"
999
  msgstr ""
1000
 
1001
- #: core/options-pages.php:2425
1002
  msgid "vote for the plugin"
1003
  msgstr ""
1004
 
1005
- #: core/options-pages.php:2425
1006
  msgid "Thanks!"
1007
  msgstr ""
1008
 
1009
- #: core/options-pages.php:2427
1010
  msgid "Other plugins you may find useful"
1011
  msgstr ""
1012
 
1013
- #: core/options-pages.php:2469
1014
- msgid "Utility"
1015
  msgstr ""
1016
 
1017
- #: core/options-pages.php:2494
 
 
 
 
1018
  msgid "Rate us:"
1019
  msgstr ""
1020
 
1021
- #: core/options-pages.php:2494
1022
  msgid "Poor"
1023
  msgstr ""
1024
 
1025
- #: core/options-pages.php:2494
1026
  msgid "Works"
1027
  msgstr ""
1028
 
1029
- #: core/options-pages.php:2494
1030
  msgid "Good"
1031
  msgstr ""
1032
 
1033
- #: core/options-pages.php:2494
1034
  msgid "Great"
1035
  msgstr ""
1036
 
1037
- #: core/options-pages.php:2494
1038
  msgid "Fantastic!"
1039
  msgstr ""
1040
 
@@ -1055,107 +1124,107 @@ msgid "All Authors"
1055
  msgstr ""
1056
 
1057
  #: core/taxonomies.php:374 core/taxonomies.php:380
1058
- #: enhanced-media-library.php:561
1059
  msgid "Filter by"
1060
  msgstr ""
1061
 
1062
- #: core/taxonomies.php:382 enhanced-media-library.php:563
1063
- msgid "Not in a"
1064
  msgstr ""
1065
 
1066
  #: core/taxonomies.php:721
1067
  msgid "Add some"
1068
  msgstr ""
1069
 
1070
- #: enhanced-media-library.php:359 enhanced-media-library.php:560
1071
  msgid "All Uncategorized"
1072
  msgstr ""
1073
 
1074
- #: enhanced-media-library.php:360 enhanced-media-library.php:564
1075
  msgid "Reset All Filters"
1076
  msgstr ""
1077
 
1078
- #: enhanced-media-library.php:391
1079
  msgid "More Details"
1080
  msgstr ""
1081
 
1082
- #: enhanced-media-library.php:392
1083
  msgid "Less Details"
1084
  msgstr ""
1085
 
1086
- #: enhanced-media-library.php:565
1087
  msgid "author"
1088
  msgstr ""
1089
 
1090
- #: enhanced-media-library.php:566
1091
  msgid "authors"
1092
  msgstr ""
1093
 
1094
- #: enhanced-media-library.php:569
1095
  msgid "Saved."
1096
  msgstr ""
1097
 
1098
- #: enhanced-media-library.php:570
1099
  msgid "Something went wrong."
1100
  msgstr ""
1101
 
1102
- #: enhanced-media-library.php:573
1103
  msgid "Select All"
1104
  msgstr ""
1105
 
1106
- #: enhanced-media-library.php:574
1107
  msgid "Deselect "
1108
  msgstr ""
1109
 
1110
- #: enhanced-media-library.php:603
1111
  msgid "Uploaded to post #"
1112
  msgstr ""
1113
 
1114
- #: enhanced-media-library.php:604
1115
  msgid "Based On"
1116
  msgstr ""
1117
 
1118
- #: enhanced-media-library.php:673 enhanced-media-library.php:675
1119
  msgid "Media Categories"
1120
  msgstr ""
1121
 
1122
- #: enhanced-media-library.php:674
1123
  msgid "Media Category"
1124
  msgstr ""
1125
 
1126
- #: enhanced-media-library.php:676
1127
  msgid "All Media Categories"
1128
  msgstr ""
1129
 
1130
- #: enhanced-media-library.php:677
1131
  msgid "Edit Media Category"
1132
  msgstr ""
1133
 
1134
- #: enhanced-media-library.php:678
1135
  msgid "View Media Category"
1136
  msgstr ""
1137
 
1138
- #: enhanced-media-library.php:679
1139
  msgid "Update Media Category"
1140
  msgstr ""
1141
 
1142
- #: enhanced-media-library.php:680
1143
  msgid "Add New Media Category"
1144
  msgstr ""
1145
 
1146
- #: enhanced-media-library.php:681
1147
  msgid "New Media Category Name"
1148
  msgstr ""
1149
 
1150
- #: enhanced-media-library.php:682
1151
  msgid "Parent Media Category"
1152
  msgstr ""
1153
 
1154
- #: enhanced-media-library.php:683
1155
  msgid "Parent Media Category:"
1156
  msgstr ""
1157
 
1158
- #: enhanced-media-library.php:684
1159
  msgid "Search Media Categories"
1160
  msgstr ""
1161
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Enhanced Media Library\n"
6
+ "POT-Creation-Date: 2020-10-29 15:29+0200\n"
7
  "PO-Revision-Date: 2016-04-14 21:02+0300\n"
8
  "Last-Translator: wpUXsolutions <wpUXsolutions@gmail.com>\n"
9
  "Language-Team: wpUXsolutions <wpUXsolutions@gmail.com>\n"
62
  #: core/options-pages.php:97 core/options-pages.php:106
63
  #: core/options-pages.php:115 core/options-pages.php:124
64
  #: core/options-pages.php:321 core/options-pages.php:399
65
+ #: core/options-pages.php:1694 core/options-pages.php:1991
66
+ #: core/options-pages.php:2358 core/options-pages.php:2563
67
  msgid "Media Settings"
68
  msgstr ""
69
 
74
 
75
  #: core/options-pages.php:115 core/options-pages.php:116
76
  #: core/options-pages.php:364 core/options-pages.php:1033
77
+ #: core/options-pages.php:1742 core/options-pages.php:1803
78
+ #: core/options-pages.php:2012
79
  msgid "Media Taxonomies"
80
  msgstr ""
81
 
84
  msgid "MIME Types"
85
  msgstr ""
86
 
87
+ #: core/options-pages.php:166 core/options-pages.php:746
88
+ #: core/options-pages.php:935
89
+ msgid "Enhanced Media Library Utilities"
90
+ msgstr ""
91
+
92
+ #: core/options-pages.php:167
93
+ msgid "EML Utilities"
94
+ msgstr ""
95
+
96
  #. Plugin Name of the plugin/theme
 
97
  #: core/options-pages.php:194 core/options-pages.php:195
98
  msgid "Enhanced Media Library"
99
  msgstr ""
105
  #: core/options-pages.php:388 core/options-pages.php:395
106
  #: core/options-pages.php:732 core/options-pages.php:740
107
  #: core/options-pages.php:925 core/options-pages.php:1682
108
+ #: core/options-pages.php:1689 core/options-pages.php:1979
109
+ #: core/options-pages.php:1986 core/options-pages.php:2345
110
+ #: core/options-pages.php:2352
111
  msgid "You do not have sufficient permissions to access this page."
112
  msgstr ""
113
 
183
  msgid "Organize my uploads into month- and year-based folders"
184
  msgstr ""
185
 
186
+ #: core/options-pages.php:560 core/options-pages.php:2036
187
+ #: core/options-pages.php:2051 core/options-pages.php:2114
188
+ #: core/options-pages.php:2186
189
  msgid "Edit"
190
  msgstr ""
191
 
193
  msgid "Close"
194
  msgstr ""
195
 
196
+ #: core/options-pages.php:562 core/options-pages.php:2052
197
+ #: core/options-pages.php:2115
198
  msgid "View"
199
  msgstr ""
200
 
201
+ #: core/options-pages.php:563 core/options-pages.php:2053
202
+ #: core/options-pages.php:2116
203
  msgid "Update"
204
  msgstr ""
205
 
206
+ #: core/options-pages.php:564 core/options-pages.php:2054
207
+ #: core/options-pages.php:2117
208
  msgid "Add New"
209
  msgstr ""
210
 
211
+ #: core/options-pages.php:565 core/options-pages.php:2055
212
+ #: core/options-pages.php:2118
213
  msgid "New"
214
  msgstr ""
215
 
217
  msgid "Name"
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:567 core/options-pages.php:2056
221
+ #: core/options-pages.php:2119
222
  msgid "Parent"
223
  msgstr ""
224
 
225
  #: core/options-pages.php:568 core/options-pages.php:862
226
+ #: core/options-pages.php:1084 core/options-pages.php:2050
227
+ #: core/options-pages.php:2113 core/taxonomies.php:381
228
+ #: enhanced-media-library.php:563
229
  msgid "All"
230
  msgstr ""
231
 
232
+ #: core/options-pages.php:569 core/options-pages.php:1784
233
+ #: core/options-pages.php:2057 core/options-pages.php:2120
234
  msgid "Search"
235
  msgstr ""
236
 
237
+ #: core/options-pages.php:571 core/options-pages.php:2101
238
  msgid "New Taxonomy"
239
  msgstr ""
240
 
324
  msgid "Cancel"
325
  msgstr ""
326
 
327
+ #: core/options-pages.php:598 core/options-pages.php:2208
328
  msgid "Synchronize Now"
329
  msgstr ""
330
 
340
  msgid "Synchronizing..."
341
  msgstr ""
342
 
343
+ #: core/options-pages.php:639 core/options-pages.php:2481
344
  msgid "Restore WordPress default MIME Types"
345
  msgstr ""
346
 
404
  msgid "Applying Settings..."
405
  msgstr ""
406
 
 
 
 
 
407
  #: core/options-pages.php:756
408
  msgid "Export"
409
  msgstr ""
574
  msgstr ""
575
 
576
  #: core/options-pages.php:986 core/options-pages.php:1770
577
+ #: core/options-pages.php:1810 core/options-pages.php:1863
578
+ #: core/options-pages.php:1900 core/options-pages.php:1944
579
+ #: core/options-pages.php:2152 core/options-pages.php:2240
580
+ #: core/options-pages.php:2278 core/options-pages.php:2310
581
+ #: core/options-pages.php:2479 enhanced-media-library.php:572
582
  msgid "Save Changes"
583
  msgstr ""
584
 
665
  msgid "Dates"
666
  msgstr ""
667
 
668
+ #: core/options-pages.php:1741 core/options-pages.php:1802
669
  msgid "Authors"
670
  msgstr ""
671
 
691
  msgid "Show media items of child media categories as a result of filtering"
692
  msgstr ""
693
 
694
+ #: core/options-pages.php:1793 core/options-pages.php:1796
695
+ msgid "Enable search in"
696
+ msgstr ""
697
+
698
+ #: core/options-pages.php:1798
699
+ msgid "Titles"
700
+ msgstr ""
701
+
702
+ #: core/options-pages.php:1799
703
+ msgid "Captions"
704
+ msgstr ""
705
+
706
+ #: core/options-pages.php:1800
707
+ msgid "Descriptions"
708
+ msgstr ""
709
+
710
+ #: core/options-pages.php:1804
711
+ msgid ""
712
+ "Enhance default search in Media Library and Media Popups. By default, "
713
+ "WordPress looks into filenames, titles, captions, and descriptions."
714
+ msgstr ""
715
+
716
+ #: core/options-pages.php:1819
717
  msgid "Order"
718
  msgstr ""
719
 
720
+ #: core/options-pages.php:1828
721
  msgid "Order media items by"
722
  msgstr ""
723
 
724
+ #: core/options-pages.php:1831
725
  msgid "Date"
726
  msgstr ""
727
 
728
+ #: core/options-pages.php:1832 core/options-pages.php:1892
729
  msgid "Title"
730
  msgstr ""
731
 
732
+ #: core/options-pages.php:1833
733
  msgid "Custom Order"
734
  msgstr ""
735
 
736
+ #: core/options-pages.php:1835 core/options-pages.php:1847
737
  msgid "For media library and media popups"
738
  msgstr ""
739
 
740
+ #: core/options-pages.php:1836
741
  msgid ""
742
  "Allows changing media items order by drag and drop with Custom Order value."
743
  msgstr ""
744
 
745
+ #: core/options-pages.php:1841
746
  msgid "Sort order"
747
  msgstr ""
748
 
749
+ #: core/options-pages.php:1844
750
  msgid "Ascending"
751
  msgstr ""
752
 
753
+ #: core/options-pages.php:1845
754
  msgid "Descending"
755
  msgstr ""
756
 
757
+ #: core/options-pages.php:1852 core/options-pages.php:1855
758
  msgid "Natural sort order"
759
  msgstr ""
760
 
761
+ #: core/options-pages.php:1856
762
  msgid "Apply human-friendly sort order to Media Library and Galleries"
763
  msgstr ""
764
 
765
+ #: core/options-pages.php:1857
766
  msgid ""
767
  "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
768
  "3, abc-11, abc-2]"
769
  msgstr ""
770
 
771
+ #: core/options-pages.php:1870
772
  msgid "Grid Mode"
773
  msgstr ""
774
 
775
+ #: core/options-pages.php:1879 core/options-pages.php:1882
776
  msgid "Show caption"
777
  msgstr ""
778
 
779
+ #: core/options-pages.php:1883
780
  msgid "Add text caption for media item thumbnails"
781
  msgstr ""
782
 
783
+ #: core/options-pages.php:1889
784
  msgid "Caption type"
785
  msgstr ""
786
 
787
+ #: core/options-pages.php:1893
788
  msgid "Filename"
789
  msgstr ""
790
 
791
+ #: core/options-pages.php:1894
792
  msgid "Caption"
793
  msgstr ""
794
 
795
+ #: core/options-pages.php:1907
796
  msgid "Media Shortcodes"
797
  msgstr ""
798
 
799
+ #: core/options-pages.php:1916 core/options-pages.php:1919
800
  msgid "Enhanced media shortcodes"
801
  msgstr ""
802
 
803
+ #: core/options-pages.php:1920
804
  msgid ""
805
  "Enhance WordPress media shortcodes to make them understand media taxonomies, "
806
  "upload date, and media items number limit"
807
  msgstr ""
808
 
809
+ #: core/options-pages.php:1921
810
  msgid "Gallery example:"
811
  msgstr ""
812
 
813
+ #: core/options-pages.php:1922
814
  msgid "Audio playlist example:"
815
  msgstr ""
816
 
817
+ #: core/options-pages.php:1923
818
  msgid "Video playlist example:"
819
  msgstr ""
820
 
821
+ #: core/options-pages.php:1927 core/options-pages.php:2211
822
  msgid "Warning"
823
  msgstr ""
824
 
825
+ #: core/options-pages.php:1930
826
  #, php-format
827
  msgid ""
828
  "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
829
  "\">Learn more</a>."
830
  msgstr ""
831
 
832
+ #: core/options-pages.php:1935
833
  #, php-format
834
  msgid ""
835
  "Please check out your gallery front-end and back-end functionality once this "
837
  "%s."
838
  msgstr ""
839
 
840
+ #: core/options-pages.php:2016 core/options-pages.php:2163
841
  msgid "Assign following taxonomies to Media Library:"
842
  msgstr ""
843
 
844
+ #: core/options-pages.php:2035 core/options-pages.php:2101
845
+ #: core/options-pages.php:2185
846
  msgid "Assign Taxonomy"
847
  msgstr ""
848
 
849
+ #: core/options-pages.php:2036 core/options-pages.php:2186
850
  msgid "Edit Taxonomy"
851
  msgstr ""
852
 
853
+ #: core/options-pages.php:2040 core/options-pages.php:2103
854
  msgid "Delete Taxonomy"
855
  msgstr ""
856
 
857
+ #: core/options-pages.php:2045 core/options-pages.php:2108
858
  msgid "Labels"
859
  msgstr ""
860
 
861
+ #: core/options-pages.php:2047 core/options-pages.php:2110
862
  msgid "Singular"
863
  msgstr ""
864
 
865
+ #: core/options-pages.php:2048 core/options-pages.php:2111
866
  msgid "Plural"
867
  msgstr ""
868
 
869
+ #: core/options-pages.php:2049 core/options-pages.php:2112
870
  msgid "Menu Name"
871
  msgstr ""
872
 
873
+ #: core/options-pages.php:2062 core/options-pages.php:2085
874
+ #: core/options-pages.php:2125 core/options-pages.php:2189
875
  msgid "Settings"
876
  msgstr ""
877
 
878
+ #: core/options-pages.php:2064 core/options-pages.php:2127
879
  msgid "Taxonomy Name"
880
  msgstr ""
881
 
882
+ #: core/options-pages.php:2065 core/options-pages.php:2128
883
  msgid "Hierarchical"
884
  msgstr ""
885
 
886
+ #: core/options-pages.php:2066 core/options-pages.php:2129
887
  msgid "Column for List View"
888
  msgstr ""
889
 
890
+ #: core/options-pages.php:2067 core/options-pages.php:2087
891
+ #: core/options-pages.php:2130 core/options-pages.php:2191
892
  msgid "Filter for List View"
893
  msgstr ""
894
 
895
+ #: core/options-pages.php:2068 core/options-pages.php:2088
896
+ #: core/options-pages.php:2131 core/options-pages.php:2192
897
  msgid "Filter for Grid View / Media Popup"
898
  msgstr ""
899
 
900
+ #: core/options-pages.php:2069 core/options-pages.php:2089
901
+ #: core/options-pages.php:2132 core/options-pages.php:2193
902
  msgid "Edit in Media Popup"
903
  msgstr ""
904
 
905
+ #: core/options-pages.php:2070 core/options-pages.php:2133
906
  msgid "Show in Nav Menu"
907
  msgstr ""
908
 
909
+ #: core/options-pages.php:2071 core/options-pages.php:2134
910
  msgid "Remember Terms Order (sort)"
911
  msgstr ""
912
 
913
+ #: core/options-pages.php:2072 core/options-pages.php:2135
914
  msgid "Show in REST"
915
  msgstr ""
916
 
917
+ #: core/options-pages.php:2073 core/options-pages.php:2136
918
  msgid "Rewrite Slug"
919
  msgstr ""
920
 
921
+ #: core/options-pages.php:2074 core/options-pages.php:2137
922
  msgid "Slug with Front"
923
  msgstr ""
924
 
925
+ #: core/options-pages.php:2149
926
  msgid "Add New Taxonomy"
927
  msgstr ""
928
 
929
+ #: core/options-pages.php:2159
930
  msgid "Non-Media Taxonomies"
931
  msgstr ""
932
 
933
+ #: core/options-pages.php:2204
934
+ #, php-format
935
+ msgid "Auto-assign media items to parent %s %s on upload"
936
+ msgstr ""
937
+
938
+ #: core/options-pages.php:2214
939
+ #, php-format
940
+ msgid ""
941
+ "As a result of clicking \"Synchronize Now\" all media items attached to a %s "
942
+ "will be assigned to %s of their parent %s. Currently assigned %s will not be "
943
+ "saved. Media items that are not attached to any %s will not be affected."
944
+ msgstr ""
945
+
946
+ #: core/options-pages.php:2246
947
  msgid "Options"
948
  msgstr ""
949
 
950
+ #: core/options-pages.php:2256 core/options-pages.php:2259
951
  msgid "Taxonomy archive pages"
952
  msgstr ""
953
 
954
+ #: core/options-pages.php:2260
955
  msgid "Turn on media taxonomy archive pages on the front-end"
956
  msgstr ""
957
 
958
+ #: core/options-pages.php:2261
959
  msgid ""
960
  "Re-save your permalink settings after this option change to make it work."
961
  msgstr ""
962
 
963
+ #: core/options-pages.php:2267 core/options-pages.php:2270
964
  msgid "Assign all like hierarchical"
965
  msgstr ""
966
 
967
+ #: core/options-pages.php:2271
968
  msgid ""
969
  "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
970
  msgstr ""
971
 
972
+ #: core/options-pages.php:2291
973
+ msgid "Bulk Edit"
974
+ msgstr ""
975
+
976
+ #: core/options-pages.php:2299
977
+ msgid "Save Changes button"
978
+ msgstr ""
979
+
980
+ #: core/options-pages.php:2302
981
+ msgid "Turn off 'Save Changes' button"
982
+ msgstr ""
983
+
984
+ #: core/options-pages.php:2303
985
+ msgid ""
986
+ "Bulk changes are being made not immediately - by clicking 'Save Changes' "
987
+ "button"
988
+ msgstr ""
989
+
990
+ #: core/options-pages.php:2304
991
+ msgid ""
992
+ "Try this if you edit a lot of media items at once and feel uncomfortable "
993
+ "with editing saved on the fly."
994
+ msgstr ""
995
+
996
+ #: core/options-pages.php:2364
997
  msgid "Add New MIME Type"
998
  msgstr ""
999
 
1000
+ #: core/options-pages.php:2384 core/options-pages.php:2438
1001
  msgid "Extension"
1002
  msgstr ""
1003
 
1004
+ #: core/options-pages.php:2385 core/options-pages.php:2439
1005
  msgid "MIME Type"
1006
  msgstr ""
1007
 
1008
+ #: core/options-pages.php:2386 core/options-pages.php:2440
1009
  msgid "Singular Label"
1010
  msgstr ""
1011
 
1012
+ #: core/options-pages.php:2387 core/options-pages.php:2441
1013
  msgid "Plural Label"
1014
  msgstr ""
1015
 
1016
+ #: core/options-pages.php:2388 core/options-pages.php:2417
1017
+ #: core/options-pages.php:2430 core/options-pages.php:2442
1018
  msgid "Add Filter"
1019
  msgstr ""
1020
 
1021
+ #: core/options-pages.php:2389 core/options-pages.php:2418
1022
+ #: core/options-pages.php:2431 core/options-pages.php:2443
1023
  msgid "Allow Upload"
1024
  msgstr ""
1025
 
1026
+ #: core/options-pages.php:2419 core/options-pages.php:2432
1027
  msgid "Delete MIME Type"
1028
  msgstr ""
1029
 
1030
+ #: core/options-pages.php:2508
1031
  msgid "Changelog"
1032
  msgstr ""
1033
 
1034
+ #: core/options-pages.php:2509
1035
  msgid "What's new in"
1036
  msgstr ""
1037
 
1038
+ #: core/options-pages.php:2509
1039
  msgid "version"
1040
  msgstr ""
1041
 
1042
+ #: core/options-pages.php:2514
1043
  msgid "More features under the hood"
1044
  msgstr ""
1045
 
1046
+ #: core/options-pages.php:2519
1047
  msgid "Support"
1048
  msgstr ""
1049
 
1050
+ #: core/options-pages.php:2520
1051
  msgid "Feel free to ask for help on"
1052
  msgstr ""
1053
 
1054
+ #: core/options-pages.php:2520
1055
  msgid "Support is free for both versions of the plugin."
1056
  msgstr ""
1057
 
1058
+ #: core/options-pages.php:2522
1059
  msgid "Plugin rating"
1060
  msgstr ""
1061
 
1062
+ #: core/options-pages.php:2523
1063
  msgid "Please"
1064
  msgstr ""
1065
 
1066
+ #: core/options-pages.php:2523
1067
  msgid "vote for the plugin"
1068
  msgstr ""
1069
 
1070
+ #: core/options-pages.php:2523
1071
  msgid "Thanks!"
1072
  msgstr ""
1073
 
1074
+ #: core/options-pages.php:2525
1075
  msgid "Other plugins you may find useful"
1076
  msgstr ""
1077
 
1078
+ #: core/options-pages.php:2567
1079
+ msgid "Utilities"
1080
  msgstr ""
1081
 
1082
+ #: core/options-pages.php:2594
1083
+ msgid "Go PRO "
1084
+ msgstr ""
1085
+
1086
+ #: core/options-pages.php:2597
1087
  msgid "Rate us:"
1088
  msgstr ""
1089
 
1090
+ #: core/options-pages.php:2597
1091
  msgid "Poor"
1092
  msgstr ""
1093
 
1094
+ #: core/options-pages.php:2597
1095
  msgid "Works"
1096
  msgstr ""
1097
 
1098
+ #: core/options-pages.php:2597
1099
  msgid "Good"
1100
  msgstr ""
1101
 
1102
+ #: core/options-pages.php:2597
1103
  msgid "Great"
1104
  msgstr ""
1105
 
1106
+ #: core/options-pages.php:2597
1107
  msgid "Fantastic!"
1108
  msgstr ""
1109
 
1124
  msgstr ""
1125
 
1126
  #: core/taxonomies.php:374 core/taxonomies.php:380
1127
+ #: enhanced-media-library.php:562
1128
  msgid "Filter by"
1129
  msgstr ""
1130
 
1131
+ #: core/taxonomies.php:382 enhanced-media-library.php:564
1132
+ msgid "Not in"
1133
  msgstr ""
1134
 
1135
  #: core/taxonomies.php:721
1136
  msgid "Add some"
1137
  msgstr ""
1138
 
1139
+ #: enhanced-media-library.php:360 enhanced-media-library.php:561
1140
  msgid "All Uncategorized"
1141
  msgstr ""
1142
 
1143
+ #: enhanced-media-library.php:361 enhanced-media-library.php:565
1144
  msgid "Reset All Filters"
1145
  msgstr ""
1146
 
1147
+ #: enhanced-media-library.php:392
1148
  msgid "More Details"
1149
  msgstr ""
1150
 
1151
+ #: enhanced-media-library.php:393
1152
  msgid "Less Details"
1153
  msgstr ""
1154
 
1155
+ #: enhanced-media-library.php:566
1156
  msgid "author"
1157
  msgstr ""
1158
 
1159
+ #: enhanced-media-library.php:567
1160
  msgid "authors"
1161
  msgstr ""
1162
 
1163
+ #: enhanced-media-library.php:570
1164
  msgid "Saved."
1165
  msgstr ""
1166
 
1167
+ #: enhanced-media-library.php:571
1168
  msgid "Something went wrong."
1169
  msgstr ""
1170
 
1171
+ #: enhanced-media-library.php:574
1172
  msgid "Select All"
1173
  msgstr ""
1174
 
1175
+ #: enhanced-media-library.php:575
1176
  msgid "Deselect "
1177
  msgstr ""
1178
 
1179
+ #: enhanced-media-library.php:604
1180
  msgid "Uploaded to post #"
1181
  msgstr ""
1182
 
1183
+ #: enhanced-media-library.php:605
1184
  msgid "Based On"
1185
  msgstr ""
1186
 
1187
+ #: enhanced-media-library.php:674 enhanced-media-library.php:676
1188
  msgid "Media Categories"
1189
  msgstr ""
1190
 
1191
+ #: enhanced-media-library.php:675
1192
  msgid "Media Category"
1193
  msgstr ""
1194
 
1195
+ #: enhanced-media-library.php:677
1196
  msgid "All Media Categories"
1197
  msgstr ""
1198
 
1199
+ #: enhanced-media-library.php:678
1200
  msgid "Edit Media Category"
1201
  msgstr ""
1202
 
1203
+ #: enhanced-media-library.php:679
1204
  msgid "View Media Category"
1205
  msgstr ""
1206
 
1207
+ #: enhanced-media-library.php:680
1208
  msgid "Update Media Category"
1209
  msgstr ""
1210
 
1211
+ #: enhanced-media-library.php:681
1212
  msgid "Add New Media Category"
1213
  msgstr ""
1214
 
1215
+ #: enhanced-media-library.php:682
1216
  msgid "New Media Category Name"
1217
  msgstr ""
1218
 
1219
+ #: enhanced-media-library.php:683
1220
  msgid "Parent Media Category"
1221
  msgstr ""
1222
 
1223
+ #: enhanced-media-library.php:684
1224
  msgid "Parent Media Category:"
1225
  msgstr ""
1226
 
1227
+ #: enhanced-media-library.php:685
1228
  msgid "Search Media Categories"
1229
  msgstr ""
1230
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Enhanced Media Library ===
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: 5
5
- Tested up to: 5.5
6
  Requires PHP: 5.6
7
- Stable tag: 2.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,40 +15,57 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
15
  The plugin will be handy for those who need to manage a lot of media files.
16
 
17
 
18
- ### Media Taxonomies ###
19
 
20
- #### Categories and Tags for media items ####
 
 
21
 
22
- **Various media categories.** With the plugin installed you immediately obtain Media Categories for categorizing and filtering media items in WordPress admin. This feature alone will save you hours of searching through a media library with even as few as 100 images.
23
 
24
- Whether you have a lot of images that need to be organized into complex structures or simply dislike the name of the default taxonomy – Media Categories – you can create and (un)assign to the media library as many taxonomies as you wish without writing a single line of code.
25
 
26
- You can also assign to the media library built-in WordPress taxonomies – Categories and Tags – as well as any other taxonomy created by third-party plugin, theme, or hand-coded – with only plugin's UI.
 
 
27
 
28
- **For both new and existing media items.** Categorize both new and existing media items. You can assign a category to a media item during the upload process, in the media library (preferably in the Grid Mode), in post/page editor media popup ("Add Media" button). If you need to manage a lot of media items at once, there is the PRO version of the plugin that allows to do it in bulk.
29
 
30
- **Filter media items in WP admin.** Every media library screen is enhanced with the plugin's filters to search and sort your media files. With flexible plugin's options you can adjust what filters you will see in Grid and List modes of the media library and in post/page editor media popups, and what taxonomies you would like to edit when inserting media to posts/pages. The plugin works with custom post types as well. The options can also help you to force plugin's filters for third-party plugins or themes, manage media taxonomies archive pages, etc.
31
 
32
- **Order options.** With two options "Order media items by" (Date, Title, and Custom Order) and "Sort order" (Ascending and Descending) you can control media items order for all screens of the media library in WP admin. "Custom Order" allows to re-order media items within a category with drag and drop. This order will be used, in particular, for the gallery based on this category. "Natural sort order" option available for "Title" sort order will apply the human-friendly sort order to Media Library and Galleries. See `Settings > Media > Media Library`.
 
 
33
 
34
 
35
- ### Filter-Based Shortcodes ###
36
 
37
- #### Image Gallery and Audio / Video Playlist ####
38
 
39
- **Fully compatible with WordPress native shortcodes.** Media items categorizing can be useful for the front-end as well. To insert media galleries or audio / video playlists based on media categories you have to use the familiar format like `[gallery media_category="5" category="2" limit="10" monthnum="12" year="2015" orderby="title" order="DESC"]` or `[playlist media_category="5" category="2" limit="10" monthnum="12" year="2015" orderby="title" order="DESC"]`. The PRO version of the plugin allows to manage gallery or playlist shortcode without "coding" at all. Just choose the settings with the plugin's UI in the familiar edit popup and see your gallery / playlis live immediately in the post/page editor.
 
 
 
40
 
41
- To turn on the feature set "Enhanced media shortcodes" option on `Settings > Media > Media Library > Media Shortcodes`. Please be advised that conflicts with other gallery plugins or themes are possible. Check your front-end and back-end gallery / playlist functionality after activating the feature.
42
 
 
43
 
44
- ### MIME Types ###
45
 
46
- #### Media File Types ####
47
 
48
- Another feature of the plugin is the MIME Types control. You can add new MIME types, delete existing ones, and point what file types are allowed for uploading. Initially, the plugin shows up the WordPress default MIME Type settings and creates the backup of them. The column "Add Filter" allows to add a MIME Type to plugin's filters so that you will be able to filter your media items not only by categories but also by the file type. You can set any label you wish to see in a filter with columns "Singular Label" and "Plural Label".
49
 
 
50
 
51
- ### Export / Import Plugin Settings ###
 
 
 
 
 
 
 
 
 
 
52
 
53
  If you need to move your media library to another website you should export and import WordPress content with WordPress built-in export/import. But to make the Enhanced Media Library work on the new site with the same settings you are provided with the export/import feature.
54
 
@@ -57,22 +74,31 @@ If you need to move your media library to another website you should export and
57
 
58
  Network activate the plugin and choose which options will be available to your admins. In the PRO version, the license key should be activated once for the whole network.
59
 
 
 
 
 
 
 
60
 
61
- ### Easy to Use and WordPress Native Look and Feel ###
 
 
 
62
 
63
- We spend hours to make plugins features work as though they were native WordPress functionality. If you are a developer and looking for a solution totally compatible with WordPress core and, at the same point, really easy to deal with for your non-geeky customers, give it a try, you won't be disappointed.
64
 
65
 
66
  ### Support ###
67
 
68
- Support is free for both versions of the plugin. "PRO"-users do not have priority. We do out best to respond in 24 hours if not sooner.
69
 
70
 
71
  ### Available Languages ###
72
 
73
  You can see the list of available translations and their progress on [wpUXsolutions.com](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library). Many thanks to all involved!
74
 
75
- Assistance with translating is highly appreciated! If you'd like to be a translation editor or to suggest translations for your language please feel free to contribute to translation. All changes made are included to every new release of the plugin.
76
 
77
 
78
  ### Compatible with the Plugins: ###
@@ -99,31 +125,16 @@ Please let us know if you find any issue with the plugins from the list above or
99
 
100
  ### Incompatibility ###
101
 
102
- Please notice that you use Enhanced Media Library with other plugins which add media categories, media folders, or manage MIME Types at your own risk. We cannot guarantee their compatibility because of the different approach to the same functionality. We do not recommend using other media library (folder) plugin at the same time with Enhanced Media Library. Please choose the one you prefer.
103
-
104
-
105
- ### Enhanced Media Library PRO ###
106
-
107
- Additional comfort and even more convenient way to organize WordPress media library:
108
-
109
- * Categorize media items in bulk
110
- * Assign media items to parent post categories automatically
111
- * Enhance `[gallery]` and `[playlist]` shortcodes with just WordPress UI, no "coding"
112
- * Search media items by category name in Media Library
113
- * Customize default search according to your needs: include or exclude Titles, Captions, Descriptions, Authors, Media Taxonomies
114
-
115
- [More on wpUXsolutions.com](https://www.wpuxsolutions.com/documents/enhanced-media-library/where-to-start#section2)
116
 
117
 
118
  ### Useful Links ###
119
 
120
- * [Where to Start?](https://wpuxsolutions.com/documents/enhanced-media-library/where-to-start)
121
- * [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library) (Is being updated after v2.6 and v2.7 changes)
 
122
  * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs)
123
  * [Contribute to Translation](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library)
124
- * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts)
125
-
126
-
127
 
128
 
129
  ## Installation ##
@@ -137,13 +148,11 @@ Additional comfort and even more convenient way to organize WordPress media libr
137
  4. Enjoy Enhanced Media Library!
138
 
139
 
140
-
141
  ## Frequently Asked Questions ==
142
 
143
  > [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs/) | [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library/)
144
 
145
 
146
-
147
  ## Screenshots ##
148
 
149
  1. Plugin Settings: WordPress General Media Settings
@@ -169,9 +178,22 @@ Additional comfort and even more convenient way to organize WordPress media libr
169
  11. Filter-based image gallery
170
 
171
 
172
-
173
  ## Changelog ##
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  ### 2.8 ###
176
  *Release Date - October 11, 2020*
177
 
@@ -183,7 +205,7 @@ Additional comfort and even more convenient way to organize WordPress media libr
183
  = Improvements =
184
  * ACF attachment custom fields - better compatibility
185
  * Enfold Theme: added `[av_masonry_gallery]` shortcode compatibility with media category parameters like `media_category='10'`, `tag='21'`
186
- * PRO only: The bulk Save Changes button is disabled by default since v2.8 for new plugin installations. All changes are being made on the fly. If you prefer the button, you can enable it at Settings > Media Taxonomies > Bulk Edit > Save Changes button.
187
 
188
  = Apology =
189
  My sincere apologies to everyone hurt by the absence of EML updates last year. The plugin is not abandoned, its development will continue.
@@ -204,7 +226,7 @@ My sincere apologies to everyone hurt by the absence of EML updates last year. T
204
  * `[playlist]` broken shortcode bug fixed
205
  * "Image not uploading", "Can't add featured image", "Media library right sidebar gone" and possibly some other situations common bug fixed.
206
  * PRO only: hidden filters bug fixed
207
- * A few minor bug fixed, some minor code improvements made
208
 
209
 
210
  ### 2.7 ###
@@ -257,14 +279,14 @@ My sincere apologies to everyone hurt by the absence of EML updates last year. T
257
  * Plugin's menu improved
258
  * Plugin options are re-grouped to be more consistent
259
  * PRO only: Updating mechanism improved
260
- * Media taxonomies creation mechanism revised to allow non ASCII characters like Chinese in taxonomy names
261
  * Taxonomy archive pages disabled by default since this version (for new installations)
262
  * A lot of small security improvements
263
 
264
  = Bugfixes =
265
  * Custom order for a taxonomy archive page fixed
266
  * Position of WordPress core messages in the Grid Mode fixed
267
- * A lot of small bug fixed
268
 
269
 
270
  ### Previous releases... ###
1
  === Enhanced Media Library ===
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: 5.0
5
+ Tested up to: 5.5.1
6
  Requires PHP: 5.6
7
+ Stable tag: 2.8.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
  The plugin will be handy for those who need to manage a lot of media files.
16
 
17
 
18
+ ### Categorize by Anything! ###
19
 
20
+ * Unlimited **categories & tags** for media items
21
+ * Unlimited **custom taxonomies:** create in a few clicks
22
+ * Unlimited **third-party taxonomies:** assign to the media library
23
 
 
24
 
25
+ ### Configurable Filters ###
26
 
27
+ * **Show / hide** data, author, taxonomy filters
28
+ * **Per taxonomy** filters
29
+ * **Configurable outcome** of the filtering: include / exclude child categories
30
 
 
31
 
32
+ ### Enhanced Media Library ###
33
 
34
+ * **Show captions:** title, filename, or caption field for each media item
35
+ * **Bulk selection:** no special mode anymore, faster editing
36
+ * **Drag'n'Drop re-order** right in the media library
37
 
38
 
39
+ ### Dynamic Galleries / Playlists ###
40
 
41
+ Additional parameters for the [gallery] and [playlist] shortcodes:
42
 
43
+ * `media_category` or any other taxonomy
44
+ * `monthnum`
45
+ * `year`
46
+ * `limit` of media items to show
47
 
 
48
 
49
+ ### MIME Types Management ###
50
 
51
+ Add or remove file types, allow or disallow uploading. The plugin incorporates a file type into media filters if you wish.
52
 
 
53
 
54
+ ### Feels Native to WordPress ###
55
 
56
+ We spent hours to make Enhanced Media Library operates as though it were native WordPress functionality. All plugin features are incorporated into WordPress UI seamlessly.
57
 
58
+
59
+ ### Developer-Friendly ###
60
+
61
+ * **Core hooks just work** for media taxonomies and media items
62
+ * **All taxonomies supported:** custom and code-registered
63
+ * **REST API supported** out of the box
64
+ * **No custom tables** in the database
65
+ * **Deactivation makes no harm to data:** all media items and taxonomies remain after deactivation
66
+
67
+
68
+ ### Export / Import / Restore Plugin Settings ###
69
 
70
  If you need to move your media library to another website you should export and import WordPress content with WordPress built-in export/import. But to make the Enhanced Media Library work on the new site with the same settings you are provided with the export/import feature.
71
 
74
 
75
  Network activate the plugin and choose which options will be available to your admins. In the PRO version, the license key should be activated once for the whole network.
76
 
77
+ [More about the basic version on wpUXsolutions.com](https://www.wpuxsolutions.com/plugins/enhanced-media-library)
78
+
79
+
80
+ ### Enhanced Media Library PRO ###
81
+
82
+ Additional comfort and even more convenient way to organize WordPress media library:
83
 
84
+ * **Unlimited & Super-Fast** Bulk Edit
85
+ * **User-friendly** dynamic galleries / playlists: all options set with dropdowns and checkboxes, no "coding"
86
+ * **Advanced search:** filter media items by just typing the first letters of its name in the search field
87
+ * **Auto-Categorize** for post media items
88
 
89
+ [More about the premium version on wpUXsolutions.com](https://www.wpuxsolutions.com/plugins/enhanced-media-library-pro)
90
 
91
 
92
  ### Support ###
93
 
94
+ Support is free for both versions of the plugin. "PRO"-users do not have priority. We do our best to respond in 24 hours if not sooner.
95
 
96
 
97
  ### Available Languages ###
98
 
99
  You can see the list of available translations and their progress on [wpUXsolutions.com](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library). Many thanks to all involved!
100
 
101
+ Assistance with translating is highly appreciated! If you'd like to be a translation editor or to suggest translations for your language please feel free to contribute to translation. All changes made are included in every new release of the plugin.
102
 
103
 
104
  ### Compatible with the Plugins: ###
125
 
126
  ### Incompatibility ###
127
 
128
+ Please notice that you use Enhanced Media Library with other plugins that add media categories, media folders, or manage MIME Types at your own risk. We cannot guarantee their compatibility because of the different approaches to the same functionality. We do not recommend using other media library (folder) plugin at the same time with the Enhanced Media Library. Please choose the one you prefer.
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
 
131
  ### Useful Links ###
132
 
133
+ * [Basic version: more details](https://wpuxsolutions.com/plugins/enhanced-media-library)
134
+ * [PRO version: more details](https://wpuxsolutions.com/plugins/enhanced-media-library-pro)
135
+ * [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library)
136
  * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs)
137
  * [Contribute to Translation](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library)
 
 
 
138
 
139
 
140
  ## Installation ##
148
  4. Enjoy Enhanced Media Library!
149
 
150
 
 
151
  ## Frequently Asked Questions ==
152
 
153
  > [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs/) | [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library/)
154
 
155
 
 
156
  ## Screenshots ##
157
 
158
  1. Plugin Settings: WordPress General Media Settings
178
  11. Filter-based image gallery
179
 
180
 
 
181
  ## Changelog ##
182
 
183
+ ### 2.8.1 ###
184
+ *Release Date - October 29, 2020*
185
+
186
+ = Bugfixes =
187
+ * Enfold theme compatibility error fixed
188
+ * The bug with ACF's panel expand fixed
189
+ * Minor bugs fixed
190
+
191
+ = Improvements =
192
+ * Allowed MIME Types upload improved
193
+ * Scroll to a selected media item improved (Media Library Grid Mode)
194
+ * PRO only: Faster Select All
195
+
196
+
197
  ### 2.8 ###
198
  *Release Date - October 11, 2020*
199
 
205
  = Improvements =
206
  * ACF attachment custom fields - better compatibility
207
  * Enfold Theme: added `[av_masonry_gallery]` shortcode compatibility with media category parameters like `media_category='10'`, `tag='21'`
208
+ * PRO only: The bulk Save Changes button is disabled by default since v2.8 for new plugin installations. All changes are being made on the fly. If you prefer the button, you can enable it at Settings > Media Taxonomies > Bulk Edit > Save Changes button.
209
 
210
  = Apology =
211
  My sincere apologies to everyone hurt by the absence of EML updates last year. The plugin is not abandoned, its development will continue.
226
  * `[playlist]` broken shortcode bug fixed
227
  * "Image not uploading", "Can't add featured image", "Media library right sidebar gone" and possibly some other situations common bug fixed.
228
  * PRO only: hidden filters bug fixed
229
+ * A few minor bugs fixed, some minor code improvements made
230
 
231
 
232
  ### 2.7 ###
279
  * Plugin's menu improved
280
  * Plugin options are re-grouped to be more consistent
281
  * PRO only: Updating mechanism improved
282
+ * Media taxonomies creation mechanism revised to allow non-ASCII characters like Chinese in taxonomy names
283
  * Taxonomy archive pages disabled by default since this version (for new installations)
284
  * A lot of small security improvements
285
 
286
  = Bugfixes =
287
  * Custom order for a taxonomy archive page fixed
288
  * Position of WordPress core messages in the Grid Mode fixed
289
+ * A lot of small bugs fixed
290
 
291
 
292
  ### Previous releases... ###