aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/lang/en.php
blob: bd9a99c1f0c1f77b40d07e7de2972f701e92a736 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Admin: Internationalization [EN]           [Thomas Lange <code@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#                                                                              #
# This file contains template internationalization strings for the EN language #
# and is completely independent from the core internationalization strings.    #
#                                                                              #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#

#===============================================================================
# Item last text
#===============================================================================
$LANGUAGE['last_post'] = 'Last post';
$LANGUAGE['last_page'] = 'Last page';
$LANGUAGE['last_user'] = 'Last user';

#===============================================================================
# Insert item description
#===============================================================================
$LANGUAGE['insert_page_desc'] = 'Here you can create and publish a new page.';
$LANGUAGE['insert_post_desc'] = 'Here you can create and publish a new post.';
$LANGUAGE['insert_user_desc'] = 'Here you can create and publish a new user.';

#===============================================================================
# Update item description
#===============================================================================
$LANGUAGE['update_page_desc'] = 'Here you can edit an existing page and save the changes.';
$LANGUAGE['update_post_desc'] = 'Here you can edit an existing post and save the changes.';
$LANGUAGE['update_user_desc'] = 'Here you can edit an existing user and save the changes.';

#===============================================================================
# Delete item description
#===============================================================================
$LANGUAGE['delete_page_desc'] = 'If you do not need this page anymore, you can permanently delete it by clicking the following button.';
$LANGUAGE['delete_post_desc'] = 'If you do not need this post anymore, you can permanently delete it by clicking the following button.';
$LANGUAGE['delete_user_desc'] = 'If you do not need this user anymore, you can permanently delete it by clicking the following button.';

#===============================================================================
# Item overview description
#===============================================================================
$LANGUAGE['overview_page_desc'] = 'Here you can see all existing pages.';
$LANGUAGE['overview_post_desc'] = 'Here you can see all existing posts.';
$LANGUAGE['overview_user_desc'] = 'Here you can see all existing users.';

#===============================================================================
# Dashboard overview text
#===============================================================================
$LANGUAGE['overview_dashboard_text'] = 'Dashboard';

#===============================================================================
# Dashboard overview text
#===============================================================================
$LANGUAGE['overview_dashboard_desc'] = 'Welcome to the administration area. Here you can manage your content.';

#===============================================================================
# Database overview text
#===============================================================================
$LANGUAGE['overview_database_text'] = 'Database';

#===============================================================================
# Database overview text
#===============================================================================
$LANGUAGE['overview_database_desc'] = 'Perform database operations with SQL commands.';

#===============================================================================
# Authentication
#===============================================================================
$LANGUAGE['authentication_text'] = 'Authentication';
$LANGUAGE['authentication_desc'] = 'To manage your content, you have to authenticate yourself first.';

#===============================================================================
# No items exists
#===============================================================================
$LANGUAGE['home_no_pages'] = 'There is no last page to display here. You have to insert a new page first.';
$LANGUAGE['home_no_posts'] = 'There is no last post to display here. You have to insert a new post first.';
$LANGUAGE['home_no_users'] = 'There is no last user to display here. You have to insert a new user first.';

#===============================================================================
# Delete user warning
#===============================================================================
$LANGUAGE['delete_user_warning'] = '<strong>WARNING</strong>: If you delete this user, all posts and pages belonging to this user will also be deleted!';

#===============================================================================
# Database warning
#===============================================================================
$LANGUAGE['database_warning'] = 'Some commands can have dangerous effects if you do not know what you are doing!';

#===============================================================================
# Error 403
#===============================================================================
$LANGUAGE['403_heading_text'] = 'Access denied';
$LANGUAGE['403_heading_desc'] = 'You are denied to access this resource because you do not have the necessary permissions.';

#===============================================================================
# Error 404
#===============================================================================
$LANGUAGE['404_heading_text'] = 'Not found';
$LANGUAGE['404_heading_desc'] = 'The requested resource could not be found on this server.';

#===============================================================================
# "Are you sure?" question
#===============================================================================
$LANGUAGE['sure'] = 'Are you sure?';

#===============================================================================
# Labels
#===============================================================================
$LANGUAGE['LABEL_SLUG'] = 'Slug';
$LANGUAGE['LABEL_USER'] = 'User';
$LANGUAGE['LABEL_NAME'] = 'Title';
$LANGUAGE['LABEL_INSERT'] = 'Created';
$LANGUAGE['LABEL_UPDATE'] = 'Updated';
$LANGUAGE['LABEL_FULLNAME'] = 'Name';
$LANGUAGE['LABEL_MAILADDR'] = 'Email';
$LANGUAGE['LABEL_USERNAME'] = 'Username';
$LANGUAGE['LABEL_PASSWORD'] = 'Password';
?>