add languages

This commit is contained in:
Benjamin Takats
2022-12-18 21:15:23 +01:00
parent 31c9a66244
commit cf6afdcb43
489 changed files with 589 additions and 36883 deletions

View File

@@ -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>

View File

@@ -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

View File

@@ -1,5 +1,5 @@
<x-comments::signed-layout>
The comment has been approved.
{{ __('The comment has been approved.') }}
</x-comments::signed-layout>

View File

@@ -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>

View File

@@ -1,5 +1,5 @@
<x-comments::signed-layout>
The comment has been rejected.
{{ __('The comment has been rejected.') }}
</x-comments::signed-layout>

View File

@@ -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

View File

@@ -1,5 +1,5 @@
<x-comments::signed-layout>
You have been unsubscribed.
{{ __('You have been unsubscribed.') }}
</x-comments::signed-layout>

View File

@@ -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>

View File

@@ -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>

View File

@@ -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>