aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/lang/en.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-02-24 21:27:59 +0100
committerThomas Lange <code@nerdmind.de>2017-02-24 21:27:59 +0100
commit52b077a48c743ba4d08ac00520a0bf1ef6deef5f (patch)
treeb4205c194167e0e03e273957cdd0aab3be9fdf01 /template/admin/lang/en.php
downloadblog-52b077a48c743ba4d08ac00520a0bf1ef6deef5f.tar.gz
blog-52b077a48c743ba4d08ac00520a0bf1ef6deef5f.tar.xz
blog-52b077a48c743ba4d08ac00520a0bf1ef6deef5f.zip
Initial commit.v1.0
Diffstat (limited to 'template/admin/lang/en.php')
-rw-r--r--template/admin/lang/en.php118
1 files changed, 118 insertions, 0 deletions
diff --git a/template/admin/lang/en.php b/template/admin/lang/en.php
new file mode 100644
index 0000000..d98ea44
--- /dev/null
+++ b/template/admin/lang/en.php
@@ -0,0 +1,118 @@
+<?php
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+# Admin: Internationalization [EN] [Thomas Lange <code@nerdmind.de>] #
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+# #
+# This file contains template internationalization strings for the EN language #
+# and is completely independend 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';
+?> \ No newline at end of file