translation.php 272 B

12345678910111213
  1. <?php
  2. /**
  3. * Multilingual configuration
  4. */
  5. return [
  6. // Default language
  7. 'locale' => 'zh_CN',
  8. // Fallback language
  9. 'fallback_locale' => ['zh_CN', 'en'],
  10. // Folder where language files are stored
  11. 'path' => base_path() . '/resource/translations',
  12. ];