blob: 7bf9510b13bcff37443a4010f468ec41f017c78f (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<?php /* Copyright (c) 2024 Freya Murphy */
$lang['version'] = 'Version 2.0.6';
$lang['copyright'] = 'Freya Murphy © 2024';
// 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.';
$lang['about_modal_title'] = 'XSSBook';
// User Menu
$lang['action_logout_text'] = 'Logout';
$lang['action_logout_tip'] = 'Logout';
$lang['action_logout_icon'] = 'mi mi-sm';
$lang['action_logout_content'] = 'logout';
$lang['action_xssbook_about_text'] = 'About';
$lang['action_xssbook_about_tip'] = 'View xssbook about modal';
$lang['action_xssbook_about_icon'] = 'mi mi-sm';
$lang['action_xssbook_about_content'] = 'info';
$lang['action_settings_text'] = 'Settings';
$lang['action_settings_tip'] = 'Edit account settings';
$lang['action_settings_icon'] = 'mi mi-sm';
$lang['action_settings_content'] = 'settings';
$lang['action_profile_text'] = 'Profile';
$lang['action_profile_tip'] = 'View your profile';
$lang['action_profile_icon'] = 'mi mi-sm';
$lang['action_profile_content'] = 'account_circle';
// Words
$lang['now'] = 'Now';
$lang['likes'] = 'Likes';
?>
|