From bff526ade2061fc978e953bed51fc7f3d3d06032 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 11 Mar 2018 08:40:50 +0200 Subject: [PATCH] Adjust help text --- resources/lang/en/texts.php | 4 ++-- resources/views/accounts/notifications.blade.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index e45838a76001..101daedda5b3 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2768,8 +2768,8 @@ $LANG = array( 'subgroup' => 'Subgroup', 'unset' => 'Unset', 'received_new_payment' => 'You\'ve received a new payment!', - 'slack_webhook_help' => 'Receive payment notifications using Slack :link.', - 'incoming_webhooks' => 'incoming webhooks', + 'slack_webhook_help' => 'Receive payment notifications using :link.', + 'slack_incoming_webhooks' => 'Slack incoming webhooks', ); diff --git a/resources/views/accounts/notifications.blade.php b/resources/views/accounts/notifications.blade.php index 2aef1bcec91c..3b35aa54acc5 100644 --- a/resources/views/accounts/notifications.blade.php +++ b/resources/views/accounts/notifications.blade.php @@ -23,7 +23,7 @@ {!! Former::text('slack_webhook_url') ->label('webhook_url') - ->help(trans('texts.slack_webhook_help', ['link' => link_to('https://my.slack.com/services/new/incoming-webhook/', trans('texts.incoming_webhooks'), ['target' => '_blank'])])) !!} + ->help(trans('texts.slack_webhook_help', ['link' => link_to('https://my.slack.com/services/new/incoming-webhook/', trans('texts.slack_incoming_webhooks'), ['target' => '_blank'])])) !!}