Skip to content

Commit 073693c

Browse files
committed
fix: update view template for feature flag event gitlab
1 parent 28162c9 commit 073693c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

lang/de/events/gitlab/feature_flag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
return [
44
'title' => [
5-
'enabled' => '<b>Feature Flag Enabled</b> 🦊:flag_tag by :user_tag',
6-
'disabled' => '<b>Feature Flag Disabled</b> 🦊:flag_tag by :user_tag',
5+
'enabled' => '<b>Feature Flag Enabled</b> :flag_tag by :user_tag',
6+
'disabled' => '<b>Feature Flag Disabled</b> :flag_tag by :user_tag',
77
],
88
'name' => 'Name: <b>:flag_name</b>',
99
];

lang/en/events/gitlab/feature_flag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
return [
44
'title' => [
5-
'enabled' => '<b>Feature Flag Enabled</b> 🦊:flag_tag by :user_tag',
6-
'disabled' => '<b>Feature Flag Disabled</b> 🦊:flag_tag by :user_tag',
5+
'enabled' => '<b>Feature Flag Enabled</b> :flag_tag by :user_tag',
6+
'disabled' => '<b>Feature Flag Disabled</b> :flag_tag by :user_tag',
77
],
88
'name' => 'Name: <b>:flag_name</b>',
99
];

lang/ja/events/gitlab/feature_flag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
return [
44
'title' => [
5-
'enabled' => '<b>Feature Flag Enabled</b> 🦊:flag_tag by :user_tag',
6-
'disabled' => '<b>Feature Flag Disabled</b> 🦊:flag_tag by :user_tag',
5+
'enabled' => '<b>Feature Flag Enabled</b> :flag_tag by :user_tag',
6+
'disabled' => '<b>Feature Flag Disabled</b> :flag_tag by :user_tag',
77
],
88
'name' => 'Name: <b>:flag_name</b>',
99
];

lang/vi/events/gitlab/feature_flag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
return [
44
'title' => [
5-
'enabled' => '<b>Feature Flag Enabled</b> 🦊:flag_tag by :user_tag',
6-
'disabled' => '<b>Feature Flag Disabled</b> 🦊:flag_tag by :user_tag',
5+
'enabled' => '<b>Feature Flag Enabled</b> :flag_tag by :user_tag',
6+
'disabled' => '<b>Feature Flag Disabled</b> :flag_tag by :user_tag',
77
],
88
'name' => 'Name: <b>:flag_name</b>',
99
];

resources/views/events/gitlab/feature_flag/default.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
?>
1919

2020
{!! $icon !!} {!! __('tg-notifier::events/gitlab/feature_flag.title'.$active, [
21-
'flag_tag' => $flagTag,
21+
'flag_tag' => '🦊'.$flagTag,
2222
'user_tag' => $userTag,
2323
]) !!}
2424

0 commit comments

Comments
 (0)