Enhanced Media Library - Version 2.0.4.7

Version Description

Release Date - August 11, 2015

Download this release

Release Info

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

Code changes from version 2.0.4.6 to 2.0.4.7

core/{eml-upload.php → eml-upload-4.1.php} RENAMED
File without changes
core/eml-upload-4.2.php ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * EML custom upload.php
5
+ *
6
+ * Based on wp-admin/upload.php (4.2.2)
7
+ *
8
+ * Uses custom media table class WPUXSS_EML_Media_List_Table
9
+ *
10
+ * @since 2.0.4
11
+ * @created 21/02/15
12
+ */
13
+
14
+ // EML customization here
15
+ require_once( ABSPATH . 'wp-admin/admin.php' );
16
+ require_once( ABSPATH . 'wp-includes/pluggable.php' );
17
+ // EML customization end
18
+
19
+ if ( !current_user_can('upload_files') )
20
+ wp_die( __( 'You do not have permission to upload files.' ) );
21
+
22
+ $mode = get_user_option( 'media_library_mode', get_current_user_id() ) ? get_user_option( 'media_library_mode', get_current_user_id() ) : 'grid';
23
+ $modes = array( 'grid', 'list' );
24
+
25
+ if ( isset( $_GET['mode'] ) && in_array( $_GET['mode'], $modes ) ) {
26
+ $mode = $_GET['mode'];
27
+ update_user_option( get_current_user_id(), 'media_library_mode', $mode );
28
+ }
29
+
30
+ if ( 'grid' === $mode ) {
31
+ wp_enqueue_media();
32
+ wp_enqueue_script( 'media-grid' );
33
+ wp_enqueue_script( 'media' );
34
+
35
+ $q = $_GET;
36
+ // let JS handle this
37
+ unset( $q['s'] );
38
+ $vars = wp_edit_attachments_query_vars( $q );
39
+ $ignore = array( 'mode', 'post_type', 'post_status', 'posts_per_page' );
40
+ foreach ( $vars as $key => $value ) {
41
+ if ( ! $value || in_array( $key, $ignore ) ) {
42
+ unset( $vars[ $key ] );
43
+ }
44
+ }
45
+
46
+ wp_localize_script( 'media-grid', '_wpMediaGridSettings', array(
47
+ 'adminUrl' => parse_url( self_admin_url(), PHP_URL_PATH ),
48
+ 'queryVars' => (object) $vars
49
+ ) );
50
+
51
+ get_current_screen()->add_help_tab( array(
52
+ 'id' => 'overview',
53
+ 'title' => __( 'Overview' ),
54
+ 'content' =>
55
+ '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first.' ) . '</p>' .
56
+ '<p>' . __( 'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.' ) . '</p>' .
57
+ '<p>' . __( 'To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media.' ) . '</p>'
58
+ ) );
59
+
60
+ get_current_screen()->add_help_tab( array(
61
+ 'id' => 'attachment-details',
62
+ 'title' => __( 'Attachment Details' ),
63
+ 'content' =>
64
+ '<p>' . __( 'Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved.' ) . '</p>' .
65
+ '<p>' . __( 'Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly.' ) . '</p>' .
66
+ '<p>' . __( 'You can also delete individual items and access the extended edit screen from the details dialog.' ) . '</p>'
67
+ ) );
68
+
69
+ get_current_screen()->set_help_sidebar(
70
+ '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
71
+ '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .
72
+ '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
73
+ );
74
+
75
+ $title = __('Media Library');
76
+ $parent_file = 'upload.php';
77
+
78
+ require_once( ABSPATH . 'wp-admin/admin-header.php' );
79
+ ?>
80
+ <div class="wrap" id="wp-media-grid" data-search="<?php _admin_search_query() ?>">
81
+ <h2>
82
+ <?php
83
+ echo esc_html( $title );
84
+ if ( current_user_can( 'upload_files' ) ) { ?>
85
+ <a href="media-new.php" class="add-new-h2"><?php echo esc_html_x( 'Add New', 'file' ); ?></a><?php
86
+ }
87
+ ?>
88
+ </h2>
89
+ <div class="error hide-if-js">
90
+ <p><?php _e( 'The grid view for the Media Library requires JavaScript. <a href="upload.php?mode=list">Switch to the list view</a>.' ); ?></p>
91
+ </div>
92
+ </div>
93
+ <?php
94
+ include( ABSPATH . 'wp-admin/admin-footer.php' );
95
+ exit;
96
+ }
97
+
98
+ // EML customization here
99
+ if ( isset( $GLOBALS['hook_suffix'] ) )
100
+ $args['screen'] = get_current_screen();
101
+ else
102
+ $args['screen'] = null;
103
+
104
+ $wp_list_table = new WPUXSS_EML_Media_List_Table( $args );
105
+ // EML customization end
106
+
107
+ $pagenum = $wp_list_table->get_pagenum();
108
+
109
+ // Handle bulk actions
110
+ $doaction = $wp_list_table->current_action();
111
+
112
+ if ( $doaction ) {
113
+ check_admin_referer('bulk-media');
114
+
115
+ if ( 'delete_all' == $doaction ) {
116
+ $post_ids = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_type='attachment' AND post_status = 'trash'" );
117
+ $doaction = 'delete';
118
+ } elseif ( isset( $_REQUEST['media'] ) ) {
119
+ $post_ids = $_REQUEST['media'];
120
+ } elseif ( isset( $_REQUEST['ids'] ) ) {
121
+ $post_ids = explode( ',', $_REQUEST['ids'] );
122
+ }
123
+
124
+ $location = 'upload.php';
125
+ if ( $referer = wp_get_referer() ) {
126
+ if ( false !== strpos( $referer, 'upload.php' ) )
127
+ $location = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'message', 'ids', 'posted' ), $referer );
128
+ }
129
+
130
+ switch ( $doaction ) {
131
+ case 'detach':
132
+ wp_media_attach_action( $_REQUEST['parent_post_id'], 'detach' );
133
+ break;
134
+
135
+ case 'attach':
136
+ wp_media_attach_action( $_REQUEST['found_post_id'] );
137
+ break;
138
+
139
+ case 'trash':
140
+ if ( !isset( $post_ids ) )
141
+ break;
142
+ foreach ( (array) $post_ids as $post_id ) {
143
+ if ( !current_user_can( 'delete_post', $post_id ) )
144
+ wp_die( __( 'You are not allowed to move this post to the trash.' ) );
145
+
146
+ if ( !wp_trash_post( $post_id ) )
147
+ wp_die( __( 'Error in moving to trash.' ) );
148
+ }
149
+ $location = add_query_arg( array( 'trashed' => count( $post_ids ), 'ids' => join( ',', $post_ids ) ), $location );
150
+ break;
151
+ case 'untrash':
152
+ if ( !isset( $post_ids ) )
153
+ break;
154
+ foreach ( (array) $post_ids as $post_id ) {
155
+ if ( !current_user_can( 'delete_post', $post_id ) )
156
+ wp_die( __( 'You are not allowed to move this post out of the trash.' ) );
157
+
158
+ if ( !wp_untrash_post( $post_id ) )
159
+ wp_die( __( 'Error in restoring from trash.' ) );
160
+ }
161
+ $location = add_query_arg( 'untrashed', count( $post_ids ), $location );
162
+ break;
163
+ case 'delete':
164
+ if ( !isset( $post_ids ) )
165
+ break;
166
+ foreach ( (array) $post_ids as $post_id_del ) {
167
+ if ( !current_user_can( 'delete_post', $post_id_del ) )
168
+ wp_die( __( 'You are not allowed to delete this post.' ) );
169
+
170
+ if ( !wp_delete_attachment( $post_id_del ) )
171
+ wp_die( __( 'Error in deleting.' ) );
172
+ }
173
+ $location = add_query_arg( 'deleted', count( $post_ids ), $location );
174
+ break;
175
+ }
176
+
177
+ wp_redirect( $location );
178
+ exit;
179
+ } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
180
+ wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
181
+ exit;
182
+ }
183
+
184
+ $wp_list_table->prepare_items();
185
+
186
+ $title = __('Media Library');
187
+ $parent_file = 'upload.php';
188
+
189
+ wp_enqueue_script( 'media' );
190
+
191
+ add_screen_option( 'per_page' );
192
+
193
+ get_current_screen()->add_help_tab( array(
194
+ 'id' => 'overview',
195
+ 'title' => __('Overview'),
196
+ 'content' =>
197
+ '<p>' . __( 'All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>' .
198
+ '<p>' . __( 'You can narrow the list by file type/status using the text link filters at the top of the screen. You also can refine the list by date using the dropdown menu above the media table.' ) . '</p>' .
199
+ '<p>' . __( 'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.' ) . '</p>'
200
+ ) );
201
+ get_current_screen()->add_help_tab( array(
202
+ 'id' => 'actions-links',
203
+ 'title' => __('Available Actions'),
204
+ 'content' =>
205
+ '<p>' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file&#8217;s name displays a simple screen to edit that individual file&#8217;s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '</p>'
206
+ ) );
207
+ get_current_screen()->add_help_tab( array(
208
+ 'id' => 'attaching-files',
209
+ 'title' => __('Attaching Files'),
210
+ 'content' =>
211
+ '<p>' . __( 'If a media file has not been attached to any post, you will see that in the Attached To column, and can click on Attach File to launch a small popup that will allow you to search for a post and attach the file.' ) . '</p>'
212
+ ) );
213
+
214
+ get_current_screen()->set_help_sidebar(
215
+ '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
216
+ '<p>' . __( '<a href="https://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .
217
+ '<p>' . __( '<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
218
+ );
219
+
220
+ require_once( ABSPATH . 'wp-admin/admin-header.php' );
221
+ ?>
222
+
223
+ <div class="wrap">
224
+ <h2>
225
+ <?php
226
+ echo esc_html( $title );
227
+ if ( current_user_can( 'upload_files' ) ) { ?>
228
+ <a href="media-new.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'file'); ?></a><?php
229
+ }
230
+ if ( ! empty( $_REQUEST['s'] ) )
231
+ printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', get_search_query() ); ?>
232
+ </h2>
233
+
234
+ <?php
235
+ $message = '';
236
+ if ( ! empty( $_GET['posted'] ) ) {
237
+ $message = __( 'Media attachment updated.' );
238
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);
239
+ }
240
+
241
+ if ( ! empty( $_GET['attached'] ) && $attached = absint( $_GET['attached'] ) ) {
242
+ $message = sprintf( _n( 'Reattached %d attachment.', 'Reattached %d attachments.', $attached ), $attached );
243
+ $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] );
244
+ }
245
+
246
+ if ( ! empty( $_GET['detach'] ) && $detached = absint( $_GET['detach'] ) ) {
247
+ $message = sprintf( _n( 'Detached %d attachment.', 'Detached %d attachments.', $detached ), $detached );
248
+ $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'detach', 'attached' ), $_SERVER['REQUEST_URI'] );
249
+ }
250
+
251
+ if ( ! empty( $_GET['deleted'] ) && $deleted = absint( $_GET['deleted'] ) ) {
252
+ if ( 1 == $deleted ) {
253
+ $message = __( 'Media attachment permanently deleted.' );
254
+ } else {
255
+ $message = _n( '%d media attachment permanently deleted.', '%d media attachments permanently deleted.', $deleted );
256
+ }
257
+ $message = sprintf( $message, number_format_i18n( $deleted ) );
258
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
259
+ }
260
+
261
+ if ( ! empty( $_GET['trashed'] ) && $trashed = absint( $_GET['trashed'] ) ) {
262
+ if ( 1 == $trashed ) {
263
+ $message = __( 'Media attachment moved to the trash.' );
264
+ } else {
265
+ $message = _n( '%d media attachment moved to the trash.', '%d media attachments moved to the trash.', $trashed );
266
+ }
267
+ $message = sprintf( $message, number_format_i18n( $trashed ) );
268
+ $message .= ' <a href="' . esc_url( wp_nonce_url( 'upload.php?doaction=undo&action=untrash&ids='.(isset($_GET['ids']) ? $_GET['ids'] : ''), "bulk-media" ) ) . '">' . __('Undo') . '</a>';
269
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('trashed'), $_SERVER['REQUEST_URI']);
270
+ }
271
+
272
+ if ( ! empty( $_GET['untrashed'] ) && $untrashed = absint( $_GET['untrashed'] ) ) {
273
+ if ( 1 == $untrashed ) {
274
+ $message = __( 'Media attachment restored from the trash.' );
275
+ } else {
276
+ $message = _n( '%d media attachment restored from the trash.', '%d media attachments restored from the trash.', $untrashed );
277
+ }
278
+ $message = sprintf( $message, number_format_i18n( $untrashed ) );
279
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('untrashed'), $_SERVER['REQUEST_URI']);
280
+ }
281
+
282
+ $messages[1] = __('Media attachment updated.');
283
+ $messages[2] = __('Media permanently deleted.');
284
+ $messages[3] = __('Error saving media attachment.');
285
+ $messages[4] = __('Media moved to the trash.') . ' <a href="' . esc_url( wp_nonce_url( 'upload.php?doaction=undo&action=untrash&ids='.(isset($_GET['ids']) ? $_GET['ids'] : ''), "bulk-media" ) ) . '">' . __('Undo') . '</a>';
286
+ $messages[5] = __('Media restored from the trash.');
287
+
288
+ if ( ! empty( $_GET['message'] ) && isset( $messages[ $_GET['message'] ] ) ) {
289
+ $message = $messages[ $_GET['message'] ];
290
+ $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']);
291
+ }
292
+
293
+ if ( !empty($message) ) { ?>
294
+ <div id="message" class="updated notice is-dismissible"><p><?php echo $message; ?></p></div>
295
+ <?php } ?>
296
+
297
+ <form id="posts-filter" method="get">
298
+
299
+ <?php $wp_list_table->views(); ?>
300
+
301
+ <?php $wp_list_table->display(); ?>
302
+
303
+ <div id="ajax-response"></div>
304
+ <?php find_posts_div(); ?>
305
+ </form>
306
+ </div>
307
+
308
+ <?php
309
+ include( ABSPATH . 'wp-admin/admin-footer.php' );
core/taxonomies.php CHANGED
@@ -425,17 +425,23 @@ if( ! function_exists( 'wpuxss_eml_dropdown_cats' ) ) {
425
  * @created 21/02/15
426
  */
427
 
428
- add_action( 'load-upload.php', 'wpuxss_eml_custom_media' );
429
 
430
  if( ! function_exists( 'wpuxss_eml_custom_media' ) ) {
431
 
432
  function wpuxss_eml_custom_media() {
433
 
434
- global $wpdb;
435
-
 
 
436
  require_once( ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php' );
437
  require_once( 'class-eml-media-list-table.php' );
438
- require_once( 'eml-upload.php' );
 
 
 
 
439
 
440
  exit();
441
  }
@@ -651,6 +657,7 @@ if( ! function_exists( 'wpuxss_eml_attachment_fields_to_edit' ) ) {
651
 
652
 
653
 
 
654
  /**
655
  * Walker_Media_Taxonomy_Checklist
656
  *
425
  * @created 21/02/15
426
  */
427
 
428
+ add_action( 'load-upload.php', 'wpuxss_eml_custom_media', 999 );
429
 
430
  if( ! function_exists( 'wpuxss_eml_custom_media' ) ) {
431
 
432
  function wpuxss_eml_custom_media() {
433
 
434
+ global $wpdb,
435
+ $wp_version;
436
+
437
+
438
  require_once( ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php' );
439
  require_once( 'class-eml-media-list-table.php' );
440
+
441
+ if ( version_compare( $wp_version, '4.2', '<' ) )
442
+ require_once( 'eml-upload-4.1.php' );
443
+ else
444
+ require_once( 'eml-upload-4.2.php' );
445
 
446
  exit();
447
  }
657
 
658
 
659
 
660
+
661
  /**
662
  * Walker_Media_Taxonomy_Checklist
663
  *
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.0.4.6
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: eml
@@ -23,7 +23,27 @@ global $wp_version,
23
 
24
 
25
 
26
- $wpuxss_eml_version = '2.0.4.6';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
 
29
 
@@ -60,7 +80,7 @@ if ( ! function_exists( 'wpuxss_eml_on_init' ) ) {
60
  $wpuxss_eml_dir = plugin_dir_url( __FILE__ );
61
  $wpuxss_eml_path = plugin_dir_path( __FILE__ );
62
 
63
- load_textdomain( 'eml', $wpuxss_eml_path . 'languages/eml-' . get_locale() . '.mo' );
64
  wpuxss_eml_on_activation_update();
65
 
66
 
@@ -315,6 +335,14 @@ if ( ! function_exists( 'wpuxss_eml_enqueue_media' ) ) {
315
  $wpuxss_eml_version,
316
  true
317
  );
 
 
 
 
 
 
 
 
318
 
319
 
320
  wp_localize_script(
@@ -444,7 +472,7 @@ if ( ! function_exists( 'wpuxss_eml_on_activation_update' ) ) {
444
  'show_admin_column' => 1,
445
  'admin_filter' => 1, // list view filter
446
  'media_uploader_filter' => 1, // grid view filter
447
- 'media_popup_taxonomy_edit' => 0,
448
 
449
  'show_in_nav_menus' => 1,
450
  'sort' => 0,
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.0.4.7
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: eml
23
 
24
 
25
 
26
+ $wpuxss_eml_version = '2.0.4.7';
27
+
28
+
29
+
30
+
31
+ /**
32
+ * Load plugin text domain
33
+ *
34
+ * @since 2.0.4.7
35
+ * @created 18/07/15
36
+ */
37
+
38
+ add_action( 'plugins_loaded', 'wpuxss_eml_on_plugins_loaded' );
39
+
40
+ if ( ! function_exists( 'wpuxss_eml_on_plugins_loaded' ) ) {
41
+
42
+ function wpuxss_eml_on_plugins_loaded() {
43
+
44
+ load_plugin_textdomain( 'eml', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
45
+ }
46
+ }
47
 
48
 
49
 
80
  $wpuxss_eml_dir = plugin_dir_url( __FILE__ );
81
  $wpuxss_eml_path = plugin_dir_path( __FILE__ );
82
 
83
+
84
  wpuxss_eml_on_activation_update();
85
 
86
 
335
  $wpuxss_eml_version,
336
  true
337
  );
338
+
339
+ wp_enqueue_script(
340
+ 'wpuxss-eml-tags-box-script',
341
+ '/wp-admin/js/tags-box.js',
342
+ array(),
343
+ $wpuxss_eml_version,
344
+ true
345
+ );
346
 
347
 
348
  wp_localize_script(
472
  'show_admin_column' => 1,
473
  'admin_filter' => 1, // list view filter
474
  'media_uploader_filter' => 1, // grid view filter
475
+ 'media_popup_taxonomy_edit' => 1,
476
 
477
  'show_in_nav_menus' => 1,
478
  'sort' => 0,
js/eml-media-views.js CHANGED
@@ -75,12 +75,13 @@ window.eml = { l10n: {} };
75
  * media.view.AttachmentCompat
76
  *
77
  */
78
- var newEvents = { 'click input' : 'preSave' };
79
- _.extend( newEvents, media.view.AttachmentCompat.prototype.events );
 
80
 
81
- _.extend( media.view.AttachmentCompat.prototype, {
82
-
83
- events: newEvents,
84
 
85
  preSave: function() {
86
 
@@ -222,7 +223,7 @@ window.eml = { l10n: {} };
222
 
223
 
224
 
225
-
226
  /**
227
  * media.view.AttachmentFilters.Taxonomy
228
  */
75
  * media.view.AttachmentCompat
76
  *
77
  */
78
+ var newEvents = {
79
+ 'click input' : 'preSave'
80
+ };
81
 
82
+ _.extend( media.view.AttachmentCompat.prototype.events, newEvents );
83
+
84
+ _.extend( media.view.AttachmentCompat.prototype, {
85
 
86
  preSave: function() {
87
 
223
 
224
 
225
 
226
+
227
  /**
228
  * media.view.AttachmentFilters.Taxonomy
229
  */
languages/eml-de_DE.mo ADDED
Binary file
languages/eml-de_DE.po ADDED
@@ -0,0 +1,809 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Enhanced Media Library PRO
2
+ # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library PRO\n"
6
+ "POT-Creation-Date: 2015-03-04 00:13+0200\n"
7
+ "Last-Translator: Markus Kottländer <m.kottlaender@kabelmail.de>\n"
8
+ "Language-Team: Markus Kottländer\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.5.4\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
19
+ "PO-Revision-Date: \n"
20
+ "Language: DE\n"
21
+ "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+
24
+ #: core/class-eml-media-list-table.php:39
25
+ #, php-format
26
+ msgctxt "uploaded files"
27
+ msgid "All (%s)"
28
+ msgid_plural "All (%s)"
29
+ msgstr[0] "Alle (%s)"
30
+ msgstr[1] "Alle (%s)"
31
+
32
+ #: core/class-eml-media-list-table.php:50
33
+ #, php-format
34
+ msgctxt "detached files"
35
+ msgid "Unattached (%s)"
36
+ msgid_plural "Unattached (%s)"
37
+ msgstr[0] "Nirgendwo verwendet (%s)"
38
+ msgstr[1] "Nirgendwo verwendet (%s)"
39
+
40
+ #: core/class-eml-media-list-table.php:52 enhanced-media-library.php:377
41
+ msgid "All Uncategorized"
42
+ msgstr "Alle unkategorisierten"
43
+
44
+ #: core/class-eml-media-list-table.php:55
45
+ #, php-format
46
+ msgctxt "uploaded files"
47
+ msgid "Trash (%s)"
48
+ msgid_plural "Trash (%s)"
49
+ msgstr[0] "Papierkorb (%s)"
50
+ msgstr[1] "Papierkorb (%s)"
51
+
52
+ #: core/class-eml-media-list-table.php:75
53
+ msgid "Filter"
54
+ msgstr "Filter"
55
+
56
+ #: core/class-eml-media-list-table.php:77 enhanced-media-library.php:381
57
+ msgid "Reset All Filters"
58
+ msgstr "Alle Filter zurücksetzen"
59
+
60
+ #: core/class-eml-media-list-table.php:81
61
+ msgid "Empty Trash"
62
+ msgstr "Papierkorb leeren"
63
+
64
+ #: core/eml-upload.php:19
65
+ msgid "You do not have permission to upload files."
66
+ msgstr "Du hast nicht die Berechtigung um Dateien hochzuladen."
67
+
68
+ #: core/eml-upload.php:39 core/eml-upload.php:212
69
+ msgid "Overview"
70
+ msgstr "Übersicht"
71
+
72
+ #: core/eml-upload.php:41
73
+ msgid ""
74
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
75
+ "the most recent uploads listed first."
76
+ msgstr ""
77
+
78
+ #: core/eml-upload.php:42 core/eml-upload.php:216
79
+ msgid ""
80
+ "You can view your media in a simple visual grid or a list with columns. "
81
+ "Switch between these views using the icons to the left above the media."
82
+ msgstr ""
83
+
84
+ #: core/eml-upload.php:43
85
+ msgid ""
86
+ "To delete media items, click the Bulk Select button at the top of the "
87
+ "screen. Select any items you wish to delete, then click the Delete Selected "
88
+ "button. Clicking the Cancel Selection button takes you back to viewing your "
89
+ "media."
90
+ msgstr ""
91
+
92
+ #: core/eml-upload.php:48
93
+ msgid "Attachment Details"
94
+ msgstr ""
95
+
96
+ #: core/eml-upload.php:50
97
+ msgid ""
98
+ "Clicking an item will display an Attachment Details dialog, which allows you "
99
+ "to preview media and make quick edits. Any changes you make to the "
100
+ "attachment details will be automatically saved."
101
+ msgstr ""
102
+
103
+ #: core/eml-upload.php:51
104
+ msgid ""
105
+ "Use the arrow buttons at the top of the dialog, or the left and right arrow "
106
+ "keys on your keyboard, to navigate between media items quickly."
107
+ msgstr ""
108
+
109
+ #: core/eml-upload.php:52
110
+ msgid ""
111
+ "You can also delete individual items and access the extended edit screen "
112
+ "from the details dialog."
113
+ msgstr ""
114
+
115
+ #: core/eml-upload.php:56 core/eml-upload.php:232
116
+ msgid "For more information:"
117
+ msgstr ""
118
+
119
+ #: core/eml-upload.php:57 core/eml-upload.php:233
120
+ msgid ""
121
+ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank"
122
+ "\">Documentation on Media Library</a>"
123
+ msgstr ""
124
+
125
+ #: core/eml-upload.php:58 core/eml-upload.php:234
126
+ msgid ""
127
+ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support Forums</"
128
+ "a>"
129
+ msgstr ""
130
+
131
+ #: core/eml-upload.php:61 core/eml-upload.php:203
132
+ msgid "Media Library"
133
+ msgstr "Mediathek"
134
+
135
+ #: core/eml-upload.php:71 core/eml-upload.php:245
136
+ msgctxt "file"
137
+ msgid "Add New"
138
+ msgstr "Datei hinzufügen"
139
+
140
+ #: core/eml-upload.php:76
141
+ msgid ""
142
+ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
143
+ "php?mode=list\">Switch to the list view</a>."
144
+ msgstr ""
145
+
146
+ #: core/eml-upload.php:124
147
+ msgid "You are not allowed to edit this post."
148
+ msgstr ""
149
+
150
+ #: core/eml-upload.php:161
151
+ msgid "You are not allowed to move this post to the trash."
152
+ msgstr ""
153
+
154
+ #: core/eml-upload.php:164
155
+ msgid "Error in moving to trash."
156
+ msgstr ""
157
+
158
+ #: core/eml-upload.php:173
159
+ msgid "You are not allowed to move this post out of the trash."
160
+ msgstr ""
161
+
162
+ #: core/eml-upload.php:176
163
+ msgid "Error in restoring from trash."
164
+ msgstr ""
165
+
166
+ #: core/eml-upload.php:185
167
+ msgid "You are not allowed to delete this post."
168
+ msgstr ""
169
+
170
+ #: core/eml-upload.php:188
171
+ msgid "Error in deleting."
172
+ msgstr ""
173
+
174
+ #: core/eml-upload.php:208
175
+ msgctxt "items per page (screen options)"
176
+ msgid "Media items"
177
+ msgstr ""
178
+
179
+ #: core/eml-upload.php:214
180
+ msgid ""
181
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
182
+ "the most recent uploads listed first. You can use the Screen Options tab to "
183
+ "customize the display of this screen."
184
+ msgstr ""
185
+
186
+ #: core/eml-upload.php:215
187
+ msgid ""
188
+ "You can narrow the list by file type/status using the text link filters at "
189
+ "the top of the screen. You also can refine the list by date using the "
190
+ "dropdown menu above the media table."
191
+ msgstr ""
192
+
193
+ #: core/eml-upload.php:220
194
+ msgid "Available Actions"
195
+ msgstr "Verfügbare Aktionen"
196
+
197
+ #: core/eml-upload.php:222
198
+ msgid ""
199
+ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
200
+ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
201
+ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
202
+ "Permanently will delete the file from the media library (as well as from any "
203
+ "posts to which it is currently attached). View will take you to the display "
204
+ "page for that file."
205
+ msgstr ""
206
+
207
+ #: core/eml-upload.php:226
208
+ msgid "Attaching Files"
209
+ msgstr "Dateien anhängen"
210
+
211
+ #: core/eml-upload.php:228
212
+ msgid ""
213
+ "If a media file has not been attached to any post, you will see that in the "
214
+ "Attached To column, and can click on Attach File to launch a small popup "
215
+ "that will allow you to search for a post and attach the file."
216
+ msgstr ""
217
+
218
+ #: core/eml-upload.php:248
219
+ #, php-format
220
+ msgid "Search results for &#8220;%s&#8221;"
221
+ msgstr ""
222
+
223
+ #: core/eml-upload.php:254 core/eml-upload.php:279
224
+ msgid "Media attachment updated."
225
+ msgstr ""
226
+
227
+ #: core/eml-upload.php:259
228
+ #, php-format
229
+ msgid "Reattached %d attachment."
230
+ msgid_plural "Reattached %d attachments."
231
+ msgstr[0] ""
232
+ msgstr[1] ""
233
+
234
+ #: core/eml-upload.php:264
235
+ #, php-format
236
+ msgid "Media attachment permanently deleted."
237
+ msgid_plural "%d media attachments permanently deleted."
238
+ msgstr[0] ""
239
+ msgstr[1] ""
240
+
241
+ #: core/eml-upload.php:269
242
+ #, php-format
243
+ msgid "Media attachment moved to the trash."
244
+ msgid_plural "%d media attachments moved to the trash."
245
+ msgstr[0] ""
246
+ msgstr[1] ""
247
+
248
+ #: core/eml-upload.php:270 core/eml-upload.php:282
249
+ msgid "Undo"
250
+ msgstr "Rückgängig"
251
+
252
+ #: core/eml-upload.php:275
253
+ #, php-format
254
+ msgid "Media attachment restored from the trash."
255
+ msgid_plural "%d media attachments restored from the trash."
256
+ msgstr[0] ""
257
+ msgstr[1] ""
258
+
259
+ #: core/eml-upload.php:280
260
+ msgid "Media permanently deleted."
261
+ msgstr ""
262
+
263
+ #: core/eml-upload.php:281
264
+ msgid "Error saving media attachment."
265
+ msgstr ""
266
+
267
+ #: core/eml-upload.php:282
268
+ msgid "Media moved to the trash."
269
+ msgstr ""
270
+
271
+ #: core/eml-upload.php:283
272
+ msgid "Media restored from the trash."
273
+ msgstr ""
274
+
275
+ #: core/mime-types.php:107
276
+ #, php-format
277
+ msgid " <span class=\"count\">(%s)</span>"
278
+ msgid_plural " <span class=\"count\">(%s)</span>"
279
+ msgstr[0] " <span class=\"count\">(%s)</span>"
280
+ msgstr[1] " <span class=\"count\">(%s)</span>"
281
+
282
+ #: core/options-pages.php:67 core/options-pages.php:68
283
+ #: core/options-pages.php:77
284
+ msgid "Media Settings"
285
+ msgstr "Medien-Einstellungen"
286
+
287
+ #: core/options-pages.php:78 core/options-pages.php:254
288
+ #: core/options-pages.php:276 core/options-pages.php:322
289
+ #: core/options-pages.php:386
290
+ msgid "Settings"
291
+ msgstr "Einstellungen"
292
+
293
+ #: core/options-pages.php:85 core/options-pages.php:86
294
+ #: core/options-pages.php:188
295
+ msgid "Taxonomies"
296
+ msgstr "Taxonomien"
297
+
298
+ #: core/options-pages.php:94 core/options-pages.php:95
299
+ #: core/options-pages.php:510
300
+ msgid "MIME Types"
301
+ msgstr "MIME Types"
302
+
303
+ #: core/options-pages.php:132 core/options-pages.php:229
304
+ #: core/options-pages.php:243 core/options-pages.php:311
305
+ #: core/options-pages.php:383
306
+ msgid "Edit"
307
+ msgstr "Bearbeiten"
308
+
309
+ #: core/options-pages.php:133 pro/enhanced-media-library-pro.php:166
310
+ msgid "Close"
311
+ msgstr "Schließen"
312
+
313
+ #: core/options-pages.php:134 core/options-pages.php:244
314
+ #: core/options-pages.php:312
315
+ msgid "View"
316
+ msgstr "Anzeigen"
317
+
318
+ #: core/options-pages.php:135 core/options-pages.php:245
319
+ #: core/options-pages.php:313
320
+ msgid "Update"
321
+ msgstr "Aktualisieren"
322
+
323
+ #: core/options-pages.php:136 core/options-pages.php:246
324
+ #: core/options-pages.php:314
325
+ msgid "Add New"
326
+ msgstr ""
327
+
328
+ #: core/options-pages.php:137 core/options-pages.php:247
329
+ #: core/options-pages.php:315
330
+ msgid "New"
331
+ msgstr ""
332
+
333
+ #: core/options-pages.php:138
334
+ msgid "Name"
335
+ msgstr ""
336
+
337
+ #: core/options-pages.php:139 core/options-pages.php:248
338
+ #: core/options-pages.php:316
339
+ msgid "Parent"
340
+ msgstr ""
341
+
342
+ #: core/options-pages.php:140 core/options-pages.php:242
343
+ #: core/options-pages.php:310
344
+ msgid "All"
345
+ msgstr "Alle"
346
+
347
+ #: core/options-pages.php:141 core/options-pages.php:249
348
+ #: core/options-pages.php:317
349
+ msgid "Search"
350
+ msgstr "Durchsuchen"
351
+
352
+ #: core/options-pages.php:143
353
+ msgid ""
354
+ "Taxonomy will be deleted permanently! Your media files will remain intacted, "
355
+ "but all the connections with this taxonomy and its terms will be lost."
356
+ msgstr ""
357
+
358
+ #: core/options-pages.php:144
359
+ msgid "There is already a taxonomy with the same name. Please chose other one."
360
+ msgstr ""
361
+
362
+ #: core/options-pages.php:145 core/options-pages.php:298
363
+ msgid "New Taxonomy"
364
+ msgstr ""
365
+
366
+ #: core/options-pages.php:146
367
+ msgid "Please choose Singular and Plural names for all your new taxomonies."
368
+ msgstr ""
369
+
370
+ #: core/options-pages.php:147
371
+ msgid "Please choose Singilar name for all your new taxomonies."
372
+ msgstr ""
373
+
374
+ #: core/options-pages.php:148
375
+ msgid "Please choose Plural Name for all your new taxomonies."
376
+ msgstr ""
377
+
378
+ #: core/options-pages.php:150
379
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
380
+ msgstr ""
381
+
382
+ #: core/options-pages.php:151
383
+ msgid "Please fill into all fields."
384
+ msgstr ""
385
+
386
+ #: core/options-pages.php:152
387
+ msgid "Duplicate extensions or MIME types. Please chose other one."
388
+ msgstr ""
389
+
390
+ #: core/options-pages.php:180 core/options-pages.php:501
391
+ #: pro/core/options-pages.php:170
392
+ msgid "You do not have sufficient permissions to access this page."
393
+ msgstr ""
394
+
395
+ #: core/options-pages.php:204
396
+ msgid "Media Taxonomies"
397
+ msgstr "Media Taxonomien"
398
+
399
+ #: core/options-pages.php:208 core/options-pages.php:360
400
+ msgid "Assign following taxonomies to Media Library:"
401
+ msgstr "Folgende Taxonomien der Mediathek zuweisen:"
402
+
403
+ #: core/options-pages.php:226 core/options-pages.php:296
404
+ #: core/options-pages.php:376
405
+ msgid "Assign Taxonomy"
406
+ msgstr "Taxonomie zuweisen"
407
+
408
+ #: core/options-pages.php:229 core/options-pages.php:383
409
+ msgid "Edit Taxonomy"
410
+ msgstr "Taxonomie bearbeiten"
411
+
412
+ #: core/options-pages.php:232 core/options-pages.php:300
413
+ msgid "Delete Taxonomy"
414
+ msgstr "Taxonomie löschen"
415
+
416
+ #: core/options-pages.php:237 core/options-pages.php:305
417
+ msgid "Labels"
418
+ msgstr ""
419
+
420
+ #: core/options-pages.php:239 core/options-pages.php:307
421
+ msgid "Singular"
422
+ msgstr ""
423
+
424
+ #: core/options-pages.php:240 core/options-pages.php:308
425
+ msgid "Plural"
426
+ msgstr ""
427
+
428
+ #: core/options-pages.php:241 core/options-pages.php:309
429
+ msgid "Menu Name"
430
+ msgstr "Menü Name"
431
+
432
+ #: core/options-pages.php:256 core/options-pages.php:324
433
+ msgid "Taxonomy Name"
434
+ msgstr "Taxonomie Name"
435
+
436
+ #: core/options-pages.php:257 core/options-pages.php:325
437
+ msgid "Hierarchical"
438
+ msgstr "Hierarchisch"
439
+
440
+ #: core/options-pages.php:258 core/options-pages.php:326
441
+ msgid "Column in List View"
442
+ msgstr ""
443
+
444
+ #: core/options-pages.php:259 core/options-pages.php:278
445
+ #: core/options-pages.php:327 core/options-pages.php:388
446
+ msgid "Filter in List View"
447
+ msgstr ""
448
+
449
+ #: core/options-pages.php:260 core/options-pages.php:279
450
+ #: core/options-pages.php:328 core/options-pages.php:389
451
+ msgid "Filter in Grid View / Media Popup"
452
+ msgstr ""
453
+
454
+ #: core/options-pages.php:261 core/options-pages.php:280
455
+ #: core/options-pages.php:329 core/options-pages.php:390
456
+ msgid "Edit in Media Popup"
457
+ msgstr ""
458
+
459
+ #: core/options-pages.php:262 core/options-pages.php:330
460
+ msgid "Show in Nav Menu"
461
+ msgstr ""
462
+
463
+ #: core/options-pages.php:263 core/options-pages.php:331
464
+ msgid "Remember terms order (sort)"
465
+ msgstr ""
466
+
467
+ #: core/options-pages.php:264 core/options-pages.php:332
468
+ msgid "Rewrite Slug"
469
+ msgstr ""
470
+
471
+ #: core/options-pages.php:265 core/options-pages.php:333
472
+ msgid "Slug with Front"
473
+ msgstr ""
474
+
475
+ #: core/options-pages.php:345
476
+ msgid "Add New Taxonomy"
477
+ msgstr "Neue Taxonomie hinzufügen"
478
+
479
+ #: core/options-pages.php:356
480
+ msgid "Non-Media Taxonomies"
481
+ msgstr "Nicht-Medien Taxonimien"
482
+
483
+ #: core/options-pages.php:415
484
+ msgid "Options"
485
+ msgstr "Optionen"
486
+
487
+ #: core/options-pages.php:425 core/options-pages.php:428
488
+ msgid "Taxonomy archive pages"
489
+ msgstr "Taxonomie Archiv Seiten"
490
+
491
+ #: core/options-pages.php:429
492
+ msgid "Turn on media taxonomy archive pages on the front-end"
493
+ msgstr "Medien Taxonomie Archive auf der Website aktivieren"
494
+
495
+ #: core/options-pages.php:430
496
+ msgid ""
497
+ "Re-save your permalink settings after this option change to make it work."
498
+ msgstr ""
499
+ "Speichere deine Permalink-Einstellungen erneut ab, damit diese Einstellung "
500
+ "greift."
501
+
502
+ #: core/options-pages.php:436
503
+ msgid "Assign all like hierarchical"
504
+ msgstr "Alle als hierarchisch zuweisen"
505
+
506
+ #: core/options-pages.php:439 core/options-pages.php:440
507
+ msgid ""
508
+ "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
509
+ msgstr ""
510
+ "Zeige nicht-hierarchische Taxonomien in der Rasterdarstellung und in Medien-"
511
+ "Popups als hierarchisch an"
512
+
513
+ #: core/options-pages.php:446 core/options-pages.php:449
514
+ msgid "Force filters"
515
+ msgstr "Filter erzwingen"
516
+
517
+ #: core/options-pages.php:450
518
+ msgid "Show media filters for ANY Media Popup."
519
+ msgstr "Zeige Medien-Filter in JEDEM Medien-Popup"
520
+
521
+ #: core/options-pages.php:451
522
+ msgid ""
523
+ "May be useful for those who need forcing filters for third-party plugins or "
524
+ "themes."
525
+ msgstr ""
526
+ "Nützlich für jene, die die Filter auch in Plugins oder Themes von "
527
+ "Drittanbietern benötigen."
528
+
529
+ #: core/options-pages.php:511
530
+ msgid "Add New MIME Type"
531
+ msgstr "Neuen MIME Type hinzufügen"
532
+
533
+ #: core/options-pages.php:529 core/options-pages.php:582
534
+ msgid "Extension"
535
+ msgstr "Dateiendung"
536
+
537
+ #: core/options-pages.php:530 core/options-pages.php:583
538
+ msgid "MIME Type"
539
+ msgstr "MIME Type"
540
+
541
+ #: core/options-pages.php:531 core/options-pages.php:584
542
+ msgid "Singular Label"
543
+ msgstr "Singular Beschriftung"
544
+
545
+ #: core/options-pages.php:532 core/options-pages.php:585
546
+ msgid "Plural Label"
547
+ msgstr "Plural Beschriftung"
548
+
549
+ #: core/options-pages.php:533 core/options-pages.php:561
550
+ #: core/options-pages.php:574 core/options-pages.php:586
551
+ msgid "Add Filter"
552
+ msgstr "Filter hinzufügen"
553
+
554
+ #: core/options-pages.php:534 core/options-pages.php:562
555
+ #: core/options-pages.php:575 core/options-pages.php:587
556
+ msgid "Allow Upload"
557
+ msgstr "Upload erlauben"
558
+
559
+ #: core/options-pages.php:576
560
+ msgid "Delete MIME Type"
561
+ msgstr "MIME Type löschen"
562
+
563
+ #: core/options-pages.php:593
564
+ msgid "Restore default MIME Types"
565
+ msgstr "Standard MIME Types wiederherstellen"
566
+
567
+ #: core/taxonomies.php:321 core/taxonomies.php:327
568
+ #: enhanced-media-library.php:378
569
+ msgid "Filter by "
570
+ msgstr "Filtern nach "
571
+
572
+ #: core/taxonomies.php:328 enhanced-media-library.php:379
573
+ msgid "All "
574
+ msgstr "Alle "
575
+
576
+ #: core/taxonomies.php:329 enhanced-media-library.php:380
577
+ msgid "Not in "
578
+ msgstr "Nicht in"
579
+
580
+ #: enhanced-media-library.php:47
581
+ msgid ""
582
+ "Please deactivate and <strong>remove</strong> the old version prior to the "
583
+ "<strong>Enhanced Media Library PRO</strong> activation. All your data will "
584
+ "remain intact."
585
+ msgstr ""
586
+ "Bitte deaktiviere und <strong>entferne</strong> die alte Version bevor du "
587
+ "<strong>Enhanced Media Library PRO</strong> aktivierst. Alle Daten bleiben "
588
+ "erhalten."
589
+
590
+ #: enhanced-media-library.php:47
591
+ msgid "Return to Plugins"
592
+ msgstr "zu Plugins zurückkehren"
593
+
594
+ #: pro/core/bulk-edit.php:75
595
+ msgid "Remove"
596
+ msgstr "Entfernen"
597
+
598
+ #: pro/core/bulk-edit.php:79
599
+ msgid "Deselect"
600
+ msgstr "Auswahl entfernen"
601
+
602
+ #: pro/core/bulk-edit.php:86
603
+ msgid "Caption this image&hellip;"
604
+ msgstr "Beschrifte dieses Bild&hellip;"
605
+
606
+ #: pro/core/bulk-edit.php:90
607
+ msgid "Describe this video&hellip;"
608
+ msgstr "Beschreibe diese Video-Datei&hellip;"
609
+
610
+ #: pro/core/bulk-edit.php:92
611
+ msgid "Describe this audio file&hellip;"
612
+ msgstr "Beschreibe diese Audio-Datei&hellip;"
613
+
614
+ #: pro/core/bulk-edit.php:94
615
+ msgid "Describe this media file&hellip;"
616
+ msgstr "Beschreibe diese Medien-Datei&hellip;"
617
+
618
+ #: pro/core/bulk-edit.php:103
619
+ msgid "Attachments Details"
620
+ msgstr "Mediendetails"
621
+
622
+ #: pro/core/bulk-edit.php:157
623
+ msgid "Select All"
624
+ msgstr "Alle auswählen"
625
+
626
+ #: pro/core/bulk-edit.php:159
627
+ msgid "Edit Selection"
628
+ msgstr "Auswahl bearbeiten"
629
+
630
+ #: pro/core/bulk-edit.php:162
631
+ msgid "Deselect All"
632
+ msgstr "Auswahl aller entfernen"
633
+
634
+ #: pro/core/bulk-edit.php:166
635
+ msgid "Delete Selected"
636
+ msgstr "Ausgewählte löschen"
637
+
638
+ #: pro/core/options-pages.php:100 pro/core/options-pages.php:101
639
+ msgid "EML PRO Updates"
640
+ msgstr "EML PRO Updates"
641
+
642
+ #: pro/core/options-pages.php:126 pro/enhanced-media-library-pro.php:168
643
+ msgid "Bulk Edit"
644
+ msgstr "Massenbearbeitung"
645
+
646
+ #: pro/core/options-pages.php:134 pro/core/options-pages.php:137
647
+ msgid "Turn off 'Save Changes' button"
648
+ msgstr "'Änderungen speichern'-Button deaktivieren"
649
+
650
+ #: pro/core/options-pages.php:138
651
+ msgid "Save changes on the fly"
652
+ msgstr "Änderungen sofort speichern"
653
+
654
+ #: pro/core/options-pages.php:139
655
+ msgid ""
656
+ "Any click on a taxonomy checkbox during media files bulk edition will lead "
657
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
658
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
659
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
660
+ "files / taxonomies with this option turned on."
661
+ msgstr ""
662
+ "Jeder Klick auf eine Taxonomie-Checkbox während der Massenbearbeitung von "
663
+ "Medien führt zum <strong style=\"color:red\">sofortigen Speichern</strong> "
664
+ "der Daten. Bitte sei vorsichtig! Es ist wesentlich wahrscheinlicher <strong "
665
+ "style=\"color:red\">ausversehen falsche Zuweisungen</strong> von vielen "
666
+ "Medien/Taxonomien durchzuführen, wenn diese Option aktiviert ist."
667
+
668
+ #: pro/core/options-pages.php:140
669
+ msgid ""
670
+ "Strongly NOT recommended option if you work with more than hundred of files "
671
+ "at a time."
672
+ msgstr ""
673
+ "NICHT empfohlene Option, wenn du mit mehr als hundert Dateien auf einmal "
674
+ "arbeitest."
675
+
676
+ #: pro/core/options-pages.php:175
677
+ msgid "Updates"
678
+ msgstr "Updates"
679
+
680
+ #: pro/core/options-pages.php:190
681
+ msgid "Enhanced Media Library PRO License"
682
+ msgstr "Enhanced Media Library PRO Lizenz"
683
+
684
+ #: pro/core/options-pages.php:215
685
+ msgid ""
686
+ "To unlock updates, please enter your license key below. You can see your "
687
+ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
688
+ "Account</a>. If you don&#8217;t have a licence key, your are welcome to <a "
689
+ "href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
690
+ msgstr ""
691
+ "Um Updates freizuschalten, gebe bitte deinen Lizenzschlüssel unten ein. Du "
692
+ "kannst deinen Lizenzschlüssel in <a href=\"http://www.wpuxsolutions.com/"
693
+ "account/\">deinem Account</a> einsehen. Wenn du noch keinen Lizenzschlüssel "
694
+ "hast, kannst du <a href=\"http://www.wpuxsolutions.com/pricing/\">hier</a> "
695
+ "einen kaufen."
696
+
697
+ #: pro/core/options-pages.php:219
698
+ msgid "License Key"
699
+ msgstr "Lizenzschlüssel"
700
+
701
+ #: pro/core/options-pages.php:226
702
+ msgid "Activate License"
703
+ msgstr "Linzenz aktivieren"
704
+
705
+ #: pro/core/options-pages.php:243
706
+ msgid "Your license is active!"
707
+ msgstr "Deine Lizenz ist aktiv!"
708
+
709
+ #: pro/core/update.php:109 pro/core/update.php:114 pro/core/update.php:118
710
+ msgid ""
711
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
712
+ "this server&#8217;s configuration. If you continue to have problems, please "
713
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
714
+ msgstr ""
715
+ "Ein unerwarteter Fehler ist aufgetreten. Der Fehler kann bei WordPress.org "
716
+ "oder der Konfiguration dieses Servers liegen. Wenn du weiterhin Probleme "
717
+ "hast, kannst du im <a href=\"https://wordpress.org/support/\">Support Forum</"
718
+ "a> um Hilfe bitten."
719
+
720
+ #: pro/core/update.php:109
721
+ msgid ""
722
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
723
+ "contact your server administrator.)"
724
+ msgstr ""
725
+ "(WordPress konnte keine sichere Verbindung zu WordPress.org aufbauen. Bitte "
726
+ "kontaktiere deinen Serveradministrator.)"
727
+
728
+ #: pro/core/update.php:184
729
+ #, php-format
730
+ msgid ""
731
+ "To unlock updates, please enter your license key on the <a href=\"%s"
732
+ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
733
+ "Account</a>. If you don&#8217;t have a licence key, your are welcome to <a "
734
+ "href=\"%s\">purchase it</a>."
735
+ msgstr ""
736
+ "Um Updates freizuschalten gebe bitte deinen Lizenzschlüssel auf der <a href="
737
+ "\"%s\">Updates</a> Seite ein. Du kannst deinen Lizenzschlüssel in <a href="
738
+ "\"%s\">deinem Account</a> einsehen. Wenn du noch keinen Lizenzschlüssel "
739
+ "hast, kannst du <a href=\"%s\">hier</a> einen kaufen."
740
+
741
+ #: pro/enhanced-media-library-pro.php:89
742
+ #: pro/enhanced-media-library-pro.php:100
743
+ msgid "Expand Details"
744
+ msgstr "Details aufklappen"
745
+
746
+ #: pro/enhanced-media-library-pro.php:90
747
+ #: pro/enhanced-media-library-pro.php:101
748
+ msgid "Collapse Details"
749
+ msgstr "Details zuklappen"
750
+
751
+ #: pro/enhanced-media-library-pro.php:93
752
+ msgid "Validation Failed. One or more fields below are required."
753
+ msgstr ""
754
+ "Validierung fehlgeschlagen. Eines oder mehrere der Felder unten sind "
755
+ "erfolderlich."
756
+
757
+ #: pro/enhanced-media-library-pro.php:99
758
+ msgid "The changes you made will be lost if you navigate away from this page"
759
+ msgstr "Deine Änderungen gehen verloren, wenn du diese Seite verlässt."
760
+
761
+ #: pro/enhanced-media-library-pro.php:160
762
+ msgid "ALL files belong to this item"
763
+ msgstr "ALLE Dateien gehören zu diesem Eintrag"
764
+
765
+ #: pro/enhanced-media-library-pro.php:161
766
+ msgid "SOME files belong to this item"
767
+ msgstr "EINIGE Dateien gehören zu diesem Eintrag"
768
+
769
+ #: pro/enhanced-media-library-pro.php:162
770
+ msgid "NO files belong to this item"
771
+ msgstr "KEINE Dateien gehören zu diesem Eintrag"
772
+
773
+ #: pro/enhanced-media-library-pro.php:163
774
+ msgid "Changes saved."
775
+ msgstr "Änderungen gespeichert."
776
+
777
+ #: pro/enhanced-media-library-pro.php:164
778
+ msgid "Something went wrong."
779
+ msgstr "Etwas ist schiefgelaufen."
780
+
781
+ #: pro/enhanced-media-library-pro.php:165
782
+ msgid "Save Changes"
783
+ msgstr "Änderungen speichern"
784
+
785
+ #: pro/enhanced-media-library-pro.php:167
786
+ msgid "Edit Media Files"
787
+ msgstr "Medien bearbeiten"
788
+
789
+ #: pro/enhanced-media-library-pro.php:260
790
+ msgid ""
791
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
792
+ "be active. Please deactivate and remove the free version of the plugin."
793
+ msgstr ""
794
+ "<strong>Enhanced Media Library PRO</strong> erfordert, dass die kostenlose "
795
+ "Version nicht aktiviert ist. Bitte deaktiviere und entferne die kostenlose "
796
+ "Version des Plugins."
797
+
798
+ #. Plugin Name of the plugin/theme
799
+ msgid "Enhanced Media Library"
800
+ msgstr "Enhanced Media Library"
801
+
802
+ #. Plugin Name of the plugin/theme
803
+ msgid "Enhanced Media Library PRO"
804
+ msgstr "Enhanced Media Library PRO"
805
+
806
+ #. Description of the plugin/theme
807
+ msgid ""
808
+ "This plugin will be handy for those who need to manage a lot of media files."
809
+ msgstr "Dieses Plugin ist nützlich für alle, die viele Medien verwalten."
languages/eml-he_IL.mo ADDED
Binary file
languages/eml-he_IL.po ADDED
@@ -0,0 +1,823 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Enhanced Media Library PRO
2
+ # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library PRO\n"
6
+ "POT-Creation-Date: 2015-07-18 01:52+0300\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.2\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "PO-Revision-Date: \n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+ "Language: he_IL\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: core/class-eml-media-list-table.php:39
25
+ #, php-format
26
+ msgctxt "uploaded files"
27
+ msgid "All (%s)"
28
+ msgid_plural "All (%s)"
29
+ msgstr[0] "הכל (%s)"
30
+ msgstr[1] "הכל (%s)"
31
+
32
+ #: core/class-eml-media-list-table.php:50
33
+ #, php-format
34
+ msgctxt "detached files"
35
+ msgid "Unattached (%s)"
36
+ msgid_plural "Unattached (%s)"
37
+ msgstr[0] "לא מקושר (%s)"
38
+ msgstr[1] "לא מקושרים (%s)"
39
+
40
+ #: core/class-eml-media-list-table.php:52 enhanced-media-library.php:377
41
+ msgid "All Uncategorized"
42
+ msgstr "הכל לא ממויין"
43
+
44
+ #: core/class-eml-media-list-table.php:55
45
+ #, php-format
46
+ msgctxt "uploaded files"
47
+ msgid "Trash (%s)"
48
+ msgid_plural "Trash (%s)"
49
+ msgstr[0] "פח (%s)"
50
+ msgstr[1] "פח (%s)"
51
+
52
+ #: core/class-eml-media-list-table.php:75
53
+ msgid "Filter"
54
+ msgstr "סנן"
55
+
56
+ #: core/class-eml-media-list-table.php:77 enhanced-media-library.php:381
57
+ msgid "Reset All Filters"
58
+ msgstr "אפס את כל המסננים"
59
+
60
+ #: core/class-eml-media-list-table.php:81
61
+ msgid "Empty Trash"
62
+ msgstr "רוקן פח"
63
+
64
+ #: core/eml-upload.php:19
65
+ msgid "You do not have permission to upload files."
66
+ msgstr "אין לך הרשאות להעלאת קבצים"
67
+
68
+ #: core/eml-upload.php:39 core/eml-upload.php:212
69
+ msgid "Overview"
70
+ msgstr "סקירה"
71
+
72
+ #: core/eml-upload.php:41
73
+ msgid ""
74
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
75
+ "the most recent uploads listed first."
76
+ msgstr ""
77
+ "כל הקבצים שהעלאת רשומים בספרית המדיה, עם רשימת ההעלאות האחרונות תחילה. "
78
+
79
+ #: core/eml-upload.php:42 core/eml-upload.php:216
80
+ msgid ""
81
+ "You can view your media in a simple visual grid or a list with columns. "
82
+ "Switch between these views using the icons to the left above the media."
83
+ msgstr ""
84
+ "תוכל לצפות בקבצי המידה שלך בתצוגת פריסה או בתצוגת רשימה עם עמודות. החלף בין "
85
+ "מצבי תצוגה אלו על-ידי שימוש בסמלים מעל ועל יד המדיה."
86
+
87
+ #: core/eml-upload.php:43
88
+ msgid ""
89
+ "To delete media items, click the Bulk Select button at the top of the "
90
+ "screen. Select any items you wish to delete, then click the Delete Selected "
91
+ "button. Clicking the Cancel Selection button takes you back to viewing your "
92
+ "media."
93
+ msgstr ""
94
+ "על מנת למחוק קבצי מדיה, לחץ על כפתור העריכה הקבוצתית בראש המסך. בחר אילו "
95
+ "קבצים ברצונך למחוק, לאחר מכן לחץ על כפתור מחיקת הבחירה. לחץ בטל לביטול "
96
+ "הבחירה וחזרה לצפיה במדיה."
97
+
98
+ #: core/eml-upload.php:48
99
+ msgid "Attachment Details"
100
+ msgstr "פרטי הנספח"
101
+
102
+ #: core/eml-upload.php:50
103
+ msgid ""
104
+ "Clicking an item will display an Attachment Details dialog, which allows you "
105
+ "to preview media and make quick edits. Any changes you make to the "
106
+ "attachment details will be automatically saved."
107
+ msgstr ""
108
+ "לחיצה על פריט תציג חלון פרטים אשר יאפשר לך תצוגה מקדימה למדיה ולבצע עריכות "
109
+ "מהירות, כל שינוי שתבצע ישמר באופן אוטומטי."
110
+
111
+ #: core/eml-upload.php:51
112
+ msgid ""
113
+ "Use the arrow buttons at the top of the dialog, or the left and right arrow "
114
+ "keys on your keyboard, to navigate between media items quickly."
115
+ msgstr ""
116
+ "השתמש בכפתורים שלמעלה ובחצי הצדדים במקלדת על מנת לנווט בין פריטי המדיה "
117
+ "במהירות."
118
+
119
+ #: core/eml-upload.php:52
120
+ msgid ""
121
+ "You can also delete individual items and access the extended edit screen "
122
+ "from the details dialog."
123
+ msgstr ""
124
+ "בנוסף אתה יכול למחוק פריטים אינדיווידואלים ולגשת לעמוד העריכה הנרחב ממסך "
125
+ "חלון הפרטים."
126
+
127
+ #: core/eml-upload.php:56 core/eml-upload.php:232
128
+ msgid "For more information:"
129
+ msgstr "למידע נוסף:"
130
+
131
+ #: core/eml-upload.php:57 core/eml-upload.php:233
132
+ msgid ""
133
+ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank"
134
+ "\">Documentation on Media Library</a>"
135
+ msgstr ""
136
+ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank"
137
+ "\">תיעוד ספרית המדיה</a>"
138
+
139
+ #: core/eml-upload.php:58 core/eml-upload.php:234
140
+ msgid ""
141
+ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support Forums</"
142
+ "a>"
143
+ msgstr ""
144
+ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">פורמי תמיכה</a>"
145
+
146
+ #: core/eml-upload.php:61 core/eml-upload.php:203
147
+ msgid "Media Library"
148
+ msgstr "ספריית מדיה"
149
+
150
+ #: core/eml-upload.php:71 core/eml-upload.php:245
151
+ msgctxt "file"
152
+ msgid "Add New"
153
+ msgstr "הוסף קובץ"
154
+
155
+ #: core/eml-upload.php:76
156
+ msgid ""
157
+ "The grid view for the Media Library requires JavaScript. <a href=\"upload."
158
+ "php?mode=list\">Switch to the list view</a>."
159
+ msgstr ""
160
+ "תצוגת הפריסה עבור ספריית המדיה זקוקה לג'אווה סקריפט על מנת לפעול כהלכה. <a "
161
+ "href=\"upload.php?mode=list\">עבור למצב תצוגת רשימה</a>."
162
+
163
+ #: core/eml-upload.php:124
164
+ msgid "You are not allowed to edit this post."
165
+ msgstr "אינך מורשה לערוך את הפוסט הנוכחי."
166
+
167
+ #: core/eml-upload.php:161
168
+ msgid "You are not allowed to move this post to the trash."
169
+ msgstr "אינך מורשה להעביר פוסט זה לפח."
170
+
171
+ #: core/eml-upload.php:164
172
+ msgid "Error in moving to trash."
173
+ msgstr "שגיאה בהעברה לפח."
174
+
175
+ #: core/eml-upload.php:173
176
+ msgid "You are not allowed to move this post out of the trash."
177
+ msgstr "אינך מורשה להוציע את הפוסט מחוץ לפח."
178
+
179
+ #: core/eml-upload.php:176
180
+ msgid "Error in restoring from trash."
181
+ msgstr "שגיאה בשחזור מהפח."
182
+
183
+ #: core/eml-upload.php:185
184
+ msgid "You are not allowed to delete this post."
185
+ msgstr "אינך מורשה למחוק פוסט זה."
186
+
187
+ #: core/eml-upload.php:188
188
+ msgid "Error in deleting."
189
+ msgstr "שגיאה במחיקה"
190
+
191
+ #: core/eml-upload.php:208
192
+ msgctxt "items per page (screen options)"
193
+ msgid "Media items"
194
+ msgstr "קבצי מדיה"
195
+
196
+ #: core/eml-upload.php:214
197
+ msgid ""
198
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with "
199
+ "the most recent uploads listed first. You can use the Screen Options tab to "
200
+ "customize the display of this screen."
201
+ msgstr ""
202
+ "כל הקבצים שהעלאת רשומים בספרית המדיה, עם רשימת ההעלאות האחרונות תחילה. תוכל "
203
+ "להשתמש בלשונית אפשרויות התצוגה על מנת להתאים את התצוגה לצג."
204
+
205
+ #: core/eml-upload.php:215
206
+ msgid ""
207
+ "You can narrow the list by file type/status using the text link filters at "
208
+ "the top of the screen. You also can refine the list by date using the "
209
+ "dropdown menu above the media table."
210
+ msgstr ""
211
+ "ניתן לצמצם את הרשימה באמצעות סוג/סטטוס על-ידי שימוש במסננים המופיעים למעלה. "
212
+ "בנוסף ניתן להשתמש ברשימה הנגללת מעל טבלת המדיה."
213
+
214
+ #: core/eml-upload.php:220
215
+ msgid "Available Actions"
216
+ msgstr "פעולות זמינות"
217
+
218
+ #: core/eml-upload.php:222
219
+ msgid ""
220
+ "Hovering over a row reveals action links: Edit, Delete Permanently, and "
221
+ "View. Clicking Edit or on the media file&#8217;s name displays a simple "
222
+ "screen to edit that individual file&#8217;s metadata. Clicking Delete "
223
+ "Permanently will delete the file from the media library (as well as from any "
224
+ "posts to which it is currently attached). View will take you to the display "
225
+ "page for that file."
226
+ msgstr ""
227
+ "מעבר על שורות מגלה קישורי פעולות: עריכה, מחיקה לצמיתות, וצפיה. לחיצה על "
228
+ "עריכה או על קבצי מדיה תציג מסך פשוט המאפשר עריכה פרטנית של המאפיינים. לחיצה "
229
+ "על מחיקה לצמיתות תגרום למחיקה מספרית המדיה (בנוסף מכל פוסט אליו התבצע קישור "
230
+ "של המדיה). צפיה תאפשר לצפות בעמוד עבור אותו הקובץ מדיה."
231
+
232
+ #: core/eml-upload.php:226
233
+ msgid "Attaching Files"
234
+ msgstr "צירוף קבצים"
235
+
236
+ #: core/eml-upload.php:228
237
+ msgid ""
238
+ "If a media file has not been attached to any post, you will see that in the "
239
+ "Attached To column, and can click on Attach File to launch a small popup "
240
+ "that will allow you to search for a post and attach the file."
241
+ msgstr ""
242
+ "אם קובץ מדיה לא קושר לאף פוסט, תוכל לראות זאת בעמודת הפריטים שצורפו (קושרו) "
243
+ "ותוכל ללחוץ על מנת לפתוח חלון חיפוש שיאפשר לך לחפש פוסט ולקשר אליו את הקובץ."
244
+
245
+ #: core/eml-upload.php:248
246
+ #, php-format
247
+ msgid "Search results for &#8220;%s&#8221;"
248
+ msgstr "תוצאות חיפוש עבור &#8220;%s&#8221;"
249
+
250
+ #: core/eml-upload.php:254 core/eml-upload.php:279
251
+ msgid "Media attachment updated."
252
+ msgstr "נספח מדיה עודכן."
253
+
254
+ #: core/eml-upload.php:259
255
+ #, php-format
256
+ msgid "Reattached %d attachment."
257
+ msgid_plural "Reattached %d attachments."
258
+ msgstr[0] "קושר נספח %d"
259
+ msgstr[1] "קושרו נספחים %d"
260
+
261
+ #: core/eml-upload.php:264
262
+ #, php-format
263
+ msgid "Media attachment permanently deleted."
264
+ msgid_plural "%d media attachments permanently deleted."
265
+ msgstr[0] "נספח המדיה נמחק לצמיתות"
266
+ msgstr[1] "%d נספחי מדיה נמחקו לצמיתות"
267
+
268
+ #: core/eml-upload.php:269
269
+ #, php-format
270
+ msgid "Media attachment moved to the trash."
271
+ msgid_plural "%d media attachments moved to the trash."
272
+ msgstr[0] "נספח המדיה עבר לפח."
273
+ msgstr[1] "%d נספחי המדיה עברו לפח."
274
+
275
+ #: core/eml-upload.php:270 core/eml-upload.php:282
276
+ msgid "Undo"
277
+ msgstr "בטל"
278
+
279
+ #: core/eml-upload.php:275
280
+ #, php-format
281
+ msgid "Media attachment restored from the trash."
282
+ msgid_plural "%d media attachments restored from the trash."
283
+ msgstr[0] "נספח המדיה שוחזר מהפח."
284
+ msgstr[1] "%d נספחי מדיה שוחזרו מהפח."
285
+
286
+ #: core/eml-upload.php:280
287
+ msgid "Media permanently deleted."
288
+ msgstr "המדיה נמחקה לצמיתות."
289
+
290
+ #: core/eml-upload.php:281
291
+ msgid "Error saving media attachment."
292
+ msgstr "שגיאה בשמירת נספח המדיה."
293
+
294
+ #: core/eml-upload.php:282
295
+ msgid "Media moved to the trash."
296
+ msgstr "המדיה הועברה לפח."
297
+
298
+ #: core/eml-upload.php:283
299
+ msgid "Media restored from the trash."
300
+ msgstr "המדיה שוחזרה מהפח."
301
+
302
+ #: core/mime-types.php:107
303
+ #, php-format
304
+ msgid " <span class=\"count\">(%s)</span>"
305
+ msgid_plural " <span class=\"count\">(%s)</span>"
306
+ msgstr[0] " <span class=\"count\">(%s)</span>"
307
+ msgstr[1] " <span class=\"count\">(%s)</span>"
308
+
309
+ #: core/options-pages.php:67 core/options-pages.php:68
310
+ #: core/options-pages.php:77
311
+ msgid "Media Settings"
312
+ msgstr "הגדרות מדיה"
313
+
314
+ #: core/options-pages.php:78 core/options-pages.php:254
315
+ #: core/options-pages.php:276 core/options-pages.php:322
316
+ #: core/options-pages.php:386
317
+ msgid "Settings"
318
+ msgstr "הגדרות"
319
+
320
+ #: core/options-pages.php:85 core/options-pages.php:86
321
+ #: core/options-pages.php:188
322
+ msgid "Taxonomies"
323
+ msgstr "תוית מיון"
324
+
325
+ #: core/options-pages.php:94 core/options-pages.php:95
326
+ #: core/options-pages.php:510
327
+ msgid "MIME Types"
328
+ msgstr "סוגי קבצים"
329
+
330
+ #: core/options-pages.php:132 core/options-pages.php:229
331
+ #: core/options-pages.php:243 core/options-pages.php:311
332
+ #: core/options-pages.php:383
333
+ msgid "Edit"
334
+ msgstr "ערוך"
335
+
336
+ #: core/options-pages.php:133 pro/enhanced-media-library-pro.php:166
337
+ msgid "Close"
338
+ msgstr "סגור"
339
+
340
+ #: core/options-pages.php:134 core/options-pages.php:244
341
+ #: core/options-pages.php:312
342
+ msgid "View"
343
+ msgstr "צפה"
344
+
345
+ #: core/options-pages.php:135 core/options-pages.php:245
346
+ #: core/options-pages.php:313
347
+ msgid "Update"
348
+ msgstr "עדכן"
349
+
350
+ #: core/options-pages.php:136 core/options-pages.php:246
351
+ #: core/options-pages.php:314
352
+ msgid "Add New"
353
+ msgstr "הוסף חדש"
354
+
355
+ #: core/options-pages.php:137 core/options-pages.php:247
356
+ #: core/options-pages.php:315
357
+ msgid "New"
358
+ msgstr "חדש"
359
+
360
+ #: core/options-pages.php:138
361
+ msgid "Name"
362
+ msgstr "שם"
363
+
364
+ #: core/options-pages.php:139 core/options-pages.php:248
365
+ #: core/options-pages.php:316
366
+ msgid "Parent"
367
+ msgstr "הורה"
368
+
369
+ #: core/options-pages.php:140 core/options-pages.php:242
370
+ #: core/options-pages.php:310
371
+ msgid "All"
372
+ msgstr "הכל"
373
+
374
+ #: core/options-pages.php:141 core/options-pages.php:249
375
+ #: core/options-pages.php:317
376
+ msgid "Search"
377
+ msgstr "חיפוש"
378
+
379
+ #: core/options-pages.php:143
380
+ msgid ""
381
+ "Taxonomy will be deleted permanently! Your media files will remain intacted, "
382
+ "but all the connections with this taxonomy and its terms will be lost."
383
+ msgstr ""
384
+ "תוית המיון תמחק לצמיתות! קבצי המדיה ישארו כפי שהם, אך הקשרים התלויים בתוית "
385
+ "המיון יאבדו."
386
+
387
+ #: core/options-pages.php:144
388
+ msgid "There is already a taxonomy with the same name. Please chose other one."
389
+ msgstr "קיימת תוית מיון עם שם זהה. אנא בחר שם שונה."
390
+
391
+ #: core/options-pages.php:145 core/options-pages.php:298
392
+ msgid "New Taxonomy"
393
+ msgstr "תוית מיון חדשה"
394
+
395
+ #: core/options-pages.php:146
396
+ msgid "Please choose Singular and Plural names for all your new taxomonies."
397
+ msgstr "אנא בחר שמות לכל תויות המיון החדשות שלך עבור יחיד ורבים."
398
+
399
+ #: core/options-pages.php:147
400
+ msgid "Please choose Singilar name for all your new taxomonies."
401
+ msgstr "אנא בחר שם ביחיד עבור כל תויות המיון החדשות שלך."
402
+
403
+ #: core/options-pages.php:148
404
+ msgid "Please choose Plural Name for all your new taxomonies."
405
+ msgstr "אנא בחר שם ברבים עבור כל תויות המיון החדשות שלך."
406
+
407
+ #: core/options-pages.php:150
408
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
409
+ msgstr "אזהרה! כל סוגי הקבצים המותאמים (MIME Types) ימחקו על-ידי פעולה זו"
410
+
411
+ #: core/options-pages.php:151
412
+ msgid "Please fill into all fields."
413
+ msgstr "אנא הזן את כל השדות"
414
+
415
+ #: core/options-pages.php:152
416
+ msgid "Duplicate extensions or MIME types. Please chose other one."
417
+ msgstr "כפילויות בהרחבות או סוגי קבצים. אנא בחר אחר."
418
+
419
+ #: core/options-pages.php:180 core/options-pages.php:501
420
+ #: pro/core/options-pages.php:170
421
+ msgid "You do not have sufficient permissions to access this page."
422
+ msgstr "אין לך הרשאות מתאימות על מנת לגשת לדף זה."
423
+
424
+ #: core/options-pages.php:204
425
+ msgid "Media Taxonomies"
426
+ msgstr "תויות מיון למדיה"
427
+
428
+ #: core/options-pages.php:208 core/options-pages.php:360
429
+ msgid "Assign following taxonomies to Media Library:"
430
+ msgstr "הקצאת תויות המיון הבאות לספרית המדיה:"
431
+
432
+ #: core/options-pages.php:226 core/options-pages.php:296
433
+ #: core/options-pages.php:376
434
+ msgid "Assign Taxonomy"
435
+ msgstr "הקצא תוית מיון"
436
+
437
+ #: core/options-pages.php:229 core/options-pages.php:383
438
+ msgid "Edit Taxonomy"
439
+ msgstr "ערוך תוית מיון"
440
+
441
+ #: core/options-pages.php:232 core/options-pages.php:300
442
+ msgid "Delete Taxonomy"
443
+ msgstr "מחק תוית מיון"
444
+
445
+ #: core/options-pages.php:237 core/options-pages.php:305
446
+ msgid "Labels"
447
+ msgstr "תויות"
448
+
449
+ #: core/options-pages.php:239 core/options-pages.php:307
450
+ msgid "Singular"
451
+ msgstr "יחיד"
452
+
453
+ #: core/options-pages.php:240 core/options-pages.php:308
454
+ msgid "Plural"
455
+ msgstr "רבים"
456
+
457
+ #: core/options-pages.php:241 core/options-pages.php:309
458
+ msgid "Menu Name"
459
+ msgstr "שם התפריט"
460
+
461
+ #: core/options-pages.php:256 core/options-pages.php:324
462
+ msgid "Taxonomy Name"
463
+ msgstr "שם תוית המיון"
464
+
465
+ #: core/options-pages.php:257 core/options-pages.php:325
466
+ msgid "Hierarchical"
467
+ msgstr "היררכי"
468
+
469
+ #: core/options-pages.php:258 core/options-pages.php:326
470
+ msgid "Column in List View"
471
+ msgstr "עמודה בתצוגת רשימה"
472
+
473
+ #: core/options-pages.php:259 core/options-pages.php:278
474
+ #: core/options-pages.php:327 core/options-pages.php:388
475
+ msgid "Filter in List View"
476
+ msgstr "סנן בתצוגת רשימה"
477
+
478
+ #: core/options-pages.php:260 core/options-pages.php:279
479
+ #: core/options-pages.php:328 core/options-pages.php:389
480
+ msgid "Filter in Grid View / Media Popup"
481
+ msgstr "סנן בתצוגת פריסה / חלון מדיה"
482
+
483
+ #: core/options-pages.php:261 core/options-pages.php:280
484
+ #: core/options-pages.php:329 core/options-pages.php:390
485
+ msgid "Edit in Media Popup"
486
+ msgstr "עריכה בחלון מדיה"
487
+
488
+ #: core/options-pages.php:262 core/options-pages.php:330
489
+ msgid "Show in Nav Menu"
490
+ msgstr "הצג בתפריט הניווט"
491
+
492
+ #: core/options-pages.php:263 core/options-pages.php:331
493
+ msgid "Remember terms order (sort)"
494
+ msgstr "זכור תנאי מיון"
495
+
496
+ #: core/options-pages.php:264 core/options-pages.php:332
497
+ msgid "Rewrite Slug"
498
+ msgstr "שכתב סלוגן"
499
+
500
+ #: core/options-pages.php:265 core/options-pages.php:333
501
+ msgid "Slug with Front"
502
+ msgstr "סלוגן עם הקדמה"
503
+
504
+ #: core/options-pages.php:345
505
+ msgid "Add New Taxonomy"
506
+ msgstr "הוסף תוית מיון חדשה"
507
+
508
+ #: core/options-pages.php:356
509
+ msgid "Non-Media Taxonomies"
510
+ msgstr "תויות מיון ללא-מדיה"
511
+
512
+ #: core/options-pages.php:415
513
+ msgid "Options"
514
+ msgstr "אפשרויות"
515
+
516
+ #: core/options-pages.php:425 core/options-pages.php:428
517
+ msgid "Taxonomy archive pages"
518
+ msgstr "ארכיון עמודי תויות מיון"
519
+
520
+ #: core/options-pages.php:429
521
+ msgid "Turn on media taxonomy archive pages on the front-end"
522
+ msgstr "הפעל את עמודי ארכיון תויות המיון בתצוגת המשתמש"
523
+
524
+ #: core/options-pages.php:430
525
+ msgid ""
526
+ "Re-save your permalink settings after this option change to make it work."
527
+ msgstr ""
528
+ "שמור מחדש את הגדרות ה-permalink לאחר שאפשרות זאת משתנה על מנת לגרום לה לעבוד."
529
+
530
+ #: core/options-pages.php:436
531
+ msgid "Assign all like hierarchical"
532
+ msgstr "הקצא הכל באופן היררכי"
533
+
534
+ #: core/options-pages.php:439 core/options-pages.php:440
535
+ msgid ""
536
+ "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
537
+ msgstr "הצג תויות מיון לא-היררכיות כהיררכיות בתצוגת פריסה / חלון נפתח"
538
+
539
+ #: core/options-pages.php:446 core/options-pages.php:449
540
+ msgid "Force filters"
541
+ msgstr "כפה מסננים"
542
+
543
+ #: core/options-pages.php:450
544
+ msgid "Show media filters for ANY Media Popup."
545
+ msgstr "הצג מסנני מדיה עבור כל חלון מדיה שנפתח"
546
+
547
+ #: core/options-pages.php:451
548
+ msgid ""
549
+ "May be useful for those who need forcing filters for third-party plugins or "
550
+ "themes."
551
+ msgstr ""
552
+ "עשוי להיות שימושי עבור אלו הרוצים לכפות סינון עבור תוספי צד-שלישי או תבניות."
553
+
554
+ #: core/options-pages.php:511
555
+ msgid "Add New MIME Type"
556
+ msgstr "הוסף סוג קובץ חדש"
557
+
558
+ #: core/options-pages.php:529 core/options-pages.php:582
559
+ msgid "Extension"
560
+ msgstr "הרחבה"
561
+
562
+ #: core/options-pages.php:530 core/options-pages.php:583
563
+ msgid "MIME Type"
564
+ msgstr "סוג קובץ (MIME Type)"
565
+
566
+ #: core/options-pages.php:531 core/options-pages.php:584
567
+ msgid "Singular Label"
568
+ msgstr "תוית יחידה"
569
+
570
+ #: core/options-pages.php:532 core/options-pages.php:585
571
+ msgid "Plural Label"
572
+ msgstr "תויות רבות"
573
+
574
+ #: core/options-pages.php:533 core/options-pages.php:561
575
+ #: core/options-pages.php:574 core/options-pages.php:586
576
+ msgid "Add Filter"
577
+ msgstr "הוסף מסנן"
578
+
579
+ #: core/options-pages.php:534 core/options-pages.php:562
580
+ #: core/options-pages.php:575 core/options-pages.php:587
581
+ msgid "Allow Upload"
582
+ msgstr "אפשר העלאה"
583
+
584
+ #: core/options-pages.php:576
585
+ msgid "Delete MIME Type"
586
+ msgstr "מחק סוג קובץ"
587
+
588
+ #: core/options-pages.php:593
589
+ msgid "Restore default MIME Types"
590
+ msgstr "שחזר ברירת מחדל עבור סוגי קבצים"
591
+
592
+ #: core/taxonomies.php:321 core/taxonomies.php:327
593
+ #: enhanced-media-library.php:378
594
+ msgid "Filter by "
595
+ msgstr "סנן על-פי "
596
+
597
+ #: core/taxonomies.php:328 enhanced-media-library.php:379
598
+ msgid "All "
599
+ msgstr "הכל "
600
+
601
+ #: core/taxonomies.php:329 enhanced-media-library.php:380
602
+ msgid "Not in "
603
+ msgstr "לא ב-"
604
+
605
+ #: enhanced-media-library.php:47
606
+ msgid ""
607
+ "Please deactivate and <strong>remove</strong> the old version prior to the "
608
+ "<strong>Enhanced Media Library PRO</strong> activation. All your data will "
609
+ "remain intact."
610
+ msgstr ""
611
+ "אנא נטרל ו-<strong>הסר</strong> את הגרסה הישנה טרם הפעלת ורישוי "
612
+ "<strong>Enhanced Media Library PRO</strong>. כל המידע ישמר."
613
+
614
+ #: enhanced-media-library.php:47
615
+ msgid "Return to Plugins"
616
+ msgstr "חזור לתוספים"
617
+
618
+ #: pro/core/bulk-edit.php:75
619
+ msgid "Remove"
620
+ msgstr "הסר"
621
+
622
+ #: pro/core/bulk-edit.php:79
623
+ msgid "Deselect"
624
+ msgstr "בטל בחירה"
625
+
626
+ #: pro/core/bulk-edit.php:86
627
+ msgid "Caption this image&hellip;"
628
+ msgstr "תאר תמונה זו&hellip;"
629
+
630
+ #: pro/core/bulk-edit.php:90
631
+ msgid "Describe this video&hellip;"
632
+ msgstr "תאר וידיאו זה&hellip;"
633
+
634
+ #: pro/core/bulk-edit.php:92
635
+ msgid "Describe this audio file&hellip;"
636
+ msgstr "תאר אודיו זה&hellip;"
637
+
638
+ #: pro/core/bulk-edit.php:94
639
+ msgid "Describe this media file&hellip;"
640
+ msgstr "תאר מדיה זו&hellip;"
641
+
642
+ #: pro/core/bulk-edit.php:103
643
+ msgid "Attachments Details"
644
+ msgstr "פרטי הנספח"
645
+
646
+ #: pro/core/bulk-edit.php:157
647
+ msgid "Select All"
648
+ msgstr "בחר הכל"
649
+
650
+ #: pro/core/bulk-edit.php:159
651
+ msgid "Edit Selection"
652
+ msgstr "ערוך בחירה"
653
+
654
+ #: pro/core/bulk-edit.php:162
655
+ msgid "Deselect All"
656
+ msgstr "בטל בחירה מהכל"
657
+
658
+ #: pro/core/bulk-edit.php:166
659
+ msgid "Delete Selected"
660
+ msgstr "מחק בחירה"
661
+
662
+ #: pro/core/options-pages.php:100 pro/core/options-pages.php:101
663
+ msgid "EML PRO Updates"
664
+ msgstr "עדכוני EML PRO"
665
+
666
+ #: pro/core/options-pages.php:126 pro/enhanced-media-library-pro.php:168
667
+ msgid "Bulk Edit"
668
+ msgstr "עריכה קבוצתית"
669
+
670
+ #: pro/core/options-pages.php:134 pro/core/options-pages.php:137
671
+ msgid "Turn off 'Save Changes' button"
672
+ msgstr "כבה את כפתור \"שמור שינויים\""
673
+
674
+ #: pro/core/options-pages.php:138
675
+ msgid "Save changes on the fly"
676
+ msgstr "שמור שינויים תוך כדי ביצועם"
677
+
678
+ #: pro/core/options-pages.php:139
679
+ msgid ""
680
+ "Any click on a taxonomy checkbox during media files bulk edition will lead "
681
+ "to an <strong style=\"color:red\">immediate saving</strong> of the data. "
682
+ "Please, be careful! You have much greater chance to <strong style=\"color:red"
683
+ "\">accidentally perform wrong re-assigning</strong> of a lot of your media "
684
+ "files / taxonomies with this option turned on."
685
+ msgstr ""
686
+ "כל לחיצה על תיבת סימון עבור תוית מיון בעת עריכה קבוצתית של קבצי מדיה תגרום ל-"
687
+ "<strong style=\"color:red\">שמירה מיידית</strong> של המידע. אנא הזהר! קיים "
688
+ "סיכוי רב יותר לביצוע <strong style=\"color:red\">הקצאה מחדש שגויה בטעות</"
689
+ "strong> של המון קבצי מדיה / תויות מיון כאשר אפשרות זאת מאופשרת."
690
+
691
+ #: pro/core/options-pages.php:140
692
+ msgid ""
693
+ "Strongly NOT recommended option if you work with more than hundred of files "
694
+ "at a time."
695
+ msgstr "אפשרות לא מומלצת במידה והנך עובד עם למעלה ממאה קבצים בכל פעם."
696
+
697
+ #: pro/core/options-pages.php:175
698
+ msgid "Updates"
699
+ msgstr "עדכונים"
700
+
701
+ #: pro/core/options-pages.php:190
702
+ msgid "Enhanced Media Library PRO License"
703
+ msgstr "רישוי Enhanced Media Library PRO"
704
+
705
+ #: pro/core/options-pages.php:215
706
+ msgid ""
707
+ "To unlock updates, please enter your license key below. You can see your "
708
+ "license key in <a href=\"http://www.wpuxsolutions.com/account/\">Your "
709
+ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
710
+ "href=\"http://www.wpuxsolutions.com/pricing/\">purchase it</a>."
711
+ msgstr ""
712
+ "על מנת לפתוח את אפשרות העדכונים, אנא הזן את קוד הרישוי שלך בעמוד ה-<a href="
713
+ "\"%s\">עדכונים</a>. תוכל לראות את קוד הרישוי ב-<a href=\"%s\">החשבון שלך</"
714
+ "a>. אם אין ברשותך קוד רישוי, הינך מוזמן <a href=\"%s\">לרכוש אותו</a>."
715
+
716
+ #: pro/core/options-pages.php:219
717
+ msgid "License Key"
718
+ msgstr "מספר רישיון"
719
+
720
+ #: pro/core/options-pages.php:226
721
+ msgid "Activate License"
722
+ msgstr "הפעל רישיון"
723
+
724
+ #: pro/core/options-pages.php:243
725
+ msgid "Your license is active!"
726
+ msgstr "הרישיון שלך פעיל!"
727
+
728
+ #: pro/core/update.php:109 pro/core/update.php:114 pro/core/update.php:118
729
+ msgid ""
730
+ "An unexpected error occurred. Something may be wrong with WordPress.org or "
731
+ "this server&#8217;s configuration. If you continue to have problems, please "
732
+ "try the <a href=\"https://wordpress.org/support/\">support forums</a>."
733
+ msgstr ""
734
+ "שגיאה לא צפויה ארעה. משהו עשוי להיות לא כשורה עם WordPress.org או עם הגדרות "
735
+ "השרת. אם הנך ממשיך לחוות בעיות אנא נסה למצוא פתרון ב-<a href=\"https://"
736
+ "wordpress.org/support/\">פורומי התמיכה</a>."
737
+
738
+ #: pro/core/update.php:109
739
+ msgid ""
740
+ "(WordPress could not establish a secure connection to WordPress.org. Please "
741
+ "contact your server administrator.)"
742
+ msgstr ""
743
+ "(וורדפרס לא הצליחה ליצור חיבור מאובטח אל WordPress.org . אנא צור קשר עם מנהל "
744
+ "השרת.)"
745
+
746
+ #: pro/core/update.php:184
747
+ #, php-format
748
+ msgid ""
749
+ "To unlock updates, please enter your license key on the <a href=\"%s"
750
+ "\">Updates</a> page. You can see your license key in <a href=\"%s\">Your "
751
+ "Account</a>. If you don&#8217;t have a licence key, you are welcome to <a "
752
+ "href=\"%s\">purchase it</a>."
753
+ msgstr ""
754
+ "על מנת לפתוח את אפשרות העדכונים, אנא הזן את קוד הרישוי שלך בעמוד ה-<a href="
755
+ "\"%s\">עדכונים</a>. תוכל לראות את קוד הרישוי ב-<a href=\"%s\">החשבון שלך</"
756
+ "a>. אם אין ברשותך קוד רישוי, הינך מוזמן <a href=\"%s\">לרכוש אותו</a>."
757
+
758
+ #: pro/enhanced-media-library-pro.php:89
759
+ #: pro/enhanced-media-library-pro.php:100
760
+ msgid "Expand Details"
761
+ msgstr "הצג פרטים"
762
+
763
+ #: pro/enhanced-media-library-pro.php:90
764
+ #: pro/enhanced-media-library-pro.php:101
765
+ msgid "Collapse Details"
766
+ msgstr "פרטים והרחבה"
767
+
768
+ #: pro/enhanced-media-library-pro.php:93
769
+ msgid "Validation Failed. One or more fields below are required."
770
+ msgstr "האימות נכשל. אחד או יותר מהשדות הנ\"ל נדרשים."
771
+
772
+ #: pro/enhanced-media-library-pro.php:99
773
+ msgid "The changes you made will be lost if you navigate away from this page"
774
+ msgstr "השינויים שביצעת יאבדו אם תעבור מעמוד זה"
775
+
776
+ #: pro/enhanced-media-library-pro.php:160
777
+ msgid "ALL files belong to this item"
778
+ msgstr "כל הקבצים שייכים לפריט זה"
779
+
780
+ #: pro/enhanced-media-library-pro.php:161
781
+ msgid "SOME files belong to this item"
782
+ msgstr "מספר קבצים שייכים לפריט זה"
783
+
784
+ #: pro/enhanced-media-library-pro.php:162
785
+ msgid "NO files belong to this item"
786
+ msgstr "אין קבצים השייכים לפריט זה"
787
+
788
+ #: pro/enhanced-media-library-pro.php:163
789
+ msgid "Changes saved."
790
+ msgstr "השינויים נשמרו."
791
+
792
+ #: pro/enhanced-media-library-pro.php:164
793
+ msgid "Something went wrong."
794
+ msgstr "משהו השתבש."
795
+
796
+ #: pro/enhanced-media-library-pro.php:165
797
+ msgid "Save Changes"
798
+ msgstr "שמור שינויים"
799
+
800
+ #: pro/enhanced-media-library-pro.php:167
801
+ msgid "Edit Media Files"
802
+ msgstr "ערוך קבצי מדיה"
803
+
804
+ #: pro/enhanced-media-library-pro.php:260
805
+ msgid ""
806
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to "
807
+ "be active. Please deactivate and remove the free version of the plugin."
808
+ msgstr ""
809
+ "<strong>Enhanced Media Library PRO</strong> אינו זקוק לגרסה החינמית על מנת "
810
+ "לפעול. אנא נטרל והסר את הגרסא החינמית של התוסף."
811
+
812
+ #. Plugin Name of the plugin/theme
813
+ msgid "Enhanced Media Library"
814
+ msgstr "ספרית מדיה משופרת"
815
+
816
+ #. Plugin Name of the plugin/theme
817
+ msgid "Enhanced Media Library PRO"
818
+ msgstr "Enhanced Media Library PRO"
819
+
820
+ #. Description of the plugin/theme
821
+ msgid ""
822
+ "This plugin will be handy for those who need to manage a lot of media files."
823
+ msgstr "תוסף זה יהיה שימושי עבור ספריות מדיה עם קבצים רבים."
languages/eml-sv_SE.mo ADDED
Binary file
languages/eml-sv_SE.po ADDED
@@ -0,0 +1,801 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2015 Enhanced Media Library PRO
2
+ # This file is distributed under the same license as the Enhanced Media Library PRO package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library PRO\n"
6
+ "POT-Creation-Date: 2015-03-04 00:13+0200\n"
7
+ "PO-Revision-Date: \n"
8
+ "Last-Translator: P. E.\n"
9
+ "Language-Team: P. E.\n"
10
+ "Language: sv_SE\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.7.6\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;"
18
+ "esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;"
19
+ "__ngettext_noop:1,2\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ #: core/class-eml-media-list-table.php:39
25
+ #, php-format
26
+ msgctxt "uploaded files"
27
+ msgid "All (%s)"
28
+ msgid_plural "All (%s)"
29
+ msgstr[0] "Alla (%s)"
30
+ msgstr[1] "Alla (%s)"
31
+
32
+ #: core/class-eml-media-list-table.php:50
33
+ #, php-format
34
+ msgctxt "detached files"
35
+ msgid "Unattached (%s)"
36
+ msgid_plural "Unattached (%s)"
37
+ msgstr[0] "Ej bifogad (%s)"
38
+ msgstr[1] "Ej bifogade (%s)"
39
+
40
+ #: core/class-eml-media-list-table.php:52 enhanced-media-library.php:377
41
+ msgid "All Uncategorized"
42
+ msgstr "Alla Okategoriserade"
43
+
44
+ #: core/class-eml-media-list-table.php:55
45
+ #, php-format
46
+ msgctxt "uploaded files"
47
+ msgid "Trash (%s)"
48
+ msgid_plural "Trash (%s)"
49
+ msgstr[0] "Släng I Papperskorgen (%s)"
50
+ msgstr[1] "Släng I Papperskorgen (%s)"
51
+
52
+ #: core/class-eml-media-list-table.php:75
53
+ msgid "Filter"
54
+ msgstr "Filter"
55
+
56
+ #: core/class-eml-media-list-table.php:77 enhanced-media-library.php:381
57
+ msgid "Reset All Filters"
58
+ msgstr "Återställ alla filter"
59
+
60
+ #: core/class-eml-media-list-table.php:81
61
+ msgid "Empty Trash"
62
+ msgstr "Töm papperskorgen"
63
+
64
+ #: core/eml-upload.php:19
65
+ msgid "You do not have permission to upload files."
66
+ msgstr "Du har inte tillstånd att ladda upp filer."
67
+
68
+ #: core/eml-upload.php:39 core/eml-upload.php:212
69
+ msgid "Overview"
70
+ msgstr "Översikt"
71
+
72
+ #: core/eml-upload.php:41
73
+ msgid ""
74
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent "
75
+ "uploads listed first."
76
+ msgstr ""
77
+ "Alla filer som du laddat upp listas i Mediabiblioteket, med de senast uppladdade först."
78
+
79
+ #: core/eml-upload.php:42 core/eml-upload.php:216
80
+ msgid ""
81
+ "You can view your media in a simple visual grid or a list with columns. Switch between "
82
+ "these views using the icons to the left above the media."
83
+ msgstr ""
84
+ "Du kan visa din media i ett enkelt visuellt rutnät eller som en lista med kolumner. Växla "
85
+ "mellan dessa vyer med ikonerna till vänster, ovan mediafilerna."
86
+
87
+ #: core/eml-upload.php:43
88
+ msgid ""
89
+ "To delete media items, click the Bulk Select button at the top of the screen. Select any "
90
+ "items you wish to delete, then click the Delete Selected button. Clicking the Cancel "
91
+ "Selection button takes you back to viewing your media."
92
+ msgstr ""
93
+ "För att ta bort mediaobjekt, klicka på knappen Bulkval högst upp på skärmen. Välj de "
94
+ "objekt du vill ta bort, klicka sedan knappen Ta Bort Valda. Klick på knappen Ångra Val "
95
+ "tar dig tillbaks till visning av media. "
96
+
97
+ #: core/eml-upload.php:48
98
+ msgid "Attachment Details"
99
+ msgstr "Detaljer För Bilaga"
100
+
101
+ #: core/eml-upload.php:50
102
+ msgid ""
103
+ "Clicking an item will display an Attachment Details dialog, which allows you to preview "
104
+ "media and make quick edits. Any changes you make to the attachment details will be "
105
+ "automatically saved."
106
+ msgstr ""
107
+ "Om du klickar ett objekt så visas dialogrutan Detaljer För Bilaga. Denna dialogruta låter "
108
+ "dig förhandsvida media samt göra snabbredigeringar. Ändringar som görs i detaljer för "
109
+ "bilaga sparas automatiskt. "
110
+
111
+ #: core/eml-upload.php:51
112
+ msgid ""
113
+ "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your "
114
+ "keyboard, to navigate between media items quickly."
115
+ msgstr ""
116
+ "Använd pilknapparna högst upp i dialogrutan, eller pilknapparna vänster/höger på ditt "
117
+ "tangentbord, för att snabbt navigera mellan mediaobjekt."
118
+
119
+ #: core/eml-upload.php:52
120
+ msgid ""
121
+ "You can also delete individual items and access the extended edit screen from the details "
122
+ "dialog."
123
+ msgstr ""
124
+ "Du kan också ta bort individuella objekt och besöka skärmen för utökad redigering från "
125
+ "dialogrutan för detaljer."
126
+
127
+ #: core/eml-upload.php:56 core/eml-upload.php:232
128
+ msgid "For more information:"
129
+ msgstr "För ytterligare information:"
130
+
131
+ #: core/eml-upload.php:57 core/eml-upload.php:233
132
+ msgid ""
133
+ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank"
134
+ "\">Documentation on Media Library</a>"
135
+ msgstr ""
136
+ "<a href=\"http://codex.wordpress.org/Media_Library_Screen\" target=\"_blank"
137
+ "\">Dokumentation för Mediabiblioteket</a>"
138
+
139
+ #: core/eml-upload.php:58 core/eml-upload.php:234
140
+ msgid "<a href=\"https://wordpress.org/support/\" target=\"_blank\">Support Forums</a>"
141
+ msgstr ""
142
+ "<a href=\"https://wordpress.org/support/\" target=\"_blank\">WordPress Supportforum</a>"
143
+
144
+ #: core/eml-upload.php:61 core/eml-upload.php:203
145
+ msgid "Media Library"
146
+ msgstr "Mediabiblioteket"
147
+
148
+ #: core/eml-upload.php:71 core/eml-upload.php:245
149
+ msgctxt "file"
150
+ msgid "Add New"
151
+ msgstr "Skapa Ny"
152
+
153
+ #: core/eml-upload.php:76
154
+ msgid ""
155
+ "The grid view for the Media Library requires JavaScript. <a href=\"upload.php?mode=list"
156
+ "\">Switch to the list view</a>."
157
+ msgstr ""
158
+ "Rutnätsvyn i Mediabiblioteket kräver JavaScript. <a href=\"upload.php?mode=list\">Växla "
159
+ "till listvy</a>."
160
+
161
+ #: core/eml-upload.php:124
162
+ msgid "You are not allowed to edit this post."
163
+ msgstr "Du har inte tillstånd att redigera detta inlägg."
164
+
165
+ #: core/eml-upload.php:161
166
+ msgid "You are not allowed to move this post to the trash."
167
+ msgstr "Du har inte tillstånd att flytta detta inlägg till papperskorgen."
168
+
169
+ #: core/eml-upload.php:164
170
+ msgid "Error in moving to trash."
171
+ msgstr "Fel vid flyttning till papperskorgen."
172
+
173
+ #: core/eml-upload.php:173
174
+ msgid "You are not allowed to move this post out of the trash."
175
+ msgstr "Du har inte tillstånd att återställa detta inlägg från papperskorgen."
176
+
177
+ #: core/eml-upload.php:176
178
+ msgid "Error in restoring from trash."
179
+ msgstr "Fel vid återställning från papperskorgen."
180
+
181
+ #: core/eml-upload.php:185
182
+ msgid "You are not allowed to delete this post."
183
+ msgstr "Du har inte tillstånd att ta bort detta inlägg."
184
+
185
+ #: core/eml-upload.php:188
186
+ msgid "Error in deleting."
187
+ msgstr "Fel vid borttagning."
188
+
189
+ #: core/eml-upload.php:208
190
+ msgctxt "items per page (screen options)"
191
+ msgid "Media items"
192
+ msgstr "Mediaobjekt"
193
+
194
+ #: core/eml-upload.php:214
195
+ msgid ""
196
+ "All the files you&#8217;ve uploaded are listed in the Media Library, with the most recent "
197
+ "uploads listed first. You can use the Screen Options tab to customize the display of this "
198
+ "screen."
199
+ msgstr ""
200
+ "Alla filer du laddat upp listas med de senast uppladdade filerna först i "
201
+ "Mediabiblioteket. Du kan ändra detta på tabben Skärmalternativ. "
202
+
203
+ #: core/eml-upload.php:215
204
+ msgid ""
205
+ "You can narrow the list by file type/status using the text link filters at the top of the "
206
+ "screen. You also can refine the list by date using the dropdown menu above the media "
207
+ "table."
208
+ msgstr ""
209
+ "Du kan filtrera listan efter filtyp/status med hjälp av textlänksfiltren överst på "
210
+ "skärmen. Du kan också filtrera listan efter datum med hjälp av menyn ovanför "
211
+ "mediatabellen."
212
+
213
+ #: core/eml-upload.php:220
214
+ msgid "Available Actions"
215
+ msgstr "Tillgängliga Åtgärder"
216
+
217
+ #: core/eml-upload.php:222
218
+ msgid ""
219
+ "Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking "
220
+ "Edit or on the media file&#8217;s name displays a simple screen to edit that individual "
221
+ "file&#8217;s metadata. Clicking Delete Permanently will delete the file from the media "
222
+ "library (as well as from any posts to which it is currently attached). View will take you "
223
+ "to the display page for that file."
224
+ msgstr ""
225
+ "Att föra muspekaren över en rad visar åtgärdslänkarna: Redigera, Ta Bort Permanent samt "
226
+ "Visa. Om du klickar på Redigera eller på mediafilens namn visar en enkel skärm för "
227
+ "redigering av filens metadata. Om du klickar på Ta Bort Permanent så tas filen bort från "
228
+ "mediabiblioteket (samt även från inlägg som filen är bifogad till). Visa tar dig till "
229
+ "visningssidan för filen."
230
+
231
+ #: core/eml-upload.php:226
232
+ msgid "Attaching Files"
233
+ msgstr "Bifoga Filer"
234
+
235
+ #: core/eml-upload.php:228
236
+ msgid ""
237
+ "If a media file has not been attached to any post, you will see that in the Attached To "
238
+ "column, and can click on Attach File to launch a small popup that will allow you to "
239
+ "search for a post and attach the file."
240
+ msgstr ""
241
+ "Om en mediafil ej har bifogats till något inlägg så syns detta i kolumen Bifogat Till. Du "
242
+ "kan då klicka på Bifoga Fil för att öppna en liten popup som låter dig söka efter ett "
243
+ "inlägg att bifoga filen till."
244
+
245
+ #: core/eml-upload.php:248
246
+ #, php-format
247
+ msgid "Search results for &#8220;%s&#8221;"
248
+ msgstr "Sökresultat för &#8220;%s&#8221;"
249
+
250
+ #: core/eml-upload.php:254 core/eml-upload.php:279
251
+ msgid "Media attachment updated."
252
+ msgstr "Mediabilaga uppdaterad."
253
+
254
+ #: core/eml-upload.php:259
255
+ #, php-format
256
+ msgid "Reattached %d attachment."
257
+ msgid_plural "Reattached %d attachments."
258
+ msgstr[0] "Återbifogade %d bilaga."
259
+ msgstr[1] "Återbifogade %d bilagor."
260
+
261
+ #: core/eml-upload.php:264
262
+ #, php-format
263
+ msgid "Media attachment permanently deleted."
264
+ msgid_plural "%d media attachments permanently deleted."
265
+ msgstr[0] "Mediabilagan togs bort permanent."
266
+ msgstr[1] "%d mediabilagor togs bort permanent."
267
+
268
+ #: core/eml-upload.php:269
269
+ #, php-format
270
+ msgid "Media attachment moved to the trash."
271
+ msgid_plural "%d media attachments moved to the trash."
272
+ msgstr[0] "Mediabilagan flyttades till papperskorgen."
273
+ msgstr[1] "%d mediabilagor flyttades till papperskorgen."
274
+
275
+ #: core/eml-upload.php:270 core/eml-upload.php:282
276
+ msgid "Undo"
277
+ msgstr "Ångra"
278
+
279
+ #: core/eml-upload.php:275
280
+ #, php-format
281
+ msgid "Media attachment restored from the trash."
282
+ msgid_plural "%d media attachments restored from the trash."
283
+ msgstr[0] "Mediabilagan återställdes från papperskorgen."
284
+ msgstr[1] "%d mediabilagor återställdes från papperskorgen."
285
+
286
+ #: core/eml-upload.php:280
287
+ msgid "Media permanently deleted."
288
+ msgstr "Media togs bort permanent."
289
+
290
+ #: core/eml-upload.php:281
291
+ msgid "Error saving media attachment."
292
+ msgstr "Fel vid nedsparning av mediabilaga."
293
+
294
+ #: core/eml-upload.php:282
295
+ msgid "Media moved to the trash."
296
+ msgstr "Media flyttat till papperskorgen."
297
+
298
+ #: core/eml-upload.php:283
299
+ msgid "Media restored from the trash."
300
+ msgstr "Media återställd från papperskorgen."
301
+
302
+ #: core/mime-types.php:107
303
+ #, php-format
304
+ msgid " <span class=\"count\">(%s)</span>"
305
+ msgid_plural " <span class=\"count\">(%s)</span>"
306
+ msgstr[0] " <span class=\"count\">(%s)</span>"
307
+ msgstr[1] " <span class=\"count\">(%s)</span>"
308
+
309
+ #: core/options-pages.php:67 core/options-pages.php:68 core/options-pages.php:77
310
+ msgid "Media Settings"
311
+ msgstr "Mediainställningar"
312
+
313
+ #: core/options-pages.php:78 core/options-pages.php:254 core/options-pages.php:276
314
+ #: core/options-pages.php:322 core/options-pages.php:386
315
+ msgid "Settings"
316
+ msgstr "Inställningar"
317
+
318
+ #: core/options-pages.php:85 core/options-pages.php:86 core/options-pages.php:188
319
+ msgid "Taxonomies"
320
+ msgstr "Taxonomier"
321
+
322
+ #: core/options-pages.php:94 core/options-pages.php:95 core/options-pages.php:510
323
+ msgid "MIME Types"
324
+ msgstr "MIME-typer"
325
+
326
+ #: core/options-pages.php:132 core/options-pages.php:229 core/options-pages.php:243
327
+ #: core/options-pages.php:311 core/options-pages.php:383
328
+ msgid "Edit"
329
+ msgstr "Redigera"
330
+
331
+ #: core/options-pages.php:133 pro/enhanced-media-library-pro.php:166
332
+ msgid "Close"
333
+ msgstr "Stäng"
334
+
335
+ #: core/options-pages.php:134 core/options-pages.php:244 core/options-pages.php:312
336
+ msgid "View"
337
+ msgstr "Visa"
338
+
339
+ #: core/options-pages.php:135 core/options-pages.php:245 core/options-pages.php:313
340
+ msgid "Update"
341
+ msgstr "Uppdatera"
342
+
343
+ #: core/options-pages.php:136 core/options-pages.php:246 core/options-pages.php:314
344
+ msgid "Add New"
345
+ msgstr "Lägg Till Ny"
346
+
347
+ #: core/options-pages.php:137 core/options-pages.php:247 core/options-pages.php:315
348
+ msgid "New"
349
+ msgstr "Ny"
350
+
351
+ #: core/options-pages.php:138
352
+ msgid "Name"
353
+ msgstr "Namn"
354
+
355
+ #: core/options-pages.php:139 core/options-pages.php:248 core/options-pages.php:316
356
+ msgid "Parent"
357
+ msgstr "Förälder"
358
+
359
+ #: core/options-pages.php:140 core/options-pages.php:242 core/options-pages.php:310
360
+ msgid "All"
361
+ msgstr "Alla"
362
+
363
+ #: core/options-pages.php:141 core/options-pages.php:249 core/options-pages.php:317
364
+ msgid "Search"
365
+ msgstr "Sök"
366
+
367
+ #: core/options-pages.php:143
368
+ msgid ""
369
+ "Taxonomy will be deleted permanently! Your media files will remain intacted, but all the "
370
+ "connections with this taxonomy and its terms will be lost."
371
+ msgstr ""
372
+ "Taxonomin kommer att tas bort permanent! Dina mediafiler påverkas inte, men alla "
373
+ "kopplingar till denna taxonomi kommer att gå förlorade."
374
+
375
+ #: core/options-pages.php:144
376
+ msgid "There is already a taxonomy with the same name. Please chose other one."
377
+ msgstr "Det finns redan en taxonomi med detta namn. Var god välj ett annat namn."
378
+
379
+ #: core/options-pages.php:145 core/options-pages.php:298
380
+ msgid "New Taxonomy"
381
+ msgstr "Ny Taxonomi"
382
+
383
+ #: core/options-pages.php:146
384
+ msgid "Please choose Singular and Plural names for all your new taxomonies."
385
+ msgstr "Var god välj Singular- och Plural-namn åt alla dina nya taxonomier."
386
+
387
+ #: core/options-pages.php:147
388
+ msgid "Please choose Singilar name for all your new taxomonies."
389
+ msgstr "Var god välj Singular-namn åt alla dina nya taxonomier."
390
+
391
+ #: core/options-pages.php:148
392
+ msgid "Please choose Plural Name for all your new taxomonies."
393
+ msgstr "Var god välj Plural-namn åt alla dina nya taxonomier."
394
+
395
+ #: core/options-pages.php:150
396
+ msgid "Warning! All your custom MIME Types will be deleted by this operation."
397
+ msgstr "Varning! Alla dina anpassade MIME-typer kommer att tas bort med denna åtgärd."
398
+
399
+ #: core/options-pages.php:151
400
+ msgid "Please fill into all fields."
401
+ msgstr "Var god fyll i alla fält."
402
+
403
+ #: core/options-pages.php:152
404
+ msgid "Duplicate extensions or MIME types. Please chose other one."
405
+ msgstr "Dubbeldefinition av filändelse eller MIME-typ. Var god välj en annan."
406
+
407
+ #: core/options-pages.php:180 core/options-pages.php:501 pro/core/options-pages.php:170
408
+ msgid "You do not have sufficient permissions to access this page."
409
+ msgstr "Du har inte tillräckliga tillstånd för tillgång till denna sida."
410
+
411
+ #: core/options-pages.php:204
412
+ msgid "Media Taxonomies"
413
+ msgstr "Mediataxonomier"
414
+
415
+ #: core/options-pages.php:208 core/options-pages.php:360
416
+ msgid "Assign following taxonomies to Media Library:"
417
+ msgstr "Tilldela följande taxonomier till Mediabiblioteket:"
418
+
419
+ #: core/options-pages.php:226 core/options-pages.php:296 core/options-pages.php:376
420
+ msgid "Assign Taxonomy"
421
+ msgstr "Tilldela Taxonomi"
422
+
423
+ #: core/options-pages.php:229 core/options-pages.php:383
424
+ msgid "Edit Taxonomy"
425
+ msgstr "Redigera Taxonomi"
426
+
427
+ #: core/options-pages.php:232 core/options-pages.php:300
428
+ msgid "Delete Taxonomy"
429
+ msgstr "Ta Bort Taxonomi"
430
+
431
+ #: core/options-pages.php:237 core/options-pages.php:305
432
+ msgid "Labels"
433
+ msgstr "Etiketter"
434
+
435
+ #: core/options-pages.php:239 core/options-pages.php:307
436
+ msgid "Singular"
437
+ msgstr "Singular"
438
+
439
+ #: core/options-pages.php:240 core/options-pages.php:308
440
+ msgid "Plural"
441
+ msgstr "Plural"
442
+
443
+ #: core/options-pages.php:241 core/options-pages.php:309
444
+ msgid "Menu Name"
445
+ msgstr "Menynamn"
446
+
447
+ #: core/options-pages.php:256 core/options-pages.php:324
448
+ msgid "Taxonomy Name"
449
+ msgstr "Taxonominamn"
450
+
451
+ #: core/options-pages.php:257 core/options-pages.php:325
452
+ msgid "Hierarchical"
453
+ msgstr "Hierarkisk"
454
+
455
+ #: core/options-pages.php:258 core/options-pages.php:326
456
+ msgid "Column in List View"
457
+ msgstr "Kolumn i Listvy"
458
+
459
+ #: core/options-pages.php:259 core/options-pages.php:278 core/options-pages.php:327
460
+ #: core/options-pages.php:388
461
+ msgid "Filter in List View"
462
+ msgstr "Filtrera i Listvy"
463
+
464
+ #: core/options-pages.php:260 core/options-pages.php:279 core/options-pages.php:328
465
+ #: core/options-pages.php:389
466
+ msgid "Filter in Grid View / Media Popup"
467
+ msgstr "Filtrera i Rutnätsvy / Media-popup"
468
+
469
+ #: core/options-pages.php:261 core/options-pages.php:280 core/options-pages.php:329
470
+ #: core/options-pages.php:390
471
+ msgid "Edit in Media Popup"
472
+ msgstr "Redigera i Media-popup"
473
+
474
+ #: core/options-pages.php:262 core/options-pages.php:330
475
+ msgid "Show in Nav Menu"
476
+ msgstr "Visa i Nav Menu"
477
+
478
+ #: core/options-pages.php:263 core/options-pages.php:331
479
+ msgid "Remember terms order (sort)"
480
+ msgstr "Kom ihåg sorteringsorning för termer (sortering)"
481
+
482
+ #: core/options-pages.php:264 core/options-pages.php:332
483
+ msgid "Rewrite Slug"
484
+ msgstr "Skriv Om Slug"
485
+
486
+ #: core/options-pages.php:265 core/options-pages.php:333
487
+ msgid "Slug with Front"
488
+ msgstr "Slug med Framsida"
489
+
490
+ #: core/options-pages.php:345
491
+ msgid "Add New Taxonomy"
492
+ msgstr "Lägg Till Ny Taxonomi"
493
+
494
+ #: core/options-pages.php:356
495
+ msgid "Non-Media Taxonomies"
496
+ msgstr "Icke-Media-taxonomier"
497
+
498
+ #: core/options-pages.php:415
499
+ msgid "Options"
500
+ msgstr "Alternativ"
501
+
502
+ #: core/options-pages.php:425 core/options-pages.php:428
503
+ msgid "Taxonomy archive pages"
504
+ msgstr "Arkivsidor för Taxonomier"
505
+
506
+ #: core/options-pages.php:429
507
+ msgid "Turn on media taxonomy archive pages on the front-end"
508
+ msgstr "Slå på arkivsidor för mediataxonomier i frontend"
509
+
510
+ #: core/options-pages.php:430
511
+ msgid "Re-save your permalink settings after this option change to make it work."
512
+ msgstr ""
513
+ "Återspara inställningarna för permalänkar efter en ändring av detta alternativ för att få "
514
+ "det att fungera."
515
+
516
+ #: core/options-pages.php:436
517
+ msgid "Assign all like hierarchical"
518
+ msgstr "Tilldela alla som hierarkiska"
519
+
520
+ #: core/options-pages.php:439 core/options-pages.php:440
521
+ msgid "Show non-hierarchical taxonomies like hierarchical in Grid View / Media Popup"
522
+ msgstr "Visa icke-hierarkiska taxonomier som hierarkiska i Rutnätsvy / Media-popup"
523
+
524
+ #: core/options-pages.php:446 core/options-pages.php:449
525
+ msgid "Force filters"
526
+ msgstr "Tvinga filter"
527
+
528
+ #: core/options-pages.php:450
529
+ msgid "Show media filters for ANY Media Popup."
530
+ msgstr "Visa mediafilter för ALLA Mediapopuper."
531
+
532
+ #: core/options-pages.php:451
533
+ msgid "May be useful for those who need forcing filters for third-party plugins or themes."
534
+ msgstr ""
535
+ "Kan vara till hjälp för dem som behöver tvinga filter för tredjepartstillägg eller teman."
536
+
537
+ #: core/options-pages.php:511
538
+ msgid "Add New MIME Type"
539
+ msgstr "Lägg Till Ny MIME-typ"
540
+
541
+ #: core/options-pages.php:529 core/options-pages.php:582
542
+ msgid "Extension"
543
+ msgstr "Utökning"
544
+
545
+ #: core/options-pages.php:530 core/options-pages.php:583
546
+ msgid "MIME Type"
547
+ msgstr "MIME-typ"
548
+
549
+ #: core/options-pages.php:531 core/options-pages.php:584
550
+ msgid "Singular Label"
551
+ msgstr "Singular-etikett"
552
+
553
+ #: core/options-pages.php:532 core/options-pages.php:585
554
+ msgid "Plural Label"
555
+ msgstr "Plural-etikett"
556
+
557
+ #: core/options-pages.php:533 core/options-pages.php:561 core/options-pages.php:574
558
+ #: core/options-pages.php:586
559
+ msgid "Add Filter"
560
+ msgstr "Lägg Till Filter"
561
+
562
+ #: core/options-pages.php:534 core/options-pages.php:562 core/options-pages.php:575
563
+ #: core/options-pages.php:587
564
+ msgid "Allow Upload"
565
+ msgstr "Tillåt Uppladdning"
566
+
567
+ #: core/options-pages.php:576
568
+ msgid "Delete MIME Type"
569
+ msgstr "Ta Bort MIME-typ"
570
+
571
+ #: core/options-pages.php:593
572
+ msgid "Restore default MIME Types"
573
+ msgstr "Återställ standard MIME-typer"
574
+
575
+ #: core/taxonomies.php:321 core/taxonomies.php:327 enhanced-media-library.php:378
576
+ msgid "Filter by "
577
+ msgstr "Filtrera efter "
578
+
579
+ #: core/taxonomies.php:328 enhanced-media-library.php:379
580
+ msgid "All "
581
+ msgstr "Alla "
582
+
583
+ #: core/taxonomies.php:329 enhanced-media-library.php:380
584
+ msgid "Not in "
585
+ msgstr "Ej i "
586
+
587
+ #: enhanced-media-library.php:47
588
+ msgid ""
589
+ "Please deactivate and <strong>remove</strong> the old version prior to the "
590
+ "<strong>Enhanced Media Library PRO</strong> activation. All your data will remain intact."
591
+ msgstr ""
592
+ "Var god deaktivera och <strong>ta bort</strong> den gamla versionen föra aktivering av "
593
+ "<strong>Enhanced Media Library PRO</strong>. Din data kommer inte att påverkas."
594
+
595
+ #: enhanced-media-library.php:47
596
+ msgid "Return to Plugins"
597
+ msgstr "Återgå till Tillägg"
598
+
599
+ #: pro/core/bulk-edit.php:75
600
+ msgid "Remove"
601
+ msgstr "Ta Bort"
602
+
603
+ #: pro/core/bulk-edit.php:79
604
+ msgid "Deselect"
605
+ msgstr "Avmarkera"
606
+
607
+ #: pro/core/bulk-edit.php:86
608
+ msgid "Caption this image&hellip;"
609
+ msgstr "Rubricera denna bild&hellip;"
610
+
611
+ #: pro/core/bulk-edit.php:90
612
+ msgid "Describe this video&hellip;"
613
+ msgstr "Beskriv denna video&hellip;"
614
+
615
+ #: pro/core/bulk-edit.php:92
616
+ msgid "Describe this audio file&hellip;"
617
+ msgstr "Beskriv denna audiofil&hellip;"
618
+
619
+ #: pro/core/bulk-edit.php:94
620
+ msgid "Describe this media file&hellip;"
621
+ msgstr "Beskriv denna mediafil&hellip;"
622
+
623
+ #: pro/core/bulk-edit.php:103
624
+ msgid "Attachments Details"
625
+ msgstr "Detaljer För Bilaga"
626
+
627
+ #: pro/core/bulk-edit.php:157
628
+ msgid "Select All"
629
+ msgstr "Välj Alla"
630
+
631
+ #: pro/core/bulk-edit.php:159
632
+ msgid "Edit Selection"
633
+ msgstr "Redigera Valda"
634
+
635
+ #: pro/core/bulk-edit.php:162
636
+ msgid "Deselect All"
637
+ msgstr "Avmarkera Alla"
638
+
639
+ #: pro/core/bulk-edit.php:166
640
+ msgid "Delete Selected"
641
+ msgstr "Ta Bort Valda"
642
+
643
+ #: pro/core/options-pages.php:100 pro/core/options-pages.php:101
644
+ msgid "EML PRO Updates"
645
+ msgstr "EML PRO-uppdateringar"
646
+
647
+ #: pro/core/options-pages.php:126 pro/enhanced-media-library-pro.php:168
648
+ msgid "Bulk Edit"
649
+ msgstr "Bulkredigering"
650
+
651
+ #: pro/core/options-pages.php:134 pro/core/options-pages.php:137
652
+ msgid "Turn off 'Save Changes' button"
653
+ msgstr "Stäng av knappen 'Spara Ändringar'"
654
+
655
+ #: pro/core/options-pages.php:138
656
+ msgid "Save changes on the fly"
657
+ msgstr "Spara ändringar direkt"
658
+
659
+ #: pro/core/options-pages.php:139
660
+ msgid ""
661
+ "Any click on a taxonomy checkbox during media files bulk edition will lead to an <strong "
662
+ "style=\"color:red\">immediate saving</strong> of the data. Please, be careful! You have "
663
+ "much greater chance to <strong style=\"color:red\">accidentally perform wrong re-"
664
+ "assigning</strong> of a lot of your media files / taxonomies with this option turned on."
665
+ msgstr ""
666
+ "Att klicka i en taxonomis kryssruta under bulkredigering av mediafiler kommer att leda "
667
+ "till <strong style=\"color:red\">direkt nedsparning</strong> av data. Var god iakta "
668
+ "försiktighet! Det är mycket högre risk för att <strong style=\"color:red\">av misstag "
669
+ "felaktigt återtilldela</strong> flera av dina mediafiler / taxonomier om detta alternativ "
670
+ "är påslaget."
671
+
672
+ #: pro/core/options-pages.php:140
673
+ msgid ""
674
+ "Strongly NOT recommended option if you work with more than hundred of files at a time."
675
+ msgstr ""
676
+ "Detta alternativ rekommenderas INTE om du arbetar med fler än hundra filer åt gången."
677
+
678
+ #: pro/core/options-pages.php:175
679
+ msgid "Updates"
680
+ msgstr "Uppdateringar"
681
+
682
+ #: pro/core/options-pages.php:190
683
+ msgid "Enhanced Media Library PRO License"
684
+ msgstr "Enhanced Media Library PRO-licens"
685
+
686
+ #: pro/core/options-pages.php:215
687
+ msgid ""
688
+ "To unlock updates, please enter your license key below. You can see your license key in "
689
+ "<a href=\"http://www.wpuxsolutions.com/account/\">Your Account</a>. If you don&#8217;t "
690
+ "have a licence key, your are welcome to <a href=\"http://www.wpuxsolutions.com/pricing/"
691
+ "\">purchase it</a>."
692
+ msgstr ""
693
+ "För att låsa upp uppdateringar, var god ange din licensnyckel på nedan. Du kan se din "
694
+ "licensnyckel i <a href=\"http://www.wpuxsolutions.com/account/\">Ditt Konto</a>. Om du "
695
+ "inte har någon licensnyckel så är du välkommen att <a href=\"http://www.wpuxsolutions.com/"
696
+ "pricing/\">köpa en</a>."
697
+
698
+ #: pro/core/options-pages.php:219
699
+ msgid "License Key"
700
+ msgstr "Licensnyckel"
701
+
702
+ #: pro/core/options-pages.php:226
703
+ msgid "Activate License"
704
+ msgstr "Aktivera Licens"
705
+
706
+ #: pro/core/options-pages.php:243
707
+ msgid "Your license is active!"
708
+ msgstr "Din licens är aktiv!"
709
+
710
+ #: pro/core/update.php:109 pro/core/update.php:114 pro/core/update.php:118
711
+ msgid ""
712
+ "An unexpected error occurred. Something may be wrong with WordPress.org or this "
713
+ "server&#8217;s configuration. If you continue to have problems, please try the <a href="
714
+ "\"https://wordpress.org/support/\">support forums</a>."
715
+ msgstr ""
716
+ "Ett oväntat fel uppstod. Någonting kanske är fel på WordPress.org eller med denna servers "
717
+ "konfigurering. Om du fortsätter att stöta på problem, var god prova <a href=\"https://"
718
+ "wordpress.org/support/\">WordPress supportforum</a>."
719
+
720
+ #: pro/core/update.php:109
721
+ msgid ""
722
+ "(WordPress could not establish a secure connection to WordPress.org. Please contact your "
723
+ "server administrator.)"
724
+ msgstr ""
725
+ "(WordPress kunde inte etablera en säker uppkoppling till WordPress.org. Var god kontakta "
726
+ "din serveradministratör)"
727
+
728
+ #: pro/core/update.php:184
729
+ #, php-format
730
+ msgid ""
731
+ "To unlock updates, please enter your license key on the <a href=\"%s\">Updates</a> page. "
732
+ "You can see your license key in <a href=\"%s\">Your Account</a>. If you don&#8217;t have "
733
+ "a licence key, your are welcome to <a href=\"%s\">purchase it</a>."
734
+ msgstr ""
735
+ "För att låsa upp uppdateringar, var god ange din licensnyckel på sidan för <a href=\"%s"
736
+ "\">Uppdateringar</a>. Du kan se din licensnyckel i <a href=\"%s\">Ditt Konto</a>. Om du "
737
+ "inte har någon licensnyckel så är du välkommen att <a href=\"%s\">köpa en</a>."
738
+
739
+ #: pro/enhanced-media-library-pro.php:89 pro/enhanced-media-library-pro.php:100
740
+ msgid "Expand Details"
741
+ msgstr "Expandera Detaljer"
742
+
743
+ #: pro/enhanced-media-library-pro.php:90 pro/enhanced-media-library-pro.php:101
744
+ msgid "Collapse Details"
745
+ msgstr "Fäll Ihop Detaljer"
746
+
747
+ #: pro/enhanced-media-library-pro.php:93
748
+ msgid "Validation Failed. One or more fields below are required."
749
+ msgstr "Validering Misslyckades. Ett eller flera fält nedan är obligatoriska."
750
+
751
+ #: pro/enhanced-media-library-pro.php:99
752
+ msgid "The changes you made will be lost if you navigate away from this page"
753
+ msgstr "Ändringarna du gjort kommer förloras om du navigerar bort från denna sida"
754
+
755
+ #: pro/enhanced-media-library-pro.php:160
756
+ msgid "ALL files belong to this item"
757
+ msgstr "ALLA filer tillhör detta objekt"
758
+
759
+ #: pro/enhanced-media-library-pro.php:161
760
+ msgid "SOME files belong to this item"
761
+ msgstr "NÅGRA filer tillhör detta objekt"
762
+
763
+ #: pro/enhanced-media-library-pro.php:162
764
+ msgid "NO files belong to this item"
765
+ msgstr "INGA filer tillhör detta objekt"
766
+
767
+ #: pro/enhanced-media-library-pro.php:163
768
+ msgid "Changes saved."
769
+ msgstr "Ändringar sparade."
770
+
771
+ #: pro/enhanced-media-library-pro.php:164
772
+ msgid "Something went wrong."
773
+ msgstr "Någonting gick fel."
774
+
775
+ #: pro/enhanced-media-library-pro.php:165
776
+ msgid "Save Changes"
777
+ msgstr "Spara Ändringar"
778
+
779
+ #: pro/enhanced-media-library-pro.php:167
780
+ msgid "Edit Media Files"
781
+ msgstr "Redigera Mediafiler"
782
+
783
+ #: pro/enhanced-media-library-pro.php:260
784
+ msgid ""
785
+ "<strong>Enhanced Media Library PRO</strong> does not require free version to be active. "
786
+ "Please deactivate and remove the free version of the plugin."
787
+ msgstr ""
788
+ "<strong>Enhanced Media Library PRO</strong> kräver ej att gratisversion är aktiv. Var god "
789
+ "att deaktivera och ta bort gratisversionen av tillägget."
790
+
791
+ #. Plugin Name of the plugin/theme
792
+ msgid "Enhanced Media Library"
793
+ msgstr "Enhanced Media Library"
794
+
795
+ #. Plugin Name of the plugin/theme
796
+ msgid "Enhanced Media Library PRO"
797
+ msgstr "Enhanced Media Library PRO"
798
+
799
+ #. Description of the plugin/theme
800
+ msgid "This plugin will be handy for those who need to manage a lot of media files."
801
+ msgstr "Detta är ett praktiskt tillägg för de som behöver hantera många mediafiler."
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: webbistro
3
  Tags: media library, taxonomy, taxonomies, mime, mime type, attachment, media category, media categories, media tag, media tags, media taxonomy, media taxonomies, media filter, media organizer, file types, media types, media uploader, custom, media management, attachment management, files management, ux, user experience, wp-admin, admin, categories, category, filter, image, images, media, upload
4
  Requires at least: 4.0
5
- Tested up to: 4.2.1
6
- Stable tag: 2.0.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -39,6 +39,15 @@ This plugin will be handy for those who need to manage a lot of media files.
39
  * be in total control of the names of your file type filters
40
 
41
 
 
 
 
 
 
 
 
 
 
42
  = Compatiblity with Other Plugins =
43
 
44
  * Advanced Custom Fields / Advanced Custom Fields PRO
@@ -74,6 +83,8 @@ Please let us know if you find any issue with the plugins from the list above or
74
 
75
 
76
 
 
 
77
  == Installation ==
78
 
79
  1. Upload plugin folder to '/wp-content/plugins/' directory
@@ -130,6 +141,29 @@ Right now it is possible via WP_Query ([example of the code](http://wordpress.or
130
 
131
  == Changelog ==
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  = 2.0.4.6 =
134
  *Release Date - April 29, 2015*
135
 
2
  Contributors: webbistro
3
  Tags: media library, taxonomy, taxonomies, mime, mime type, attachment, media category, media categories, media tag, media tags, media taxonomy, media taxonomies, media filter, media organizer, file types, media types, media uploader, custom, media management, attachment management, files management, ux, user experience, wp-admin, admin, categories, category, filter, image, images, media, upload
4
  Requires at least: 4.0
5
+ Tested up to: 4.3
6
+ Stable tag: 2.0.4.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
39
  * be in total control of the names of your file type filters
40
 
41
 
42
+ = Available Languages =
43
+
44
+ * Dutch
45
+ * German
46
+ * Hebrew
47
+ * Polish
48
+ * Swedish
49
+
50
+
51
  = Compatiblity with Other Plugins =
52
 
53
  * Advanced Custom Fields / Advanced Custom Fields PRO
83
 
84
 
85
 
86
+
87
+
88
  == Installation ==
89
 
90
  1. Upload plugin folder to '/wp-content/plugins/' directory
141
 
142
  == Changelog ==
143
 
144
+ = 2.0.4.7 =
145
+ *Release Date - August 11, 2015*
146
+
147
+ = Bugfixes =
148
+ * Detach issue fixed [Support Request](https://wordpress.org/support/topic/cannot-detach-image-from-custom-post-type)
149
+ * The bug of load-upload.php hook fixed, please use any priority less than 999 for this hook
150
+ * Visual Composer incompatibility fixed (PRO only)
151
+
152
+ = Improvements =
153
+ * Better CSS for the Media Library grid mode (PRO only)
154
+ * Better localization [Support Request](https://wordpress.org/support/topic/the-plugin-codestyling-localization-was-forced-to-protect-its-own-page)
155
+
156
+ = Compatibility =
157
+ * Wordpress 4.3 compatibility ensured
158
+ * Visual Composer incompatibility fixed (PRO only)
159
+
160
+ = Languages =
161
+ * Hebrew translation added
162
+ * German translation added
163
+ * Swedish translation added
164
+
165
+
166
+ &nbsp;
167
  = 2.0.4.6 =
168
  *Release Date - April 29, 2015*
169