Enhanced Media Library - Version 1.0.2

Version Description

  • Fix: Assigned non-media taxonomies archive page fixed: Support Request
Download this release

Release Info

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

Code changes from version 1.0.1 to 1.0.2

core/options-pages.php CHANGED
@@ -53,11 +53,11 @@ function wpuxss_eml_admin_menu()
53
  function wpuxss_eml_admin_settings_pages_scripts()
54
  {
55
  global $wpuxss_eml_version,
56
- $wpuxss_plugin_dir;
57
 
58
  wp_enqueue_script(
59
  'wpuxss-eml-options-script',
60
- $wpuxss_plugin_dir . '/js/eml-options.js',
61
  array('jquery'),
62
  $wpuxss_eml_version,
63
  true
@@ -155,7 +155,7 @@ function wpuxss_eml_print_taxonomies_options()
155
 
156
  $html .= '<li class="' . $li_class . '" id="' . $taxonomy->name . '">';
157
 
158
- $html .= '<input class="wpuxss-eml-assigned" name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][assigned]" type="checkbox" value="1" ' . checked( true, $assigned, false ) . ' title="Assign Taxonomy" />';
159
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][eml_media]" type="hidden" value="' . $eml_media . '" />';
160
  $html .= ' <label>' . $taxonomy->label . '</label>';
161
  $html .= '<a class="wpuxss-eml-button-edit" title="' . __('Edit Taxonomy','eml') . '" href="javascript:;">' . __('Edit','eml') . ' &darr;</a>';
@@ -221,7 +221,7 @@ function wpuxss_eml_print_taxonomies_options()
221
  }
222
 
223
  $html .= '<li class="wpuxss-eml-clone" style="display:none">';
224
- $html .= '<input class="wpuxss-eml-assigned" name="" type="checkbox" class="wpuxss-eml-assigned" value="1" checked="checked" title="Assign Taxonomy" />';
225
  $html .= '<input name="" type="hidden" class="wpuxss-eml-eml_media" value="1" />';
226
  $html .= ' <label class="wpuxss-eml-taxonomy-label">' . __('New Taxonomy','eml') . '</label>';
227
 
@@ -302,7 +302,7 @@ function wpuxss_eml_print_taxonomies_options()
302
  if ( $taxonomy->name != 'post_format' )
303
  {
304
  $html .= '<li>';
305
- $html .= '<input class="wpuxss-eml-assigned" name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][assigned]" type="checkbox" value="1" ' . checked( 1, $wpuxss_eml_taxonomies[$taxonomy->name]['assigned'], false ) . ' title="Assign Taxonomy" />';
306
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][eml_media]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['eml_media'] . '" />';
307
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][show_admin_column]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['show_admin_column'] . '" />';
308
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][show_in_nav_menus]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['show_in_nav_menus'] . '" />';
@@ -438,8 +438,8 @@ function wpuxss_eml_print_mimetypes_options()
438
  <td><code><?php echo $mime; ?></code><input type="hidden" class="wpuxss-eml-mime" name="wpuxss_eml_mimes[<?php echo $type; ?>][mime]" value="<?php echo $wpuxss_eml_mimes[$type]['mime']; ?>" /></td>
439
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][singular]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['singular']); ?>" /></td>
440
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][plural]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['plural']); ?>" /></td>
441
- <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][filter]" value="1" <?php checked(1, $wpuxss_eml_mimes[$type]['filter']); ?> /></td>
442
- <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][upload]" value="1" <?php checked(true, $allowed); ?> /></td>
443
  <td><a class="wpuxss-eml-button-remove" title="Delete MIME Type" href="javascript:;">&ndash;</a></td>
444
  </tr>
445
 
@@ -453,8 +453,8 @@ function wpuxss_eml_print_mimetypes_options()
453
  <td><input type="text" class="wpuxss-eml-mime" placeholder="image/jpeg" /></td>
454
  <td><input type="text" class="wpuxss-eml-singular" placeholder="Image" /></td>
455
  <td><input type="text" class="wpuxss-eml-plural" placeholder="Images" /></td>
456
- <td class="checkbox_td"><input type="checkbox" class="wpuxss-eml-filter" value="1" /></td>
457
- <td class="checkbox_td"><input type="checkbox" class="wpuxss-eml-upload" value="1" /></td>
458
  <td><a class="wpuxss-eml-button-remove" title="<?php _e('Delete MIME Type','eml'); ?>" href="javascript:;">&ndash;</a></td>
459
  </tr>
460
 
53
  function wpuxss_eml_admin_settings_pages_scripts()
54
  {
55
  global $wpuxss_eml_version,
56
+ $wpuxss_eml_dir;
57
 
58
  wp_enqueue_script(
59
  'wpuxss-eml-options-script',
60
+ $wpuxss_eml_dir . '/js/eml-options.js',
61
  array('jquery'),
62
  $wpuxss_eml_version,
63
  true
155
 
156
  $html .= '<li class="' . $li_class . '" id="' . $taxonomy->name . '">';
157
 
158
+ $html .= '<input class="wpuxss-eml-assigned" name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][assigned]" type="checkbox" value="1" ' . checked( true, $assigned, false ) . ' title="' . __('Assign Taxonomy','eml') . '" />';
159
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][eml_media]" type="hidden" value="' . $eml_media . '" />';
160
  $html .= ' <label>' . $taxonomy->label . '</label>';
161
  $html .= '<a class="wpuxss-eml-button-edit" title="' . __('Edit Taxonomy','eml') . '" href="javascript:;">' . __('Edit','eml') . ' &darr;</a>';
221
  }
222
 
223
  $html .= '<li class="wpuxss-eml-clone" style="display:none">';
224
+ $html .= '<input class="wpuxss-eml-assigned" name="" type="checkbox" class="wpuxss-eml-assigned" value="1" checked="checked" title="' . __('Assign Taxonomy','eml') . '" />';
225
  $html .= '<input name="" type="hidden" class="wpuxss-eml-eml_media" value="1" />';
226
  $html .= ' <label class="wpuxss-eml-taxonomy-label">' . __('New Taxonomy','eml') . '</label>';
227
 
302
  if ( $taxonomy->name != 'post_format' )
303
  {
304
  $html .= '<li>';
305
+ $html .= '<input class="wpuxss-eml-assigned" name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][assigned]" type="checkbox" value="1" ' . checked( 1, $wpuxss_eml_taxonomies[$taxonomy->name]['assigned'], false ) . ' title="' . __('Assign Taxonomy','eml') . '" />';
306
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][eml_media]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['eml_media'] . '" />';
307
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][show_admin_column]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['show_admin_column'] . '" />';
308
  $html .= '<input name="wpuxss_eml_taxonomies[' . $taxonomy->name . '][show_in_nav_menus]" type="hidden" value="' . $wpuxss_eml_taxonomies[$taxonomy->name]['show_in_nav_menus'] . '" />';
438
  <td><code><?php echo $mime; ?></code><input type="hidden" class="wpuxss-eml-mime" name="wpuxss_eml_mimes[<?php echo $type; ?>][mime]" value="<?php echo $wpuxss_eml_mimes[$type]['mime']; ?>" /></td>
439
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][singular]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['singular']); ?>" /></td>
440
  <td><input type="text" name="wpuxss_eml_mimes[<?php echo $type; ?>][plural]" value="<?php echo esc_html($wpuxss_eml_mimes[$type]['plural']); ?>" /></td>
441
+ <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][filter]" title="<?php _e('Add Filter','eml'); ?>" value="1" <?php checked(1, $wpuxss_eml_mimes[$type]['filter']); ?> /></td>
442
+ <td class="checkbox_td"><input type="checkbox" name="wpuxss_eml_mimes[<?php echo $type; ?>][upload]" title="<?php _e('Allow Upload','eml'); ?>" value="1" <?php checked(true, $allowed); ?> /></td>
443
  <td><a class="wpuxss-eml-button-remove" title="Delete MIME Type" href="javascript:;">&ndash;</a></td>
444
  </tr>
445
 
453
  <td><input type="text" class="wpuxss-eml-mime" placeholder="image/jpeg" /></td>
454
  <td><input type="text" class="wpuxss-eml-singular" placeholder="Image" /></td>
455
  <td><input type="text" class="wpuxss-eml-plural" placeholder="Images" /></td>
456
+ <td class="checkbox_td"><input type="checkbox" class="wpuxss-eml-filter" title="<?php _e('Add Filter','eml'); ?>" value="1" /></td>
457
+ <td class="checkbox_td"><input type="checkbox" class="wpuxss-eml-upload" title="<?php _e('Allow Upload','eml'); ?>" value="1" /></td>
458
  <td><a class="wpuxss-eml-button-remove" title="<?php _e('Delete MIME Type','eml'); ?>" href="javascript:;">&ndash;</a></td>
459
  </tr>
460
 
core/taxonomies.php CHANGED
@@ -442,7 +442,7 @@ function wpuxss_eml_pre_get_posts( $query )
442
 
443
  foreach ( $wpuxss_eml_taxonomies as $taxonomy => $params )
444
  {
445
- if ( $params['assigned'] && $query->is_main_query() && is_tax($taxonomy) && !is_admin() )
446
  {
447
  $query->set( 'post_status', 'inherit' );
448
  }
442
 
443
  foreach ( $wpuxss_eml_taxonomies as $taxonomy => $params )
444
  {
445
+ if ( $params['assigned'] && $params['eml_media'] && $query->is_main_query() && is_tax($taxonomy) && !is_admin() )
446
  {
447
  $query->set( 'post_status', 'inherit' );
448
  }
enhanced-media-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wordpressuxsolutions.com
5
  Description: Better management for WordPress Media Library.
6
- Version: 1.0.1
7
  Author: WordPress UX Solutions
8
  Author URI: http://wordpressuxsolutions.com
9
  License: GPLv2 or later
@@ -31,9 +31,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31
 
32
 
33
 
34
- $wpuxss_eml_version = '1.0.1';
35
  $wpuxss_eml_old_version = get_option('wpuxss_eml_version', false);
36
- $wpuxss_plugin_dir = plugin_dir_url( __FILE__ );
37
 
38
 
39
 
@@ -180,12 +180,12 @@ add_action( 'admin_init', 'wpuxss_eml_on_admin_init' );
180
  function wpuxss_eml_on_admin_init()
181
  {
182
  global $wpuxss_eml_version,
183
- $wpuxss_plugin_dir;
184
 
185
  // plugin scripts
186
  wp_enqueue_script(
187
  'wpuxss-eml-media-uploader-script',
188
- $wpuxss_plugin_dir . '/js/eml-media-uploader.js',
189
  array('backbone'),
190
  $wpuxss_eml_version,
191
  true
@@ -194,7 +194,7 @@ function wpuxss_eml_on_admin_init()
194
  // admin styles
195
  wp_enqueue_style(
196
  'wpuxss-eml-admin-custom-style',
197
- $wpuxss_plugin_dir . '/css/eml-admin.css',
198
  array(),
199
  $wpuxss_eml_version,
200
  'all'
3
  Plugin Name: Enhanced Media Library
4
  Plugin URI: http://wordpressuxsolutions.com
5
  Description: Better management for WordPress Media Library.
6
+ Version: 1.0.2
7
  Author: WordPress UX Solutions
8
  Author URI: http://wordpressuxsolutions.com
9
  License: GPLv2 or later
31
 
32
 
33
 
34
+ $wpuxss_eml_version = '1.0.2';
35
  $wpuxss_eml_old_version = get_option('wpuxss_eml_version', false);
36
+ $wpuxss_eml_dir = plugin_dir_url( __FILE__ );
37
 
38
 
39
 
180
  function wpuxss_eml_on_admin_init()
181
  {
182
  global $wpuxss_eml_version,
183
+ $wpuxss_eml_dir;
184
 
185
  // plugin scripts
186
  wp_enqueue_script(
187
  'wpuxss-eml-media-uploader-script',
188
+ $wpuxss_eml_dir . '/js/eml-media-uploader.js',
189
  array('backbone'),
190
  $wpuxss_eml_version,
191
  true
194
  // admin styles
195
  wp_enqueue_style(
196
  'wpuxss-eml-admin-custom-style',
197
+ $wpuxss_eml_dir . '/css/eml-admin.css',
198
  array(),
199
  $wpuxss_eml_version,
200
  'all'
languages/eml.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Enhanced Media Library package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Enhanced Media Library 1.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
7
- "POT-Creation-Date: 2013-11-03 22:01:01+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -21,214 +21,221 @@ msgid "Media Settings"
21
  msgstr ""
22
 
23
  #: core/options-pages.php:24 core/options-pages.php:25
24
- #: core/options-pages.php:118
25
  msgid "Taxonomies"
26
  msgstr ""
27
 
28
  #: core/options-pages.php:32 core/options-pages.php:33
29
- #: core/options-pages.php:387
30
  msgid "MIME Types"
31
  msgstr ""
32
 
33
- #: core/options-pages.php:66 core/options-pages.php:160
34
- #: core/options-pages.php:174 core/options-pages.php:238
35
- #: core/options-pages.php:311
36
  msgid "Edit"
37
  msgstr ""
38
 
39
- #: core/options-pages.php:67
40
  msgid "Close"
41
  msgstr ""
42
 
43
- #: core/options-pages.php:68 core/options-pages.php:175
44
- #: core/options-pages.php:239
45
- msgid "View"
46
- msgstr ""
47
-
48
  #: core/options-pages.php:69 core/options-pages.php:176
49
  #: core/options-pages.php:240
50
- msgid "Update"
51
  msgstr ""
52
 
53
  #: core/options-pages.php:70 core/options-pages.php:177
54
  #: core/options-pages.php:241
55
- msgid "Add New"
56
  msgstr ""
57
 
58
  #: core/options-pages.php:71 core/options-pages.php:178
59
  #: core/options-pages.php:242
 
 
 
 
 
60
  msgid "New"
61
  msgstr ""
62
 
63
- #: core/options-pages.php:72
64
  msgid "Name"
65
  msgstr ""
66
 
67
- #: core/options-pages.php:73 core/options-pages.php:179
68
- #: core/options-pages.php:243
69
  msgid "Parent"
70
  msgstr ""
71
 
72
- #: core/options-pages.php:74 core/options-pages.php:173
73
- #: core/options-pages.php:237
74
  msgid "All"
75
  msgstr ""
76
 
77
- #: core/options-pages.php:75 core/options-pages.php:180
78
- #: core/options-pages.php:244
79
  msgid "Search"
80
  msgstr ""
81
 
82
- #: core/options-pages.php:77
83
  msgid ""
84
  "Taxonomy will be deleted permanently! Your media files will remain intacted, "
85
  "but all the connections with this taxonomy and its terms will be lost."
86
  msgstr ""
87
 
88
- #: core/options-pages.php:78
89
  msgid "There is already a taxonomy with the same name. Please chose other one."
90
  msgstr ""
91
 
92
- #: core/options-pages.php:79 core/options-pages.php:225
93
  msgid "New Taxonomy"
94
  msgstr ""
95
 
96
- #: core/options-pages.php:80
97
  msgid "Please choose Singular and Plural names for all your new taxomonies."
98
  msgstr ""
99
 
100
- #: core/options-pages.php:81
101
  msgid "Please choose Singilar name for all your new taxomonies."
102
  msgstr ""
103
 
104
- #: core/options-pages.php:82
105
  msgid "Please choose Plural Name for all your new taxomonies."
106
  msgstr ""
107
 
108
- #: core/options-pages.php:84
109
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
110
  msgstr ""
111
 
112
- #: core/options-pages.php:85
113
  msgid "Please fill into all fields."
114
  msgstr ""
115
 
116
- #: core/options-pages.php:86
117
  msgid "Duplicate extensions or MIME types. Please chose other one."
118
  msgstr ""
119
 
120
- #: core/options-pages.php:110 core/options-pages.php:378
121
  msgid "You do not have sufficient permissions to access this page."
122
  msgstr ""
123
 
124
- #: core/options-pages.php:134
125
  msgid "Media Taxonomies"
126
  msgstr ""
127
 
128
- #: core/options-pages.php:138 core/options-pages.php:287
129
  msgid "Assign following taxonomies to Media Library:"
130
  msgstr ""
131
 
132
- #: core/options-pages.php:160 core/options-pages.php:311
 
 
 
 
 
133
  msgid "Edit Taxonomy"
134
  msgstr ""
135
 
136
- #: core/options-pages.php:163 core/options-pages.php:227
137
  msgid "Delete Taxonomy"
138
  msgstr ""
139
 
140
- #: core/options-pages.php:168 core/options-pages.php:232
141
  msgid "Labels"
142
  msgstr ""
143
 
144
- #: core/options-pages.php:170 core/options-pages.php:234
145
  msgid "Singular"
146
  msgstr ""
147
 
148
- #: core/options-pages.php:171 core/options-pages.php:235
149
  msgid "Plural"
150
  msgstr ""
151
 
152
- #: core/options-pages.php:172 core/options-pages.php:236
153
  msgid "Menu Name"
154
  msgstr ""
155
 
156
- #: core/options-pages.php:185 core/options-pages.php:204
157
- #: core/options-pages.php:249 core/options-pages.php:314
158
  msgid "Settings"
159
  msgstr ""
160
 
161
- #: core/options-pages.php:187 core/options-pages.php:251
162
  msgid "Hierarchical"
163
  msgstr ""
164
 
165
- #: core/options-pages.php:188 core/options-pages.php:252
166
  msgid "Column in Media Library"
167
  msgstr ""
168
 
169
- #: core/options-pages.php:189 core/options-pages.php:206
170
- #: core/options-pages.php:253 core/options-pages.php:316
171
  msgid "Filter in Media Library"
172
  msgstr ""
173
 
174
- #: core/options-pages.php:190 core/options-pages.php:207
175
- #: core/options-pages.php:254 core/options-pages.php:317
176
  msgid "Filter in Media Uploader"
177
  msgstr ""
178
 
179
- #: core/options-pages.php:191 core/options-pages.php:255
180
  msgid "Show in Nav Menu"
181
  msgstr ""
182
 
183
- #: core/options-pages.php:192 core/options-pages.php:256
184
  msgid "Remember terms order (sort)"
185
  msgstr ""
186
 
187
- #: core/options-pages.php:193 core/options-pages.php:257
188
  msgid "Slug"
189
  msgstr ""
190
 
191
- #: core/options-pages.php:270
192
  msgid "Add New Taxonomy"
193
  msgstr ""
194
 
195
- #: core/options-pages.php:283
196
  msgid "Non-Media Taxonomies"
197
  msgstr ""
198
 
199
- #: core/options-pages.php:388
200
  msgid "Add New MIME Type"
201
  msgstr ""
202
 
203
- #: core/options-pages.php:406 core/options-pages.php:463
204
  msgid "Extension"
205
  msgstr ""
206
 
207
- #: core/options-pages.php:407 core/options-pages.php:464
208
  msgid "MIME Type"
209
  msgstr ""
210
 
211
- #: core/options-pages.php:408 core/options-pages.php:465
212
  msgid "Singular Label"
213
  msgstr ""
214
 
215
- #: core/options-pages.php:409 core/options-pages.php:466
216
  msgid "Plural Label"
217
  msgstr ""
218
 
219
- #: core/options-pages.php:410 core/options-pages.php:467
 
220
  msgid "Add Filter"
221
  msgstr ""
222
 
223
- #: core/options-pages.php:411 core/options-pages.php:468
 
224
  msgid "Allow Upload"
225
  msgstr ""
226
 
227
- #: core/options-pages.php:457
228
  msgid "Delete MIME Type"
229
  msgstr ""
230
 
231
- #: core/options-pages.php:474
232
  msgid "Restore default MIME Types"
233
  msgstr ""
234
 
2
  # This file is distributed under the same license as the Enhanced Media Library package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Enhanced Media Library 1.0.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/enhanced-media-library\n"
7
+ "POT-Creation-Date: 2013-11-16 20:40:44+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
21
  msgstr ""
22
 
23
  #: core/options-pages.php:24 core/options-pages.php:25
24
+ #: core/options-pages.php:119
25
  msgid "Taxonomies"
26
  msgstr ""
27
 
28
  #: core/options-pages.php:32 core/options-pages.php:33
29
+ #: core/options-pages.php:388
30
  msgid "MIME Types"
31
  msgstr ""
32
 
33
+ #: core/options-pages.php:67 core/options-pages.php:161
34
+ #: core/options-pages.php:175 core/options-pages.php:239
35
+ #: core/options-pages.php:312
36
  msgid "Edit"
37
  msgstr ""
38
 
39
+ #: core/options-pages.php:68
40
  msgid "Close"
41
  msgstr ""
42
 
 
 
 
 
 
43
  #: core/options-pages.php:69 core/options-pages.php:176
44
  #: core/options-pages.php:240
45
+ msgid "View"
46
  msgstr ""
47
 
48
  #: core/options-pages.php:70 core/options-pages.php:177
49
  #: core/options-pages.php:241
50
+ msgid "Update"
51
  msgstr ""
52
 
53
  #: core/options-pages.php:71 core/options-pages.php:178
54
  #: core/options-pages.php:242
55
+ msgid "Add New"
56
+ msgstr ""
57
+
58
+ #: core/options-pages.php:72 core/options-pages.php:179
59
+ #: core/options-pages.php:243
60
  msgid "New"
61
  msgstr ""
62
 
63
+ #: core/options-pages.php:73
64
  msgid "Name"
65
  msgstr ""
66
 
67
+ #: core/options-pages.php:74 core/options-pages.php:180
68
+ #: core/options-pages.php:244
69
  msgid "Parent"
70
  msgstr ""
71
 
72
+ #: core/options-pages.php:75 core/options-pages.php:174
73
+ #: core/options-pages.php:238
74
  msgid "All"
75
  msgstr ""
76
 
77
+ #: core/options-pages.php:76 core/options-pages.php:181
78
+ #: core/options-pages.php:245
79
  msgid "Search"
80
  msgstr ""
81
 
82
+ #: core/options-pages.php:78
83
  msgid ""
84
  "Taxonomy will be deleted permanently! Your media files will remain intacted, "
85
  "but all the connections with this taxonomy and its terms will be lost."
86
  msgstr ""
87
 
88
+ #: core/options-pages.php:79
89
  msgid "There is already a taxonomy with the same name. Please chose other one."
90
  msgstr ""
91
 
92
+ #: core/options-pages.php:80 core/options-pages.php:226
93
  msgid "New Taxonomy"
94
  msgstr ""
95
 
96
+ #: core/options-pages.php:81
97
  msgid "Please choose Singular and Plural names for all your new taxomonies."
98
  msgstr ""
99
 
100
+ #: core/options-pages.php:82
101
  msgid "Please choose Singilar name for all your new taxomonies."
102
  msgstr ""
103
 
104
+ #: core/options-pages.php:83
105
  msgid "Please choose Plural Name for all your new taxomonies."
106
  msgstr ""
107
 
108
+ #: core/options-pages.php:85
109
  msgid "Warning! All your custom MIME Types will be deleted by this operation."
110
  msgstr ""
111
 
112
+ #: core/options-pages.php:86
113
  msgid "Please fill into all fields."
114
  msgstr ""
115
 
116
+ #: core/options-pages.php:87
117
  msgid "Duplicate extensions or MIME types. Please chose other one."
118
  msgstr ""
119
 
120
+ #: core/options-pages.php:111 core/options-pages.php:379
121
  msgid "You do not have sufficient permissions to access this page."
122
  msgstr ""
123
 
124
+ #: core/options-pages.php:135
125
  msgid "Media Taxonomies"
126
  msgstr ""
127
 
128
+ #: core/options-pages.php:139 core/options-pages.php:288
129
  msgid "Assign following taxonomies to Media Library:"
130
  msgstr ""
131
 
132
+ #: core/options-pages.php:158 core/options-pages.php:224
133
+ #: core/options-pages.php:305
134
+ msgid "Assign Taxonomy"
135
+ msgstr ""
136
+
137
+ #: core/options-pages.php:161 core/options-pages.php:312
138
  msgid "Edit Taxonomy"
139
  msgstr ""
140
 
141
+ #: core/options-pages.php:164 core/options-pages.php:228
142
  msgid "Delete Taxonomy"
143
  msgstr ""
144
 
145
+ #: core/options-pages.php:169 core/options-pages.php:233
146
  msgid "Labels"
147
  msgstr ""
148
 
149
+ #: core/options-pages.php:171 core/options-pages.php:235
150
  msgid "Singular"
151
  msgstr ""
152
 
153
+ #: core/options-pages.php:172 core/options-pages.php:236
154
  msgid "Plural"
155
  msgstr ""
156
 
157
+ #: core/options-pages.php:173 core/options-pages.php:237
158
  msgid "Menu Name"
159
  msgstr ""
160
 
161
+ #: core/options-pages.php:186 core/options-pages.php:205
162
+ #: core/options-pages.php:250 core/options-pages.php:315
163
  msgid "Settings"
164
  msgstr ""
165
 
166
+ #: core/options-pages.php:188 core/options-pages.php:252
167
  msgid "Hierarchical"
168
  msgstr ""
169
 
170
+ #: core/options-pages.php:189 core/options-pages.php:253
171
  msgid "Column in Media Library"
172
  msgstr ""
173
 
174
+ #: core/options-pages.php:190 core/options-pages.php:207
175
+ #: core/options-pages.php:254 core/options-pages.php:317
176
  msgid "Filter in Media Library"
177
  msgstr ""
178
 
179
+ #: core/options-pages.php:191 core/options-pages.php:208
180
+ #: core/options-pages.php:255 core/options-pages.php:318
181
  msgid "Filter in Media Uploader"
182
  msgstr ""
183
 
184
+ #: core/options-pages.php:192 core/options-pages.php:256
185
  msgid "Show in Nav Menu"
186
  msgstr ""
187
 
188
+ #: core/options-pages.php:193 core/options-pages.php:257
189
  msgid "Remember terms order (sort)"
190
  msgstr ""
191
 
192
+ #: core/options-pages.php:194 core/options-pages.php:258
193
  msgid "Slug"
194
  msgstr ""
195
 
196
+ #: core/options-pages.php:271
197
  msgid "Add New Taxonomy"
198
  msgstr ""
199
 
200
+ #: core/options-pages.php:284
201
  msgid "Non-Media Taxonomies"
202
  msgstr ""
203
 
204
+ #: core/options-pages.php:389
205
  msgid "Add New MIME Type"
206
  msgstr ""
207
 
208
+ #: core/options-pages.php:407 core/options-pages.php:464
209
  msgid "Extension"
210
  msgstr ""
211
 
212
+ #: core/options-pages.php:408 core/options-pages.php:465
213
  msgid "MIME Type"
214
  msgstr ""
215
 
216
+ #: core/options-pages.php:409 core/options-pages.php:466
217
  msgid "Singular Label"
218
  msgstr ""
219
 
220
+ #: core/options-pages.php:410 core/options-pages.php:467
221
  msgid "Plural Label"
222
  msgstr ""
223
 
224
+ #: core/options-pages.php:411 core/options-pages.php:441
225
+ #: core/options-pages.php:456 core/options-pages.php:468
226
  msgid "Add Filter"
227
  msgstr ""
228
 
229
+ #: core/options-pages.php:412 core/options-pages.php:442
230
+ #: core/options-pages.php:457 core/options-pages.php:469
231
  msgid "Allow Upload"
232
  msgstr ""
233
 
234
+ #: core/options-pages.php:458
235
  msgid "Delete MIME Type"
236
  msgstr ""
237
 
238
+ #: core/options-pages.php:475
239
  msgid "Restore default MIME Types"
240
  msgstr ""
241
 
readme.txt CHANGED
@@ -3,13 +3,13 @@ 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
4
  Requires at least: 3.5
5
  Tested up to: 3.7.1
6
- Stable tag: 1.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
 
11
 
12
- Better management for WordPress Media Library
13
 
14
 
15
 
@@ -27,14 +27,14 @@ This plugin will be handy for those who need to manage a lot of media files.
27
  * immediately set taxonomy term to any media file during upload via Media Uploader,
28
  * filter media files in Media Library by your custom taxonomies, and choose which taxonomies you are willing to use for that filter,
29
  * filter media files in Media Uploader by your custom taxonomies, and choose which taxonomies you are willing to use for that filter,
30
- * have you attachment post type's archive page (front-end) working by default,
31
 
32
  = MIME Types =
33
 
34
  * create new MIME types (media file types),
35
  * delete any MIME type,
36
  * allow/disallow uploading for any MIME type,
37
- * filter media files by MIME types in Media Library / Media Uploader (for example, PDFs, Documents, V-Cards, etc)
38
  * be in total control of the names of your MIME type filters
39
 
40
  = Coming =
@@ -79,6 +79,10 @@ New features and improvements coming...
79
 
80
  == Changelog ==
81
 
 
 
 
 
82
  = 1.0.1 =
83
 
84
  * Fix: Media Uploader filter now shows nested terms.
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
4
  Requires at least: 3.5
5
  Tested up to: 3.7.1
6
+ Stable tag: 1.0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
 
11
 
12
+ A better management for WordPress Media Library
13
 
14
 
15
 
27
  * immediately set taxonomy term to any media file during upload via Media Uploader,
28
  * filter media files in Media Library by your custom taxonomies, and choose which taxonomies you are willing to use for that filter,
29
  * filter media files in Media Uploader by your custom taxonomies, and choose which taxonomies you are willing to use for that filter,
30
+ * have you attachment post type's archive page (front-end) working by default
31
 
32
  = MIME Types =
33
 
34
  * create new MIME types (media file types),
35
  * delete any MIME type,
36
  * allow/disallow uploading for any MIME type,
37
+ * filter media files by MIME types in Media Library / Media Uploader (for example, PDFs, Documents, V-Cards, etc),
38
  * be in total control of the names of your MIME type filters
39
 
40
  = Coming =
79
 
80
  == Changelog ==
81
 
82
+ = 1.0.2 =
83
+
84
+ * Fix: Assigned non-media taxonomies archive page fixed: [Support Request](http://wordpress.org/support/topic/plugin-woocommerce-products-stopped-displaying)
85
+
86
  = 1.0.1 =
87
 
88
  * Fix: Media Uploader filter now shows nested terms.