How can I translate the password reset email in Laravel 5.7?

前端 未结 4 1838
执念已碎
执念已碎 2021-01-18 23:02

I\'m trying to translate the password reset email, which is English by default, in Laravel 5.7.

Normally – for the login, registration, and password reset views – yo

4条回答
  •  时光说笑
    2021-01-18 23:43

    Just found out that you can also translate the @lang tags within your json file:

    {
      "Regards": "Met vriendelijke groet",
      "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser: [:actionURL](:actionURL)": "Als u problemen ondervindt bij het klikken op de knop \":actionText\" kopieert en plakt u de onderstaande URL in uw webbrowser\n[:actionURL](:actionURL)",
      "All rights reserved.": "Alle rechten voorbehouden."
    }
    

    Look at the repository for all translation files:

    https://github.com/caouecs/Laravel-lang

提交回复
热议问题