├── .github └── workflows │ ├── pages.yml │ ├── phpstan.yml │ └── phpunit.yml ├── .gitignore ├── .php-cs-fixer.php ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── translator.php ├── docs ├── Gemfile ├── _config.yml ├── advanced-usage │ ├── custom-files.md │ └── index.md ├── basic-usage │ ├── index.md │ ├── translations-check.md │ ├── translations-clean.md │ ├── translations-find-missing.md │ ├── translations-sort.md │ └── translations-sync.md ├── dynamic-values.md ├── index.md └── translation-services │ ├── deepl.md │ ├── free-google.md │ ├── google.md │ ├── index.md │ └── openai.md ├── phpstan.neon ├── phpunit.xml ├── renovate.json ├── src ├── Commands │ ├── BaseTranslationCommand.php │ ├── CheckTranslation.php │ ├── CleanTranslation.php │ ├── CommandOptions.php │ ├── FindMissingTranslation.php │ ├── SortTranslation.php │ └── SyncTranslation.php ├── Dto │ ├── MissingTranslation.php │ ├── MissingTranslationList.php │ ├── Translation.php │ └── TranslationList.php ├── Exception │ └── TranslationServiceException.php ├── Extractor │ ├── BladeFileExtractor.php │ ├── ExtractorContract.php │ ├── ExtractorFactory.php │ ├── PhpBaseClassExtractor.php │ ├── PhpClassExtractor.php │ └── RegexExtractor.php ├── File │ ├── FileManagement.php │ └── Language │ │ ├── FileManagerInterface.php │ │ ├── JsonLanguageFileManager.php │ │ ├── LanguageDirectoryManager.php │ │ ├── LanguageFileManagerFactory.php │ │ └── PhpLanguageFileManager.php ├── Finder │ ├── MissingKeysFinder.php │ ├── PersistentKeysManager.php │ └── TranslationFinder.php ├── Node │ ├── EnumExtractor.php │ └── TranslateCommentExtractor.php ├── Sort │ ├── AlphabeticSort.php │ └── SorterContract.php ├── TranslationCheckerServiceProvider.php ├── TranslationManager.php └── Translator │ ├── DeeplTranslator.php │ ├── FreeGoogleTranslator.php │ ├── GoogleTranslator.php │ ├── OpenAiTranslator.php │ ├── TranslatorContract.php │ └── VariableHandlers │ ├── VariableHandlerContract.php │ └── VariableRegexHandler.php └── tests ├── Commands ├── CheckTranslationForPhpFilesTest.php ├── CheckTranslationTest.php ├── CleanTranslationForPhpFilesTest.php ├── CleanTranslationTest.php ├── FindMissingTranslationForPhpFilesTest.php ├── FindMissingTranslationTest.php ├── SortTranslationTest.php ├── SortTranslationsForPhpFileTest.php ├── SyncTranslationTest.php └── SyncTranslationsForPhpFilesTest.php ├── Exception └── TranslationServiceExceptionTest.php ├── Extractors ├── BladeFileExtractorTest.php ├── ExtractorFactoryTest.php ├── PhpBaseClassExtractorTest.php ├── PhpClassExtractorTest.php ├── RegexExtractorPatternsTest.php └── RegexExtractorTest.php ├── File ├── FileManagementTest.php └── Language │ ├── LanguageDirectoryManagerTest.php │ └── LanguageFileManagerTest.php ├── Files └── templates │ ├── TestController.php │ ├── dollar-t.vue │ ├── no-translations.blade.php │ └── underscore-translations.blade.php ├── Finder ├── ChainedFunctionsFindStringTest.php ├── MissingKeysFinderTest.php └── PersistentKeyManagerTest.php ├── Node ├── EnumExtractorTest.php └── TranslateCommentExtractorTest.php ├── TestCase.php ├── TestingTranslator.php ├── TranslationCheckerServiceProviderTest.php ├── TranslationManagerTest.php └── Translator ├── DeeplTranslatorTest.php ├── FreeGoogleTranslatorTest.php ├── GoogleTranslatorTest.php ├── OpenAiTranslatorTest.php ├── TestingTranslatorTest.php └── VariableHandlers └── VariableRegexHandlerTest.php /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/composer.lock -------------------------------------------------------------------------------- /config/translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/config/translator.php -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/advanced-usage/custom-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/advanced-usage/custom-files.md -------------------------------------------------------------------------------- /docs/advanced-usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/advanced-usage/index.md -------------------------------------------------------------------------------- /docs/basic-usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/index.md -------------------------------------------------------------------------------- /docs/basic-usage/translations-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/translations-check.md -------------------------------------------------------------------------------- /docs/basic-usage/translations-clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/translations-clean.md -------------------------------------------------------------------------------- /docs/basic-usage/translations-find-missing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/translations-find-missing.md -------------------------------------------------------------------------------- /docs/basic-usage/translations-sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/translations-sort.md -------------------------------------------------------------------------------- /docs/basic-usage/translations-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/basic-usage/translations-sync.md -------------------------------------------------------------------------------- /docs/dynamic-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/dynamic-values.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/translation-services/deepl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/translation-services/deepl.md -------------------------------------------------------------------------------- /docs/translation-services/free-google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/translation-services/free-google.md -------------------------------------------------------------------------------- /docs/translation-services/google.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/translation-services/google.md -------------------------------------------------------------------------------- /docs/translation-services/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/translation-services/index.md -------------------------------------------------------------------------------- /docs/translation-services/openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/docs/translation-services/openai.md -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Commands/BaseTranslationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/BaseTranslationCommand.php -------------------------------------------------------------------------------- /src/Commands/CheckTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/CheckTranslation.php -------------------------------------------------------------------------------- /src/Commands/CleanTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/CleanTranslation.php -------------------------------------------------------------------------------- /src/Commands/CommandOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/CommandOptions.php -------------------------------------------------------------------------------- /src/Commands/FindMissingTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/FindMissingTranslation.php -------------------------------------------------------------------------------- /src/Commands/SortTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/SortTranslation.php -------------------------------------------------------------------------------- /src/Commands/SyncTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Commands/SyncTranslation.php -------------------------------------------------------------------------------- /src/Dto/MissingTranslation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Dto/MissingTranslation.php -------------------------------------------------------------------------------- /src/Dto/MissingTranslationList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Dto/MissingTranslationList.php -------------------------------------------------------------------------------- /src/Dto/Translation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Dto/Translation.php -------------------------------------------------------------------------------- /src/Dto/TranslationList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Dto/TranslationList.php -------------------------------------------------------------------------------- /src/Exception/TranslationServiceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Exception/TranslationServiceException.php -------------------------------------------------------------------------------- /src/Extractor/BladeFileExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/BladeFileExtractor.php -------------------------------------------------------------------------------- /src/Extractor/ExtractorContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/ExtractorContract.php -------------------------------------------------------------------------------- /src/Extractor/ExtractorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/ExtractorFactory.php -------------------------------------------------------------------------------- /src/Extractor/PhpBaseClassExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/PhpBaseClassExtractor.php -------------------------------------------------------------------------------- /src/Extractor/PhpClassExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/PhpClassExtractor.php -------------------------------------------------------------------------------- /src/Extractor/RegexExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Extractor/RegexExtractor.php -------------------------------------------------------------------------------- /src/File/FileManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/FileManagement.php -------------------------------------------------------------------------------- /src/File/Language/FileManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/Language/FileManagerInterface.php -------------------------------------------------------------------------------- /src/File/Language/JsonLanguageFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/Language/JsonLanguageFileManager.php -------------------------------------------------------------------------------- /src/File/Language/LanguageDirectoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/Language/LanguageDirectoryManager.php -------------------------------------------------------------------------------- /src/File/Language/LanguageFileManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/Language/LanguageFileManagerFactory.php -------------------------------------------------------------------------------- /src/File/Language/PhpLanguageFileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/File/Language/PhpLanguageFileManager.php -------------------------------------------------------------------------------- /src/Finder/MissingKeysFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Finder/MissingKeysFinder.php -------------------------------------------------------------------------------- /src/Finder/PersistentKeysManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Finder/PersistentKeysManager.php -------------------------------------------------------------------------------- /src/Finder/TranslationFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Finder/TranslationFinder.php -------------------------------------------------------------------------------- /src/Node/EnumExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Node/EnumExtractor.php -------------------------------------------------------------------------------- /src/Node/TranslateCommentExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Node/TranslateCommentExtractor.php -------------------------------------------------------------------------------- /src/Sort/AlphabeticSort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Sort/AlphabeticSort.php -------------------------------------------------------------------------------- /src/Sort/SorterContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Sort/SorterContract.php -------------------------------------------------------------------------------- /src/TranslationCheckerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/TranslationCheckerServiceProvider.php -------------------------------------------------------------------------------- /src/TranslationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/TranslationManager.php -------------------------------------------------------------------------------- /src/Translator/DeeplTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/DeeplTranslator.php -------------------------------------------------------------------------------- /src/Translator/FreeGoogleTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/FreeGoogleTranslator.php -------------------------------------------------------------------------------- /src/Translator/GoogleTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/GoogleTranslator.php -------------------------------------------------------------------------------- /src/Translator/OpenAiTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/OpenAiTranslator.php -------------------------------------------------------------------------------- /src/Translator/TranslatorContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/TranslatorContract.php -------------------------------------------------------------------------------- /src/Translator/VariableHandlers/VariableHandlerContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/VariableHandlers/VariableHandlerContract.php -------------------------------------------------------------------------------- /src/Translator/VariableHandlers/VariableRegexHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/src/Translator/VariableHandlers/VariableRegexHandler.php -------------------------------------------------------------------------------- /tests/Commands/CheckTranslationForPhpFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/CheckTranslationForPhpFilesTest.php -------------------------------------------------------------------------------- /tests/Commands/CheckTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/CheckTranslationTest.php -------------------------------------------------------------------------------- /tests/Commands/CleanTranslationForPhpFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/CleanTranslationForPhpFilesTest.php -------------------------------------------------------------------------------- /tests/Commands/CleanTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/CleanTranslationTest.php -------------------------------------------------------------------------------- /tests/Commands/FindMissingTranslationForPhpFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/FindMissingTranslationForPhpFilesTest.php -------------------------------------------------------------------------------- /tests/Commands/FindMissingTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/FindMissingTranslationTest.php -------------------------------------------------------------------------------- /tests/Commands/SortTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/SortTranslationTest.php -------------------------------------------------------------------------------- /tests/Commands/SortTranslationsForPhpFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/SortTranslationsForPhpFileTest.php -------------------------------------------------------------------------------- /tests/Commands/SyncTranslationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/SyncTranslationTest.php -------------------------------------------------------------------------------- /tests/Commands/SyncTranslationsForPhpFilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Commands/SyncTranslationsForPhpFilesTest.php -------------------------------------------------------------------------------- /tests/Exception/TranslationServiceExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Exception/TranslationServiceExceptionTest.php -------------------------------------------------------------------------------- /tests/Extractors/BladeFileExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/BladeFileExtractorTest.php -------------------------------------------------------------------------------- /tests/Extractors/ExtractorFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/ExtractorFactoryTest.php -------------------------------------------------------------------------------- /tests/Extractors/PhpBaseClassExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/PhpBaseClassExtractorTest.php -------------------------------------------------------------------------------- /tests/Extractors/PhpClassExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/PhpClassExtractorTest.php -------------------------------------------------------------------------------- /tests/Extractors/RegexExtractorPatternsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/RegexExtractorPatternsTest.php -------------------------------------------------------------------------------- /tests/Extractors/RegexExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Extractors/RegexExtractorTest.php -------------------------------------------------------------------------------- /tests/File/FileManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/File/FileManagementTest.php -------------------------------------------------------------------------------- /tests/File/Language/LanguageDirectoryManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/File/Language/LanguageDirectoryManagerTest.php -------------------------------------------------------------------------------- /tests/File/Language/LanguageFileManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/File/Language/LanguageFileManagerTest.php -------------------------------------------------------------------------------- /tests/Files/templates/TestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Files/templates/TestController.php -------------------------------------------------------------------------------- /tests/Files/templates/dollar-t.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Files/templates/dollar-t.vue -------------------------------------------------------------------------------- /tests/Files/templates/no-translations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Files/templates/no-translations.blade.php -------------------------------------------------------------------------------- /tests/Files/templates/underscore-translations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Files/templates/underscore-translations.blade.php -------------------------------------------------------------------------------- /tests/Finder/ChainedFunctionsFindStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Finder/ChainedFunctionsFindStringTest.php -------------------------------------------------------------------------------- /tests/Finder/MissingKeysFinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Finder/MissingKeysFinderTest.php -------------------------------------------------------------------------------- /tests/Finder/PersistentKeyManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Finder/PersistentKeyManagerTest.php -------------------------------------------------------------------------------- /tests/Node/EnumExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Node/EnumExtractorTest.php -------------------------------------------------------------------------------- /tests/Node/TranslateCommentExtractorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Node/TranslateCommentExtractorTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TestingTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/TestingTranslator.php -------------------------------------------------------------------------------- /tests/TranslationCheckerServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/TranslationCheckerServiceProviderTest.php -------------------------------------------------------------------------------- /tests/TranslationManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/TranslationManagerTest.php -------------------------------------------------------------------------------- /tests/Translator/DeeplTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/DeeplTranslatorTest.php -------------------------------------------------------------------------------- /tests/Translator/FreeGoogleTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/FreeGoogleTranslatorTest.php -------------------------------------------------------------------------------- /tests/Translator/GoogleTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/GoogleTranslatorTest.php -------------------------------------------------------------------------------- /tests/Translator/OpenAiTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/OpenAiTranslatorTest.php -------------------------------------------------------------------------------- /tests/Translator/TestingTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/TestingTranslatorTest.php -------------------------------------------------------------------------------- /tests/Translator/VariableHandlers/VariableRegexHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bottelet/translation-checker/HEAD/tests/Translator/VariableHandlers/VariableRegexHandlerTest.php --------------------------------------------------------------------------------