diff options
Diffstat (limited to 'src/web/lang/post.php')
-rw-r--r-- | src/web/lang/post.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/web/lang/post.php b/src/web/lang/post.php new file mode 100644 index 0000000..39cb24d --- /dev/null +++ b/src/web/lang/post.php @@ -0,0 +1,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.'; |