50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php /* Copyright (c) 2024 Freya Murphy */
|
|
|
|
// Navigation Bar Lang
|
|
$lang['action_home_text'] = 'Home';
|
|
$lang['action_home_tip'] = 'Goto your home page.';
|
|
$lang['action_people_text'] = 'People';
|
|
$lang['action_people_tip'] = 'View xssbook users.';
|
|
$lang['action_chat_text'] = 'Chat';
|
|
$lang['action_chat_tip'] = 'Goto your chat center.';
|
|
$lang['action_profile_tip'] = 'View account options.';
|
|
$lang['action_hamburger_tip'] = 'View header dropdown.';
|
|
$lang['action_login_text'] = 'Login';
|
|
$lang['action_login_tip'] = 'Login or signup';
|
|
|
|
// Post lang
|
|
$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['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';
|
|
|
|
// General
|
|
$lang['action_submit_text'] = 'Submit';
|
|
$lang['action_submit_tip'] = 'Submit';
|
|
$lang['action_close_text'] = '';
|
|
$lang['action_close_tip'] = 'Close';
|
|
$lang['action_close_icon'] = 'mi mi-sm';
|
|
$lang['action_close_content'] = 'close';
|
|
|
|
// Modals
|
|
$lang['action_modal_close_text'] = '';
|
|
$lang['action_modal_close_tip'] = 'Close modal.';
|
|
$lang['action_modal_close_icon'] = 'mi mi-sm';
|
|
$lang['action_modal_close_content'] = 'close';
|
|
|
|
$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.';
|
|
|
|
// Words
|
|
$lang['now'] = 'Now';
|
|
|
|
?>
|