├── .gitignore ├── ImageOptim-screenshot@2x.png ├── ImageOptim.app └── Contents │ ├── Frameworks │ └── Sparkle.framework │ │ ├── Resources │ │ ├── Sparkle │ │ └── Versions │ │ ├── A │ │ ├── Resources │ │ │ ├── Autoupdate.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Autoupdate │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── Resources │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── Info.plist │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── ar.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── cs.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── el.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr_CA.lproj │ │ │ ├── is.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ko.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── nb.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt.lproj │ │ │ ├── pt_BR.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt_PT.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ro.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ru.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sk.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── th.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── tr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── uk.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ ├── Sparkle │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current │ ├── Info.plist │ ├── MacOS │ ├── ImageOptim │ ├── advpng │ ├── gifsicle │ ├── jpegoptim │ ├── jpegtran │ ├── libimageoptimjpeg.dylib │ ├── liblibpng.dylib │ ├── optipng │ ├── pngcrush │ ├── pngout │ ├── pngquant │ └── zopflipng │ ├── PkgInfo │ ├── Resources │ ├── ImageOptim.icns │ ├── ImageOptimVerbs.sdef │ ├── cs.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── da.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── de.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── defaults.plist │ ├── dsa_pub.pem │ ├── el.lproj │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── en-GB.lproj │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── en.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── err.png │ ├── err@2x.png │ ├── es.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── fr.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── it.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── ja.lproj │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── jpegrescan │ ├── ko.lproj │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── lt.lproj │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── nl.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── no.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── noopt.png │ ├── noopt@2x.png │ ├── ok.png │ ├── ok@2x.png │ ├── pl.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── progress.png │ ├── progress@2x.png │ ├── pt-BR.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── pt.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── ru.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── style.css │ ├── sv.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── tr.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── vi.lproj │ │ ├── Credits.html │ │ ├── Help │ │ │ ├── Help.helpindex │ │ │ ├── index.html │ │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ ├── wait.png │ ├── wait@2x.png │ └── zh-Hant.lproj │ │ ├── Help │ │ ├── Help.helpindex │ │ ├── index.html │ │ └── prefs.html │ │ ├── Localizable.strings │ │ ├── MainMenu.nib │ │ └── PrefsController.nib │ └── _CodeSignature │ └── CodeResources ├── LICENSE.md ├── README.md ├── RSImageOptimPlugin-screenshot@2x.png ├── RSImageOptimPlugin.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── RSImageOptimPlugin ├── RSImageOptimPlugin-Info.plist ├── RSImageOptimPlugin-Prefix.pch ├── RSImageOptimPlugin.h ├── RSImageOptimPlugin.m ├── RSWorkspaceController.h ├── RSWorkspaceController.m ├── XcodeClasses ├── DVTFoundation.h ├── DVTKit.h ├── IDEFoundation.h ├── IDEKit.h └── IDESourceEditor.h └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- 1 | RSImageOptimPlugin.xcodeproj/project.xcworkspace/xcshareddata/* 2 | RSImageOptimPlugin.xcodeproj/project.xcworkspace/xcuserdata/* 3 | RSImageOptimPlugin.xcodeproj/xcuserdata/* -------------------------------------------------------------------------------- /ImageOptim-screenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim-screenshot@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14E11f 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | Autoupdate 11 | CFBundleIconFile 12 | AppIcon 13 | CFBundleIdentifier 14 | org.sparkle-project.Sparkle.Autoupdate 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.10.0 git-84a35e5 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.10.0 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6D1002 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 14D125 33 | DTSDKName 34 | macosx10.10 35 | DTXcode 36 | 0631 37 | DTXcodeBuild 38 | 6D1002 39 | LSBackgroundOnly 40 | 1 41 | LSMinimumSystemVersion 42 | 10.7 43 | LSUIElement 44 | 1 45 | NSMainNibFile 46 | MainMenu 47 | NSPrincipalClass 48 | NSApplication 49 | 50 | 51 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 14E11f 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sparkle 11 | CFBundleIdentifier 12 | org.andymatuschak.Sparkle 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sparkle 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleShortVersionString 20 | 1.10.0 git-84a35e5 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.9.0 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 6D1002 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 14D125 33 | DTSDKName 34 | macosx10.10 35 | DTXcode 36 | 0631 37 | DTXcodeBuild 38 | 6D1002 39 | SUAppendVersionNumber 40 | 1 41 | SUEnableAutomatedDowngrades 42 | 0 43 | SUNormalizeInstalledApplicationName 44 | 0 45 | SURelaunchToolName 46 | Autoupdate 47 | 48 | 49 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/ImageOptim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/ImageOptim -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/advpng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/advpng -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/gifsicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/gifsicle -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/jpegoptim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/jpegoptim -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/jpegtran -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/libimageoptimjpeg.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/libimageoptimjpeg.dylib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/liblibpng.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/liblibpng.dylib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/optipng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/optipng -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/pngcrush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/pngcrush -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/pngout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/pngout -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/pngquant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/pngquant -------------------------------------------------------------------------------- /ImageOptim.app/Contents/MacOS/zopflipng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/MacOS/zopflipng -------------------------------------------------------------------------------- /ImageOptim.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ImageOptim.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ImageOptim.icns -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ImageOptimVerbs.sdef: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim od Kornela Lesińskiho a přispěvatelů je rozhraním pro programy třetích stran:

3 | 18 |

ImageOptim lze šířit a upravovat za GNU General Public License verze 2 nebo pozdější. Přibalený PNGOUT není GPL kryt a je zahrnut na základě povolení Ardfry Imaging, LLC.

19 |

Pavel Fric

20 |
21 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/cs.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Nápověda k ImageOptim 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim

10 | 11 |

Jak používat

12 | 13 |
    14 |
  1. Jednoduše táhněte a upusťte soubory PNG nebo JPEG nebo adresáře na hlavní okno.
  2. 15 | 16 |
  3. Počkejte, až to bude hotovo.
  4. 17 | 18 |
  5. Radujte se (z menších souborů).
  6. 19 |
20 |

Soubory a adresáře lze také přímo přetáhnout na ikonu v panelu.

21 | 22 |

Naučte se, jak se dá změnit nastavení programu.

23 | 24 |

Ikony v okně činností

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Zelené XObrázek byl úspěšně vylepšen.
Green XVšechno je v pořádku. Obrázek se ale už dál nepodařilo vylepšit.
Šedá hvězdaSoubor s obrázkem je právě vylepšován.
Šedé tečkySoubor je zařazen a čeká na to, až budou hotovy jiné soubory, aby mohl být vylepšen.
Oranžový vykřičníkBěhem vylepšování se vyskytla chyba. Vysvětlení naleznete, když spustíte Console.app.
53 |

Jak to pracuje

54 | 55 |

ImageOptim je rozhraní pro tyto programy:

56 | 57 | 70 |

ImageOptim je spouští. Vybírá z výše jmenovaných programů automaticky ten, který dokáže vytvořit nejmenší velikost souboru.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/cs.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/cs.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/cs.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim af Kornel Lesiński og bidragsydere er et GUI for tredjepartsværktøjer:

3 | 18 |

ImageOptim kan distribueres og modificeres under GNU General Public License version 2 eller nyere. 19 | Det inkluderede PNGOUT er ikke dækket af GPL, men inkluderet med tilladelse fra Ardfry Imaging, LLC.

20 |

Translated by Rasmus Kjær and Rasmus Ljungmann Pedersen.

21 |
22 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/da.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ImageOptim Hjælp 9 | 10 | 11 |

ImageOptim

12 | 13 |

Sådan bruges det

14 | 15 |
    16 |
  1. Træk-og-slip PNG eller JPEG filer/mapper til tabellen i ImageOptim's vindue.
  2. 17 | 18 |
  3. Afvent indtil processen er færdig.
  4. 19 | 20 |
  5. Profit! (fra mindre filer)
  6. 21 |
22 |

Du kan også slippe filer på ImageOptim's ikon i din Dock.

23 | 24 |

Lær hvordan du ændrer indstillinger.

25 | 26 |

Ikoner i filtabel

27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
Green CheckmarkBilledet er blevet optimeret med succes.
Green XAlt gik efter planen, men billedet kunne ikke optimeres yderligere.
Gray starOptimering af filen er i gang.
Gray dotsFilen er i kø til at blive optimeret efter de andre filer er færdige.
Orange exclamation markDer skete en fejl under optimeringen. Du kan finde forklaring ved at køre Console.app.
55 |

Hvordan virker det

56 | 57 |

ImageOptim er en front-end (GUI) for følgende applikationer:

58 | 59 | 72 |

ImageOptim kører disse og vælger automatisk den mindste fil.

73 | 74 | 75 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/da.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/da.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/da.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim von Kornel Lesiński ist eine GUI für folgende 3rd party utilities:

3 | 18 |

ImageOptim darf unter den Bedingungen der 19 | GNU General Public License version 2 oder später weitergegeben und modifiziert werden. 20 | Bundled PNGOUT is not 21 | covered by the GPL and is included with permission of Ardfry Imaging, LLC.

22 |

Translation by Alexander Mayer.

23 |
24 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/de.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ImageOptim Hilfe 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |

ImageOptim

12 | 13 |

Wie benutzt man ImageOptim?

14 | 15 |
    16 |
  1. Einfach die PNG/JPEG Dateien oder Ordner per Drag'n'Drop in das Hauptfenster ziehen.
  2. 17 | 18 |
  3. Warten.
  4. 19 | 20 |
  5. Sich freuen! ;)
  6. 21 |
22 |

Dateien und Ordner können auch direkt auf das ImageOptim Icon im Dock gezogen werden.

23 | 24 |

Informationen zu ImageOptims Einstellungen.

25 | 26 |

Icons im Aktivitätsfenster

27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
Grüner HakenDas Bild wurde erfolgreich optimiert.
Grünes XAlles OK. Das Bild konnte lediglich nicht weiter optimiert werden.
Grauer SternDas Bild wird gerade optimiert.
Grauer PunktDie Datei befindet sich in der Warteschlange.
Orangenes AusrufezeichenEs gab einen Fehler während der Optimierung. Weitere Informationen findet man in der Konsole.app.
55 |

Wie funktioniert ImageOptim?

56 | 57 |

ImageOptim ist eine grafische Oberfläche (GUI) für folgende Programme:

58 | 59 | 72 |

ImageOptim wählt aus den oben genannten Programmen das aus, welches die kleinste Dateigröße produzieren kann.

73 | 74 | 75 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ImageOptim Einstellungen 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim Einstellungen

10 |

« Zurück zum index

11 |

Allgemeine Einstellungen

12 |
13 |
Dateiberechtigungen, -attribute und Hardlinks erhalten
14 |
15 |

Statt Löschen alter Datei schriftlich eine neue mit dem gleichen Namen, nur ersetzt alte Datei der Inhalt an Ort und Stelle. Dadurch wird sichergestellt, dass alle Hardlinks , Aliasnamen, Datei Besitzer, die Berechtigungen , erweiterte Dateiattribute werden die gleichen bleiben.

16 |

Es ist nicht etwas schneller, um Berechtigungen zu bewahren.

17 |
18 |
PNG: Entferne alle optionalen Segmente
19 |
20 |

Diese Einstellung ist nur ratsam, wenn man Dateien für das Internet optimiert.

21 |

Other invisible information is removed as well, such as DPI and comments.

22 |
23 |
JPEG: Entferne EXIF Markierungen und Kommentare
24 |
25 |

Entfernt Metadaten, wie z.B. Programmnamen oder das Kameramodell aus den Bildern.

26 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

27 |
28 |
29 |

Werkzeuge

30 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

31 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

32 |
33 |

JPEGOptim

34 |
35 |
Maximale Qualität
36 |
37 |

Wenn diese Einstellung auf 100% gesetzt wird, werden die Bilddateien verlustfrei gespeichert.

38 |

Jede Einstellung unter 100% resultiert in qualitativ schlechteren Ergebnissen.

39 |
40 |
41 |
42 |
43 |

PNGOUT

44 |
45 |
Art der Optimierung
46 |
47 |

PNGOUT ist sehr wirksam, aber sehr langsam. Verwenden Sie die unteren Ebene, wenn Sie ungeduldig sind.

48 |
49 |
Breche bei zu langer Optimierung ab
50 |
51 |

PNGOUT kann bei großen Bilddateien unter Umständen sehr lange für eine Optimierung brauchen. Diese Option beendet PNGOUT nach einer Minute.

52 |
53 |
54 |
55 |
56 |

OptiPNG

57 |
58 |
Grad der Optimierung
59 |
60 |

Anzahl der unterschiedlichen Einstellungskombinationen getestet. Es ist selten sinnvoll, sie zu alle versuchen.

61 |
62 |
Erstelle die Bilder interlaced (progressive)
63 |
64 |

Interlaced Bilder sehen besser aus, wenn sie teilweise geladen sind, aber in der Regel ist die Interlace Kompression weniger effizient.

65 |

Diese Checkbox hat drei Zustände: Wenn aktiviert, werden Bilder gezwungen interlaced zuwerden. Wenn gemischt, es wird immer Datei Interlace unverändert , werden unkontrolliert von Interlace- Dateien zu entfernen.

66 |
67 |
68 |
69 |
70 |

Gifsicle

71 |

Für beste Kompression, sollten Sie GIF-Dateien in PNG-Dateien (ImageOptim macht das nicht automatisch) konvertieren.

72 |
73 | 74 | 75 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/de.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/de.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/de.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/defaults.plist -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/dsa_pub.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIDOzCCAi0GByqGSM44BAEwggIgAoIBAQD/29U8O2QEO+QqYO0VeIuZI1gdtqS5 3 | YNVmRKZDxg6FEsQ+KvRspaH+6GD7m8wuDGVWcZBhinoOz/T046T7h75yYfgYm8i+ 4 | YI4FUK7XhwQM4gNBQ1TiyrwlvZVPkwjIlkI8uOqEAIYweNfIqWcZFM/V+KgYvqo/ 5 | cewiwY0ehKgOXY7qlQY22DlKQNzo/ccmx0aKtTpRljUu+j+6oVbX0hwH7LkPRP/l 6 | El3ifD8p0WcXC9kixFN1ns4jaOM74tzBhJay36Yg3T3dxym/IyiDC8vdiKfK4baW 7 | VYGYLbOqOIeDwTCMM59rbMY2NofXtU0hc6yf0U4lSA9dFS9toyxGSqaLAhUAoBfn 8 | GkaNya1RFlqA+FINPZ4B7LUCggEAdK/HQA/HPGLoMx+XeqlRSFymc+qMySfYnoc2 9 | PzryRWCalhXINjXmHjkcLoylsTXtRzn6ktPymf+8FhkMkDZs+DtSaYusHrPBwk2w 10 | SjHklZgIUnvnEPN4t/US29d10dHqqQYdjwROuWWJNM7E4To79XjR1AeG84yXvpMm 11 | Nrtp9XeCQLWmOvctSp5ZEhqnEjRCxBzowYM5NDLWA8h46689sM/1C3lsCOb+XQHa 12 | R9TklxRtlbpNW90cPzbPxji+xRjHUc9R8fHW4Wx6s/JRu3gHREkAGyyJ1k93T8vc 13 | p10U4qGGJTlHiBUt3fWZGnZzmz4j4Yw1MOwdoSBgrF3/wsZ6IQOCAQYAAoIBAQDt 14 | Jk3nm5uTf44d8lMLiKQVrE7QttfHFMHGPXkBzomBar3rvSV46dmOdSqKRkE+JXNU 15 | x81iA/otMDr//uBnviwPOwJCMXnli2CTZXuBITTfDqIu7/2CzlPL3sSqhpp8tpAF 16 | 7vnVOvk4TTk23P93qjil/mlqiRzyefn9NgbEKkWMrzDOnpTCajH02ZTZZxVqFtyX 17 | PLArdOfV+QMJtSIlVCsy0EwudDdK7gL2ef7+QWzzoVo2FVQFOpckvnmsC65yL/9v 18 | 4sPVDR/mNPOC0dML9fkRJr6ykD4IgOw+lwSDxBE8vgQmvy8n3U4zVPyfdgSndAKF 19 | AEjuJ8qRswZ0xG0B8D2W 20 | -----END PUBLIC KEY----- 21 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/el.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/el.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/el.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Βοήθεια ImageOptim 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim

10 | 11 |

Πώς χρησιμοποιείται

12 | 13 |
    14 |
  1. Σύρετε και αφήστε αρχεία PNG, JPEG ή φακέλους μέσα στο κεντρικό παράθυρο του ImageOptim
  2. 15 | 16 |
  3. Περιμένετε μέχρι να τελειώσει.
  4. 17 | 18 |
  5. Κέρδος! (από μικρότερα αρχεία)
  6. 19 |
20 |

Μπορείτε επίσεις να ρίξετε αρχεία στο εικονίδιο του ImageOptim στο Dock

21 | 22 |

Μάθετε πως να αλλάζετε τις Προτιμήσεις.

23 | 24 |

Επεξήγηση εικονιδίων

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Green CheckmarkΗ εικόνα έχει βελτιστοποιηθεί με επιτυχία.
Green XΌλα πήγαν μια χαρά, αλλά η εικόνα δεν θα μπορούσε να βελτιστοποιηθεί περαιτέρω.
Gray starΗ βελτιστοποίηση αυτού του αρχείου βρίσκεται σε εξέλιξη.
Gray dotsΤο αρχείο είναι στην ουρά για βελτιστοποίηση, μετά το τέλος των άλλων.
Orange exclamation markΠαρουσιάστηκε σφάλμα κατά τη διάρκεια της βελτιστοποίησης. Θα βρείτε εξήγηση εκτελώντας το Console.app.
53 |

Πώς λειτουργεί

54 | 55 |

Το ImageOptim είναι ένα front-end (GUI) για αυτές τις εφαρμογές:

56 | 57 | 70 |

Το ImageOptim τα τρέχει, και επιλέγει αυτόματα το μικρότερο αρχείο.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/el.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/el.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/el.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/el.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en-GB.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en-GB.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en-GB.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Help 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |

ImageOptim

13 | 14 |

How to use

15 | 16 |
    17 |
  1. Drag'n'drop PNG or JPEG files or directories onto main table view in ImageOptim's window.
  2. 18 | 19 |
  3. Wait until it finishes.
  4. 20 | 21 |
  5. Profit! (from smaller files)
  6. 22 |
23 |

You can also drop files onto ImageOptim's Dock icon.

24 | 25 |

Learn how to change Preferences.

26 | 27 |

Icons in file table

28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
Green CheckmarkImage has been optimised successfully.
Green XEverything went fine, but image couldn't be optimised any further.
Gray starOptimisation of this file is in progress.
Gray dotsFile is queued to be optimised after other files are finished.
Orange exclamation markThere was an error during optimisation. You'll find explanation by running Console.app.
56 |

How does it work

57 | 58 |

ImageOptim is a front-end (GUI) for these applications:

59 | 60 | 73 |

ImageOptim runs them and automatically selects smallest file.

74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en-GB.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en-GB.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en-GB.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en-GB.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |

ImageOptim by Kornel Lesiński and contributors is a GUI for 3rd party utilities:

2 | 18 |
19 |

20 | ImageOptim can be redistributed and modified under GNU General Public License version 2 or later. 21 | Bundled PNGOUT is not covered by the GPL and is included with permission of Ardfry Imaging, LLC. 22 |

23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Help 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |

13 | ImageOptim 14 |

15 |

16 | How to use 17 |

18 |
    19 |
  1. Drag'n'drop PNG or JPEG files or directories onto main table view in ImageOptim's window. 20 |
  2. 21 |
  3. Wait until it finishes. 22 |
  4. 23 |
  5. Profit! (from smaller files) 24 |
  6. 25 |
26 |

27 | Files will be overwritten with smaller versions. Unoptimized versions will be moved to Trash. 28 |

29 |

30 | You can also drop files onto ImageOptim's Dock icon. 31 |

32 |

33 | Learn how to change Preferences. 34 |

35 |

36 | Icons in file table 37 |

38 | 39 | 40 | 43 | 46 | 47 | 48 | 51 | 54 | 55 | 56 | 59 | 62 | 63 | 64 | 67 | 70 | 71 | 72 | 75 | 78 | 79 |
41 | Green Checkmark 42 | 44 | Image has been optimized successfully. 45 |
49 | Green X 50 | 52 | Everything went fine, but image couldn't be optimized any further. 53 |
57 | Gray star 58 | 60 | Optimization of this file is in progress. 61 |
65 | Gray dots 66 | 68 | File is queued to be optimized after other files are finished. 69 |
73 | Orange exclamation mark 74 | 76 | There was an error during optimization. You'll find explanation by running Console.app. 77 |
80 |

81 | How does it work 82 |

83 |

84 | ImageOptim is a front-end (GUI) for these applications: 85 |

86 | 96 |

97 | ImageOptim runs them and automatically selects the smallest file. 98 |

99 | 100 | 101 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/en.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/en.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/err.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/err@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/err@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim de Kornel Lesiński es un GUI para las siguientes herramientas de terceros:

3 | 18 |

ImageOptim puede ser redistribuido y modificado bajo 19 | GNU General Public License versión 2 o posterior. 20 | El PNGOUT empaquetado no está cubierto por la GPL y ha sido incluido con permiso de Ardfry Imaging, LLC.

21 |

Traducido por Benjamin Pollard Nelson, Wayne Hartman y Sendoa Portuondo.

22 |
23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/es.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Ayuda de ImageOptim 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |

ImageOptim

15 | 16 |

Modo de uso

17 | 18 |
    19 |
  1. Arrastre y suelte archivos JPEG o PNG o carpetas en la tabla de la ventana principal de ImageOptim.
  2. 20 | 21 |
  3. Espere hasta que termine.
  4. 22 | 23 |
  5. ¡Aprovechese de los archivos más pequeños!
  6. 24 |
25 |

También puede soltar archivos encima del icono de ImageOptim en el Dock.

26 | 27 |

Aprenda a cambiar las Preferencias.

28 | 29 |

Los iconos de la tabla de archivos

30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
Visto verdeLa imagen ha sido optimizada con éxito.
X VerdeTodo salió bien, pero la imagen ya no pudo ser mejor optimizada.
Estrella grisLa optimización del archivo está en curso.
Puntos grisesEl archivo ha sido añadido a la cola para ser optimizado después de que otros archivos estén acabados.
Signo de exclamación naranjaHubo un error durante la optimización. Encontrará una explicación mediante la ejecución de Console.app.
58 |

Cómo funciona

59 | 60 |

ImageOptim es un front-end (GUI) para estas aplicaciones:

61 | 62 | 75 |

ImageOptim ejecuta dichas aplicaciones y selecciona automáticamente el archivo más pequeño.

76 | 77 | 78 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/es.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/es.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/es.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim de Kornel Lesiński est une interface graphique pour les programmes suivants:

3 | 18 |

ImageOptim peut être redistribué et modifié en respectant 19 | la Licence Publique Générale GNU version 2 ou suivante. 20 | Bundled PNGOUT is not covered by the GPL and is included with permission of Ardfry Imaging, LLC.

21 |

Traduction française de Mathias Richter.

22 |
23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/fr.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Aide ImageOptim 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |

ImageOptim

15 | 16 |

Glissez/déposez des fichiers JPG, PNG ou dossiers dans le tableau central d'ImageOptim.

17 | 18 |
    19 |
  1. Attendez la fin des traitements.
  2. 20 | 21 |
  3. Tirez avantage de vos nouveaux fichiers plus petits.
  4. 22 | 23 |
  5. Vous pouvez également déposer vos fichiers sur l'icône d'ImageOptim.
  6. 24 |
25 |

Découvrez les différents réglages des préférences.

26 | 27 |

Pictogrammes du tableau

28 | 29 |

Coche verte

30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
Traitements réussis, le fichier est plus petit.Croix verte
Traitements réussis, le fichier n'est pas plus petit (déjà optimal).Roue grise
Optimisations en cours.Points gris
En file d'attente, l'optimisation démarrera prochainement.Point d'exclamation orange
Traitements en erreur. Vous pouvez consultez la log avec Console.app pour plus de détails.Comment ça fonctionne ?
58 |

ImageOptim est une interface graphique pour les programmes suivants :

59 | 60 |

OptiPNG

61 | 62 | 75 |

ImageOptim les exécute et sélectionne automatiquement le plus petit fichier.

76 | 77 | 78 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/fr.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/fr.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/fr.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim di Kornel Lesiński una GUI per l'utilizzazione di terze parti:

3 | 18 |

ImageOptim può essere ridistribuito e modificato sotto 19 | Licenza generale pubblica GNU versione 2 o successive. 20 | Bundled PNGOUT is not covered by the GPL and is included with permission of Ardfry Imaging, LLC.

21 |
22 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/it.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Aiuto di ImageOptim 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim

10 | 11 |

Guida all'uso

12 | 13 |
    14 |
  1. Trascina file PNG o JPEG o cartelle dentro il riquadro principale nella finestra di ImageOptim.
  2. 15 | 16 |
  3. Attendi fino a quando non finisce.
  4. 17 | 18 |
  5. Guadagno! (dai files più piccoli)
  6. 19 |
20 |

Puoi anche droppare i file dentro l'icona nel Dock di ImageOptim.

21 | 22 |

Scopri come cambiare le Preferenze.

23 | 24 |

Icone nella tabella dei file

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Segno di spunta verdeL'immagine è stata ottimizzata con successo.
Green XTutto è andato bene, ma l'immagine non può essere ottimizzata ancora.
Stella grigiaL'ottimizzazione di questo file è in corso.
Punti grigiIl file è in coda per essere ottimizzato subito dopo che altri file sono stati ultimati.
Punto esclamativo arancioneSi è verificato un errore durante l'ottimizzazione. Troverai maggiori informazioni lanciando Console.app.
53 |

Come funziona

54 | 55 |

ImageOptim è un front-end (GUI) per le seguenti applicazioni:

56 | 57 | 70 |

ImageOptim li processa e automaticamente seleziona il file più piccolo.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/it.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/it.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/it.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ja.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ImageOptim ヘルプ 9 | 10 |

イメージオプティム

11 | 12 |

使い方

13 | 14 |
    15 |
  1. PNG ファイル、JPEG ファイル、またはフォルダを、イメージオプティム ウインドウにドラッグアンドドロップしてください。
  2. 16 | 17 |
  3. 完了するまでお待ちください。
  4. 18 | 19 |
  5. 得しましたね! (ファイルの容量が小さくなりました)
  6. 20 |
21 |

同様にイメージオプティムの Dock アイコンにもドラッグアンドドロップできます。

22 | 23 |

設定の変更方法について

24 | 25 |

ファイル一覧のアイコンについて

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Green Checkmark画像の最適化に成功しました。
Green X処理はうまくいきましたが、画像をこれ以上最適化できませんでした。
Gray starこのファイルの最適化を実行中です。
Gray dotsこのファイルは、他のファイルの最適化が終わるのを待っています。
Orange exclamation mark最適化中にエラーが発生しました。 コンソール.app から原因を確認できます。
54 |

仕組み

55 | 56 |

イメージオプティムは下記のアプリケーションのフロントエンド (GUI) です:

57 | 58 | 71 |

イメージオプティムは上記のアプリケーションを実行して、もっとも容量の小さなファイルを自動で選択します。

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | イメージオプティム環境設定 5 | 6 | 7 | 8 | 9 | 10 |

イメージオプティム環境設定

11 |

« TOPに戻る

12 |

一般設定

13 |
14 |
ファイルのパーミッション、属性、ハードリンクを維持する
15 |
16 |

古いファイルを削除して新しいファイルを作り直す代わりに、古いファイルの内容を更新するだけの処理をします。このことにより、全てのハードリンク、エイリアス、ファイルの所有権、パーミッション、ファイルの拡張情報などは同じまま保たれます。

17 |

これはパーミッションを維持しないよりも少々高速です。

18 |
19 |
すべての拡張情報を削除
20 |
21 |

ウェブサイト向けの最適化をする場合有効にしてください。もしPNGに必要なメタデータを入れている場合無効にしてください。

22 |

Other invisible information is removed as well, such as DPI and comments.

23 |
24 |
EXIF出力情報とコメントをファイルから取り除く
25 |
26 |

画像のメタデータ(カラー設定、露出時間、GPS情報、カメラのモデル情報、JPEG出力につかれたソフトウェア名など)を削除します。1.3MB以上の画像からはメタデータを削除しません。

27 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

28 |
29 |
30 |

ツール

31 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

32 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

33 |
34 |

JPEGOptim

35 |
36 |
最高品質
37 |
38 |

100%に設定された場合、最適化は無圧縮です。

39 |

100%以下に設定した場合、それ以上の品質で保管された画像の品質低下につながります。

40 |
41 |
42 |
43 |
44 |

PNGOUT

45 |
46 |
最適化タイプ
47 |
48 |

PNGOUTはとても効率的ですが、一方非常に低速です。低速な処理に耐えられない場合、低い最適化レベルを選ぶようにしてください。

49 |
50 |
実行時間が長すぎる場合中断する
51 |
52 |

PNGOUTは非常に多くの時間を大きなファイルの最適化のために使う場合があります。このオプションをチェックすると、PNGOUTが1分以上処理を続けた場合処理を中断します。

53 |
54 |
55 |
56 |
57 |

OptiPNG

58 |
59 |
最適化レベル
60 |
61 |

テストされる違う設定の組み合わせの番号を選択します。全てを実施することが意味を成すことはあまりありません。

62 |
63 |
画像をインターレース(プログレッシブ)化する
64 |
65 |

インターレース化された画像は読み込み途中の状態で良く見えます。しかし、一般的にインターレース化により圧縮の最適化は非効率になってしまいます。

66 |

このチェックボックスは3つの状態を持ちます: チェックされた場合インターレース化を共用します。組み合わせる場合、インターレース設定を維持します。チェックが入っていない場合、インターレースを全て解除します。

67 |
68 |
69 |
70 |
71 |

Gifsicle

72 |

最も最適に圧縮するためにGIFファイルをPNGに変換すべきです。(イメージオプティムは自動的にこれらを実施しません。)

73 |
74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ja.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ja.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ja.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ko.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Help 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |

ImageOptim

13 | 14 |

어떻게 사용하나요

15 | 16 |
    17 |
  1. ImageOptim 화면 안에 PNG / JPEG 파일 또는 폴더를 끌어다 놓으세요.
  2. 18 | 19 |
  3. 완료 될 때까지 기다리세요.
  4. 20 | 21 |
  5. 완료!
  6. 22 |
23 |

ImageOptime의 Dock 아이콘에 파일들을 끌어다 놓을 수 있습니다.

24 | 25 |

환경설정 변경하는 방법을 배워봅시다..

26 | 27 |

파일 리스트의 아이콘 설명

28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 |
Green Checkmark이미지가 성공적으로 최적화 되었습니다.
Green X이미 최적화 되어 있어, 더 이상 이미지를 최적화 할 수 없습니다.
Gray star파일의 최적화가 진행 중입니다.
Gray dots다른 파일 최적화 작업이 완료되기를 기다리는 중입니다.
Orange exclamation mark최적화 작업 중에 에러가 발생했습니다. Console.app를 실행시켜 이유를 찾아보세요.
56 |

어떻게 동작 하나요.

57 | 58 |

ImageOptim은 아래 응용 프로그램들을 위한 애플리케이션(GUI)입니다.

59 | 60 | 73 |

ImageOptim은 위의 작업을 수행하고 자동적으로 가장 작은 파일로 만들어줍니다.

74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim 환경설정 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim 환경설정

11 |

« 소개페이지로 이동

12 |

일반 환경설정

13 |
14 |
파일 권한, 속성 그리고 하드링크 유지하기
15 |
16 |

같은 이름으로 된 파일을 삭제 후 생성하는 것이 아니라, 파일의 내용을 덮어씁니다. 그렇기 때문에 폴더 위치, 대체 이름, 파일 소유, 권한, 확장된 파일 속성 모두가 동일하게 유지됩니다.

17 |

또한, 권한을 유지하지 않기 때문에 조금 더 빠르게 진행됩니다.

18 |
19 |
PNG: 임의의 정보 모두 제거하기
20 |
21 |

웹에서 쓰일 파일을 최적화한다면 활성화하십시오. 만약 특정 메타데이터를 가진 PNG라면 비활성화하면 됩니다.

22 |

Other invisible information is removed as well, such as DPI and comments.

23 |
24 |
JPEG: 파일의 코멘트와 EXIF 마크 제거하기
25 |
26 |

색상 프로파일, 노출시간, GPS 좌표, 카메라 모델, 파일 생성 때 사용된 소프트웨어의 이름 등의 이미지 메타데이터를 제거합니다. 메타데이터는 JPEG 파일이 1.3MB 보다 크면 절대 지워지지 않습니다.

27 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

28 |
29 |
30 |

도구

31 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

32 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

33 |
34 |

JPEGOptim

35 |
36 |
최대 품질
37 |
38 |

만약 100%로 설정하면, 최적화는 손실없이 진행됩니다.

39 |

만약 기존 파일들이 더 높은 품질로 저장되었더라도, 최적화 품질을 100% 미만으로 설정하면 더 낮은 품질로 진행됩니다.

40 |
41 |
42 |
43 |
44 |

PNGOUT

45 |
46 |
최적화 유형
47 |
48 |

PNGOUT은 매우 효과적이지만 느립니다. 만약 참기 힘들다면 더 낮은 단계를 사용하세요.

49 |
50 |
만약 너무 오랫동안 작업이 진행되면 중지시킵니다.
51 |
52 |

PNGOUT은 매우 큰 이미지를 최적화하는데 많은시간이 소요될 수도 있습니다. 이 옵션은 1분이 지나고 PNGOUT을 깔끔하게 중지시킵니다.

53 |
54 |
55 |
56 |
57 |

OptiPNG

58 |
59 |
Optimisation level
60 |
61 |

Number of different setting combinations tested. It rarely makes sense to try them all.

62 |
63 |
Make images interlaced (progressive)
64 |
65 |

파일을 부분적으로 로드될 때 인터레이스 된 이미지는 보기 좋습니다. 하지만 대게 인터레이스는 압출은 덜 효과적입니다.

66 |

이 체크박스는 3가지 상태를 가집니다. 만약 체크되면 이미지를 인터레이스되도록 만들어집니다. 혼합으로 선택할 때에는 파일에 인터레이스를 변경하지 않습니다. 마지막으로 체크를 해제하면 파일에 인터레이스를 제거합니다.

67 |
68 |
69 |
70 |
71 |

Gifsicle

72 |

최고의 압축을 위해, 당신은 GIF파일을 PNG로 변환해야 합니다.(ImageOptime가 자동적으로 그것을 해주지 않습니다).

73 |
74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ko.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ko.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ko.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/lt.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Pagalba 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Kaip naudoti

13 | 14 |
    15 |
  1. Nuvilkite PNG ar JPEG failus ar aplankus į pagrindinį ImageOptim'o langą.
  2. 16 | 17 |
  3. Palaukite kol pabaigs.
  4. 18 | 19 |
  5. Nauda! (iš mažų failų)
  6. 20 |
21 |

Jūs taip pat galite numesti failus ant ImageOptim'o Dock'o ikonos.

22 | 23 |

Sužinoti kaip keisti nustatymus.

24 | 25 |

Ikonos failų lentelėje

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Žalia varnelėPaveikslėlis buvo sėkmingai optimizuotas.
Žalias XViskas praėjo sklandžiai, bet paveikslėlį neįmanoma optimizuoti labiau.
Pilka žvaigždėVyksta failo optimizacija.
Pilki taškiukaiFailas pridėtas į eilę ir optimizavimas prasidės kai susitvarkys su kitais failais.
Oranžinis šauktukasOptimizacijos metu įvyko klaida. Paaiškinimus rasite paleidus Console.app.
54 |

Kaip tai veikia

55 | 56 |

ImageOptim yra šių programų grafinė sąsaja (GUI):

57 | 58 | 71 |

ImageOptim paleidžia juos ir automatiškai pasirenka mažiausią failą.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim nustatymai 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim nustatymai

11 |

« Atgal į pradžią

12 |

Bendri nustatymai

13 |
14 |
Išsaugoti failų teisęs, parametrus ir nuorodas
15 |
16 |

Vietoj to kad ištrinti seną failą ir įrašinėti naują tuo pačiu pavadinimu, tiesiog pakeičia seno failo turinį. Tai užtikrina kad visos nuorodos, santraukos, failo savininkai, leidimai ir išplėstiniai parametrai lieka nepasikeitę.

17 |

Šiek tiek greičiau nesaugoti leidimų.

18 |
19 |
Pašalinti galimas santraukas
20 |
21 |

Įjunkite jeigu optimizuojate žiniatinkliui. Išjunkite jeigu turite ypatingus PNG failus su papildomais meta duomenimis.

22 |

Other invisible information is removed as well, such as DPI and comments.

23 |
24 |
Ištrinti EXIF žymes iš failų
25 |
26 |

Pašalina paveikslėlio meta duomenys, tokius kaip spalvų profilis, išlaikymo trukmė, GPS koordinatės, fotoaparato modelis ir programinės įrangos naudotos sukūrimui pavadinimas.

27 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

28 |
29 |
30 |

Tools

31 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

32 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

33 |
34 |

JPEGOptim

35 |
36 |
Aukščiausia kokybė
37 |
38 |

Jeigu nustatyta 100%, optimizacija bus lossless.

39 |

Betkas žemiau 100% duos žemesnes kokybės kokybės failus atrodančius lyg jie būtu išsaugoti su aukštesniais kokybės nustatymais.

40 |
41 |
42 |
43 |
44 |

PNGOUT

45 |
46 |
Optimizacijos tipas
47 |
48 |

PNGOUT labai efektyvus, bet labai lėtas. Jeigu esate nekantrus naudokite žemesnę kokybę.

49 |
50 |
Nutraukti jeigu užtrunka per ilgai
51 |
52 |

PNGOUT gali prireikti labai daug laiko optimizuojant didelis failus. Šis nustatymas grakščiai sutrugdys PNGOUT po vienos minutes.

53 |
54 |
55 |
56 |
57 |

OptiPNG

58 |
59 |
Optimizacijos lygis
60 |
61 |

Didelis kiekis nustatymų jau išbandyta. Retai kada visu bandymas turi prasmės.

62 |
63 |
Padaryti paveikslėlius supintais (progressive interlace)
64 |
65 |

Supinti paveikslėliai atrodo geriau kai jie dalinai užkrauti, bet dažniausiai supynimas neigiamai įtakoja kompresijos efektyvumui.

66 |

Ši varnelė turi tris padėtis: jeigu pažymėta, tai priverstinai supina paveikslėlis. Jeigu mišriai, tai nekeis supynimo nustatymus. Jeigu nuimta, tai pašalins supynimus iš failų.

67 |
68 |
69 |
70 |
71 |

Gifsicle

72 |

Geriausiam suspaudimui, reikėtu konvertuoti GIF failus Į PNG (ImageOptim automatiškai to ne daro).

73 |
74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/lt.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/lt.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/lt.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim door Kornel Lesiński is een GUI voor losstaande programma’s:

3 | 18 |

ImageOptim kan herverdeeld en gewijzigd worden volgens de 19 | GNU General Public License, versie 2 of later. 20 | Bundled PNGOUT is not covered by the GPL and is included with permission of Ardfry Imaging, LLC.

21 |

Nederlandse vertaling door by Mathias Bynens.

22 |
23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/nl.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ImageOptim Help 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

ImageOptim

14 | 15 |

Hoe te gebruiken

16 | 17 |
    18 |
  1. Sleep PNG- of JPEG-bestanden of mappen naar het hoofdscherm van ImageOptim.
  2. 19 | 20 |
  3. Wacht totdat de optimalisatie voltooid is.
  4. 21 | 22 |
  5. Voilà, de bestanden zijn compacter in bestandsgrootte!
  6. 23 |
24 |

Het is ook mogelijk om bestanden of mappen naar het ImageOptim-icoon in je Dock te slepen.

25 | 26 |

Voorkeuren aanpassen.

27 | 28 |

Icoontjes in de bestandstabel

29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |
Groene checkmarkHet optimaliseren van de afbeelding is geslaagd.
Groene XDe afbeelding kon niet verder geoptimaliseerd worden.
Grijze sterDit bestand wordt momenteel geoptimaliseerd.
Grijze bolletjesHet bestand staat in de wachtrij De optimalisatie zal beginnen zodra de andere bestanden geoptimaliseerd zijn..
Oranje uitroepingstekenEr ging iets mis tijdens de optimalisatie. Voor meer info over wat er precies fout liep, open Console.app.
57 |

Hoe werkt het?

58 | 59 |

ImageOptim is een front-end (GUI) voor volgende applicaties:

60 | 61 | 74 |

ImageOptim laat deze programma’s los op de gekozen bestanden, en selecteert vervolgens automatisch het kleinste resulterende bestand.

75 | 76 | 77 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/nl.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/nl.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/nl.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim av Kornel Lesiński er et grafisk grensesnitt for følgende tredjepartsverktøy:

3 | 18 |

ImageOptim kan fritt redistributes og endres under 19 | GNU General Public License versjon 2 eller senere. 20 | Bundled PNGOUT is not covered by the GPL and is included with permission of Ardfry Imaging, LLC.

21 |

22 | Oversatt til norsk av Henrik Helmers 23 |

24 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/no.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hjelp for ImageOptim 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Hvordan bruke

13 | 14 |
    15 |
  1. Dra og slipp PNG- eller JPEG-filer eller mapper på ImageOptim.
  2. 16 | 17 |
  3. Vent til bildene er behandlet.
  4. 18 | 19 |
  5. Suksess!
  6. 20 |
21 |

Du kan også slippe filer på Dock-ikonet til ImageOptim, eller bruke støttede filers høyreklikkmeny.

22 | 23 |

Lær mer om Valg.

24 | 25 |

Ikonbruk i tabellen

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Grønn VBildet har blitt optimalisert, og størrelsen redusert.
Grønn XAlt gikk som det skulle, men bildet kunne ikke gjøres mindre.
Grå spinnerFilen optimaliseres nå.
Grå prikkerFilen ligger i køen.
Oransje utropstegnDet oppstod en feil under optimaliseringen. Du kan finne flere detaljer i Console.app.
54 |

Hvordan det virker

55 | 56 |

ImageOptim er et grafisk grensesnitt for disse verktøyene:

57 | 58 | 71 |

ImageOptim kjører dem alle, og velger den minste filen blant den de produserer.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/no.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/no.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/no.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/noopt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/noopt.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/noopt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/noopt@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ok.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ok@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim Kornela Lesińskiego i współpra-cowników to nakładka na następujące programy:

3 | 18 |

ImageOptim może być modyfikowany i rozpowszechniany na zasadach 19 | GNU General Public License wersji 2 lub nowszej. 20 | PNGOUT nie jest objęty GPL i został dołączony za pozwoleniem Ardfry Imaging, LLC.

21 |
22 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pl.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pomoc programu ImageOptim 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim

10 | 11 |

Jak tego użyć

12 | 13 |
    14 |
  1. Przeciągnij i upuść plik PNG, JPEG lub ścieżkę pliku do tabeli w oknie ImageOptim.
  2. 15 | 16 |
  3. Poczekaj, aż do zakończenia procesu.
  4. 17 | 18 |
  5. Zysk! (z mniejszych plików)
  6. 19 |
20 |

Możesz upuścić plik do ikony dokowania ImageOptim.

21 | 22 |

Dowiedz się, jak zmienić preferencje.

23 | 24 |

Ikony w tabeli plików

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Green CheckmarkObraz został zoptymalizowany poprawnie.
Green XWszystko poszło dobrze, ale obraz nie może być zoptymalizowany.
Gray starOptymalizacja pliku w toku.
Gray dotsPlik zostanie zoptymalizowany po zakończeniu pracy nad innymi plikami.
Orange exclamation markWystąpił błąd podczas optymalizacji. Znajdziesz wyjaśnienie uruchamiając Console.app.
53 |

Jak to działa

54 | 55 |

ImageOptim jest początkiem (GUI) dla tych aplikacji:

56 | 57 | 70 |

ImageOptim po uruchomieniu wybiera najmniejszy plik.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pl.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pl.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pl.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/progress.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/progress@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/progress@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

O ImageOptim por Kornel Lesiński é uma interface gráfica para utilidades de terceiros:

3 | 18 |

O ImageOptim pode ser distribuído e modificado sob a 19 | GNU General Public License versão 2 ou posterior. 20 | Bundled PNGOUT is not 21 | covered by the GPL and is included with permission of Ardfry Imaging, LLC.

22 |

Traduzido por Luiz Menezes Jr

23 |
24 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt-BR.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajuda do ImageOptim 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Como usar

13 | 14 |
    15 |
  1. Arrastar e soltar arquivos PNG e JPEG, ou pastas, no centro da janela do ImageOptim.
  2. 16 | 17 |
  3. Espere até que termine.
  4. 18 | 19 |
  5. Pronto! (arquivos menores)
  6. 20 |
21 |

Também pode arrastar e soltar os arquivos no ícone do ImageOptim no dock.

22 | 23 |

Saiba como alterar as Preferências.

24 | 25 |

Ícones na lista de arquivos

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Green CheckmarkA otimização da imagem terminou com sucesso.
Green XCorreu tudo bem, mas não foi possível otimizar a imagem para além do seu estado atual.
Gray starA optimização deste arquivo está em progresso.
Gray dotsO arquivo está em espera para ser otimizado, logo que outros arquivos acabarem de ser processados.
Orange exclamation markOcorreu um erro durante a otimização. Encontrará mais detalhes ao executar a aplicação 'terminal'.
54 |

Como é que funciona

55 | 56 |

O ImageOptim é uma interface gráfica (GUI) para estas aplicações:

57 | 58 | 71 |

O ImageOptim executa-as e automaticamente escolhe o arquivo menor.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt-BR.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt-BR.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt-BR.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

O ImageOptim por Kornel Lesiński é uma GUI para utilidades de terceiros:

3 | 18 |

O ImageOptim pode ser distribuído e modificado sob a 19 | GNU General Public License versão 2 ou posterior. 20 | Bundled PNGOUT is not 21 | covered by the GPL and is included with permission of Ardfry Imaging, LLC.

22 |
23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Ajuda do ImageOptim 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Como usar

13 | 14 |
    15 |
  1. Arrastar e largar ficheiros PNG e JPEG, ou pastas, na tabela principal da janela do ImageOptim.
  2. 16 | 17 |
  3. Aguardar até que termine.
  4. 18 | 19 |
  5. Lucrar! (com ficheiros mais pequenos)
  6. 20 |
21 |

Também pode largar os ficheiros no ícone do ImageOptim na Dock.

22 | 23 |

Saiba como alterar Preferências.

24 | 25 |

Ícones na tabela de ficheiros

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Green CheckmarkA optimização da imagem terminou com sucesso.
Green XCorreu tudo bem, mas não foi possível optimizar a imagem para além do seu estado actual.
Gray starA optimização deste ficheiro está em progresso.
Gray dotsO ficheiro está em espera para ser optimizado, logo que outros ficheiros acabem de ser processados.
Orange exclamation markOcorreu um erro durante a optimização. Irá encontrar mais detalhes ao executar a aplicação Consola.
54 |

Como é que funciona

55 | 56 |

O ImageOptim é uma interface gráfica (GUI) para estas aplicações:

57 | 58 | 71 |

O ImageOptim executa-as e automaticamente escolhe o ficheiro mais pequeno.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/pt.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/pt.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim Корнела Лесински (Kornel Lesiński) и других участников является ГПИ(графическим пользовательским интерфейсом) для утилит и инструментов третей стороны

3 | 18 |

ImageOptim может распространяться и подвергаться изменениям в соответствии с лицензией GNU General Public License v.2 (и её более поздними редакциями).⏎ 19 | Bundled PNGOUT не имеет лицензии GPL и включена в ПО с разрешения Ardfry Imaging, LLC.

20 |

Осуществил перевод на русский язык Millennium

21 |
22 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ru.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Справка ImageOptim 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Как использовать

13 | 14 |
    15 |
  1. Перетяните PNG или JPEG файлы или папки в главное окно программы ImageOptim.
  2. 16 | 17 |
  3. Дождитесь окончания.
  4. 18 | 19 |
  5. Профит! (файлы уменьшились в размере)
  6. 20 |
21 |

Вы так же можете перетягивать файлы на значек ImageOptim в Dock.

22 | 23 |

Узнайте как можно изменить настройки.

24 | 25 |

Иконки в таблице файлов

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Зеленая галочкаИзображение было успешно оптимизировано.
Зеленый крестВсе прошло хорошо, но изображение не получается сделать более оптимизированым.
Серая звездаОптимизация этого файла в процессе.
Серые точкиФайл в очереди и будет оптимизирован после того, как закончат остальные файлы.
Оранжевый восклицательный знакВо время оптимизации произошла ошибка. Вы найдете объяснение запустив приложение Консоль.
54 |

Как это работает

55 | 56 |

ImageOptim является графическим интерфейсом для этих приложений:

57 | 58 | 71 |

ImageOptim запускает их и автоматически выбирает самый маленький файл.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ru.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/ru.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/ru.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/style.css: -------------------------------------------------------------------------------- 1 | html {font: 10pt/1.2 "Lucida Grande",sans-serif; margin:0;padding:0} 2 | body {margin:0;padding:10px} 3 | a[name]{display:none} 4 | dt {font-weight:bold;} 5 | dd {margin:0.2em 0 0;padding:0 0 0 1em;} 6 | dd p:first-child {margin-top:0;} 7 | div:target {background:#eef} 8 | 9 | h1 {margin:-10px -10px 0;background:#ddd; padding:0.2em;border-bottom:#aaa 1px solid; text-shadow: 0 1px 1px white} 10 | h2,h3,h4 {margin:1em 0 0.5em;} 11 | 12 | #jpegoptim, #advpng, #optipng, #pngout,#pngcrush,#gifsicle,#jpegrescan {display:inline-block; width:45%; border-top:1px solid #eee; background:#fdfdfd; padding:0 1% 1em; margin: 1em 2% 1em 0; vertical-align:top} 13 | 14 | 15 | @media screen and (min-width:1100px) 16 | { 17 | #jpegoptim, #advpng, #optipng, #pngout,#pngcrush,#gifsicle,#jpegrescan {width:27%} 18 | } -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim av Kornel Lesiński och medarbetare är ett grafiskt gränssnitt för följande verktyg:

3 | 18 |

ImageOptim får distribueras och modifieras under 19 | GNU General Public License version 2 eller senare. PNGOUT täcks 20 | inteav GPL och medföljer med tillstånd från Ardfry Imaging, LLC.

21 |

Översättning av Peeter Sällström Randsalu.

22 |
23 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/sv.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Hjälp 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

Användning

13 | 14 |
    15 |
  1. Dra filer i PNG- eller JPEG-format eller mappar till ImageOptims huvudfönster.
  2. 16 | 17 |
  3. Vänta tills det är klart.
  4. 18 | 19 |
  5. Vinst! (genom mindre filer)
  6. 20 |
21 |

Man kan också dra filer till ImageOptims ikon i Dockan.

22 | 23 |

Hur inställningarna fungerar.

24 | 25 |

Ikoner i filvyn

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Green CheckmarkBilden har optimerats.
Green XAllt gick bra, men bilden kunde inte optimeras mer.
Gray starFilen håller på att optimeras.
Gray dotsFilen står i kö för att optimeras när alla andra filer är klara.
Orange exclamation markNågot blev fel under optimeringen. Kör Systemmeddelanden.app för att få en förklaring.
54 |

Hur fungerar det?

55 | 56 |

ImageOptim är ett grafiskt gränssnitt (GUI) för följande program:

57 | 58 | 71 |

ImageOptim kör programmen och väljer automatiskt den minsta filen.

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Inställningar 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim Inställningar

11 |

« Tillbaka

12 |

Allmänna inställningar

13 |
14 |
Behåll filbehörigheter, attribut och hårda länkar
15 |
16 |

Byter ut den gamla filen mot en ny fil på plats. Det gör att alla hårda länkar, alias och filens ägare, behörigheter och utökade attribut förblir desamma.

17 |

Det går lite snabbare om man inte behåller behörigheter.

18 |
19 |
Ta bort alla valfria stycken
20 |
21 |

Behåll förkryssad om du optimerar för webben. Stäng av om du har speciella PNG-filer med extra metadata.

22 |

Other invisible information is removed as well, such as DPI and comments.

23 |
24 |
Ta bort EXIF-data och kommentarer från filer
25 |
26 |

Tar bort bildens metadata, som namnet på bildbehandlingsprogrammet eller på kameramodellen som skapade filen.

27 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

28 |
29 |
30 |

Tools

31 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

32 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

33 |
34 |

JPEGOptim

35 |
36 |
Maxkvalitet
37 |
38 |

Om det står på 100%, blir det en icke-förstörande komprimering.

39 |

Allt under 100% skapar filer av lägre kvalitet än om de sparas med den högsta inställningen.

40 |
41 |
42 |
43 |
44 |

PNGOUT

45 |
46 |
Optimeringstyp
47 |
48 |

PNGOUT är väldigt effektivt, men väldigt långsamt. Använd lägre värden om du är otålig.

49 |
50 |
Avbryt om det tar för lång tid
51 |
52 |

PNGOUT kan ta lång tid på sig för att optimera stora bilder. Den här inställningen avbryter PNGOUT efter en minut.

53 |
54 |
55 |
56 |
57 |

OptiPNG

58 |
59 |
Optimeringsnivå
60 |
61 |

Det finns ett antal olika inställningskombinationer. Det är oftast inte lönt att prova alla.

62 |
63 |
Sammanfläta bilder (progressivt)
64 |
65 |

Sammanflätade bilder ser bättre ut när de är delvis nedladdade, men komprimeringen blir oftast mindre effektiv.

66 |

Det finns tre möjligheter: en bock gör att alla bilder blir sammanflätade, ett streck behåller filens inställningar, och en tom ruta tar bort sammanflätning från filer.

67 |
68 |
69 |
70 |
71 |

Gifsicle

72 |

För bästa komprimering bör du konvertera GIF-filer till PNG-filer (ImageOptim gör inte detta automatiskt).

73 |
74 | 75 | 76 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/sv.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/sv.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/sv.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim Kornel Lesiński ve katkısı bulunan 3. parti yazılımlar için bir GUI'dir:

3 | 18 |

ImageOptim yeniden dağıtılabilir ve üzerinde değişiklik yapılabilir, ancak GNU özgür belgeleme sürüm 2 veya üstü lisansıyla. Paketli PNGOUT GPL kapsamında değildir ve Ardfry Imaging, LLC izniyle dahil edilmiştir.

19 |
20 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/tr.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ImageOptim Yardım 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim

10 | 11 |

Kullanım

12 | 13 |
    14 |
  1. PNG veya JPEG dosyaları veya klasörlerini ImageOptim penceresinin ana tablo görüntüsüne sürükle ve bırak.
  2. 15 | 16 |
  3. Bitirene kadar bekle.
  4. 17 | 18 |
  5. Kazanç! (küçük dosyalardan)
  6. 19 |
20 |

Dosyaları ImageOptim'in Dock simgesine de sürükleyebilirsiniz.

21 | 22 |

Seçenekleri nasıl değiştireceğini öğren.

23 | 24 |

Dosya tablosundaki simgeler

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Yeşil Seçim İşaretiResim başarıyla optimize edildi.
Yeşil XHerşey yolunda, ancak resim daha fazla optimize edilemiyor.
Gri yıldızBu dosyanın optimizasyonu devam ediyor.
Gri noktacıklarDiğer dosyalar bittikten sonra optimize edilmesi için sıraya alındı.
Turuncu ünlem işaretiOptimizasyon sırasında hata oluştu. Hata açıklamasını Console.app yazılımıyla görebilirsiniz.
53 |

Nasıl işler

54 | 55 |

ImageOptim şu yazılımları çalıştıran bir arayüzdür (GUI):

56 | 57 | 70 |

ImageOptim bunları çalıştırır ve otomatik olarak en küçük dosyayı seçer.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/tr.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/tr.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/tr.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/Credits.html: -------------------------------------------------------------------------------- 1 |
2 |

ImageOptim lập trình bởi Kornel Lesiński và các cộng sự từ các hãng thứ 3 khác:

3 | 18 |

ImageOptim có thể được phân phối và tái chỉnh sửa dựa theo GNU General Public License version 2 hoặc các phiên bản mới hơn về giấy phép. Bundled PNGOUT không thuộc phần giấy phép GPL và thuộc bản quyền của công ty Ardfry Imaging, LLC.

19 |

Chuyển ngữ tiếng Việt (Phan Anh)

20 |
21 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/vi.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Trợ giúp chương trình 4 | 5 | 6 | 7 | 8 | 9 |

Tùy chỉnh hình ảnh

10 | 11 |

How to use

12 | 13 |
    14 |
  1. Drag'n'drop PNG or JPEG files or directories onto main table view in ImageOptim's window.
  2. 15 | 16 |
  3. Wait until it finishes.
  4. 17 | 18 |
  5. Profit! (from smaller files)
  6. 19 |
20 |

You can also drop files onto ImageOptim's Dock icon.

21 | 22 |

Learn how to change Preferences.

23 | 24 |

Icons in file table

25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 |
Green CheckmarkImage has been optimized successfully.
Green XEverything went fine, but image couldn't be optimized any further.
Gray starOptimization of this file is in progress.
Gray dotsFile is queued to be optimized after other files are finished.
Orange exclamation markThere was an error during optimization. You'll find explanation by running Console.app.
53 |

How does it work

54 | 55 |

ImageOptim is a front-end (GUI) for these applications:

56 | 57 | 70 |

ImageOptim runs them and automatically selects smallest file.

71 | 72 | 73 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/vi.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/vi.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/vi.lproj/PrefsController.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/wait.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/wait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/wait@2x.png -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/Help/Help.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/zh-Hant.lproj/Help/Help.helpindex -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/Help/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ImageOptim Help 5 | 6 | 7 | 8 | 9 | 10 |

ImageOptim

11 | 12 |

使用方法

13 | 14 |
    15 |
  1. 拖放PNG,JPEG檔案或是資料夾至ImageOptim視窗中的檔案列表
  2. 16 | 17 |
  3. 等待處理完成
  4. 18 | 19 |
  5. 得到好處! (因為檔案變小了)
  6. 20 |
21 |

你也可以拖放檔案至Dock圖示上

22 | 23 |

變更偏好設定

24 | 25 |

檔案列表中的圖示

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 |
Green Checkmark成功地最佳化圖片
Green X圖片沒什麼問題,只是不能再縮小了
Gray star正在最佳化這張圖片
Gray dots待其他圖片最佳化完成後,處理這張圖片
Orange exclamation mark最佳化處理時有錯誤發生。 欲取得說明請執行Console.app
54 |

最佳化原理

55 | 56 |

ImageOptim為下列應用程式的前端介面(GUI):

57 | 58 | 71 |

ImageOptim執行這些應用程式並自動選擇最小的檔案輸出。

72 | 73 | 74 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/Help/prefs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ImageOptim 偏好設定 4 | 5 | 6 | 7 | 8 | 9 |

ImageOptim 偏好設定

10 |

« 回到主頁

11 |

一般設定

12 |
13 |
保留檔案權限、屬性及永久連結
14 |
15 |

並非刪除舊檔案再寫入同名的新檔案,而是直接取代原始檔案的內容。這樣可以保證所有的永久連結、檔案別名、檔案擁有者及權限或是其他檔案屬性維持原樣。

16 |

不保留檔案權限的話,處理速度會快一點。

17 |
18 |
清除所有輔助資料塊
19 |
20 |

如果你是為了網頁而最佳化,那麼請啟用它吧。若你需要PNG的額外訊息,就請關閉。

21 |

Other invisible information is removed as well, such as DPI and comments.

22 |
23 |
移除EXIF訊息及註解
24 |
25 |

移除圖片的額外訊息(影像色域空間、曝光時間、GPS座標、相機型號、產生此檔案的應用程式等等)。

26 |

Embedded copyright information is removed as well. Please note that generally images are protected by copyright law regardless whether they contain such invisible metadata or not.

27 |
28 |
29 |

Tools

30 |

Zopfli and PNGOUT are very good PNG compressors, but are very slow. Disable them if you need to optimize PNG files quickly (leave only AdvPNG for fastest, but still good compression).

31 |

Zopfli and OptiPNG will clean RGB values of transparent pixels (known as “dirty alpha”). Disable these two tools if you're optimizing special files that use alpha channel for something else than transparency (e.g. heightmap in game data files).

32 |
33 |

JPEGOptim

34 |
35 |
最佳品質
36 |
37 |

設定為100%時,為無損壓縮

38 |

設定為100%以下時,會導致影像品質下降

39 |
40 |
41 |
42 |
43 |

PNGOUT

44 |
45 |
Optimization type
46 |
47 |

PNGOUT is very effective, but very slow. Use lower level if you're impatient.

48 |
49 |
Interrupt if takes too long
50 |
51 |

PNGOUT可能需要大量的時間來處理較大的圖片檔案。此選項啟用後,會將超過一分鐘處理時間的最佳化處理優雅地中斷。

52 |
53 |
54 |
55 |
56 |

OptiPNG

57 |
58 |
最佳化程度
59 |
60 |

設定組合的測試數量。基本上不需測試所有的組合。

61 |
62 |
交錯化圖片
63 |
64 |

當圖片部份載入時,交錯式圖片有較好的顯示。但交錯化可能讓壓縮率較為低下。

65 |

這個核取方塊有三種狀態: 為選取時,會生成交錯化的圖片。為半選時,檔案的交錯化屬性不變。未選取時,會移除交錯化。

66 |
67 |
68 |
69 |
70 |

Gifsicle

71 |

為了更好的壓縮率,請將GIF轉成PNG檔案。(ImageOptim並不會自動幫你做這件事。)

72 |
73 | 74 | 75 | -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/zh-Hant.lproj/MainMenu.nib -------------------------------------------------------------------------------- /ImageOptim.app/Contents/Resources/zh-Hant.lproj/PrefsController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/ImageOptim.app/Contents/Resources/zh-Hant.lproj/PrefsController.nib -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2014 P.D.Q. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #RSImageOptimPlugin 2 | 3 | [![Total views](https://sourcegraph.com/api/repos/github.com/yeahdongcn/RSImageOptimPlugin/counters/views.png)](https://sourcegraph.com/github.com/yeahdongcn/RSImageOptimPlugin) 4 | [![Views in the last 24 hours](https://sourcegraph.com/api/repos/github.com/yeahdongcn/RSImageOptimPlugin/counters/views-24h.png)](https://sourcegraph.com/github.com/yeahdongcn/RSImageOptimPlugin) 5 | 6 | Xcode plugin to optimize images using [ImageOptim](https://github.com/pornel/ImageOptim). 7 | 8 | ![menu](https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/master/RSImageOptimPlugin-screenshot@2x.png) 9 | 10 | ![ImageOptim](https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/master/ImageOptim-screenshot@2x.png) 11 | 12 | ##TODO 13 | 14 | ##Requirements 15 | 16 | Xcode 5.0+ on OS X 10.9+. 17 | 18 | ##Installation 19 | 20 | #### [Alcatraz](https://github.com/supermarin/Alcatraz) 21 | 22 | * [Alcatraz](https://github.com/supermarin/Alcatraz) is the recommended method of installing this plugin. 23 | * Relaunch Xcode. 24 | 25 | #### Build from Source 26 | 27 | * Build the Xcode project. The plug-in will automatically be installed in `~/Library/Application Support/Developer/Shared/Xcode/Plug-ins`. 28 | * Relaunch Xcode. 29 | 30 | To uninstall, just remove the plugin from `~/Library/Application Support/Developer/Shared/Xcode/Plug-ins` and restart Xcode. 31 | 32 | ## How does it work? 33 | 34 | All the commands are laid at the bottom of the menu `File`. 35 | 36 | * Use the menu `ImageOptim` to optimize all images in the workspace immediately. 37 | * Use the menu `Enable Auto ImageOptim` to toggle whether automatic optimization should be enabled. Once this has been enabled, `ImageOptim` will be launched automatically to optimize the new added image files. 38 | 39 | ##Thanks 40 | 41 | Thanks [Pornel](https://github.com/pornel)'s open source GUI image optimizer for Mac [ImageOptim](https://imageoptim.com). 42 | 43 | ##License 44 | 45 | The MIT License (MIT) 46 | 47 | Copyright (c) 2012-2014 P.D.Q. 48 | 49 | Permission is hereby granted, free of charge, to any person obtaining a copy of 50 | this software and associated documentation files (the "Software"), to deal in 51 | the Software without restriction, including without limitation the rights to 52 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 53 | the Software, and to permit persons to whom the Software is furnished to do so, 54 | subject to the following conditions: 55 | 56 | The above copyright notice and this permission notice shall be included in all 57 | copies or substantial portions of the Software. 58 | 59 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 60 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 61 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 62 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 63 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 64 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 65 | -------------------------------------------------------------------------------- /RSImageOptimPlugin-screenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeahdongcn/RSImageOptimPlugin/aa157702f830dba72762cb87170ca9e4a2b80fcc/RSImageOptimPlugin-screenshot@2x.png -------------------------------------------------------------------------------- /RSImageOptimPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RSImageOptimPlugin/RSImageOptimPlugin-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | com.pdq.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | BNDL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | DVTPlugInCompatibilityUUIDs 26 | 27 | FEC992CC-CA4A-4CFD-8881-77300FCB848A 28 | C4A681B0-4A26-480E-93EC-1218098B9AA0 29 | A2E4D43F-41F4-4FB9-BB94-7177011C9AED 30 | AD68E85B-441B-4301-B564-A45E4919A6AD 31 | 63FC1C47-140D-42B0-BB4D-A10B2D225574 32 | 37B30044-3B14-46BA-ABAA-F01000C27B63 33 | 640F884E-CE55-4B40-87C0-8869546CAB7A 34 | 992275C1-432A-4CF7-B659-D84ED6D42D3F 35 | A16FF353-8441-459E-A50C-B071F53F51B7 36 | 9F75337B-21B4-4ADC-B558-F9CADF7073A7 37 | E969541F-E6F9-4D25-8158-72DC3545A6C6 38 | 8DC44374-2B35-4C57-A6FE-2AD66A36AAD9 39 | AABB7188-E14E-4433-AD3B-5CD791EAD9A3 40 | 7FDF5C7A-131F-4ABB-9EDC-8C5F8F0B8A90 41 | 0420B86A-AA43-4792-9ED0-6FE0F2B16A13 42 | CC0D0F4F-05B3-431A-8F33-F84AFCB2C651 43 | 7265231C-39B4-402C-89E1-16167C4CC990 44 | 9AFF134A-08DC-4096-8CEE-62A4BB123046 45 | F41BD31E-2683-44B8-AE7F-5F09E919790E 46 | E71C2CFE-BFD8-4044-8F06-00AE685A406C 47 | ACA8656B-FEA8-4B6D-8E4A-93F4C95C362C 48 | 49 | NSPrincipalClass 50 | RSImageOptimPlugin 51 | XC4Compatible 52 | 53 | XC5Compatible 54 | 55 | XCGCReady 56 | 57 | XCPluginHasUI 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /RSImageOptimPlugin/RSImageOptimPlugin-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /RSImageOptimPlugin/RSImageOptimPlugin.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSImageOptimPlugin.h 3 | // RSImageOptimPlugin 4 | // 5 | // Created by R0CKSTAR on 4/9/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSImageOptimPlugin : NSObject 12 | 13 | @end -------------------------------------------------------------------------------- /RSImageOptimPlugin/RSWorkspaceController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSWorkspaceController.h 3 | // RSImageOptimPlugin 4 | // 5 | // Created by R0CKSTAR on 4/9/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class IDEWorkspaceWindowController; 12 | 13 | @interface RSWorkspaceController : NSObject 14 | 15 | + (NSString *)pathForFileNameInCurrentWorkspace:(NSString *)fileName; 16 | 17 | + (NSString *)currentWorkspaceDirectoryPath; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSImageOptimPlugin/RSWorkspaceController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSWorkspaceController.m 3 | // RSImageOptimPlugin 4 | // 5 | // Created by R0CKSTAR on 4/9/14. 6 | // Copyright (c) 2014 P.D.Q. All rights reserved. 7 | // 8 | 9 | #import "RSWorkspaceController.h" 10 | 11 | #import "IDEKit.h" 12 | 13 | /* the signature in IDEFoundation.h is incorrect (oudated?) for xcode5 14 | * @see https://github.com/questbeat/Lin/blob/master/Lin/Lin.m 15 | */ 16 | @interface IDEIndex (fix) 17 | 18 | - (id)filesContaining:(id)arg1 anchorStart:(BOOL)arg2 anchorEnd:(BOOL)arg3 subsequence:(BOOL)arg4 ignoreCase:(BOOL)arg5 cancelWhen:(id)arg6; 19 | 20 | @end 21 | 22 | @implementation RSWorkspaceController 23 | 24 | + (IDEWorkspaceWindowController *)keyWindowController 25 | { 26 | NSArray *workspaceWindowControllers = [NSClassFromString(@"IDEWorkspaceWindowController") valueForKey:@"workspaceWindowControllers"]; 27 | for (IDEWorkspaceWindowController *controller in workspaceWindowControllers) { 28 | if (controller.window.isKeyWindow) { 29 | return controller; 30 | } 31 | } 32 | return nil; 33 | } 34 | 35 | + (id)workspaceForKeyWindow 36 | { 37 | return [[self keyWindowController] valueForKey:@"_workspace"]; 38 | } 39 | 40 | + (NSString *)pathForFileNameInCurrentWorkspace:(NSString *)fileName 41 | { 42 | IDEWorkspace *workspace = [self workspaceForKeyWindow]; 43 | 44 | if (workspace == nil) { 45 | return nil; 46 | } 47 | 48 | IDEIndexCollection *indexCollection = [workspace.index filesContaining:fileName anchorStart:NO anchorEnd:NO subsequence:NO ignoreCase:NO cancelWhen:nil]; 49 | 50 | for(DVTFilePath *filePath in indexCollection) { 51 | return filePath.pathString; 52 | } 53 | 54 | return nil; 55 | } 56 | 57 | + (NSString *)currentWorkspaceDirectoryPath 58 | { 59 | IDEWorkspace *workspace = [self workspaceForKeyWindow]; 60 | NSString *workspacePath = [workspace.representingFilePath pathString]; 61 | return [workspacePath stringByDeletingLastPathComponent]; 62 | } 63 | 64 | @end 65 | -------------------------------------------------------------------------------- /RSImageOptimPlugin/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------