gitextract_5412qdru/ ├── .codeclimate.yml ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── Dangerfile ├── Gemfile ├── LICENSE ├── Makefile ├── circle.yml ├── contributing/ │ └── code-of-conduct.md ├── contributing.md ├── install_requirements.txt ├── 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 ├── nslocalizer.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/ │ │ │ ├── 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 │ │ └── pylocalizer-example.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata/ │ │ │ └── Samantha.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata/ │ │ └── Samantha.xcuserdatad/ │ │ └── xcschemes/ │ │ ├── pylocalizer-example.xcscheme │ │ └── xcschememanagement.plist │ ├── nslocalizer_test.py │ └── test_runner.py ├── tools/ │ ├── checkout_by_version.sh │ ├── hooks/ │ │ └── pre-commit │ └── hooks-config.py └── tox.ini