Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions resources/lang/cz/filament-comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

return [
'comments' => 'Komentáře',
'comments.add' => 'Přidat komentář',
'comments.empty' => 'Zatím žádné komentáře.',
'comments.placeholder' => 'Přidejte komentář...',

'notifications.created' => 'Komentář byl přidán.',
'notifications.deleted' => 'Komentář byl odstraněn.',

'modal.heading' => 'Komentáře',

'comments.delete.tooltip' => 'Odstranit komentář'
];
15 changes: 15 additions & 0 deletions resources/lang/sk/filament-comments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

return [
'comments' => 'Komentáre',
'comments.add' => 'Pridať komentár',
'comments.empty' => 'Žiadne komentáre.',
'comments.placeholder' => 'Pridať komentár...',

'notifications.created' => 'Komentár bol pridaný.',
'notifications.deleted' => 'Komentár bol odstránený.',

'modal.heading' => 'Komentáre',

'comments.delete.tooltip' => 'Odstrániť komentár'
];
2 changes: 1 addition & 1 deletion resources/views/comments.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@endif

@if (count($comments))
<div class="gap-4">
<div class="gap-4 space-y-4">
@foreach ($comments as $comment)
<div class="fi-in-repeatable-item block rounded-xl bg-white p-4 shadow-sm ring-1 ring-gray-950/5 dark:bg-white/5 dark:ring-white/10">
<div class="flex gap-x-3">
Expand Down