laravel-lang.php 949 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. return [
  3. /* -----------------------------------------------------------------
  4. | The vendor path
  5. | -----------------------------------------------------------------
  6. */
  7. /** @link https://github.com/caouecs/Laravel-lang */
  8. 'vendor' => base_path('vendor/caouecs/laravel-lang/src'),
  9. /* -----------------------------------------------------------------
  10. | Supported locales
  11. | -----------------------------------------------------------------
  12. | If you want to limit your translations, set your supported locales list.
  13. */
  14. 'locales' => [
  15. 'ko',
  16. 'zh-CN',
  17. ],
  18. /* -----------------------------------------------------------------
  19. | Check Settings
  20. | -----------------------------------------------------------------
  21. */
  22. 'check' => [
  23. 'ignore' => [
  24. 'validation.custom',
  25. 'validation.attributes',
  26. ],
  27. ],
  28. ];