├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── docs ├── TROUBLESHOOTING.md ├── index.html ├── script.js ├── social-preview.png └── style.css └── src ├── Console └── Commands │ └── ExtractAndGenerateTranslationsCommand.php ├── Services ├── FileSystemService.php ├── InteractionService.php ├── ScannerService.php └── TranslationService.php ├── TranslationServiceProvider.php └── Utils ├── LocaleHelper.php └── TextHelper.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.venv 2 | vendor 3 | misc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/composer.json -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/docs/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/docs/social-preview.png -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/docs/style.css -------------------------------------------------------------------------------- /src/Console/Commands/ExtractAndGenerateTranslationsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Console/Commands/ExtractAndGenerateTranslationsCommand.php -------------------------------------------------------------------------------- /src/Services/FileSystemService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Services/FileSystemService.php -------------------------------------------------------------------------------- /src/Services/InteractionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Services/InteractionService.php -------------------------------------------------------------------------------- /src/Services/ScannerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Services/ScannerService.php -------------------------------------------------------------------------------- /src/Services/TranslationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Services/TranslationService.php -------------------------------------------------------------------------------- /src/TranslationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/TranslationServiceProvider.php -------------------------------------------------------------------------------- /src/Utils/LocaleHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Utils/LocaleHelper.php -------------------------------------------------------------------------------- /src/Utils/TextHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayeshmepani/laravel-gemini-translator/HEAD/src/Utils/TextHelper.php --------------------------------------------------------------------------------