samehdoush / laravel-translations-api
Manage translations in laravel without ui and via api links
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
This package is auto-updated.
Last update: 2024-11-20 12:44:51 UTC
README
Simple and developer friendly for easy translation management and higher capabilities
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
composer require samehdoush/laravel-translations-api
Auto install
php artisan translations-api:install
OR
You can publish and run the migrations with:
php artisan vendor:publish --tag="translations-api-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="translations-api-config"
This is the contents of the published config file:
return [ /* |-------------------------------------------------------------------------- | Source Language |-------------------------------------------------------------------------- | | This is the language that will be used as the source language for | the translations. This language will be used to import the | translations from the files. | */ 'source_language' => env('TRANSLATIONS_SOURCE_LANGUAGE', 'en'), /* * Language lines will be fetched by these loaders. You can put any class here that implements * the Samehdoush\LaravelTranslationsApi\TranslationLoaders\TranslationLoader-interface. */ 'translation_loaders' => [ Samehdoush\LaravelTranslationsApi\TranslationLoaders\Db::class, ], /* * This is the model used by the Db Translation loader. You can put any model here * that extends Samehdoush\LaravelTranslationsApi\Models\Phrase. */ 'model' => Samehdoush\LaravelTranslationsApi\Models\Phrase::class, /* * This is the translation manager which overrides the default Laravel `translation.loader` */ 'translation_manager' => Samehdoush\LaravelTranslationsApi\TranslationLoaderManager::class, /* |-------------------------------------------------------------------------- | Exclude Files |-------------------------------------------------------------------------- | | The following files will be ignored during the import process. | and those files will be ignored in every language. | */ 'exclude_files' => [ //'validation.php', // Exclude default validation for example. ], /* |-------------------------------------------------------------------------- | Laravel Translations Path |-------------------------------------------------------------------------- | | The default is `translations` but you can change it to whatever works best and | doesn't conflict with the routing in your application. | */ 'route_prefix' => env('TRANSLATIONS_PATH', 'translations'), /* |-------------------------------------------------------------------------- | Laravel Translations route middleware |-------------------------------------------------------------------------- | | These middleware will be assigned to every Laravel Translations route, giving you | the chance to add your own middleware to this list or change any of | the existing middleware. Or, you can simply stick with this list. | */ 'middleware' => ['api', 'auth:sanctum'], /* |-------------------------------------------------------------------------- | Database Connection |-------------------------------------------------------------------------- | | The database connection that should be used to store the imported | translations You may specify the connection as a string | which is the name of the connection in the database.php file | */ 'database_connection' => env('TRANSLATIONS_DB_CONNECTION', null), ];
Usage
To import your translations, run the following command:
php artisan translations:import
To import and overwrite all previous translations, use the following command:
php artisan translations:import --fresh
Exporting Translations
To export your translations, run the following command:
php artisan translations:export
Get translations
/api/translations GET METHOD return [ [ 'installed' => boolean, 'translations' => Object, ] ]
delete translation
/api/translations/delete/{translation} DELETE METHOD
get progress translation
/api/translations/{translation}/progress GET METHOD return [ [ 'percentage' => float, ]
create new Source key
/api/translations/createSourceKey POST METHOD Body : [ 'key' => 'required', 'file' => 'required', 'key_translation' => 'required', ]
create new Translation
/api/translations/createTranslation POST METHOD Body : [ 'language' => 'required|exists:ltu_languages,id', ]
GET phrases
/api/translations/phrases/{translation} GET METHOD RETURN : [ 'phrases' => Object, ]
show phrase
/api/translations/phrases/{translation}/edit/{phrase:uuid} GET METHOD RETURN : [ 'phrase' => Object, 'translation' => Object, ]
update phrase
/api/translations/phrases/{translation}/edit/{phrase:uuid} put METHOD BODY : [ 'value' => 'required', ]
DELETE phrase
/api/translations/phrases/{translation}/delete/{phrase:uuid} delete METHOD
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.