├── .codeclimate.yml ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── Dangerfile ├── Gemfile ├── LICENSE ├── Makefile ├── circle.yml ├── contributing.md ├── contributing └── code-of-conduct.md ├── install_requirements.txt ├── nslocalizer.py ├── nslocalizer ├── Executor │ ├── Executor.py │ └── __init__.py ├── Finder │ ├── CodeFinder.py │ ├── LanguageFinder.py │ ├── PathFinder.py │ └── __init__.py ├── Helpers │ ├── FileOperations.py │ ├── Logger.py │ ├── Switch.py │ ├── __init__.py │ └── xcrun.py ├── Language │ ├── Language.py │ ├── LanguageString.py │ └── __init__.py ├── Reporter │ ├── Reporter.py │ └── __init__.py ├── __init__.py ├── main.py ├── version.py ├── version_info.py └── xcodeproj │ ├── __init__.py │ ├── pbProj │ ├── PBXAggregateTarget.py │ ├── PBXAppleScriptBuildPhase.py │ ├── PBXApplicationReference.py │ ├── PBXApplicationTarget.py │ ├── PBXBuildFile.py │ ├── PBXBuildRule.py │ ├── PBXBundleReference.py │ ├── PBXBundleTarget.py │ ├── PBXContainerItemProxy.py │ ├── PBXCopyFilesBuildPhase.py │ ├── PBXExecutableFileReference.py │ ├── PBXFileReference.py │ ├── PBXFrameworkReference.py │ ├── PBXFrameworkTarget.py │ ├── PBXFrameworksBuildPhase.py │ ├── PBXGroup.py │ ├── PBXHeadersBuildPhase.py │ ├── PBXItem.py │ ├── PBXJavaArchiveBuildPhase.py │ ├── PBXLegacyTarget.py │ ├── PBXLibraryReference.py │ ├── PBXLibraryTarget.py │ ├── PBXNativeTarget.py │ ├── PBXProject.py │ ├── PBXReferenceProxy.py │ ├── PBXResourcesBuildPhase.py │ ├── PBXRezBuildPhase.py │ ├── PBXShellScriptBuildPhase.py │ ├── PBXSourcesBuildPhase.py │ ├── PBXStandAloneTarget.py │ ├── PBXTargetDependency.py │ ├── PBXToolTarget.py │ ├── PBXVariantGroup.py │ ├── PBXZipArchiveReference.py │ ├── PBX_Constants.py │ ├── PBX_Lookup.py │ ├── XCBuildConfiguration.py │ ├── XCConfigurationList.py │ ├── XCVersionGroup.py │ ├── __init__.py │ └── pbProj.py │ └── xcodeproj.py ├── pylintrc ├── readme.md ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── nslocalizer-example │ ├── Base.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── pylocalizer-example.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Samantha.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── Samantha.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── pylocalizer-example.xcscheme │ │ │ └── xcschememanagement.plist │ └── pylocalizer-example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── DetailViewController.h │ │ ├── DetailViewController.m │ │ ├── Info.plist │ │ ├── MasterViewController.h │ │ ├── MasterViewController.m │ │ ├── de.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ │ ├── es.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ │ ├── fr.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ │ └── main.m ├── nslocalizer_test.py └── test_runner.py ├── tools ├── checkout_by_version.sh ├── hooks-config.py └── hooks │ └── pre-commit └── tox.ini /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/Dangerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/Makefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/circle.yml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/contributing.md -------------------------------------------------------------------------------- /contributing/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/contributing/code-of-conduct.md -------------------------------------------------------------------------------- /install_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/install_requirements.txt -------------------------------------------------------------------------------- /nslocalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer.py -------------------------------------------------------------------------------- /nslocalizer/Executor/Executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Executor/Executor.py -------------------------------------------------------------------------------- /nslocalizer/Executor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Executor/__init__.py -------------------------------------------------------------------------------- /nslocalizer/Finder/CodeFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Finder/CodeFinder.py -------------------------------------------------------------------------------- /nslocalizer/Finder/LanguageFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Finder/LanguageFinder.py -------------------------------------------------------------------------------- /nslocalizer/Finder/PathFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Finder/PathFinder.py -------------------------------------------------------------------------------- /nslocalizer/Finder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Finder/__init__.py -------------------------------------------------------------------------------- /nslocalizer/Helpers/FileOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Helpers/FileOperations.py -------------------------------------------------------------------------------- /nslocalizer/Helpers/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Helpers/Logger.py -------------------------------------------------------------------------------- /nslocalizer/Helpers/Switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Helpers/Switch.py -------------------------------------------------------------------------------- /nslocalizer/Helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Helpers/__init__.py -------------------------------------------------------------------------------- /nslocalizer/Helpers/xcrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Helpers/xcrun.py -------------------------------------------------------------------------------- /nslocalizer/Language/Language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Language/Language.py -------------------------------------------------------------------------------- /nslocalizer/Language/LanguageString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Language/LanguageString.py -------------------------------------------------------------------------------- /nslocalizer/Language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Language/__init__.py -------------------------------------------------------------------------------- /nslocalizer/Reporter/Reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Reporter/Reporter.py -------------------------------------------------------------------------------- /nslocalizer/Reporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/Reporter/__init__.py -------------------------------------------------------------------------------- /nslocalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/__init__.py -------------------------------------------------------------------------------- /nslocalizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/main.py -------------------------------------------------------------------------------- /nslocalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/version.py -------------------------------------------------------------------------------- /nslocalizer/version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/version_info.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/__init__.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXAggregateTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXAggregateTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXAppleScriptBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXAppleScriptBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXApplicationReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXApplicationReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXApplicationTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXApplicationTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXBuildFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXBuildFile.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXBuildRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXBuildRule.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXBundleReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXBundleReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXBundleTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXBundleTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXContainerItemProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXContainerItemProxy.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXCopyFilesBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXCopyFilesBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXExecutableFileReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXExecutableFileReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXFileReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXFileReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXFrameworkReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXFrameworkReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXFrameworkTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXFrameworkTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXFrameworksBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXFrameworksBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXGroup.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXHeadersBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXHeadersBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXItem.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXJavaArchiveBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXJavaArchiveBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXLegacyTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXLegacyTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXLibraryReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXLibraryReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXLibraryTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXLibraryTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXNativeTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXNativeTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXProject.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXReferenceProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXReferenceProxy.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXResourcesBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXResourcesBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXRezBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXRezBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXShellScriptBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXShellScriptBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXSourcesBuildPhase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXSourcesBuildPhase.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXStandAloneTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXStandAloneTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXTargetDependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXTargetDependency.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXToolTarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXToolTarget.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXVariantGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXVariantGroup.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBXZipArchiveReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBXZipArchiveReference.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBX_Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBX_Constants.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/PBX_Lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/PBX_Lookup.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/XCBuildConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/XCBuildConfiguration.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/XCConfigurationList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/XCConfigurationList.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/XCVersionGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/XCVersionGroup.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/__init__.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/pbProj/pbProj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/pbProj/pbProj.py -------------------------------------------------------------------------------- /nslocalizer/xcodeproj/xcodeproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/nslocalizer/xcodeproj/xcodeproj.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/pylintrc -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/nslocalizer-example/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.xcworkspace/xcuserdata/Samantha.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example.xcodeproj/project.xcworkspace/xcuserdata/Samantha.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example.xcodeproj/xcuserdata/Samantha.xcuserdatad/xcschemes/pylocalizer-example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example.xcodeproj/xcuserdata/Samantha.xcuserdatad/xcschemes/pylocalizer-example.xcscheme -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example.xcodeproj/xcuserdata/Samantha.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example.xcodeproj/xcuserdata/Samantha.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/AppDelegate.h -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/AppDelegate.m -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/DetailViewController.h -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/DetailViewController.m -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/Info.plist -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/MasterViewController.h -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/MasterViewController.m -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/de.lproj/Main.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/es.lproj/Main.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/fr.lproj/Main.strings -------------------------------------------------------------------------------- /tests/nslocalizer-example/pylocalizer-example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer-example/pylocalizer-example/main.m -------------------------------------------------------------------------------- /tests/nslocalizer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/nslocalizer_test.py -------------------------------------------------------------------------------- /tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tests/test_runner.py -------------------------------------------------------------------------------- /tools/checkout_by_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tools/checkout_by_version.sh -------------------------------------------------------------------------------- /tools/hooks-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tools/hooks-config.py -------------------------------------------------------------------------------- /tools/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tools/hooks/pre-commit -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdmarshall/nslocalizer/HEAD/tox.ini --------------------------------------------------------------------------------