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 'loading_users' => 'loading users...',
8 'talking_in' => 'talking in :channel',
9 'talking_with' => 'talking with :name',
10 'title_compact' => 'chat',
11 'unread_messages' => 'unread messages',
12
13 'cannot_send' => [
14 'channel' => 'You cannot message this channel at this time.',
15 'user' => 'You cannot message this user at this time.',
16 ],
17
18 'channels' => [
19 'confirm_part' => 'Do you want to hide this channel? You will still receive messages from this channel.',
20 'create' => 'create announcement',
21 'join' => 'join channel',
22 'none' => 'no channel',
23
24 'list' => [
25 'title' => [
26 'ANNOUNCE' => 'Announcements',
27 'GROUP' => 'Groups',
28 'PM' => 'Direct messages',
29 'PUBLIC' => 'Channels',
30 ],
31 ],
32 ],
33
34 'form' => [
35 'title' => [
36 'announcement' => 'Create New Announcement',
37 ],
38
39 'labels' => [
40 'description' => 'description',
41 'message' => 'message',
42 'name' => 'room name',
43 'users' => 'players to add',
44 ],
45 ],
46
47 'not_found' => [
48 'message' => 'There\'s nothing here, maybe you left the channel or it doesn\'t exist...',
49 'title' => 'channel not found',
50 ],
51
52 'input' => [
53 'create' => 'Create',
54 'disabled' => 'unable to send message...',
55 'disconnected' => 'Disconnected',
56 'placeholder' => 'type message...',
57 'send' => 'Send',
58 ],
59
60 'no-conversations' => [
61 'howto' => "Start conversations from a user's profile or a usercard popup.",
62 'lazer' => 'Public channels you join via <a href=":link">osu!lazer</a> will also be visible here.',
63 'title' => 'no conversations yet',
64 ],
65
66 'join_channels' => [
67 'loading' => 'Loading channel list...',
68 ],
69];