├── .gitignore ├── Comja ├── Processors │ └── Converter.php ├── Repositories │ ├── CommentTranslationsRepo.php │ ├── FileRepositoryTrait.php │ ├── LangFilesTranslationsRepo.php │ └── TranslationsJsonRepo.php └── Services │ ├── File.php │ ├── Transformers │ ├── ToyBox.php │ └── Transformers │ │ ├── BlockCommentsRemover.php │ │ ├── EmptyLineInserter.php │ │ ├── EmptyLinesRemover.php │ │ ├── LineCommentsRemover.php │ │ ├── TabToSpaces.php │ │ ├── TransformerInterface.php │ │ └── Translator.php │ └── Validators │ ├── ArgumentValidators │ ├── NoAllAndAValidator.php │ ├── NoCommentRemoveWithAllValidator.php │ ├── NoCommentTranslationWithAValidator.php │ ├── TabIntegerValidator.php │ └── TranslateOrRemoveValidator.php │ ├── Validator.php │ ├── ValidatorInterface.php │ └── ValidatorsRegistrar.php ├── README.md ├── bin └── comja5 ├── composer.json ├── helper.php ├── nbproject ├── project.properties └── project.xml ├── phpunit.xml ├── tests ├── Comja │ ├── Repositories │ │ ├── FileRepositoryTraitTest.php │ │ └── TranslationJsonRepoTest.php │ └── Services │ │ └── Transformers │ │ ├── ToyBoxTest.php │ │ └── Transformers │ │ ├── BlockCommentsRemoverTest.php │ │ ├── EmptyLineInserterTest.php │ │ ├── EmptyLinesRemoverTest.php │ │ ├── LineCommentsRemoverTest.php │ │ ├── TabToSpacesTest.php │ │ └── TranslatorTest.php └── TestBase.php ├── trans_comments.json ├── trans_lang_lines.json └── validation.php /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ 2 | /vendor/ 3 | /composer.lock 4 | 5 | -------------------------------------------------------------------------------- /Comja/Processors/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Processors/Converter.php -------------------------------------------------------------------------------- /Comja/Repositories/CommentTranslationsRepo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Repositories/CommentTranslationsRepo.php -------------------------------------------------------------------------------- /Comja/Repositories/FileRepositoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Repositories/FileRepositoryTrait.php -------------------------------------------------------------------------------- /Comja/Repositories/LangFilesTranslationsRepo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Repositories/LangFilesTranslationsRepo.php -------------------------------------------------------------------------------- /Comja/Repositories/TranslationsJsonRepo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Repositories/TranslationsJsonRepo.php -------------------------------------------------------------------------------- /Comja/Services/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/File.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/ToyBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/ToyBox.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/BlockCommentsRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/BlockCommentsRemover.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/EmptyLineInserter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/EmptyLineInserter.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/EmptyLinesRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/EmptyLinesRemover.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/LineCommentsRemover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/LineCommentsRemover.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/TabToSpaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/TabToSpaces.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/TransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/TransformerInterface.php -------------------------------------------------------------------------------- /Comja/Services/Transformers/Transformers/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Transformers/Transformers/Translator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ArgumentValidators/NoAllAndAValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ArgumentValidators/NoAllAndAValidator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ArgumentValidators/NoCommentRemoveWithAllValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ArgumentValidators/NoCommentRemoveWithAllValidator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ArgumentValidators/NoCommentTranslationWithAValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ArgumentValidators/NoCommentTranslationWithAValidator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ArgumentValidators/TabIntegerValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ArgumentValidators/TabIntegerValidator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ArgumentValidators/TranslateOrRemoveValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ArgumentValidators/TranslateOrRemoveValidator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/Validator.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ValidatorInterface.php -------------------------------------------------------------------------------- /Comja/Services/Validators/ValidatorsRegistrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/Comja/Services/Validators/ValidatorsRegistrar.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/README.md -------------------------------------------------------------------------------- /bin/comja5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/bin/comja5 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/composer.json -------------------------------------------------------------------------------- /helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/helper.php -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/Comja/Repositories/FileRepositoryTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Repositories/FileRepositoryTraitTest.php -------------------------------------------------------------------------------- /tests/Comja/Repositories/TranslationJsonRepoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Repositories/TranslationJsonRepoTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/ToyBoxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/ToyBoxTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/BlockCommentsRemoverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/BlockCommentsRemoverTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/EmptyLineInserterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/EmptyLineInserterTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/EmptyLinesRemoverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/EmptyLinesRemoverTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/LineCommentsRemoverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/LineCommentsRemoverTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/TabToSpacesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/TabToSpacesTest.php -------------------------------------------------------------------------------- /tests/Comja/Services/Transformers/Transformers/TranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/Comja/Services/Transformers/Transformers/TranslatorTest.php -------------------------------------------------------------------------------- /tests/TestBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/tests/TestBase.php -------------------------------------------------------------------------------- /trans_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/trans_comments.json -------------------------------------------------------------------------------- /trans_lang_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/trans_lang_lines.json -------------------------------------------------------------------------------- /validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel-ja/comja5/HEAD/validation.php --------------------------------------------------------------------------------