alexeybob / laravel-translation-manager
Manage Laravel Translations
Installs: 73
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 8
Language:JavaScript
Requires
- php: >=7.0.0
- alexeybob/laravel-translator: >=1.0.0
- laravel/framework: >=5.4.x-dev
- symfony/finder: >=4.3.5
Requires (Dev)
- phpunit/phpunit: ~6.0
- dev-master
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0
- dev-dependabot/npm_and_yarn/src/Resources/public/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/src/Resources/public/engine.io-and-browser-sync-6.2.1
- dev-dependabot/npm_and_yarn/src/Resources/public/minimatch-and-gulp-3.1.2
- dev-dependabot/npm_and_yarn/src/Resources/public/socket.io-parser-and-browser-sync-4.2.1
- dev-dependabot/npm_and_yarn/src/Resources/public/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/src/Resources/public/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/src/Resources/public/y18n-3.2.2
- dev-dependabot/npm_and_yarn/src/Resources/public/ini-1.3.8
This package is not auto-updated.
Last update: 2025-04-16 13:29:27 UTC
README
This is a package to manage Laravel translation files. It will change translation files with your changes. All changed files will be backuped before updated.
Installation
$ composer require alexeybob/laravel-translation-manager dev-master $ php artisan vendor:publish --tag=abtmPublishes --force
The package needs access to resources/lang
to read/write
$ HTTPDUSER=$(ps axo user,comm | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1) $ sudo setfacl -dR -m u:"$HTTPDUSER":rwX -m u:$(whoami):rwX resources/lang $ sudo setfacl -R -m u:"$HTTPDUSER":rwX -m u:$(whoami):rwX resources/lang