mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
Merge pull request #1242 from phecho/fix-trans
Added missing translation
This commit is contained in:
commit
09b4912801
@ -49,12 +49,14 @@ class SubscribeController extends Controller
|
||||
*/
|
||||
public function postSubscribe()
|
||||
{
|
||||
$email = Binput::get('email');
|
||||
|
||||
try {
|
||||
$this->dispatch(new SubscribeSubscriberCommand(Binput::get('email')));
|
||||
$this->dispatch(new SubscribeSubscriberCommand($email));
|
||||
} catch (AlreadySubscribedException $e) {
|
||||
return Redirect::route('subscribe.subscribe')
|
||||
->withTitle(sprintf('<strong>%s</strong> %s', trans('dashboard.notifications.whoops'), trans('cachet.subscriber.email.failure')))
|
||||
->withErrors($e->getMessage());
|
||||
->withErrors(trans('cachet.subscriber.email.already-subscribed', ['email' => $email]));
|
||||
} catch (ValidationException $e) {
|
||||
return Redirect::route('subscribe.subscribe')
|
||||
->withInput(Binput::all())
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Abonner på seneste hændelser.',
|
||||
'button' => 'Abonner',
|
||||
'email' => [
|
||||
'subscribe' => 'Få opdateringer pr. email.',
|
||||
'subscribed' => 'Du er blevet tilmeldt emailnotifikationer. Vi har sendt dig en bekræftelse på den indtastede email-adresse.',
|
||||
'verified' => 'Din tilmelding er nu blevet bekræftet, tak.',
|
||||
'unsubscribe' => 'Afmeld emailnotifikationer.',
|
||||
'unsubscribed' => 'Du er nu blevet frameldt vores emailnotifikationer.',
|
||||
'failure' => 'Noget gik galt med bekræftelsen.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Få opdateringer pr. email.',
|
||||
'subscribed' => 'Du er blevet tilmeldt emailnotifikationer. Vi har sendt dig en bekræftelse på den indtastede email-adresse.',
|
||||
'verified' => 'Din tilmelding er nu blevet bekræftet, tak.',
|
||||
'unsubscribe' => 'Afmeld emailnotifikationer.',
|
||||
'unsubscribed' => 'Du er nu blevet frameldt vores emailnotifikationer.',
|
||||
'failure' => 'Noget gik galt med bekræftelsen.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Bekræft din tilmelding til vores emailnotifikationer for :app_name statusopdateringer.\n:link\nTak, :app_name",
|
||||
'html-preheader' => 'Bekræft venligst din tilmelding til :app_name statusopdateringer via email.',
|
||||
'html' => '<p>Bekræft venligst din tilmelding til :app_name statuspdateringer via email.</p><p><a href=":link">:link</a></p><p>Tak, :app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Abonnieren Sie um die neuesten Updates zu erhalten.',
|
||||
'button' => 'Abonnieren',
|
||||
'email' => [
|
||||
'subscribe' => 'Aktualisierungen per E-Mail abonnieren.',
|
||||
'subscribed' => 'Sie haben E-Mail-Benachrichtigungen abonniert, überprüfen Sie bitte Ihre E-Mail, um Ihr Abonnement zu bestätigen.',
|
||||
'verified' => 'Ihre E-Mail-Abonnement ist bestätigt worden. Danke!',
|
||||
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
|
||||
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
|
||||
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Aktualisierungen per E-Mail abonnieren.',
|
||||
'subscribed' => 'Sie haben E-Mail-Benachrichtigungen abonniert, überprüfen Sie bitte Ihre E-Mail, um Ihr Abonnement zu bestätigen.',
|
||||
'verified' => 'Ihre E-Mail-Abonnement ist bestätigt worden. Danke!',
|
||||
'unsubscribe' => 'Von E-Mail-Updates deabonnieren.',
|
||||
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde gekündigt.',
|
||||
'failure' => 'Etwas ist mit dem Abonnement schief gelaufen.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.\\n:link\\nDanke, :app_name',
|
||||
'html-preheader' => 'Bitte bestätigen Sie Ihre E-Mail-Abonnement zu :app_name Status-Aktualisierungen.',
|
||||
'html' => '<p>Bestätigen Sie bitte Ihr E-Mail-Abonnement für :app_name Statusaktualisierungen.</p><p><a href=":link">:link</a></p><p>Danke, :app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'crwdns551:0crwdne551:0',
|
||||
'button' => 'crwdns490:0crwdne490:0',
|
||||
'email' => [
|
||||
'subscribe' => 'crwdns491:0crwdne491:0',
|
||||
'subscribed' => 'crwdns492:0crwdne492:0',
|
||||
'verified' => 'crwdns493:0crwdne493:0',
|
||||
'unsubscribe' => 'crwdns552:0crwdne552:0',
|
||||
'unsubscribed' => 'crwdns495:0crwdne495:0',
|
||||
'failure' => 'crwdns496:0crwdne496:0',
|
||||
'verify' => [
|
||||
'subscribe' => 'crwdns491:0crwdne491:0',
|
||||
'subscribed' => 'crwdns492:0crwdne492:0',
|
||||
'verified' => 'crwdns493:0crwdne493:0',
|
||||
'unsubscribe' => 'crwdns552:0crwdne552:0',
|
||||
'unsubscribed' => 'crwdns495:0crwdne495:0',
|
||||
'failure' => 'crwdns496:0crwdne496:0',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => 'crwdns497:0crwdne497:0',
|
||||
'html-preheader' => 'crwdns498:0crwdne498:0',
|
||||
'html' => 'crwdns520:0crwdne520:0',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Subscribe to get the most recent updates',
|
||||
'button' => 'Subscribe',
|
||||
'email' => [
|
||||
'subscribe' => 'Subscribe to email updates.',
|
||||
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.',
|
||||
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
||||
'unsubscribe' => 'Unsubscribe from email updates.',
|
||||
'unsubscribed' => 'Your email subscription has been cancelled.',
|
||||
'failure' => 'Something went wrong with the subscription.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Subscribe to email updates.',
|
||||
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.',
|
||||
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
||||
'unsubscribe' => 'Unsubscribe from email updates.',
|
||||
'unsubscribed' => 'Your email subscription has been cancelled.',
|
||||
'failure' => 'Something went wrong with the subscription.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Please confirm your email subscription to :app_name status updates.\n:link\nThank you, :app_name",
|
||||
'html-preheader' => 'Please confirm your email subscription to :app_name status updates.',
|
||||
'html' => '<p>Please confirm your email subscription to :app_name status updates.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||
|
@ -61,13 +61,14 @@ return [
|
||||
'subscribe' => 'Suscríbete para recibir las actualizaciones más recientes.',
|
||||
'button' => 'Suscribirse',
|
||||
'email' => [
|
||||
'subscribe' => 'Suscríbete a las actualizaciones por correo electrónico.',
|
||||
'subscribed' => 'Se te ha suscrito a la la lista de notificaciones por correo electónico, por favor comprueba tu email para confirmar la suscripción.',
|
||||
'verified' => 'Tu suscripción a la lista de notificaciones por correo electrónico ha sido confirmada. ¡Gracias!',
|
||||
'unsubscribe' => 'Desuscribirse de la lista de notificaciones por correo electrónico.',
|
||||
'unsubscribed' => 'Tu suscripción a la lista de notificaciones por correo electrónico has sido cancelada.',
|
||||
'failure' => 'Algo salió mal con la suscripción.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Suscríbete a las actualizaciones por correo electrónico.',
|
||||
'subscribed' => 'Se te ha suscrito a la la lista de notificaciones por correo electónico, por favor comprueba tu email para confirmar la suscripción.',
|
||||
'verified' => 'Tu suscripción a la lista de notificaciones por correo electrónico ha sido confirmada. ¡Gracias!',
|
||||
'unsubscribe' => 'Desuscribirse de la lista de notificaciones por correo electrónico.',
|
||||
'unsubscribed' => 'Tu suscripción a la lista de notificaciones por correo electrónico has sido cancelada.',
|
||||
'failure' => 'Algo salió mal con la suscripción.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Por favor confirma tu suscripción por correo electrónico a las actualizaciones de estado de :app_name.\n:link\nGracias, :app_name",
|
||||
'html-preheader' => 'Por favor confirma tu suscripción por correo electrónico a las actualizaciones de estado de :app_name.',
|
||||
'html' => '<p>Por favor confirma tu suscripción por correo electrónico a las actualizaciones de estado de :app_name.</p><p><a href=":link">:link</a></p><p>Gracias, :app_name</p>',
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
<?php
|
||||
|
||||
/*
|
||||
@ -63,13 +64,14 @@ return [
|
||||
'subscribe' => 'Abonnez-vous pour obtenir les dernières mises à jour.',
|
||||
'button' => 'S\'abonner',
|
||||
'email' => [
|
||||
'subscribe' => 'S\'abonner aux mises à jour par courriel.',
|
||||
'subscribed' => 'Vous êtes abonné aux notifications par courriel, veuillez vérifier votre messagerie pour confirmer votre abonnement.',
|
||||
'verified' => 'Votre abonnement par courriel a été confirmé. Merci !',
|
||||
'unsubscribe' => 'Désinscription des mises à jour par courriel.',
|
||||
'unsubscribed' => 'Votre abonnement par courriel a été annulé.',
|
||||
'failure' => 'Quelque chose s\'est mal passé avec l\'abonnement.',
|
||||
'verify' => [
|
||||
'subscribe' => 'S\'abonner aux mises à jour par courriel.',
|
||||
'subscribed' => 'Vous êtes abonné aux notifications par courriel, veuillez vérifier votre messagerie pour confirmer votre abonnement.',
|
||||
'verified' => 'Votre abonnement par courriel a été confirmé. Merci !',
|
||||
'unsubscribe' => 'Désinscription des mises à jour par courriel.',
|
||||
'unsubscribed' => 'Votre abonnement par courriel a été annulé.',
|
||||
'failure' => 'Quelque chose s\'est mal passé avec l\'abonnement.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Veuillez confirmer votre abonnement par courriel aux mises à jour d'état de :app_name.\\n:link\\nMerci, :app_name",
|
||||
'html-preheader' => 'Veuillez confirmer votre abonnement par courriel aux mises à jour de :app_name.',
|
||||
'html' => '',
|
||||
|
@ -63,15 +63,15 @@ return [
|
||||
'subscribe' => 'Ikuti newsletter untuk mendapat update terbaru.',
|
||||
'button' => 'Daftar',
|
||||
'email' => [
|
||||
'subscribe' => 'Langganan update email.',
|
||||
'subscribed' => 'Anda berhasil terdaftar pada notifikasi email, mohon periksa email anda untuk mengkonfirmasi pendaftaran ini.',
|
||||
'verified' => 'Pendaftaran newsletter anda berhasil dikonfirmasi. Terima kasih!',
|
||||
'unsubscribe' => 'Hapus saya dari update email.',
|
||||
'unsubscribed' => 'Langganan email anda sudah dihentikan.',
|
||||
'failure' => 'Ada yang salah dengan sistem langganan email.',
|
||||
'verify' => [
|
||||
'text' => 'Mohon konfirmasi langganan email update status :app_name.\\n:link\\nTerima kasih,
|
||||
:app_name',
|
||||
'subscribe' => 'Langganan update email.',
|
||||
'subscribed' => 'Anda berhasil terdaftar pada notifikasi email, mohon periksa email anda untuk mengkonfirmasi pendaftaran ini.',
|
||||
'verified' => 'Pendaftaran newsletter anda berhasil dikonfirmasi. Terima kasih!',
|
||||
'unsubscribe' => 'Hapus saya dari update email.',
|
||||
'unsubscribed' => 'Langganan email anda sudah dihentikan.',
|
||||
'failure' => 'Ada yang salah dengan sistem langganan email.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => 'Mohon konfirmasi langganan email update status :app_name.\\n:link\\nTerima kasih.',
|
||||
'html-preheader' => 'Mohon konfirmasi langganan email update status :app_name.',
|
||||
'html' => '',
|
||||
],
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Iscriviti per ricevere gli aggiornamenti più recenti.',
|
||||
'button' => 'Iscriviti',
|
||||
'email' => [
|
||||
'subscribe' => 'Iscriviti agli aggiornamenti via email.',
|
||||
'subscribed' => 'Sei stato iscritto alle notifiche via email, controlla la tua casella per confermare l\'iscrizione.',
|
||||
'verified' => 'La tua iscrizione via email è stata confermata. Grazie!',
|
||||
'unsubscribe' => 'Annulla l\'iscrizione agli aggiornamenti via email.',
|
||||
'unsubscribed' => 'La tua iscrizione via email è stata cancellata.',
|
||||
'failure' => 'Qualcosa è andato storto con l\'iscrizione.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Iscriviti agli aggiornamenti via email.',
|
||||
'subscribed' => 'Sei stato iscritto alle notifiche via email, controlla la tua casella per confermare l\'iscrizione.',
|
||||
'verified' => 'La tua iscrizione via email è stata confermata. Grazie!',
|
||||
'unsubscribe' => 'Annulla l\'iscrizione agli aggiornamenti via email.',
|
||||
'unsubscribed' => 'La tua iscrizione via email è stata cancellata.',
|
||||
'failure' => 'Qualcosa è andato storto con l\'iscrizione.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Conferma la tua iscrizione via email agli aggiornamenti dello stato di :app_name.\n:link\Grazie, :app_name",
|
||||
'html-preheader' => 'Conferma la tua iscrizione via email agli aggiornamento dello stato di :app_name.',
|
||||
'html' => '<p>Conferma la tua iscrizione via email agli aggiornamenti dello stato di :app_name.</p><p><a href=":link">:link</a></p><p>Grazie, :app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => '최신 업데이트를 받아 보기 위한 구독신청.',
|
||||
'button' => '구독',
|
||||
'email' => [
|
||||
'subscribe' => '이메일 구독 신청.',
|
||||
'subscribed' => '이메일 구독 신청이 완료되었습니다. 구독 신청 확인을 위한 이메일을 확인해주세요.',
|
||||
'verified' => '이메일 구독이 확인 되었습니다. 감사합니다!',
|
||||
'unsubscribe' => '이메일 구독 취소',
|
||||
'unsubscribed' => '이메일 구독이 취소 되었습니다.',
|
||||
'failure' => '구독 신청 중에 문제가 발생했습니다.',
|
||||
'verify' => [
|
||||
'subscribe' => '이메일 구독 신청.',
|
||||
'subscribed' => '이메일 구독 신청이 완료되었습니다. 구독 신청 확인을 위한 이메일을 확인해주세요.',
|
||||
'verified' => '이메일 구독이 확인 되었습니다. 감사합니다!',
|
||||
'unsubscribe' => '이메일 구독 취소',
|
||||
'unsubscribed' => '이메일 구독이 취소 되었습니다.',
|
||||
'failure' => '구독 신청 중에 문제가 발생했습니다.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => ":app_name 의 상태 업데이트에 대한 이메일 구독을 확인해주세요.\n:link\n감사합니다, :app_name",
|
||||
'html-preheader' => ':app_name 의 상태 업데이트에 대한 이메일 구독을 확인해주세요.',
|
||||
'html' => '<p>:app_name 의 상태 업데이트에 대한 이메일 구독을 확인해주세요.</p><p><a href=":link">:link</a></p> <p>감사 합니다, :app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Abonneer voor de meest recente updates.',
|
||||
'button' => 'Abonneer',
|
||||
'email' => [
|
||||
'subscribe' => 'Abonneren op e-mail updates.',
|
||||
'subscribed' => 'U bent geabonneerd op e-mailmeldingen, controleer uw e-mail om uw abonnement te bevestigen.',
|
||||
'verified' => 'Uw e-mail abonnement is bevestigd. Bedankt!',
|
||||
'unsubscribe' => 'Afmelden voor e-mail updates.',
|
||||
'unsubscribed' => 'Uw e-mail abonnement is opgezegd.',
|
||||
'failure' => 'Er ging iets fout tijdens het aanmelden.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Abonneren op e-mail updates.',
|
||||
'subscribed' => 'U bent geabonneerd op e-mailmeldingen, controleer uw e-mail om uw abonnement te bevestigen.',
|
||||
'verified' => 'Uw e-mail abonnement is bevestigd. Bedankt!',
|
||||
'unsubscribe' => 'Afmelden voor e-mail updates.',
|
||||
'unsubscribed' => 'Uw e-mail abonnement is opgezegd.',
|
||||
'failure' => 'Er ging iets fout tijdens het aanmelden.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => 'Bevestig uw e-mail abonnement op :app_name status updates.\\n:link\\nBedankt, :app_name',
|
||||
'html-preheader' => 'Bevestig uw e-mail abonnement op :app_name status updates.',
|
||||
'html' => '',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => 'Subscribe to get the most recent updates.',
|
||||
'button' => 'Subscribe',
|
||||
'email' => [
|
||||
'subscribe' => 'Subscribe to email updates.',
|
||||
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.',
|
||||
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
||||
'unsubscribe' => 'Unsuscribe from email updates.',
|
||||
'unsubscribed' => 'Your email subscription has been cancelled.',
|
||||
'failure' => 'Something went wrong with the subscription.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Subscribe to email updates.',
|
||||
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.',
|
||||
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
||||
'unsubscribe' => 'Unsuscribe from email updates.',
|
||||
'unsubscribed' => 'Your email subscription has been cancelled.',
|
||||
'failure' => 'Something went wrong with the subscription.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Please confirm your email subscription to :app_name status updates.\n:link\nThank you, :app_name",
|
||||
'html-preheader' => 'Please confirm your email subscription to :app_name status updates.',
|
||||
'html' => '<p>Please confirm your email subscription to :app_name status updates.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
||||
|
@ -62,13 +62,14 @@ return [
|
||||
'subscribe' => 'Подпишитесь, чтобы получать информацию об изменениях.',
|
||||
'button' => 'Подписаться',
|
||||
'email' => [
|
||||
'subscribe' => 'Подписка на рассылку об изменениях.',
|
||||
'subscribed' => 'Вы подписались на рассылку уведомлений по эл. почте. Проверьте ваш почтовый ящик, чтобы подтвердить подписку.',
|
||||
'verified' => 'Ваша подписка подтверждена. Спасибо!',
|
||||
'unsubscribe' => 'Отписаться от рассылки.',
|
||||
'unsubscribed' => 'Ваша подписка отменена.',
|
||||
'failure' => 'Произошла ошибка при подписке на рассылку.',
|
||||
'verify' => [
|
||||
'subscribe' => 'Подписка на рассылку об изменениях.',
|
||||
'subscribed' => 'Вы подписались на рассылку уведомлений по эл. почте. Проверьте ваш почтовый ящик, чтобы подтвердить подписку.',
|
||||
'verified' => 'Ваша подписка подтверждена. Спасибо!',
|
||||
'unsubscribe' => 'Отписаться от рассылки.',
|
||||
'unsubscribed' => 'Ваша подписка отменена.',
|
||||
'failure' => 'Произошла ошибка при подписке на рассылку.',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => "Пожалуйста подтвердите вашу подписку на уведомления об изменениях статуса проекта :app_name.\n:link\nСпасибо! :app_name",
|
||||
'html-preheader' => 'Пожалуйста подтвердите подписку на уведомления :app_name.',
|
||||
'html' => '<p>Пожалуйста подтвердите вашу подписку на уведомления об изменениях статуса проекта :app_name.</p><p><a href=":link">:link</a></p><p>Спасибо! :app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => '订阅最新的更新。',
|
||||
'button' => '订阅',
|
||||
'email' => [
|
||||
'subscribe' => '订阅电子邮件更新。',
|
||||
'subscribed' => '您已经订阅电子邮件通知,请检查您的电子邮件,确认您的订阅。',
|
||||
'verified' => '您的电子邮件订阅已确认。谢谢!',
|
||||
'unsubscribe' => '取消电子邮件订阅。',
|
||||
'unsubscribed' => '您的电子邮件订阅已被取消。',
|
||||
'failure' => '邮件订阅失败。',
|
||||
'verify' => [
|
||||
'subscribe' => '订阅电子邮件更新。',
|
||||
'subscribed' => '您已经订阅电子邮件通知,请检查您的电子邮件,确认您的订阅。',
|
||||
'verified' => '您的电子邮件订阅已确认。谢谢!',
|
||||
'unsubscribe' => '取消电子邮件订阅。',
|
||||
'unsubscribed' => '您的电子邮件订阅已被取消。',
|
||||
'failure' => '邮件订阅失败。',
|
||||
'already-subscribed' => '邮箱 :email 已加入订阅,请勿重复订阅.',
|
||||
'verify' => [
|
||||
'text' => '请确认您的 :app_name 电子邮件订阅。\\n:link\\n此致,:app_name',
|
||||
'html-preheader' => '请确认您的 :app_name 状态更新邮件订阅。',
|
||||
'html' => '<p>请确认您的 :app_name 电子邮件订阅。</p><p><a href=":link">:link</a></p><p>此致,:app_name</p>',
|
||||
|
@ -63,13 +63,14 @@ return [
|
||||
'subscribe' => '訂閱最新的更新。',
|
||||
'button' => '訂閱',
|
||||
'email' => [
|
||||
'subscribe' => '訂閱電子郵件更新。',
|
||||
'subscribed' => '您已經訂閱電子郵件通知,請檢查您的電子郵件,確認您的訂閱。',
|
||||
'verified' => '您的電子郵件訂閱已確認。謝謝!',
|
||||
'unsubscribe' => '取消電子郵件訂閱。',
|
||||
'unsubscribed' => '您的電子郵件訂閱已被取消。',
|
||||
'failure' => '郵件訂閱失敗。',
|
||||
'verify' => [
|
||||
'subscribe' => '訂閱電子郵件更新。',
|
||||
'subscribed' => '您已經訂閱電子郵件通知,請檢查您的電子郵件,確認您的訂閱。',
|
||||
'verified' => '您的電子郵件訂閱已確認。謝謝!',
|
||||
'unsubscribe' => '取消電子郵件訂閱。',
|
||||
'unsubscribed' => '您的電子郵件訂閱已被取消。',
|
||||
'failure' => '郵件訂閱失敗。',
|
||||
'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.',
|
||||
'verify' => [
|
||||
'text' => '請確認您的 :app_name 電子郵件訂閱。\\n:link\\n此致,:app_name',
|
||||
'html-preheader' => '請確認您的 :app_name 狀態更新郵件訂閱。',
|
||||
'html' => '<p>請確認您的 :app_name 電子郵件訂閱。</p><p><a href=":link">:link</a></p><p>此致,:app_name</p>',
|
||||
|
Loading…
x
Reference in New Issue
Block a user