@@ -721,35 +721,35 @@ - (void)setupSourceList
721
721
722
722
NSImage *managedInstallsIcon;
723
723
if (@available (macOS 11.0 , *)) {
724
- managedInstallsIcon = [NSImage imageWithSystemSymbolName: @" lock.doc" accessibilityDescription: @" Doc icon" ];
724
+ managedInstallsIcon = [NSImage imageWithSystemSymbolName: @" lock.doc" accessibilityDescription: @" Lock icon" ];
725
725
} else {
726
726
managedInstallsIcon = [NSImage imageNamed: @" lock.doc" ];
727
727
[managedInstallsIcon setTemplate: YES ];
728
728
}
729
729
NSImage *managedUninstallsIcon;
730
730
if (@available (macOS 11.0 , *)) {
731
- managedUninstallsIcon = [NSImage imageWithSystemSymbolName: @" arrow.up.doc" accessibilityDescription: @" Doc icon" ];
731
+ managedUninstallsIcon = [NSImage imageWithSystemSymbolName: @" arrow.up.doc" accessibilityDescription: @" Arrow up icon" ];
732
732
} else {
733
733
managedUninstallsIcon = [NSImage imageNamed: @" arrow.up.doc" ];
734
734
[managedUninstallsIcon setTemplate: YES ];
735
735
}
736
736
NSImage *managedUpdatesIcon;
737
737
if (@available (macOS 11.0 , *)) {
738
- managedUpdatesIcon = [NSImage imageWithSystemSymbolName: @" arrow.down.doc" accessibilityDescription: @" Doc icon" ];
738
+ managedUpdatesIcon = [NSImage imageWithSystemSymbolName: @" arrow.down.doc" accessibilityDescription: @" Arrow down icon" ];
739
739
} else {
740
740
managedUpdatesIcon = [NSImage imageNamed: @" arrow.down.doc" ];
741
741
[managedUpdatesIcon setTemplate: YES ];
742
742
}
743
743
NSImage *optionalInstallsIcon;
744
744
if (@available (macOS 11.0 , *)) {
745
- optionalInstallsIcon = [NSImage imageWithSystemSymbolName: @" cart" accessibilityDescription: @" Doc icon" ];
745
+ optionalInstallsIcon = [NSImage imageWithSystemSymbolName: @" cart" accessibilityDescription: @" Cart icon" ];
746
746
} else {
747
747
optionalInstallsIcon = [NSImage imageNamed: @" cart" ];
748
748
[optionalInstallsIcon setTemplate: YES ];
749
749
}
750
750
NSImage *featuredItemsIcon;
751
751
if (@available (macOS 11.0 , *)) {
752
- featuredItemsIcon = [NSImage imageWithSystemSymbolName: @" star" accessibilityDescription: @" Doc icon" ];
752
+ featuredItemsIcon = [NSImage imageWithSystemSymbolName: @" star" accessibilityDescription: @" Star icon" ];
753
753
} else {
754
754
featuredItemsIcon = [NSImage imageNamed: @" star" ];
755
755
[featuredItemsIcon setTemplate: YES ];
@@ -770,7 +770,7 @@ - (void)setupSourceList
770
770
}
771
771
NSImage *conditionsIcon;
772
772
if (@available (macOS 11.0 , *)) {
773
- conditionsIcon = [NSImage imageWithSystemSymbolName: @" arrow.triangle.branch" accessibilityDescription: @" Doc icon" ];
773
+ conditionsIcon = [NSImage imageWithSystemSymbolName: @" arrow.triangle.branch" accessibilityDescription: @" Branch icon" ];
774
774
} else {
775
775
conditionsIcon = [NSImage imageNamed: @" arrow.triangle.branch" ];
776
776
[conditionsIcon setTemplate: YES ];
0 commit comments