1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6return [
7 'deleted' => 'deleted',
8 'deleted_by' => 'deleted :timeago by :user',
9 'deleted_by_system' => 'system',
10 'deleted_count' => ':count_delimited deleted comment|:count_delimited deleted comments',
11 'edited' => 'edited :timeago by :user',
12 'pinned' => 'pinned',
13 'empty' => 'No comments yet.',
14 'empty_other' => 'No other comments yet.',
15 'load_replies' => 'load replies',
16 'replies_count' => ':count_delimited reply|:count_delimited replies',
17 'title' => 'Comments',
18
19 'commentable_name' => [
20 'beatmapset' => 'Beatmap',
21 'build' => 'Changelog',
22 'news_post' => 'News',
23 '_deleted' => 'Deleted Item',
24 ],
25
26 'editor' => [
27 'textarea_hint' => [
28 '_' => 'Press enter to :action. Use shift+enter for new line.',
29 'edit' => 'save',
30 'new' => 'post',
31 'reply' => 'reply',
32 ],
33 ],
34
35 'guest_button' => [
36 'new' => 'Sign in to comment',
37 'reply' => 'Sign in to reply',
38 ],
39
40 'index' => [
41 'nav_comments' => 'comments',
42 'nav_title' => 'listing',
43 'no_comments' => 'no comments found...',
44 ],
45
46 'ogp' => [
47 'title' => 'comment by :user',
48 ],
49
50 'placeholder' => [
51 'edit' => 'Edit the comment here',
52 'new' => 'Type new comment here',
53 'reply' => 'Type your response here',
54 ],
55
56 'show' => [
57 'nav_title' => 'comments',
58 ],
59];