├── Classes ├── MRTranslationOperation.h └── MRTranslationOperation.m ├── English.lproj └── InfoPlist.strings ├── Info.plist ├── JSON ├── JSON.h ├── NSObject+SBJSON.h ├── NSObject+SBJSON.m ├── NSString+SBJSON.h ├── NSString+SBJSON.m ├── SBJSON.h ├── SBJSON.m ├── SBJsonBase.h ├── SBJsonBase.m ├── SBJsonParser.h ├── SBJsonParser.m ├── SBJsonWriter.h └── SBJsonWriter.m ├── README.markdown ├── Tests-Info.plist ├── Tests ├── LogicTests.h └── LogicTests.m ├── TranslationKit.h ├── TranslationKit.xcodeproj └── project.pbxproj └── TranslationKit_Prefix.pch /Classes/MRTranslationOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Classes/MRTranslationOperation.h -------------------------------------------------------------------------------- /Classes/MRTranslationOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Classes/MRTranslationOperation.m -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Info.plist -------------------------------------------------------------------------------- /JSON/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/JSON.h -------------------------------------------------------------------------------- /JSON/NSObject+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/NSObject+SBJSON.h -------------------------------------------------------------------------------- /JSON/NSObject+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/NSObject+SBJSON.m -------------------------------------------------------------------------------- /JSON/NSString+SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/NSString+SBJSON.h -------------------------------------------------------------------------------- /JSON/NSString+SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/NSString+SBJSON.m -------------------------------------------------------------------------------- /JSON/SBJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJSON.h -------------------------------------------------------------------------------- /JSON/SBJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJSON.m -------------------------------------------------------------------------------- /JSON/SBJsonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonBase.h -------------------------------------------------------------------------------- /JSON/SBJsonBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonBase.m -------------------------------------------------------------------------------- /JSON/SBJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonParser.h -------------------------------------------------------------------------------- /JSON/SBJsonParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonParser.m -------------------------------------------------------------------------------- /JSON/SBJsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonWriter.h -------------------------------------------------------------------------------- /JSON/SBJsonWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/JSON/SBJsonWriter.m -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/README.markdown -------------------------------------------------------------------------------- /Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Tests-Info.plist -------------------------------------------------------------------------------- /Tests/LogicTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Tests/LogicTests.h -------------------------------------------------------------------------------- /Tests/LogicTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/Tests/LogicTests.m -------------------------------------------------------------------------------- /TranslationKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/TranslationKit.h -------------------------------------------------------------------------------- /TranslationKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/TranslationKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TranslationKit_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrajca/TranslationKit/HEAD/TranslationKit_Prefix.pch --------------------------------------------------------------------------------