This commit is contained in:
Benjamin Takats
2022-12-19 15:58:18 +01:00
parent 7348651d63
commit 50d65ad5e4
12 changed files with 255 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
return [
'write_comment' => 'Leave a comment',
'write_reply' => 'Leave a reply',
'cancel' => 'Cancel',
'edit' => 'Edit',
'edit_comment' => 'Save',
'no_comments_yet' => 'No comments yet…',
'delete' => 'Delete',
'copy_link' => 'Copy Link',
'delete_confirmation_title' => 'Delete Comment',
'delete_confirmation_text' => 'Are you sure? This can not be undone.',
'create_reply' => 'Reply',
'create_comment' => 'Comment',
'just_now' => 'Just now',
'send_notifications' => 'Notify me when someone replies',
'reject_comment' => 'Reject',
'approve_comment' => 'Approve',
'awaits_approval' => 'Awaiting approval',
'guest' => 'guest',
'copied' => 'Link copied'
];

View File

@@ -0,0 +1,21 @@
<?php
return [
'approve_comment' => 'Approve comment',
'reject_comment' => 'Reject comment',
'view_comment' => 'View comment',
'pending_comment_mail_subject' => 'A new comment is awaiting approval',
'pending_comment_mail_body' => 'A pending comment :commentable_name by :commentator_name awaits your approval',
'approved_comment_mail_subject' => 'A new comment was posted',
'approved_comment_mail_title' => 'A new comment on ":commentable_name"',
'approved_comment_mail_body' => 'Posted by :commentator_name',
'enum_description_participating'=> 'When participating',
'enum_description_all' => 'On all comments',
'enum_description_none' => 'Never',
'enum_longdescription_participating' => 'Get notified when participating',
'enum_longdescription_all' => 'Get notified on all comments',
'enum_longdescription_none' => 'Never be notified',
];