Skip to content

Commit

Permalink
fix: update push event
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed May 20, 2024
1 parent 16248a9 commit f1b6096
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lang/de/events/gitlab/push.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'default' => [
'title' => '<b>:count</b> new :noun to :repo:<code>:branch</code></b>',
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
'pusher' => '👤 Pushed by : <b>:name</b>',
],
Expand Down
2 changes: 1 addition & 1 deletion lang/en/events/gitlab/push.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'default' => [
'title' => '<b>:count</b> new :noun to :repo:<code>:branch</code></b>',
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
'pusher' => '👤 Pushed by : <b>:name</b>',
],
Expand Down
2 changes: 1 addition & 1 deletion lang/ja/events/gitlab/push.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'default' => [
'title' => '<b>:count</b> new :noun to :repo:<code>:branch</code></b>',
'title' => '<b>:count</b> new :noun to <b>:repo:<code>:branch</code></b>',
'commit' => '[:commit] :commit_message - by <i>:commit_by</i>',
'pusher' => '👤 Pushed by : <b>:name</b>',
],
Expand Down
2 changes: 1 addition & 1 deletion lang/vi/events/gitlab/push.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'default' => [
'title' => '<b>:count</b> mới :noun đến :repo:<code>:branch</code></b>',
'title' => '<b>:count</b> :noun mới trong <b>:repo:<code>:branch</code></b>',
'commit' => '[:commit] :commit_message - bởi <i>:commit_by</i>',
'pusher' => '👤 Đẩy lên bởi: : <b>:name</b>',
],
Expand Down
2 changes: 1 addition & 1 deletion resources/views/events/gitlab/push/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
👷⚙️ {!! __('tg-notifier::events/gitlab/push.default.title', [
'count' => $count,
'noun' => $noun,
'repo' => "🦑<b>" . $payload->project->path_with_namespace,
'repo' => "🦑<a href='{$payload->project->web_url}'>{$payload->project->path_with_namespace}</a>",
'branch' => $branch,
]) !!}

Expand Down

0 comments on commit f1b6096

Please sign in to comment.