laravel-lang.php 980 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. 'ja',
  16. 'ko',
  17. 'zh-CN',
  18. 'zh-TW',
  19. ],
  20. /* -----------------------------------------------------------------
  21. | Check Settings
  22. | -----------------------------------------------------------------
  23. */
  24. 'check' => [
  25. 'ignore' => [
  26. 'validation.custom',
  27. 'validation.attributes',
  28. ],
  29. ],
  30. ];