翻译邮件通知

Translate mail notification

我有这个 /resource/lang/fr.json 文件来翻译 "translatable" 单词。一切正常,但是:

@lang (
  "If you're having trouble clicking": actionText \ "button, copy and paste 
  the URL below \ n".
  'in your web browser: [: actionURL] (: actionURL)',
  [
    'actionText' => $ actionText,
    'actionURL' => $ actionUrl
  ]
)

我不知道怎么翻译!

此文件的路径: vendor/laravel/framework/src/Illuminate/Notifications/resources/views/email.blade.php 第 52 行

已解决

带有法语翻译的解决方案

添加 /resource/lang/fr.json

...
    "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "Si vous avez des problèmes en cliquant sur le bouton \":actionText\", faites un copié/collé de l'url ci-dessous dans votre navigateur :\n",
...