mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add languages
This commit is contained in:
@@ -12,9 +12,9 @@
|
||||
<div wire:ignore>
|
||||
<textarea placeholder="{{ $placeholder ?? '' }}"></textarea>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="comments-form-editor-tip">
|
||||
You can use <a href="https://spatie.be/markdown" target="_blank" rel="nofollow noopener noreferrer">Markdown</a>
|
||||
{!! __('You can use <a href="https://spatie.be/markdown" target="_blank" rel="nofollow noopener noreferrer">Markdown</a>') !!}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
@endcomponent
|
||||
|
||||
@if($unsubscribeUrl = $commentator->unsubscribeFromCommentNotificationsUrl($comment))
|
||||
<a href="{{ $unsubscribeUrl }}">Unsubscribe from receive notification about {{ $topLevelComment->commentable->commentableName() }}</a>
|
||||
<a href="{{ $unsubscribeUrl }}">{{ __('Unsubscribe from receive notification about :commentableName', ['commentableName' => $topLevelComment->commentable->commentableName()]) }}</a>
|
||||
@endif
|
||||
|
||||
@endcomponent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
The comment has been approved.
|
||||
{{ __('The comment has been approved.') }}
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to approve the comment?
|
||||
{{ __('Do you want to approve the comment?') }}
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
<button id="confirmationButton" class="button" type="submit">{{ __('Approve') }}</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
The comment has been rejected.
|
||||
{{ __('The comment has been rejected.') }}
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to reject the comment?
|
||||
{{ __('Do you want to reject the comment?') }}
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
You have been unsubscribed.
|
||||
{{ __('You have been unsubscribed.') }}
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
You have been unsubscribed from every comment notification.
|
||||
{{ __('You have been unsubscribed from every comment notification.') }}
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to unsubscribe from every comment notification?
|
||||
{{ __('Do you want to unsubscribe from every comment notification?') }}
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
<button id="confirmationButton" class="button" type="submit">{{ __('Approve') }}</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<x-comments::signed-layout>
|
||||
|
||||
Do you want to unsubscribe?
|
||||
{{ __('Do you want to unsubscribe?') }}
|
||||
|
||||
<form class="form" method="POST">
|
||||
@csrf
|
||||
<button id="confirmationButton" class="button" type="submit">Approve</button>
|
||||
<button id="confirmationButton" class="button" type="submit">{{ __('Approve') }}</button>
|
||||
</form>
|
||||
|
||||
</x-comments::signed-layout>
|
||||
|
||||
Reference in New Issue
Block a user