Enhanced Media Library - Version 2.7.2

Version Description

Download this release

Release Info

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

Code changes from version 2.7.1 to 2.7.2

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.7.1
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
@@ -26,7 +26,7 @@ global $wp_version,
26
 
27
 
28
 
29
- if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.7.1' );
30
 
31
 
32
 
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.7.2
7
  Author: wpUXsolutions
8
  Author URI: http://wpUXsolutions.com
9
  Text Domain: enhanced-media-library
26
 
27
 
28
 
29
+ if ( ! defined('EML_VERSION') ) define( 'EML_VERSION', '2.7.2' );
30
 
31
 
32
 
js/eml-media-views.js CHANGED
@@ -575,53 +575,9 @@ window.eml = window.eml || { l10n: {} };
575
  * wp.media.view.Attachment.Details
576
  *
577
  */
578
- original.AttachmentDetails = {
579
-
580
- initialize: media.view.Attachment.Details.prototype.initialize
581
- };
582
 
583
  _.extend( media.view.Attachment.Details.prototype, {
584
 
585
- initialize: function() {
586
-
587
- original.AttachmentDetails.initialize.apply( this, arguments );
588
-
589
- if ( 'edit-attachment' === this.controller._state ) {
590
- return;
591
- }
592
-
593
-
594
- var toolbar = this.controller.toolbar.get();
595
-
596
-
597
- toolbar.set( 'emlAttachmentSuccess', new media.view.emlAttachmentDetailsEditMessage({
598
- text: eml.l10n.saveButton_success,
599
- class: 'updated',
600
- controller: this.controller,
601
- priority: 200
602
- }) );
603
-
604
- toolbar.set( 'emlAttachmentError', new media.view.emlAttachmentDetailsEditMessage({
605
- text: eml.l10n.saveButton_failure,
606
- class: 'error',
607
- controller: this.controller,
608
- priority: 220
609
- }) );
610
-
611
- if ( this.controller.isModeActive( 'eml-grid' ) ) {
612
- this.controller.browserView.toggleSidebar();
613
- }
614
- },
615
-
616
- remove: function() {
617
-
618
- if ( this.controller.isModeActive( 'eml-grid' ) ) {
619
- this.controller.browserView.toggleSidebar();
620
- }
621
-
622
- return media.View.prototype.remove.apply( this, arguments );
623
- },
624
-
625
  deleteAttachment: function( event ) {
626
  event.preventDefault();
627
 
@@ -647,7 +603,8 @@ window.eml = window.eml || { l10n: {} };
647
  initialize: media.view.AttachmentsBrowser.prototype.initialize,
648
  createToolbar: media.view.AttachmentsBrowser.prototype.createToolbar,
649
  createSidebar: media.view.AttachmentsBrowser.prototype.createSidebar,
650
- createSingle: media.view.AttachmentsBrowser.prototype.createSingle
 
651
  };
652
 
653
  _.extend( media.view.AttachmentsBrowser.prototype, {
@@ -1032,6 +989,25 @@ window.eml = window.eml || { l10n: {} };
1032
  priority: -40
1033
  }) );
1034
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1035
  },
1036
 
1037
  createSidebar: function() {
@@ -1044,7 +1020,9 @@ window.eml = window.eml || { l10n: {} };
1044
 
1045
  toggleSidebar: function() {
1046
 
1047
- if ( this.sidebar.$el.hasClass( 'hidden' ) ) {
 
 
1048
  this.sidebar.$el.removeClass( 'hidden' );
1049
  this.$el.children('.attachments').css( 'right', '300px' );
1050
  this.$el.children('.uploader-inline').css( 'right', '310px' );
@@ -1072,6 +1050,17 @@ window.eml = window.eml || { l10n: {} };
1072
  priority: 80
1073
  }) );
1074
  }
 
 
 
 
 
 
 
 
 
 
 
1075
  }
1076
  },
1077
 
575
  * wp.media.view.Attachment.Details
576
  *
577
  */
 
 
 
 
578
 
579
  _.extend( media.view.Attachment.Details.prototype, {
580
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  deleteAttachment: function( event ) {
582
  event.preventDefault();
583
 
603
  initialize: media.view.AttachmentsBrowser.prototype.initialize,
604
  createToolbar: media.view.AttachmentsBrowser.prototype.createToolbar,
605
  createSidebar: media.view.AttachmentsBrowser.prototype.createSidebar,
606
+ createSingle: media.view.AttachmentsBrowser.prototype.createSingle,
607
+ disposeSingle: media.view.AttachmentsBrowser.prototype.disposeSingle
608
  };
609
 
610
  _.extend( media.view.AttachmentsBrowser.prototype, {
989
  priority: -40
990
  }) );
991
  }
992
+
993
+ if ( 'edit-attachment' !== this.controller._state ) {
994
+
995
+ var toolbar = this.controller.toolbar.get();
996
+
997
+ toolbar.set( 'emlAttachmentSuccess', new media.view.emlAttachmentDetailsEditMessage({
998
+ text: eml.l10n.saveButton_success,
999
+ class: 'updated',
1000
+ controller: this.controller,
1001
+ priority: 200
1002
+ }) );
1003
+
1004
+ toolbar.set( 'emlAttachmentError', new media.view.emlAttachmentDetailsEditMessage({
1005
+ text: eml.l10n.saveButton_failure,
1006
+ class: 'error',
1007
+ controller: this.controller,
1008
+ priority: 220
1009
+ }) );
1010
+ }
1011
  },
1012
 
1013
  createSidebar: function() {
1020
 
1021
  toggleSidebar: function() {
1022
 
1023
+ var selection = this.controller.state().get( 'selection' );
1024
+
1025
+ if ( selection.length ) {
1026
  this.sidebar.$el.removeClass( 'hidden' );
1027
  this.$el.children('.attachments').css( 'right', '300px' );
1028
  this.$el.children('.uploader-inline').css( 'right', '310px' );
1050
  priority: 80
1051
  }) );
1052
  }
1053
+
1054
+ this.toggleSidebar();
1055
+ }
1056
+ },
1057
+
1058
+ disposeSingle: function() {
1059
+
1060
+ original.AttachmentsBrowser.disposeSingle.apply( this, arguments );
1061
+
1062
+ if ( this.controller.isModeActive( 'eml-grid' ) ) {
1063
+ this.toggleSidebar();
1064
  }
1065
  },
1066
 
languages/enhanced-media-library-de_DE.mo CHANGED
Binary file
languages/enhanced-media-library-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
  "POT-Creation-Date: 2018-09-11 00:08+0300\n"
7
- "PO-Revision-Date: 2018-09-11 00:11+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: de\n"
@@ -35,7 +35,7 @@ msgstr[1] " <span class=\"count\">(%s)</span>"
35
  #: core/options-pages.php:1694 core/options-pages.php:1952
36
  #: core/options-pages.php:2265 core/options-pages.php:2465
37
  msgid "Media Settings"
38
- msgstr "Medien-Einstellungen"
39
 
40
  #: core/options-pages.php:106 core/options-pages.php:107
41
  #: core/options-pages.php:363 core/options-pages.php:1019
@@ -249,11 +249,11 @@ msgstr "Keine Angaben"
249
 
250
  #: core/options-pages.php:584
251
  msgid "Wrong Taxonomy Name"
252
- msgstr ""
253
 
254
  #: core/options-pages.php:585
255
  msgid "Wrong Slug"
256
- msgstr ""
257
 
258
  #: core/options-pages.php:587
259
  msgid "Please choose Singular and Plural names for all new taxomonies."
@@ -265,25 +265,31 @@ msgstr "Bitte einen Singular Namen für alle neuen Taxonomien wählen."
265
 
266
  #: core/options-pages.php:589
267
  msgid "Please choose Plural name for all new taxomonies."
268
- msgstr ""
269
 
270
  #: core/options-pages.php:591
271
  msgid ""
272
  "Taxonomy Name cannot be empty. If it was not generated from the Singular "
273
  "name please enter it manually."
274
  msgstr ""
 
 
275
 
276
  #: core/options-pages.php:592
277
  msgid ""
278
  "Taxonomy Name should only contain lowercase Latin letters, the underscore "
279
  "character ( _ ), and be 3-32 characters long."
280
  msgstr ""
 
 
281
 
282
  #: core/options-pages.php:593
283
  msgid ""
284
  "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
285
  "or hyphen ( - ) characters."
286
  msgstr ""
 
 
287
 
288
  #: core/options-pages.php:595 core/options-pages.php:644
289
  msgid "Ok"
@@ -330,7 +336,7 @@ msgstr "Wird wiederhergestellt…"
330
 
331
  #: core/options-pages.php:647
332
  msgid "MIME Types cannot be saved"
333
- msgstr ""
334
 
335
  #: core/options-pages.php:648
336
  msgid "Please fill into all fields."
@@ -350,7 +356,7 @@ msgid ""
350
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
351
  "plugin data</strong> from the database including backups."
352
  msgstr ""
353
- "Sämtliche Plugin Daten in Datenbank, sowie Backups <strong style=\"text-"
354
  "transform:uppercase\">werden gelöscht</strong>."
355
 
356
  #: core/options-pages.php:688
@@ -363,24 +369,24 @@ msgstr "Aufräumen…"
363
 
364
  #: core/options-pages.php:693 core/options-pages.php:996
365
  msgid "Unify Media Settings over Network"
366
- msgstr ""
367
 
368
  #: core/options-pages.php:696 core/options-pages.php:700
369
  #: core/options-pages.php:704
370
  msgid "will be overwritten"
371
- msgstr ""
372
 
373
  #: core/options-pages.php:706
374
  msgid "Apply"
375
- msgstr ""
376
 
377
  #: core/options-pages.php:707
378
  msgid "Applying Settings..."
379
- msgstr ""
380
 
381
  #: core/options-pages.php:746 core/options-pages.php:935
382
  msgid "Enhanced Media Library Utilities"
383
- msgstr ""
384
 
385
  #: core/options-pages.php:756
386
  msgid "Export"
@@ -388,27 +394,29 @@ msgstr "Exportieren"
388
 
389
  #: core/options-pages.php:761
390
  msgid "Plugin settings to export:"
391
- msgstr ""
392
 
393
  #: core/options-pages.php:762 core/options-pages.php:789
394
  #: core/options-pages.php:829
395
  msgid "Settings > Media Library"
396
- msgstr ""
397
 
398
  #: core/options-pages.php:763 core/options-pages.php:790
399
  #: core/options-pages.php:830
400
  msgid "Settings > Media Taxonomies"
401
- msgstr ""
402
 
403
  #: core/options-pages.php:764 core/options-pages.php:791
404
  #: core/options-pages.php:831
405
  msgid "Settings > MIME Types"
406
- msgstr ""
407
 
408
  #: core/options-pages.php:768
409
  msgid ""
410
  "Use generated JSON file to import the configuration into another website."
411
  msgstr ""
 
 
412
 
413
  #: core/options-pages.php:773
414
  msgid "Export Plugin Settings"
@@ -420,7 +428,7 @@ msgstr "Importieren"
420
 
421
  #: core/options-pages.php:788
422
  msgid "Plugin settings to import:"
423
- msgstr ""
424
 
425
  #: core/options-pages.php:794
426
  msgid ""
@@ -428,6 +436,9 @@ msgid ""
428
  "obtained by exporting the settings on another website using the export "
429
  "button above."
430
  msgstr ""
 
 
 
431
 
432
  #: core/options-pages.php:795
433
  msgid ""
@@ -462,7 +473,7 @@ msgstr "Das Backup wurde automatisch vor der letzten Import-Aktion erstellt."
462
 
463
  #: core/options-pages.php:828
464
  msgid "Plugin settings to restore:"
465
- msgstr ""
466
 
467
  #: core/options-pages.php:837
468
  msgid "Restore Settings from the Backup"
@@ -478,7 +489,7 @@ msgstr "Alle Plugin-Optionen"
478
 
479
  #: core/options-pages.php:866 core/options-pages.php:1089
480
  msgid "All plugin backups stored in the database"
481
- msgstr ""
482
 
483
  #: core/options-pages.php:870 core/options-pages.php:1093
484
  msgid "What will remain intact:"
@@ -497,12 +508,16 @@ msgid ""
497
  "The plugin cannot delete itself for security reasons. Please delete it "
498
  "manually from the plugin list after the cleanup is complete."
499
  msgstr ""
 
 
500
 
501
  #: core/options-pages.php:877 core/options-pages.php:1100
502
  msgid ""
503
  "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
504
  "backup of your database prior to cleanup!"
505
  msgstr ""
 
 
506
 
507
  #: core/options-pages.php:882
508
  msgid "Delete All Data & Deactivate"
@@ -510,49 +525,60 @@ msgstr "Alle Daten löschen und deaktivieren"
510
 
511
  #: core/options-pages.php:945
512
  msgid "Network Settings"
513
- msgstr ""
514
 
515
  #: core/options-pages.php:952 core/options-pages.php:1003
516
  msgid "No settings available. The plugin is not network activated."
517
  msgstr ""
 
 
518
 
519
  #: core/options-pages.php:963
520
  msgid "Media Settings per site"
521
- msgstr ""
522
 
523
  #: core/options-pages.php:966
524
  msgid "Enable Media Settings"
525
- msgstr ""
526
 
527
  #: core/options-pages.php:967
528
  msgid "Allow an individual site admin to edit enhanced Media Settings"
529
  msgstr ""
 
 
530
 
531
  #: core/options-pages.php:968
532
  msgid ""
533
  "Otherwise, only a network (super) admin can see the menu and edit media "
534
  "settings."
535
  msgstr ""
 
 
536
 
537
  #: core/options-pages.php:974
538
  msgid "Plugin Utilities per site"
539
- msgstr ""
540
 
541
  #: core/options-pages.php:977
542
  msgid "Enable plugin Utilities"
543
- msgstr ""
544
 
545
  #: core/options-pages.php:978
546
  msgid ""
547
  "Allow an individual site admin to import / export / restore plugin settings "
548
  "and perform the complete cleanup for a specific site"
549
  msgstr ""
 
 
 
550
 
551
  #: core/options-pages.php:979
552
  msgid ""
553
  "Otherwise, only a network (super) admin can see the menu and perform those "
554
  "actions."
555
  msgstr ""
 
 
556
 
557
  #: core/options-pages.php:986 core/options-pages.php:1770
558
  #: core/options-pages.php:1824 core/options-pages.php:1861
@@ -564,46 +590,50 @@ msgstr "Änderungen speichern"
564
 
565
  #: core/options-pages.php:1012 core/options-pages.php:1015
566
  msgid "Media Library Settings"
567
- msgstr ""
568
 
569
  #: core/options-pages.php:1016 core/options-pages.php:1030
570
  #: core/options-pages.php:1044
571
  msgid "Apply to ALL Network websites"
572
- msgstr ""
573
 
574
  #: core/options-pages.php:1026 core/options-pages.php:1029
575
  msgid "Media Taxonomies Settings"
576
- msgstr ""
577
 
578
  #: core/options-pages.php:1040 core/options-pages.php:1043
579
  msgid "MIME Types Settings"
580
- msgstr ""
581
 
582
  #: core/options-pages.php:1087
583
  msgid "All plugin options on every site"
584
- msgstr ""
585
 
586
  #: core/options-pages.php:1088
587
  msgid "Network settings"
588
- msgstr ""
589
 
590
  #: core/options-pages.php:1105
591
  msgid "Delete All Data & Network Deactivate"
592
- msgstr ""
593
 
594
  #: core/options-pages.php:1225
595
  msgid "Network settings saved."
596
- msgstr ""
597
 
598
  #: core/options-pages.php:1319
599
  msgid "Settings cannot be imported. Please upload a file to import settings."
600
  msgstr ""
 
 
601
 
602
  #: core/options-pages.php:1340
603
  msgid ""
604
  "Settings cannot be imported. Please upload a correct JSON file to import "
605
  "settings."
606
  msgstr ""
 
 
607
 
608
  #: core/options-pages.php:1356
609
  msgid "Plugin settings imported."
@@ -615,7 +645,7 @@ msgstr "Plugin-Einstellungen aus dem Backup wiederhergestellt."
615
 
616
  #: core/options-pages.php:1714
617
  msgid "Filters"
618
- msgstr ""
619
 
620
  #: core/options-pages.php:1723 core/options-pages.php:1726
621
  msgid "Force filters"
@@ -633,23 +663,23 @@ msgstr ""
633
 
634
  #: core/options-pages.php:1734 core/options-pages.php:1737
635
  msgid "Filters to show"
636
- msgstr ""
637
 
638
  #: core/options-pages.php:1738
639
  msgid "Types"
640
- msgstr ""
641
 
642
  #: core/options-pages.php:1739
643
  msgid "Can be disabled for Grid Mode only"
644
- msgstr ""
645
 
646
  #: core/options-pages.php:1740
647
  msgid "Dates"
648
- msgstr ""
649
 
650
  #: core/options-pages.php:1741
651
  msgid "Authors"
652
- msgstr ""
653
 
654
  #: core/options-pages.php:1748 core/options-pages.php:1751
655
  msgid "Show count"
@@ -664,14 +694,16 @@ msgid ""
664
  "Disable this if it slows down your site admin. The problem is resolved in "
665
  "the upcoming major update v3.0"
666
  msgstr ""
 
 
667
 
668
  #: core/options-pages.php:1759 core/options-pages.php:1762
669
  msgid "Include children"
670
- msgstr ""
671
 
672
  #: core/options-pages.php:1763
673
  msgid "Show media items of child media categories as a result of filtering"
674
- msgstr ""
675
 
676
  #: core/options-pages.php:1780
677
  msgid "Order"
@@ -702,6 +734,8 @@ msgstr "Für die Mediathek und Medien-Popups"
702
  msgid ""
703
  "Allows changing media items order by drag and drop with Custom Order value."
704
  msgstr ""
 
 
705
 
706
  #: core/options-pages.php:1802
707
  msgid "Sort order"
@@ -717,41 +751,44 @@ msgstr "Absteigend"
717
 
718
  #: core/options-pages.php:1813 core/options-pages.php:1816
719
  msgid "Natural sort order"
720
- msgstr ""
721
 
722
  #: core/options-pages.php:1817
723
  msgid "Apply human-friendly sort order to Media Library and Galleries"
724
  msgstr ""
 
725
 
726
  #: core/options-pages.php:1818
727
  msgid ""
728
  "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
729
  "3, abc-11, abc-2]"
730
  msgstr ""
 
 
731
 
732
  #: core/options-pages.php:1831
733
  msgid "Grid Mode"
734
- msgstr ""
735
 
736
  #: core/options-pages.php:1840 core/options-pages.php:1843
737
  msgid "Show caption"
738
- msgstr ""
739
 
740
  #: core/options-pages.php:1844
741
  msgid "Add text caption for media item thumbnails"
742
- msgstr ""
743
 
744
  #: core/options-pages.php:1850
745
  msgid "Caption type"
746
- msgstr ""
747
 
748
  #: core/options-pages.php:1854
749
  msgid "Filename"
750
- msgstr ""
751
 
752
  #: core/options-pages.php:1855 core/taxonomies.php:1666
753
  msgid "Caption"
754
- msgstr ""
755
 
756
  #: core/options-pages.php:1868
757
  msgid "Media Shortcodes"
@@ -783,7 +820,7 @@ msgstr "Beispiel Video Playlist"
783
 
784
  #: core/options-pages.php:1888
785
  msgid "Warning"
786
- msgstr ""
787
 
788
  #: core/options-pages.php:1891
789
  #, php-format
@@ -791,6 +828,8 @@ msgid ""
791
  "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
792
  "\">Learn more</a>."
793
  msgstr ""
 
 
794
 
795
  #: core/options-pages.php:1896
796
  #, php-format
@@ -998,7 +1037,7 @@ msgstr "Bitte"
998
 
999
  #: core/options-pages.php:2425
1000
  msgid "vote for the plugin"
1001
- msgstr "vote für das Plugin"
1002
 
1003
  #: core/options-pages.php:2425
1004
  msgid "Thanks!"
@@ -1010,31 +1049,31 @@ msgstr "Weitere Plugins, die Dir gefallen könnten"
1010
 
1011
  #: core/options-pages.php:2469
1012
  msgid "Utility"
1013
- msgstr "Anwendung"
1014
 
1015
  #: core/options-pages.php:2494
1016
  msgid "Rate us:"
1017
- msgstr ""
1018
 
1019
  #: core/options-pages.php:2494
1020
  msgid "Poor"
1021
- msgstr ""
1022
 
1023
  #: core/options-pages.php:2494
1024
  msgid "Works"
1025
- msgstr ""
1026
 
1027
  #: core/options-pages.php:2494
1028
  msgid "Good"
1029
- msgstr ""
1030
 
1031
  #: core/options-pages.php:2494
1032
  msgid "Great"
1033
- msgstr ""
1034
 
1035
  #: core/options-pages.php:2494
1036
  msgid "Fantastic!"
1037
- msgstr ""
1038
 
1039
  #: core/taxonomies.php:101
1040
  msgid "Media Taxonomies settings saved."
@@ -1046,11 +1085,11 @@ msgstr "Mediathek-Einstellungen gespeichert."
1046
 
1047
  #: core/taxonomies.php:353
1048
  msgid "Filter by author"
1049
- msgstr ""
1050
 
1051
  #: core/taxonomies.php:357
1052
  msgid "All Authors"
1053
- msgstr ""
1054
 
1055
  #: core/taxonomies.php:374 core/taxonomies.php:380
1056
  #: enhanced-media-library.php:560
@@ -1063,7 +1102,7 @@ msgstr "Nicht in"
1063
 
1064
  #: core/taxonomies.php:721
1065
  msgid "Add some"
1066
- msgstr ""
1067
 
1068
  #: core/taxonomies.php:1501
1069
  msgid "Remove"
@@ -1091,56 +1130,56 @@ msgstr "Beschreibung dieser Medien-Datei&hellip;"
1091
 
1092
  #: core/taxonomies.php:1585
1093
  msgid "Attachment Details"
1094
- msgstr ""
1095
 
1096
  #: core/taxonomies.php:1588 enhanced-media-library.php:568
1097
  msgid "Saved."
1098
- msgstr ""
1099
 
1100
  #: core/taxonomies.php:1612
1101
  msgid "Edit Image"
1102
- msgstr ""
1103
 
1104
  #: core/taxonomies.php:1617
1105
  msgid "Length:"
1106
- msgstr ""
1107
 
1108
  #: core/taxonomies.php:1623
1109
  msgid "Untrash"
1110
- msgstr ""
1111
 
1112
  #: core/taxonomies.php:1625
1113
  msgctxt "verb"
1114
  msgid "Trash"
1115
- msgstr ""
1116
 
1117
  #: core/taxonomies.php:1628
1118
  msgid "Delete Permanently"
1119
- msgstr ""
1120
 
1121
  #: core/taxonomies.php:1632 enhanced-media-library.php:390
1122
  msgid "More Details"
1123
- msgstr ""
1124
 
1125
  #: core/taxonomies.php:1644
1126
  msgid "URL"
1127
- msgstr ""
1128
 
1129
  #: core/taxonomies.php:1656
1130
  msgid "Artist"
1131
- msgstr ""
1132
 
1133
  #: core/taxonomies.php:1657
1134
  msgid "Album"
1135
- msgstr ""
1136
 
1137
  #: core/taxonomies.php:1671
1138
  msgid "Alt Text"
1139
- msgstr ""
1140
 
1141
  #: core/taxonomies.php:1676
1142
  msgid "Description"
1143
- msgstr ""
1144
 
1145
  #: enhanced-media-library.php:358 enhanced-media-library.php:559
1146
  msgid "All Uncategorized"
@@ -1152,15 +1191,15 @@ msgstr "Alle Filter zurücksetzen"
1152
 
1153
  #: enhanced-media-library.php:391
1154
  msgid "Less Details"
1155
- msgstr ""
1156
 
1157
  #: enhanced-media-library.php:564
1158
  msgid "author"
1159
- msgstr ""
1160
 
1161
  #: enhanced-media-library.php:565
1162
  msgid "authors"
1163
- msgstr ""
1164
 
1165
  #: enhanced-media-library.php:569
1166
  msgid "Something went wrong."
4
  msgstr ""
5
  "Project-Id-Version: Enhanced Media Library (Free & PRO)\n"
6
  "POT-Creation-Date: 2018-09-11 00:08+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 22:09+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: de\n"
35
  #: core/options-pages.php:1694 core/options-pages.php:1952
36
  #: core/options-pages.php:2265 core/options-pages.php:2465
37
  msgid "Media Settings"
38
+ msgstr "Medieneinstellungen"
39
 
40
  #: core/options-pages.php:106 core/options-pages.php:107
41
  #: core/options-pages.php:363 core/options-pages.php:1019
249
 
250
  #: core/options-pages.php:584
251
  msgid "Wrong Taxonomy Name"
252
+ msgstr "Falscher Taxonomie Name"
253
 
254
  #: core/options-pages.php:585
255
  msgid "Wrong Slug"
256
+ msgstr "Falsche Slug"
257
 
258
  #: core/options-pages.php:587
259
  msgid "Please choose Singular and Plural names for all new taxomonies."
265
 
266
  #: core/options-pages.php:589
267
  msgid "Please choose Plural name for all new taxomonies."
268
+ msgstr "Bitte einen Plural Namen für alle neuen Taxonomien wählen."
269
 
270
  #: core/options-pages.php:591
271
  msgid ""
272
  "Taxonomy Name cannot be empty. If it was not generated from the Singular "
273
  "name please enter it manually."
274
  msgstr ""
275
+ "Der Taxonomie Name darf nicht leer sein. Wenn er nicht aus dem Singular "
276
+ "generiert wurde, bitte manuell eingeben."
277
 
278
  #: core/options-pages.php:592
279
  msgid ""
280
  "Taxonomy Name should only contain lowercase Latin letters, the underscore "
281
  "character ( _ ), and be 3-32 characters long."
282
  msgstr ""
283
+ "Der Taxonomie Name sollte nur Kleinbuchstaben des lateinischen Alphabets "
284
+ "oder den Unterstrich enthalten, sowie zwischen 2-32 Zeichen lang sein."
285
 
286
  #: core/options-pages.php:593
287
  msgid ""
288
  "Slug should only contain lowercase Latin letters, numbers, underscore ( _ ) "
289
  "or hyphen ( - ) characters."
290
  msgstr ""
291
+ "Die Slug sollte nur Kleinbuchstaben des lateinischen Alphabets, Zahlen, den "
292
+ "Unter- oder Bindestrich enthalten."
293
 
294
  #: core/options-pages.php:595 core/options-pages.php:644
295
  msgid "Ok"
336
 
337
  #: core/options-pages.php:647
338
  msgid "MIME Types cannot be saved"
339
+ msgstr "MIME Typen konnten nicht gespeichert werden"
340
 
341
  #: core/options-pages.php:648
342
  msgid "Please fill into all fields."
356
  "You are about to <strong style=\"text-transform:uppercase\">delete all "
357
  "plugin data</strong> from the database including backups."
358
  msgstr ""
359
+ "Sämtliche Plugin Daten in der Datenbank, sowie Backups <strong style=\"text-"
360
  "transform:uppercase\">werden gelöscht</strong>."
361
 
362
  #: core/options-pages.php:688
369
 
370
  #: core/options-pages.php:693 core/options-pages.php:996
371
  msgid "Unify Media Settings over Network"
372
+ msgstr "Medieneinstellungen über das Netzwerk vereinheitlichen"
373
 
374
  #: core/options-pages.php:696 core/options-pages.php:700
375
  #: core/options-pages.php:704
376
  msgid "will be overwritten"
377
+ msgstr "wird überschrieben"
378
 
379
  #: core/options-pages.php:706
380
  msgid "Apply"
381
+ msgstr "Anwenden"
382
 
383
  #: core/options-pages.php:707
384
  msgid "Applying Settings..."
385
+ msgstr "Einstellungen werden angewendet..."
386
 
387
  #: core/options-pages.php:746 core/options-pages.php:935
388
  msgid "Enhanced Media Library Utilities"
389
+ msgstr "Enhanced Media Library Werkzeuge"
390
 
391
  #: core/options-pages.php:756
392
  msgid "Export"
394
 
395
  #: core/options-pages.php:761
396
  msgid "Plugin settings to export:"
397
+ msgstr "Plugin Einstellungen, die exportiert werden:"
398
 
399
  #: core/options-pages.php:762 core/options-pages.php:789
400
  #: core/options-pages.php:829
401
  msgid "Settings > Media Library"
402
+ msgstr "Einstellungen > Mediathek"
403
 
404
  #: core/options-pages.php:763 core/options-pages.php:790
405
  #: core/options-pages.php:830
406
  msgid "Settings > Media Taxonomies"
407
+ msgstr "Einstellungen > Medien Taxonomien"
408
 
409
  #: core/options-pages.php:764 core/options-pages.php:791
410
  #: core/options-pages.php:831
411
  msgid "Settings > MIME Types"
412
+ msgstr "Einstellungen > MIME Typen"
413
 
414
  #: core/options-pages.php:768
415
  msgid ""
416
  "Use generated JSON file to import the configuration into another website."
417
  msgstr ""
418
+ "Eine generierte JSON Datei nutzen, um die Konfigurationen für eine andere "
419
+ "Website zu importieren."
420
 
421
  #: core/options-pages.php:773
422
  msgid "Export Plugin Settings"
428
 
429
  #: core/options-pages.php:788
430
  msgid "Plugin settings to import:"
431
+ msgstr "Plugin Einstellungen, die importiert werden:"
432
 
433
  #: core/options-pages.php:794
434
  msgid ""
436
  "obtained by exporting the settings on another website using the export "
437
  "button above."
438
  msgstr ""
439
+ "Die Plugin Einstellungen werden von einer Konfigurations-JSON Datei "
440
+ "importiert. Diese Datei wird über den Export der Einstellungen einer anderen "
441
+ "Website erzeugt, indem der obige Button genutzt wird."
442
 
443
  #: core/options-pages.php:795
444
  msgid ""
473
 
474
  #: core/options-pages.php:828
475
  msgid "Plugin settings to restore:"
476
+ msgstr "Plugin Einstellungen, die wiederhergestellt werden:"
477
 
478
  #: core/options-pages.php:837
479
  msgid "Restore Settings from the Backup"
489
 
490
  #: core/options-pages.php:866 core/options-pages.php:1089
491
  msgid "All plugin backups stored in the database"
492
+ msgstr "Alle in der Datenbank gespeicherten Backups des Plugins"
493
 
494
  #: core/options-pages.php:870 core/options-pages.php:1093
495
  msgid "What will remain intact:"
508
  "The plugin cannot delete itself for security reasons. Please delete it "
509
  "manually from the plugin list after the cleanup is complete."
510
  msgstr ""
511
+ "Aus Sicherheitsgründen wird das Plugin nicht automatisch gelöscht und muss "
512
+ "nach dem Aufräumen manuell aus der Pluginliste entfernt werden."
513
 
514
  #: core/options-pages.php:877 core/options-pages.php:1100
515
  msgid ""
516
  "If you are not sure about this operation it's HIGHLY RECOMMENDED to create a "
517
  "backup of your database prior to cleanup!"
518
  msgstr ""
519
+ "Bei Unsicherheiten bezüglich dieser Operation wird DRINGEND EMPFOHLEN vor "
520
+ "dem Aufräumen ein Backup der Datenbank zu erstellen!"
521
 
522
  #: core/options-pages.php:882
523
  msgid "Delete All Data & Deactivate"
525
 
526
  #: core/options-pages.php:945
527
  msgid "Network Settings"
528
+ msgstr "Netzwerk Einstellungen"
529
 
530
  #: core/options-pages.php:952 core/options-pages.php:1003
531
  msgid "No settings available. The plugin is not network activated."
532
  msgstr ""
533
+ "Keine Einstellungen verfügbar. Das Plugin ist nicht für ein Netzwerk "
534
+ "aktiviert."
535
 
536
  #: core/options-pages.php:963
537
  msgid "Media Settings per site"
538
+ msgstr "Medieneinstellungen pro Seite"
539
 
540
  #: core/options-pages.php:966
541
  msgid "Enable Media Settings"
542
+ msgstr "Medieneinstellungen aktivieren"
543
 
544
  #: core/options-pages.php:967
545
  msgid "Allow an individual site admin to edit enhanced Media Settings"
546
  msgstr ""
547
+ "Einem individuellen Site Admin erlauben, die erweiterten Medieneinstellungen "
548
+ "zu bearbeiten"
549
 
550
  #: core/options-pages.php:968
551
  msgid ""
552
  "Otherwise, only a network (super) admin can see the menu and edit media "
553
  "settings."
554
  msgstr ""
555
+ "Ansonsten kann nur eine Netzwerk (Super-) Admin das Menü sehen und die "
556
+ "Medieneinstellungen bearbeiten."
557
 
558
  #: core/options-pages.php:974
559
  msgid "Plugin Utilities per site"
560
+ msgstr "Plugin Werkzeuge pro Seite"
561
 
562
  #: core/options-pages.php:977
563
  msgid "Enable plugin Utilities"
564
+ msgstr "Plugin Werkzeuge aktivieren"
565
 
566
  #: core/options-pages.php:978
567
  msgid ""
568
  "Allow an individual site admin to import / export / restore plugin settings "
569
  "and perform the complete cleanup for a specific site"
570
  msgstr ""
571
+ "Einem individuellen Site Admin den Import / Export, die Wiederherstellung "
572
+ "der Plugineinstellungen sowie das komplette Aufräumen einer bestimmten Seite "
573
+ "erlauben"
574
 
575
  #: core/options-pages.php:979
576
  msgid ""
577
  "Otherwise, only a network (super) admin can see the menu and perform those "
578
  "actions."
579
  msgstr ""
580
+ "Ansonsten kann nur eine Netzwerk (Super-) Admin das Menü sehen und diese "
581
+ "Aktionen ausführen."
582
 
583
  #: core/options-pages.php:986 core/options-pages.php:1770
584
  #: core/options-pages.php:1824 core/options-pages.php:1861
590
 
591
  #: core/options-pages.php:1012 core/options-pages.php:1015
592
  msgid "Media Library Settings"
593
+ msgstr "Mediathek Einstellungen"
594
 
595
  #: core/options-pages.php:1016 core/options-pages.php:1030
596
  #: core/options-pages.php:1044
597
  msgid "Apply to ALL Network websites"
598
+ msgstr "Auf ALLE Netzwerk Websites anwenden"
599
 
600
  #: core/options-pages.php:1026 core/options-pages.php:1029
601
  msgid "Media Taxonomies Settings"
602
+ msgstr "Medien Taxonomien Einstellungen"
603
 
604
  #: core/options-pages.php:1040 core/options-pages.php:1043
605
  msgid "MIME Types Settings"
606
+ msgstr "MIME Typen Einstellungen"
607
 
608
  #: core/options-pages.php:1087
609
  msgid "All plugin options on every site"
610
+ msgstr "Alle Plugin Optionen auf jeder Seite"
611
 
612
  #: core/options-pages.php:1088
613
  msgid "Network settings"
614
+ msgstr "Netzwerk Einstellungen"
615
 
616
  #: core/options-pages.php:1105
617
  msgid "Delete All Data & Network Deactivate"
618
+ msgstr "Alle Daten löschen & Netzwerk deaktivieren"
619
 
620
  #: core/options-pages.php:1225
621
  msgid "Network settings saved."
622
+ msgstr "Netzwerk Einstellungen gespeichert."
623
 
624
  #: core/options-pages.php:1319
625
  msgid "Settings cannot be imported. Please upload a file to import settings."
626
  msgstr ""
627
+ "Einstellungen konnten nicht importiert werden. Bitte eine Datei hochladen, "
628
+ "um Einstellungen zu importieren."
629
 
630
  #: core/options-pages.php:1340
631
  msgid ""
632
  "Settings cannot be imported. Please upload a correct JSON file to import "
633
  "settings."
634
  msgstr ""
635
+ "Einstellungen konnten nicht importiert werden. Bitte eine korrekte JSON "
636
+ "Datei hochladen, um Einstellungen zu importieren. "
637
 
638
  #: core/options-pages.php:1356
639
  msgid "Plugin settings imported."
645
 
646
  #: core/options-pages.php:1714
647
  msgid "Filters"
648
+ msgstr "Filter"
649
 
650
  #: core/options-pages.php:1723 core/options-pages.php:1726
651
  msgid "Force filters"
663
 
664
  #: core/options-pages.php:1734 core/options-pages.php:1737
665
  msgid "Filters to show"
666
+ msgstr "Angezeigte Filter"
667
 
668
  #: core/options-pages.php:1738
669
  msgid "Types"
670
+ msgstr "Typen"
671
 
672
  #: core/options-pages.php:1739
673
  msgid "Can be disabled for Grid Mode only"
674
+ msgstr "Kann nur für den Gitter Modus angestellt werden"
675
 
676
  #: core/options-pages.php:1740
677
  msgid "Dates"
678
+ msgstr "Datum"
679
 
680
  #: core/options-pages.php:1741
681
  msgid "Authors"
682
+ msgstr "Autoren"
683
 
684
  #: core/options-pages.php:1748 core/options-pages.php:1751
685
  msgid "Show count"
694
  "Disable this if it slows down your site admin. The problem is resolved in "
695
  "the upcoming major update v3.0"
696
  msgstr ""
697
+ "Kann deaktiviert werden, wenn es die Admin Seite verlangsamt. Das Problem "
698
+ "wird mit dem kommenden Update v3.0 gefixt."
699
 
700
  #: core/options-pages.php:1759 core/options-pages.php:1762
701
  msgid "Include children"
702
+ msgstr "Untergeordnete Kategorien einbeziehen"
703
 
704
  #: core/options-pages.php:1763
705
  msgid "Show media items of child media categories as a result of filtering"
706
+ msgstr "Zeige Medien aus untergeordneten Medienkategorien beim Filterergebnis"
707
 
708
  #: core/options-pages.php:1780
709
  msgid "Order"
734
  msgid ""
735
  "Allows changing media items order by drag and drop with Custom Order value."
736
  msgstr ""
737
+ "Medienreihenfolge kann per Drag & Drop mit benutzerdefinierten "
738
+ "Ordnungswerten geändert werden."
739
 
740
  #: core/options-pages.php:1802
741
  msgid "Sort order"
751
 
752
  #: core/options-pages.php:1813 core/options-pages.php:1816
753
  msgid "Natural sort order"
754
+ msgstr "Natürliche Sortierreihenfolge"
755
 
756
  #: core/options-pages.php:1817
757
  msgid "Apply human-friendly sort order to Media Library and Galleries"
758
  msgstr ""
759
+ "Benutzerfreundliche Sortierreihenfolge für Mediathek und Gallerien verwenden."
760
 
761
  #: core/options-pages.php:1818
762
  msgid ""
763
  "Example: [1, 2, 3, 10, 18, 22, abc-2, abc-11] instead of [1, 10, 18, 2, 22, "
764
  "3, abc-11, abc-2]"
765
  msgstr ""
766
+ "Zum Beispiel: [1, 2, 3, 10, 18, 22, abc-2, abc-11] anstatt [1, 10, 18, 2, "
767
+ "22, 3, abc-11, abc-2]"
768
 
769
  #: core/options-pages.php:1831
770
  msgid "Grid Mode"
771
+ msgstr "Raster Modus"
772
 
773
  #: core/options-pages.php:1840 core/options-pages.php:1843
774
  msgid "Show caption"
775
+ msgstr "Beschriftung anzeigen"
776
 
777
  #: core/options-pages.php:1844
778
  msgid "Add text caption for media item thumbnails"
779
+ msgstr "Textbeschriftung für Medien Thumbnails hinzufügen"
780
 
781
  #: core/options-pages.php:1850
782
  msgid "Caption type"
783
+ msgstr "Beschriftungstyp"
784
 
785
  #: core/options-pages.php:1854
786
  msgid "Filename"
787
+ msgstr "Dateiname"
788
 
789
  #: core/options-pages.php:1855 core/taxonomies.php:1666
790
  msgid "Caption"
791
+ msgstr "Beschriftung"
792
 
793
  #: core/options-pages.php:1868
794
  msgid "Media Shortcodes"
820
 
821
  #: core/options-pages.php:1888
822
  msgid "Warning"
823
+ msgstr "Warnung"
824
 
825
  #: core/options-pages.php:1891
826
  #, php-format
828
  "Incompatibility with other gallery plugins or themes possible! <a href=\"%s"
829
  "\">Learn more</a>."
830
  msgstr ""
831
+ "Inkompatibilität mit anderen Gallerie-Plugins oder Themes möglich! <a href="
832
+ "\"%s\">Erfahre mehr</a>."
833
 
834
  #: core/options-pages.php:1896
835
  #, php-format
1037
 
1038
  #: core/options-pages.php:2425
1039
  msgid "vote for the plugin"
1040
+ msgstr "Plugin bewerten"
1041
 
1042
  #: core/options-pages.php:2425
1043
  msgid "Thanks!"
1049
 
1050
  #: core/options-pages.php:2469
1051
  msgid "Utility"
1052
+ msgstr "Werkzeuge"
1053
 
1054
  #: core/options-pages.php:2494
1055
  msgid "Rate us:"
1056
+ msgstr "Bewertung abgeben:"
1057
 
1058
  #: core/options-pages.php:2494
1059
  msgid "Poor"
1060
+ msgstr "Schlecht"
1061
 
1062
  #: core/options-pages.php:2494
1063
  msgid "Works"
1064
+ msgstr "Ausreichend"
1065
 
1066
  #: core/options-pages.php:2494
1067
  msgid "Good"
1068
+ msgstr "Gut"
1069
 
1070
  #: core/options-pages.php:2494
1071
  msgid "Great"
1072
+ msgstr "Sehr gut"
1073
 
1074
  #: core/options-pages.php:2494
1075
  msgid "Fantastic!"
1076
+ msgstr "Großartig!"
1077
 
1078
  #: core/taxonomies.php:101
1079
  msgid "Media Taxonomies settings saved."
1085
 
1086
  #: core/taxonomies.php:353
1087
  msgid "Filter by author"
1088
+ msgstr "Nach Autor filtern"
1089
 
1090
  #: core/taxonomies.php:357
1091
  msgid "All Authors"
1092
+ msgstr "Alle Autoren"
1093
 
1094
  #: core/taxonomies.php:374 core/taxonomies.php:380
1095
  #: enhanced-media-library.php:560
1102
 
1103
  #: core/taxonomies.php:721
1104
  msgid "Add some"
1105
+ msgstr "Hinzufügen"
1106
 
1107
  #: core/taxonomies.php:1501
1108
  msgid "Remove"
1130
 
1131
  #: core/taxonomies.php:1585
1132
  msgid "Attachment Details"
1133
+ msgstr "Anhang Details"
1134
 
1135
  #: core/taxonomies.php:1588 enhanced-media-library.php:568
1136
  msgid "Saved."
1137
+ msgstr "Gespeichert."
1138
 
1139
  #: core/taxonomies.php:1612
1140
  msgid "Edit Image"
1141
+ msgstr "Bild bearbeiten"
1142
 
1143
  #: core/taxonomies.php:1617
1144
  msgid "Length:"
1145
+ msgstr "Länge:"
1146
 
1147
  #: core/taxonomies.php:1623
1148
  msgid "Untrash"
1149
+ msgstr "Wiederherstellen"
1150
 
1151
  #: core/taxonomies.php:1625
1152
  msgctxt "verb"
1153
  msgid "Trash"
1154
+ msgstr "Löschen"
1155
 
1156
  #: core/taxonomies.php:1628
1157
  msgid "Delete Permanently"
1158
+ msgstr "Permanent Löschen"
1159
 
1160
  #: core/taxonomies.php:1632 enhanced-media-library.php:390
1161
  msgid "More Details"
1162
+ msgstr "Mehr Details"
1163
 
1164
  #: core/taxonomies.php:1644
1165
  msgid "URL"
1166
+ msgstr "URL"
1167
 
1168
  #: core/taxonomies.php:1656
1169
  msgid "Artist"
1170
+ msgstr "Künstler"
1171
 
1172
  #: core/taxonomies.php:1657
1173
  msgid "Album"
1174
+ msgstr "Album"
1175
 
1176
  #: core/taxonomies.php:1671
1177
  msgid "Alt Text"
1178
+ msgstr "Alt Text"
1179
 
1180
  #: core/taxonomies.php:1676
1181
  msgid "Description"
1182
+ msgstr "Beschreibung"
1183
 
1184
  #: enhanced-media-library.php:358 enhanced-media-library.php:559
1185
  msgid "All Uncategorized"
1191
 
1192
  #: enhanced-media-library.php:391
1193
  msgid "Less Details"
1194
+ msgstr "Weniger Details"
1195
 
1196
  #: enhanced-media-library.php:564
1197
  msgid "author"
1198
+ msgstr "Autor"
1199
 
1200
  #: enhanced-media-library.php:565
1201
  msgid "authors"
1202
+ msgstr "Autoren"
1203
 
1204
  #: enhanced-media-library.php:569
1205
  msgid "Something went wrong."
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: media library, media category, media categories, media gallery, gallery sh
4
  Requires at least: 4.5
5
  Tested up to: 4.9.9
6
  Requires PHP: 5.6
7
- Stable tag: 2.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -118,7 +118,7 @@ Additional comfort and even more convenient way to organize WordPress media libr
118
  ### Useful Links ###
119
 
120
  * [Where to Start?](https://wpuxsolutions.com/documents/enhanced-media-library/where-to-start)
121
- * [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library) (Is being updated after v2.6 chnages)
122
  * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs)
123
  * [Contribute to Translation](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library)
124
  * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts)
@@ -172,13 +172,20 @@ Additional comfort and even more convenient way to organize WordPress media libr
172
 
173
  ## Changelog ##
174
 
 
 
 
 
 
 
 
175
  ### 2.7.1 ###
176
  *Release Date - September 11, 2018*
177
  *v2.7 bugfixes*
178
 
179
  = Bugfixes =
180
  * `[playlist]` broken shortcode bug fixed
181
- * "Image not uploading", "Can't add featured image", "Media library right sidebar gone" and possibly some other situations common bug fixed. Please notice, for those who use Smush (WP Smush It) plugin the issue is not fixed because the fix requires a collaboration with the Smush author. Follow [Update Broke Uploader](https://wordpress.org/support/topic/update-broke-uploader/) support thread to know the temporary solution.
182
  * PRO only: hidden filters bug fixed
183
  * A few minor bug fixed, some minor code improvements made
184
 
4
  Requires at least: 4.5
5
  Tested up to: 4.9.9
6
  Requires PHP: 5.6
7
+ Stable tag: 2.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
118
  ### Useful Links ###
119
 
120
  * [Where to Start?](https://wpuxsolutions.com/documents/enhanced-media-library/where-to-start)
121
+ * [Documentation](https://www.wpuxsolutions.com/documents/enhanced-media-library) (Is being updated after v2.6 and v2.7 changes)
122
  * [FAQs](https://www.wpuxsolutions.com/documents/enhanced-media-library/faqs)
123
  * [Contribute to Translation](https://www.wpuxsolutions.com/l10n/projects/enhanced-media-library)
124
  * [Enhanced Media Shortcode Possible Conflicts](https://www.wpuxsolutions.com/documents/enhanced-media-library/enhanced-media-shortcode-possible-conflicts)
172
 
173
  ## Changelog ##
174
 
175
+ ### 2.7.2 ###
176
+ *Release Date - September 13, 2018*
177
+
178
+ = Improvements =
179
+ * Compatibility with Smush (WP SmushIt) plugin ensured
180
+
181
+
182
  ### 2.7.1 ###
183
  *Release Date - September 11, 2018*
184
  *v2.7 bugfixes*
185
 
186
  = Bugfixes =
187
  * `[playlist]` broken shortcode bug fixed
188
+ * "Image not uploading", "Can't add featured image", "Media library right sidebar gone" and possibly some other situations common bug fixed.
189
  * PRO only: hidden filters bug fixed
190
  * A few minor bug fixed, some minor code improvements made
191