Skip to content

Commit

Permalink
Add missing message to others lang files
Browse files Browse the repository at this point in the history
  • Loading branch information
Elikill58 committed Nov 23, 2023
1 parent c7a2c44 commit 465b150
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
6 changes: 6 additions & 0 deletions resources/lang/en/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
'password' => 'Password',
'perpage' => 'Punishments per page',
'prefix' => 'Table prefix',
'features' => [
'title' => 'Features enabled',
'kicks' => 'Kicks enabled',
'mutes' => 'Mutes enabled',
'warns' => 'Warns enabled'
]
],
];
6 changes: 6 additions & 0 deletions resources/lang/es/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
'password' => 'Contraseña',
'perpage' => 'Sanciones por Página',
'prefix' => 'Prefijo de la Tabla',
'features' => [
'title' => 'Features enabled',
'kicks' => 'Kicks enabled',
'mutes' => 'Mutes enabled',
'warns' => 'Warns enabled'
]
],
];
6 changes: 6 additions & 0 deletions resources/lang/uk/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,11 @@
'password' => 'Пароль',
'perpage' => 'Покарання на сторінці',
'prefix' => 'Префікс таблиці',
'features' => [
'title' => 'Features enabled',
'kicks' => 'Kicks enabled',
'mutes' => 'Mutes enabled',
'warns' => 'Warns enabled'
]
],
];
2 changes: 1 addition & 1 deletion resources/views/history.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<td class="d-lg-table-cell">{{ $item->reason }}</td>
<td>{{ format_date($item->time) }}</td>
@if(isset($item->removed_by_name))
<td class="d-lg-table-cell">{{ trans('litebans::messages.unbanned') }}</td>
<td class="d-lg-table-cell">{{ trans('litebans::messages.unmuted') }}</td>
@elseif($item->until === null)
<td class="d-lg-table-cell">{{ trans('litebans::messages.permanent') }}</td>
@elseif($item->until->isPast())
Expand Down

0 comments on commit 465b150

Please sign in to comment.