blob: 39cb24d1abf32f4e92c92185506e4ecc593efcff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php /* Copyright (c) 2024 Freya Murphy */
// Posts
$lang['action_like_text'] = 'Like';
$lang['action_like_tip'] = 'Like this post.';
$lang['action_like_icon'] = 'mi mi-sm';
$lang['action_like_content'] = 'thumb_up';
$lang['no_posts_found'] = 'No posts here...';
$lang['no_posts_found_ext'] =
"We ate them all.
They got lost in transit.
All stuck in line at the DMV.
Death has taken them.
[REDACTED]
They were non-RFC complient.
Submit a formal complaint at your local IRS office.
They are in jail for killing child processes.
They didn't deem you worthy.
Meta stole them for AI training.";
// Comments
$lang['action_comment_text'] = 'Comment';
$lang['action_comment_tip'] = 'Focus the comment box.';
$lang['action_comment_icon'] = 'mi mi-sm';
$lang['action_comment_content'] = 'comment';
$lang['action_new_comment_text'] = 'Write a comment';
$lang['action_new_comment_tip'] = 'Write a comment, then press enter to submit.';
$lang['action_load_comments_text'] = 'Load more comments';
$lang['action_load_comments_tip'] = 'Load more comments';
// New Post Modal
$lang['new_post_modal_title'] = 'Author New Post';
$lang['action_new_post_text'] = 'What\'s on your mind, %s';
$lang['action_new_post_tip'] = 'Author a new post.';
|