├── .claude └── settings.local.json ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── texts.php ├── phpunit.xml ├── phpunit.xml.bak ├── src ├── Commands │ ├── MakeTranslatorCommand.php │ ├── ScanTranslationsCommand.php │ └── stubs │ │ └── translator.stub ├── Contracts │ └── TranslatorInterface.php ├── LaratextServiceProvider.php ├── Text.php ├── Translator.php ├── Translators │ ├── GoogleTranslator.php │ └── OpenAITranslator.php └── helpers.php └── tests ├── Fixtures ├── test.blade.php └── test.php ├── TestCase.php └── Unit ├── GoogleTranslatorTest.php ├── OpenAITranslatorTest.php ├── ScanTranslationsCommandTest.php └── TextTest.php /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/composer.lock -------------------------------------------------------------------------------- /config/texts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/config/texts.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /src/Commands/MakeTranslatorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Commands/MakeTranslatorCommand.php -------------------------------------------------------------------------------- /src/Commands/ScanTranslationsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Commands/ScanTranslationsCommand.php -------------------------------------------------------------------------------- /src/Commands/stubs/translator.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Commands/stubs/translator.stub -------------------------------------------------------------------------------- /src/Contracts/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Contracts/TranslatorInterface.php -------------------------------------------------------------------------------- /src/LaratextServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/LaratextServiceProvider.php -------------------------------------------------------------------------------- /src/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Text.php -------------------------------------------------------------------------------- /src/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Translator.php -------------------------------------------------------------------------------- /src/Translators/GoogleTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Translators/GoogleTranslator.php -------------------------------------------------------------------------------- /src/Translators/OpenAITranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/Translators/OpenAITranslator.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/Fixtures/test.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Fixtures/test.blade.php -------------------------------------------------------------------------------- /tests/Fixtures/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Fixtures/test.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/GoogleTranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Unit/GoogleTranslatorTest.php -------------------------------------------------------------------------------- /tests/Unit/OpenAITranslatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Unit/OpenAITranslatorTest.php -------------------------------------------------------------------------------- /tests/Unit/ScanTranslationsCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Unit/ScanTranslationsCommandTest.php -------------------------------------------------------------------------------- /tests/Unit/TextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edulazaro/laratext/HEAD/tests/Unit/TextTest.php --------------------------------------------------------------------------------