├── .gitignore ├── README.md ├── Resources ├── English.lproj │ └── License.rtf └── zh_TW.lproj │ └── License.rtf ├── Scripts ├── postinstall └── preinstall ├── distribution.plist ├── requirement.plist └── root └── Library └── Input Methods └── Yahoo! KeyKey.app └── Contents ├── Frameworks ├── LFExtensions.framework │ ├── Headers │ ├── LFExtensions │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── LFExtensions │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current └── OpenVanilla.framework │ ├── Headers │ ├── OpenVanilla │ ├── Resources │ └── Versions │ ├── A │ ├── Headers │ │ ├── OVLibrary.h │ │ ├── OVUtility.h │ │ └── OpenVanilla.h │ ├── OpenVanilla │ └── Resources │ │ └── Info.plist │ └── Current ├── Info.plist ├── MacOS └── Yahoo! KeyKey ├── PkgInfo ├── Resources ├── About.jpg ├── Databases │ └── KeyKey.db ├── DictionaryWindow.nib ├── English.lproj │ ├── AboutWindow.nib │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── TakaoWordCount.nib ├── FontBigger.tiff ├── FontSmaller.tiff ├── HorizontalCandidateWindow.nib ├── InputMethodToggleWindowController.nib ├── MainMenu.nib ├── NotifyWindow.nib ├── PlainTextCandidateWindow.nib ├── SearchWindow.nib ├── SmileyView.nib ├── SymbolWindow.nib ├── TooltipWindow.nib ├── VerticalCandidateWindow.nib ├── WebUI │ ├── enter.gif │ └── speak.gif ├── Yahoo.icns ├── Yahoo16.icns ├── Yahoo32.icns ├── zh_CN.lproj │ ├── AboutWindow.nib │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── TakaoWordCount.nib └── zh_TW.lproj │ ├── AboutWindow.nib │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── TakaoWordCount.nib └── SharedSupport ├── DownloadUpdate.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── DownloadUpdate │ ├── PkgInfo │ └── Resources │ ├── English.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── Yahoo.icns │ ├── zh_CN.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ └── zh_TW.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── InstallerHelp.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── InstallerHelp │ ├── PkgInfo │ └── Resources │ ├── English.lproj │ ├── InfoPlist.strings │ ├── MainMenu.nib │ ├── install.html │ └── preference.png │ ├── zh_CN.lproj │ ├── InfoPlist.strings │ ├── MainMenu.nib │ ├── install.html │ └── preference.png │ └── zh_TW.lproj │ ├── InfoPlist.strings │ ├── MainMenu.nib │ ├── install.html │ └── preference.png ├── PhraseEditor.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── PhraseEditor │ ├── PkgInfo │ └── Resources │ ├── English.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib │ ├── PhraseEditor.icns │ ├── add.png │ ├── addressBook.png │ ├── delete.png │ ├── editPhrase.png │ ├── editReading.png │ ├── reload.png │ ├── zh_CN.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib │ └── zh_TW.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainMenu.nib └── Preferences.app └── Contents ├── Frameworks └── DotMacKit.framework │ └── README.txt ├── Info.plist ├── MacOS └── Preferences ├── PkgInfo └── Resources ├── English.lproj ├── InfoPlist.strings ├── Localizable.strings ├── MainMenu.nib ├── TakaoGenericSettings.nib ├── TakaoReverseLookup.nib └── TakaoWordCount.nib ├── Yahoo.icns ├── cangjie.tiff ├── general.tiff ├── generic.tiff ├── phonetic.tiff ├── phrase.tiff ├── playSound.tiff ├── plugin.tiff ├── simplex.tiff ├── stopSound.tiff ├── update.tiff ├── zh_CN.lproj ├── InfoPlist.strings ├── Localizable.strings ├── MainMenu.nib ├── TakaoGenericSettings.nib ├── TakaoReverseLookup.nib └── TakaoWordCount.nib └── zh_TW.lproj ├── InfoPlist.strings ├── Localizable.strings ├── MainMenu.nib ├── TakaoGenericSettings.nib ├── TakaoReverseLookup.nib └── TakaoWordCount.nib /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pkg 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/English.lproj/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/Resources/English.lproj/License.rtf -------------------------------------------------------------------------------- /Resources/zh_TW.lproj/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/Resources/zh_TW.lproj/License.rtf -------------------------------------------------------------------------------- /Scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/Scripts/postinstall -------------------------------------------------------------------------------- /Scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/Scripts/preinstall -------------------------------------------------------------------------------- /distribution.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/distribution.plist -------------------------------------------------------------------------------- /requirement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/requirement.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/LFExtensions: -------------------------------------------------------------------------------- 1 | Versions/Current/LFExtensions -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Versions/A/LFExtensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Versions/A/LFExtensions -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/LFExtensions.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/OpenVanilla: -------------------------------------------------------------------------------- 1 | Versions/Current/OpenVanilla -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OVLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OVLibrary.h -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OVUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OVUtility.h -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OpenVanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Headers/OpenVanilla.h -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/OpenVanilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/OpenVanilla -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Frameworks/OpenVanilla.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/MacOS/Yahoo! KeyKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/MacOS/Yahoo! KeyKey -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLYHOO -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/About.jpg -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Databases/KeyKey.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Databases/KeyKey.db -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/DictionaryWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/DictionaryWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/AboutWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/AboutWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/English.lproj/TakaoWordCount.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/FontBigger.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/FontBigger.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/FontSmaller.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/FontSmaller.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/HorizontalCandidateWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/HorizontalCandidateWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/InputMethodToggleWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/InputMethodToggleWindowController.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/NotifyWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/NotifyWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/PlainTextCandidateWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/PlainTextCandidateWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SearchWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SearchWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SmileyView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SmileyView.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SymbolWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/SymbolWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/TooltipWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/TooltipWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/VerticalCandidateWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/VerticalCandidateWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/WebUI/enter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/WebUI/enter.gif -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/WebUI/speak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/WebUI/speak.gif -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo16.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo32.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/Yahoo32.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/AboutWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/AboutWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_CN.lproj/TakaoWordCount.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/AboutWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/AboutWindow.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/Resources/zh_TW.lproj/TakaoWordCount.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/MacOS/DownloadUpdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/MacOS/DownloadUpdate -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLYHOO -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/Yahoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/Yahoo.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_CN.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/DownloadUpdate.app/Contents/Resources/zh_TW.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/MacOS/InstallerHelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/MacOS/InstallerHelp -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLYHOO -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/install.html -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/English.lproj/preference.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/install.html -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_CN.lproj/preference.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/install.html -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app/Contents/Resources/zh_TW.lproj/preference.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/MacOS/PhraseEditor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/MacOS/PhraseEditor -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLYHOO -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/PhraseEditor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/PhraseEditor.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/add.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/addressBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/addressBook.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/delete.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/editPhrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/editPhrase.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/editReading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/editReading.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/reload.png -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_CN.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/PhraseEditor.app/Contents/Resources/zh_TW.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Frameworks/DotMacKit.framework/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Frameworks/DotMacKit.framework/README.txt -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Info.plist -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/MacOS/Preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/MacOS/Preferences -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLYHOO -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoGenericSettings.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoGenericSettings.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoReverseLookup.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoReverseLookup.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/English.lproj/TakaoWordCount.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/Yahoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/Yahoo.icns -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/cangjie.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/cangjie.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/general.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/general.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/generic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/generic.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/phonetic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/phonetic.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/phrase.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/phrase.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/playSound.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/playSound.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/plugin.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/plugin.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/simplex.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/simplex.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/stopSound.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/stopSound.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/update.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/update.tiff -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoGenericSettings.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoGenericSettings.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoReverseLookup.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoReverseLookup.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_CN.lproj/TakaoWordCount.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/MainMenu.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoGenericSettings.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoGenericSettings.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoReverseLookup.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoReverseLookup.nib -------------------------------------------------------------------------------- /root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoWordCount.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zonble/ykk_installer/HEAD/root/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/Preferences.app/Contents/Resources/zh_TW.lproj/TakaoWordCount.nib --------------------------------------------------------------------------------