diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-10-05 14:36:01 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-10-05 14:36:01 +0200 |
commit | 0f185543bb9851fddc137f81a1e2a1d21589bc83 (patch) | |
tree | c9a3c56ba2166defac508f8d1c67ef81fe4e9789 /ratatoeskr/translations | |
parent | afe436b25dd935aa2ae3a327027ea04b3c82e5ac (diff) | |
download | ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.gz ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.bz2 ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.zip |
Backend, frontend and 404 handlers partially implemented.
* Backend layout done.
* Frontend theoretically done (untested).
* 404 handler done
* Added textprocessors.php
Diffstat (limited to 'ratatoeskr/translations')
-rw-r--r-- | ratatoeskr/translations/en.php | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/ratatoeskr/translations/en.php b/ratatoeskr/translations/en.php index 20c87b9..93951b4 100644 --- a/ratatoeskr/translations/en.php +++ b/ratatoeskr/translations/en.php @@ -6,7 +6,39 @@ $translation = array( "login_form_header" => "Login", "login_form_button" => "Login", "login_background_image" => "Background image: <a href=\"[[URL]]\">[[FILENAME]]</a> by [[AUTHOR]]. License: [[LICENSE]]", - "login_failed" => "Login failed." + "login_failed" => "Login failed (Username/Password is wrong or you are not an admin).", + "logout" => "Logout", + "section_admin" => "Administration", + "section_content" => "Content", + "section_design" => "Design", + "section_plugins" => "Plugins", + "menu_articles" => "Articles", + "menu_comments" => "Comments", + "menu_images" => "Images", + "menu_languages" => "Languages", + "menu_newarticles" => "New Article", + "menu_pagesections" => "Page Sections", + "menu_plugin_repos" => "Plugin Repositories", + "menu_plugininstall" => "Install Plugin", + "menu_pluginlist" => "Plugin List", + "menu_settings" => "Settings", + "menu_styles" => "Styles", + "menu_tags" => "Tags", + "menu_templates" => "Templates", + "menu_users_groups" => "Users / Groups", + "new_article" => "New Article", + "articleedit_title" => "Article Title", + "articleedit_content" => "Content", + "articleedit_excerpt" => "Excerpt", + "comment_form_name" => "Your name", + "comment_form_mail" => "Your E-Mailaddress", + "comment_form_text" => "Your comment (Markdown format)", + "page_prev" => "<-- previous page", + "page_next" => "next page -->", + "e404_details" => "The page [[URL]] could not be found. Sorry.", + "author_name_missing" => "No author name given.", + "author_email_missing" => "No author E-Mailaddress given.", + "comment_text_missing" => "An empty comment can not be posted." ); ?> |