Skip to content

Commit

Permalink
fix: the view of the ping and meta event
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhongit committed May 5, 2024
1 parent 240cc01 commit 278bf7a
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions lang/de/events/github/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

return [
'delete' => [
'title' => 'Webhook Deleted',
'organization' => 'Organization',
'title' => 'Webhook gelöscht',
'organization' => 'Organisation',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (der das Ereignis ausgelöst hat)',
],
];
2 changes: 1 addition & 1 deletion lang/de/events/github/ping.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Connection Successful',
'organization' => 'Organization',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (triggered the event)',
],
];
2 changes: 1 addition & 1 deletion lang/en/events/github/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Webhook Deleted',
'organization' => 'Organization',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (triggered the event)',
],
];
2 changes: 1 addition & 1 deletion lang/en/events/github/ping.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Connection Successful',
'organization' => 'Organization',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (triggered the event)',
],
];
2 changes: 1 addition & 1 deletion lang/ja/events/github/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Webhook 削除',
'organization' => '組織',
'full_name' => 'リポジトリ',
'sender' => '送信者(イベントのトリガー): <b>:sender</b>',
'sender' => '送信者(イベントのトリガー)',
],
];
2 changes: 1 addition & 1 deletion lang/ja/events/github/ping.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Connection Successful',
'organization' => 'Organization',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (triggered the event)',
],
];
2 changes: 1 addition & 1 deletion lang/vi/events/github/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Webhook đã được xóa',
'organization' => 'Tổ chức',
'full_name' => 'Kho lưu trữ',
'sender' => 'Người thực hiện sự kiện: <b>:sender</b>',
'sender' => 'Người thực hiện sự kiện',
],
];
2 changes: 1 addition & 1 deletion lang/vi/events/github/ping.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
'title' => 'Connection Successful',
'organization' => 'Organization',
'full_name' => 'Repository',
'sender' => 'Sender (triggered the event): <b>:sender</b>',
'sender' => 'Sender (triggered the event)',
],
];
2 changes: 1 addition & 1 deletion resources/views/events/github/meta/deleted.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
📦 {!! __('tg-notifier::events/github/meta.delete.full_name') !!}: 🦑<b>{{ $payload->repository->full_name }}</b>
@endif
@if(isset($payload->sender))
👤 {!! __('tg-notifier::events/github/meta.delete.sender', ['sender' => $payload->sender->login]) !!}
👤 {!! __('tg-notifier::events/github/meta.delete.sender') !!}: <code>{{ $payload->sender->login }}</code>
@endif
2 changes: 1 addition & 1 deletion resources/views/events/github/ping/default.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
📦 {!! __('tg-notifier::events/github/ping.default.full_name') !!}: 🦑<b>{{ $payload->repository->full_name }}</b>
@endif
@if(isset($payload->sender))
👤 {!! __('tg-notifier::events/github/ping.default.sender', ['sender' => $payload->sender->login]) !!}
👤 {!! __('tg-notifier::events/github/ping.default.sender') !!}: <code>{{ $payload->sender->login }}</code>
@endif

0 comments on commit 278bf7a

Please sign in to comment.