[pLog-svn] r834 - plog/trunk/locale

oscar at devel.plogworld.net oscar at devel.plogworld.net
Tue Jan 25 17:03:59 GMT 2005


Author: oscar
Date: 2005-01-25 17:03:59 +0000 (Tue, 25 Jan 2005)
New Revision: 834

Modified:
   plog/trunk/locale/locale_en_UK.php
Log:
replaced all double quotes with single quotes, hopefully this will make it faster to load the strings...

Modified: plog/trunk/locale/locale_en_UK.php
===================================================================
--- plog/trunk/locale/locale_en_UK.php	2005-01-25 17:02:35 UTC (rev 833)
+++ plog/trunk/locale/locale_en_UK.php	2005-01-25 17:03:59 UTC (rev 834)
@@ -1,732 +1,705 @@
 <?php
 // set this to the encoding that should be used to display the pages correctly
-$messages["encoding"] = "iso-8859-1";
-$messages["locale_description"] = "English locale file for pLog";
+$messages['encoding'] = 'iso-8859-1';
+$messages['locale_description'] = 'English locale file for pLog';
 // locale format, see Locale::formatDate for more information
-$messages["date_format"] = "%d/%m/%Y %H:%M";
+$messages['date_format'] = '%d/%m/%Y %H:%M';
 
 // days of the week
-$messages["days"] = Array( "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" );
+$messages['days'] = Array( 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' );
 // -- compatibility, do not touch -- //
-$messages["Monday"] = $messages["days"][1];
-$messages["Tuesday"] = $messages["days"][2];
-$messages["Wednesday"] = $messages["days"][3];
-$messages["Thursday"] = $messages["days"][4];
-$messages["Friday"] = $messages["days"][5];
-$messages["Saturday"] = $messages["days"][6];
-$messages["Sunday"] = $messages["days"][0];
+$messages['Monday'] = $messages['days'][1];
+$messages['Tuesday'] = $messages['days'][2];
+$messages['Wednesday'] = $messages['days'][3];
+$messages['Thursday'] = $messages['days'][4];
+$messages['Friday'] = $messages['days'][5];
+$messages['Saturday'] = $messages['days'][6];
+$messages['Sunday'] = $messages['days'][0];
 
 // abbreviations
-$messages["daysshort"] = Array( "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa" );
+$messages['daysshort'] = Array( 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa' );
 // -- compatibility, do not touch -- //
-$messages["Mo"] = $messages["daysshort"][1];
-$messages["Tu"] = $messages["daysshort"][2];
-$messages["We"] = $messages["daysshort"][3];
-$messages["Th"] = $messages["daysshort"][4];
-$messages["Fr"] = $messages["daysshort"][5];
-$messages["Sa"] = $messages["daysshort"][6];
-$messages["Su"] = $messages["daysshort"][0];
+$messages['Mo'] = $messages['daysshort'][1];
+$messages['Tu'] = $messages['daysshort'][2];
+$messages['We'] = $messages['daysshort'][3];
+$messages['Th'] = $messages['daysshort'][4];
+$messages['Fr'] = $messages['daysshort'][5];
+$messages['Sa'] = $messages['daysshort'][6];
+$messages['Su'] = $messages['daysshort'][0];
 
 // months of the year
-$messages["months"] = Array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" );
+$messages['months'] = Array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" );
 // -- compatibility, do not touch -- //
-$messages["January"] = $messages["months"][0];
-$messages["February"] = $messages["months"][1];
-$messages["March"] = $messages["months"][2];
-$messages["April"] = $messages["months"][3];
-$messages["May"] = $messages["months"][4];
-$messages["June"] = $messages["months"][5];
-$messages["July"] = $messages["months"][6];
-$messages["August"] = $messages["months"][7];
-$messages["September"] = $messages["months"][8];
-$messages["October"] = $messages["months"][9];
-$messages["November"] = $messages["months"][10];
-$messages["December"] = $messages["months"][11];
+$messages['January'] = $messages['months'][0];
+$messages['February'] = $messages['months'][1];
+$messages['March'] = $messages['months'][2];
+$messages['April'] = $messages['months'][3];
+$messages['May'] = $messages['months'][4];
+$messages['June'] = $messages['months'][5];
+$messages['July'] = $messages['months'][6];
+$messages['August'] = $messages['months'][7];
+$messages['September'] = $messages['months'][8];
+$messages['October'] = $messages['months'][9];
+$messages['November'] = $messages['months'][10];
+$messages['December'] = $messages['months'][11];
 
-$messages["message"] = "Message";
-$messages["error"] = "Error";
+$messages['message'] = 'Message';
+$messages['error'] = 'Error';
 
-$messages["date"] = "Date";
+$messages['date'] = 'Date';
 
 // miscellaneous texts
-$messages["of"] = "of";
-$messages["recently"] = "recently...";
-$messages["comments"] = "comments";
-$messages["comment on this"] = "Comment";
-$messages["my_links"] = "my Links";
-$messages["archives"] = "archives";
-$messages["search"] = "search";
-$messages["calendar"] = "calendar";
-$messages["search_s"] = "Search";
-$messages["link_tracker"] = "Link Tracker";
-$messages["search_this_blog"] = "Search this blog:";
-$messages["about_myself"] = "Who am I?";
-$messages["permalink_title"] = "Permanent link to the archives";
-$messages["permalink"] = "Permalink";
-$messages["posted_by"] = "Posted by";
-$messages["on_the"] = "on the";
-$messages["page"] = "page";
-$messages["posted"] = "posted";
+$messages['of'] = 'of';
+$messages['recently'] = 'recently...';
+$messages['comments'] = 'comments';
+$messages['comment on this'] = 'Comment';
+$messages['my_links'] = 'my Links';
+$messages['archives'] = 'archives';
+$messages['search'] = 'search';
+$messages['calendar'] = 'calendar';
+$messages['search_s'] = 'Search';
+$messages['link_tracker'] = 'Link Tracker';
+$messages['search_this_blog'] = 'Search this blog:';
+$messages['about_myself'] = 'Who am I?';
+$messages['permalink_title'] = 'Permanent link to the archives';
+$messages['permalink'] = 'Permalink';
+$messages['posted_by'] = 'Posted by';
+$messages['on_the'] = 'on the';
+$messages['page'] = 'page';
+$messages['posted'] = 'posted';
 
-$messages["reply"] = "Reply";
+$messages['reply'] = 'Reply';
 
 
 // add comment form
-$messages["add_comment"] = "Add comment";
-$messages["comment_topic"] = "Topic";
-$messages["comment_text"] = "Text";
-$messages["comment_username"] = "Your name";
-$messages["comment_email"] = "Your email address (if any)";
-$messages["comment_url"] = "Your personal page (if any)";
-$messages["comment_send"] = "Send";
-$messages["comment_added"] = "Comment added!";
-$messages["comment_add_error"] = "Error adding comment";
+$messages['add_comment'] = 'Add comment';
+$messages['comment_topic'] = 'Topic';
+$messages['comment_text'] = 'Text';
+$messages['comment_username'] = 'Your name';
+$messages['comment_email'] = 'Your email address (if any)';
+$messages['comment_url'] = 'Your personal page (if any)';
+$messages['comment_send'] = 'Send';
+$messages['comment_added'] = 'Comment added!';
+$messages['comment_add_error'] = 'Error adding comment';
 
 
-$messages["article_does_not_exist"] = "The article does not exist";
-$messages["no_posts_found"] = "No posts were found";
-$messages["user_has_no_posts_yet"] = "The user does not have any posts yet";
+$messages['article_does_not_exist'] = 'The article does not exist';
+$messages['no_posts_found'] = 'No posts were found';
+$messages['user_has_no_posts_yet'] = 'The user does not have any posts yet';
 
-$messages["info_about_myself"] = "Some information about myself...";
-$messages["back"] = "Back";
+$messages['info_about_myself'] = 'Some information about myself...';
+$messages['back'] = 'Back';
 
-$messages["back_top"] = "Back To Top";
+$messages['back_top'] = 'Back To Top';
 
-$messages["post"] = "post";
+$messages['post'] = 'post';
 
-$messages["trackbacks_for_article"] = "Trackbacks for the article titled";
-$messages["trackback_excerpt"] = "Excerpt";
-$messages["trackback_weblog"] = "Weblog";
+$messages['trackbacks_for_article'] = 'Trackbacks for the article titled';
+$messages['trackback_excerpt'] = 'Excerpt';
+$messages['trackback_weblog'] = 'Weblog';
 
-$messages["search_results"] = "Search Results";
-$messages["search_matching_results"] = "The following posts match your search terms: ";
-$messages["search_no_matching_posts"] = "No matching posts were found";
+$messages['search_results'] = 'Search Results';
+$messages['search_matching_results'] = 'The following posts match your search terms: ';
+$messages['search_no_matching_posts'] = 'No matching posts were found';
 
-$messages["see_all_link"] = "Click here to see all posts, ever";
+$messages['see_all_link'] = 'Click here to see all posts, ever';
 
-$messages["read_more"] = "(More)";
+$messages['read_more'] = '(More)';
 
-$messages["anonymous_poster"] = "Anonymous Poster";
+$messages['anonymous_poster'] = 'Anonymous Poster';
 
-$messages["syndicate"] = "SYNDICATE";
+$messages['syndicate'] = 'SYNDICATE';
 
-$messages["main"] = "Main";
+$messages['main'] = 'Main';
 
 ////// error messages /////
-$messages["error_fetching_article"] = "The article you specified could not be found.";
-$messages["error_fetching_articles"] = "The articles could not be fetched.";
-$messages["error_trackback_no_trackback"] = "No trackbacks were found for the article.";
-$messages["error_incorrect_article_id"] = "The article identifier is not correct.";
-$messages["error_incorrect_blog_id"] = "The blog identifier is not correct.";
-$messages["error_comment_without_text"] = "You should at least provide some text.";
-$messages["error_comment_without_name"] = "You should at least give your name or nickname.";
-$messages["error_adding_comment"] = "There was an error adding the comment.";
-$messages["error_incorrect_parameter"] = "Incorrect parameter.";
-$messages["error_parameter_missing"] = "There is one parameter missing from the request.";
-$messages["error_blog_has_no_links"] = "This blog has no links yet.";
-$messages["error_comments_not_enabled"] = "The commenting feature has been disabled in this site.";
+$messages['error_fetching_article'] = 'The article you specified could not be found.';
+$messages['error_fetching_articles'] = 'The articles could not be fetched.';
+$messages['error_trackback_no_trackback'] = 'No trackbacks were found for the article.';
+$messages['error_incorrect_article_id'] = 'The article identifier is not correct.';
+$messages['error_incorrect_blog_id'] = 'The blog identifier is not correct.';
+$messages['error_comment_without_text'] = 'You should at least provide some text.';
+$messages['error_comment_without_name'] = 'You should at least give your name or nickname.';
+$messages['error_adding_comment'] = 'There was an error adding the comment.';
+$messages['error_incorrect_parameter'] = 'Incorrect parameter.';
+$messages['error_parameter_missing'] = 'There is one parameter missing from the request.';
+$messages['error_blog_has_no_links'] = 'This blog has no links yet.';
+$messages['error_comments_not_enabled'] = 'The commenting feature has been disabled in this site.';
 
 /////////////////                                          //////////////////
 ///////////////// STRINGS FOR THE ADMINISTRATION INTERFACE //////////////////
 /////////////////                                          //////////////////
 
 // login page
-$messages["login"] = "Login";
-$messages["welcome_message"] = "Welcome to pLog";
-$messages["error_incorrect_username_or_password"] = "Sorry, Incorrect username or password.";
-$messages["error_dont_belong_to_any_blog"] = "Sorry, you don't belong to any blog yet.";
-$messages["logout_message"] = "You have been successfully logged out.";
-$messages["logout_message_2"] = "Click <a href=\"%1\$s\">here</a> to go to %2\$s</a>.";
-$messages["error_access_forbidden"] = "Access is forbidden. You must authenticate first here.";
-$messages["username"] = "Username";
-$messages["password"] = "Password";
+$messages['login'] = 'Login';
+$messages['welcome_message'] = 'Welcome to pLog';
+$messages['error_incorrect_username_or_password'] = 'Sorry, Incorrect username or password.';
+$messages['error_dont_belong_to_any_blog'] = 'Sorry, you do not belong to any blog yet.';
+$messages['logout_message'] = 'You have been successfully logged out.';
+$messages['logout_message_2'] = 'Click <a href="%1$s">here</a> to go to %2$s</a>.';
+$messages['error_access_forbidden'] = 'Access is forbidden. You must authenticate first here.';
+$messages['username'] = 'Username';
+$messages['password'] = 'Password';
 
 // dashboard
-$messages["dashboard"] = "Dashboard";
+$messages['dashboard'] = 'Dashboard';
 
 // menu options
-$messages["newPost"] = "New Post";
-$messages["Manage"] = "Manage";
-$messages["managePosts"] = "Manage Posts";
-$messages["editPosts"] = "Posts";
-$messages["editArticleCategories"] = "Categories";
-$messages["newArticleCategory"] = "New Category";
-$messages["manageLinks"] = "Manage Links";
-$messages["editLinks"] = "Links";
-$messages["newLink"] = "New Link";
-$messages["editLink"] = "Edit Link";
-$messages["editLinkCategories"] = "Link Categories";
-$messages["newLinkCategory"] = "New Link Category";
-$messages["editLinkCategory"] = "Edit Link Category";
-$messages["manageCustomFields"] = "Manage Custom Fields";
-$messages["blogCustomFields"] = "Custom Fields";
-$messages["newCustomField"] = "New Custom Field";
-$messages["resourceCenter"] = "Resource Center";
-$messages["resources"] = "Resources";
-$messages["newResourceAlbum"] = "New Album";
-$messages["newResource"] = "New Resource";
-$messages["controlCenter"] = "Control Center";
-$messages["manageSettings"] = "Settings";
-$messages["blogSettings"] = "Blog Settings";
-$messages["userSettings"] = "User Settings";
-$messages["pluginCenter"] = "Plugin Center";
-$messages["Stats"] = "Statistics";
-$messages["manageBlogUsers"] = "Manage Blog Users";
-$messages["newBlogUser"] = "New Blog User";
-$messages["showBlogUsers"] = "Blog Users";
-$messages["manageBlogTemplates"] = "Blog Templates";
-$messages["newBlogTemplate"] = "New Blog Template";
-$messages["blogTemplates"] = "Blog Templates";
-$messages["adminSettings"] = "Administration";
-$messages["Users"] = "Users";
-$messages["createUser"] = "Create User";
-$messages["editSiteUsers"] = "Site Users";
-$messages["Blogs"] = "Manage Blogs";
-$messages["createBlog"] = "Create Blog";
-$messages["editSiteBlogs"] = "Blogs";
-$messages["Locales"] = "Manage Locales";
-$messages["newLocale"] = "New Locale";
-$messages["siteLocales"] = "Site Locales";
-$messages["Templates"] = "Manage Templates";
-$messages["newTemplate"] = "New Template";
-$messages["siteTemplates"] = "Site Templates";
-$messages["GlobalSettings"] = "Global Settings";
-$messages["editSiteSettings"] = "General";
-$messages["summarySettings"] = "Summary";
-$messages["templateSettings"] = "Templates";
-$messages["urlSettings"] = "URLs";
-$messages["emailSettings"] = "Email";
-$messages["uploadSettings"] = "Uploads";
-$messages["helpersSettings"] = "External Helpers";
-$messages["interfacesSettings"] = "Interfaces";
-$messages["securitySettings"] = "Security";
-$messages["bayesianSettings"] = "Bayesian Filter";
-$messages["resourcesSettings"] = "Resources";
-$messages["searchSettings"] = "Search";
-$messages["cleanUpSection"] = "Clean Up";
-$messages["cleanUp"] = "Clean Up";
-$messages["editResourceAlbum"] = "Edit Album";
-$messages["resourceInfo"] = "Edit Resource";
-$messages["editBlog"] = "Edit Blog";
+$messages['newPost'] = 'New Post';
+$messages['Manage'] = 'Manage';
+$messages['managePosts'] = 'Manage Posts';
+$messages['editPosts'] = 'Posts';
+$messages['editArticleCategories'] = 'Categories';
+$messages['newArticleCategory'] = 'New Category';
+$messages['manageLinks'] = 'Manage Links';
+$messages['editLinks'] = 'Links';
+$messages['newLink'] = 'New Link';
+$messages['editLink'] = 'Edit Link';
+$messages['editLinkCategories'] = 'Link Categories';
+$messages['newLinkCategory'] = 'New Link Category';
+$messages['editLinkCategory'] = 'Edit Link Category';
+$messages['manageCustomFields'] = 'Manage Custom Fields';
+$messages['blogCustomFields'] = 'Custom Fields';
+$messages['newCustomField'] = 'New Custom Field';
+$messages['resourceCenter'] = 'Resource Center';
+$messages['resources'] = 'Resources';
+$messages['newResourceAlbum'] = 'New Album';
+$messages['newResource'] = 'New Resource';
+$messages['controlCenter'] = 'Control Center';
+$messages['manageSettings'] = 'Settings';
+$messages['blogSettings'] = 'Blog Settings';
+$messages['userSettings'] = 'User Settings';
+$messages['pluginCenter'] = 'Plugin Center';
+$messages['Stats'] = 'Statistics';
+$messages['manageBlogUsers'] = 'Manage Blog Users';
+$messages['newBlogUser'] = 'New Blog User';
+$messages['showBlogUsers'] = 'Blog Users';
+$messages['manageBlogTemplates'] = 'Blog Templates';
+$messages['newBlogTemplate'] = 'New Blog Template';
+$messages['blogTemplates'] = 'Blog Templates';
+$messages['adminSettings'] = 'Administration';
+$messages['Users'] = 'Users';
+$messages['createUser'] = 'Create User';
+$messages['editSiteUsers'] = 'Site Users';
+$messages['Blogs'] = 'Manage Blogs';
+$messages['createBlog'] = 'Create Blog';
+$messages['editSiteBlogs'] = 'Blogs';
+$messages['Locales'] = 'Manage Locales';
+$messages['newLocale'] = 'New Locale';
+$messages['siteLocales'] = 'Site Locales';
+$messages['Templates'] = 'Manage Templates';
+$messages['newTemplate'] = 'New Template';
+$messages['siteTemplates'] = 'Site Templates';
+$messages['GlobalSettings'] = 'Global Settings';
+$messages['editSiteSettings'] = 'General';
+$messages['summarySettings'] = 'Summary';
+$messages['templateSettings'] = 'Templates';
+$messages['urlSettings'] = 'URLs';
+$messages['emailSettings'] = 'Email';
+$messages['uploadSettings'] = 'Uploads';
+$messages['helpersSettings'] = 'External Helpers';
+$messages['interfacesSettings'] = 'Interfaces';
+$messages['securitySettings'] = 'Security';
+$messages['bayesianSettings'] = 'Bayesian Filter';
+$messages['resourcesSettings'] = 'Resources';
+$messages['searchSettings'] = 'Search';
+$messages['cleanUpSection'] = 'Clean Up';
+$messages['cleanUp'] = 'Clean Up';
+$messages['editResourceAlbum'] = 'Edit Album';
+$messages['resourceInfo'] = 'Edit Resource';
+$messages['editBlog'] = 'Edit Blog';
 
 // new post
-$messages["topic"] = "Topic";
-$messages["topic_help"] = "Title of the post";
-$messages["text"] = "Text";
-$messages["text_help"] = "Text of the post. This part will always appear in the front page";
-$messages["extended_text"] = "Extended Text";
-$messages["extended_text_help"] = "Extended text of the post. This part can optionally appear only in the post page or in the main page. See the blog settings for more information";
-$messages["post_slug"] = "Slug";
-$messages["post_slug_help"] = "The slug will be used to generate nice permanent links";
-$messages["date"] = "Date";
-$messages["post_date_help"] = "Date when this post is going to be published";
-$messages["status"] = "Status";
-$messages["post_status_help"] = "Select one of these status";
-$messages["post_status_published"] = "Published";
-$messages["post_status_draft"] = "Draft";
-$messages["post_status_deleted"] = "Deleted";
-$messages["categories"] = "Categories";
-$messages["post_categories_help"] = "Select one or more categories";
-$messages["post_comments_enabled_help"] = "Enable comments";
-$messages["send_notification_help"] = "Notification of new comments";
-$messages["send_trackback_pings_help"] = "Send trackbacks";
-$messages["send_xmlrpc_pings_help"] = "Send XMLRPC pings";
-$messages["save_draft_and_continue"] = "Save draft";
-$messages["preview"] = "Preview";
-$messages["add_post"] = "Blog this!";
-$messages["error_saving_draft"] = "There was an error saving the draft";
-$messages["draft_saved_ok"] = "Draft saved successfully";
-$messages["error_sending_request"] = "There was an error sending the request";
-$messages["error_no_category_selected"] = "Please select at least one category";
-$messages["error_missing_post_topic"] = "Please type a post topic";
-$messages["error_missing_post_text"] = "Please type some text for the post";
-$messages["error_adding_post"] = "There was an error adding the post";
-$messages["post_added_not_published"] = "Post added successfully but not published";
-$messages["post_added_ok"] = "Post added successfully.";
-$messages["send_notifications_ok"] = "A notification will be sent every time there is a new comment or trackback.";
+$messages['topic'] = 'Topic';
+$messages['topic_help'] = 'Title of the post';
+$messages['text'] = 'Text';
+$messages['text_help'] = 'Text of the post. This part will always appear in the front page';
+$messages['extended_text'] = 'Extended Text';
+$messages['extended_text_help'] = 'Extended text of the post. This part can optionally appear only in the post page or in the main page. See the blog settings for more information';
+$messages['post_slug'] = 'Slug';
+$messages['post_slug_help'] = 'The slug will be used to generate nice permanent links';
+$messages['date'] = 'Date';
+$messages['post_date_help'] = 'Date when this post is going to be published';
+$messages['status'] = 'Status';
+$messages['post_status_help'] = 'Select one of these status';
+$messages['post_status_published'] = 'Published';
+$messages['post_status_draft'] = 'Draft';
+$messages['post_status_deleted'] = 'Deleted';
+$messages['categories'] = 'Categories';
+$messages['post_categories_help'] = 'Select one or more categories';
+$messages['post_comments_enabled_help'] = 'Enable comments';
+$messages['send_notification_help'] = 'Notification of new comments';
+$messages['send_trackback_pings_help'] = 'Send trackbacks';
+$messages['send_xmlrpc_pings_help'] = 'Send XMLRPC pings';
+$messages['save_draft_and_continue'] = 'Save draft';
+$messages['preview'] = 'Preview';
+$messages['add_post'] = 'Blog this!';
+$messages['error_saving_draft'] = 'There was an error saving the draft';
+$messages['draft_saved_ok'] = 'Draft saved successfully';
+$messages['error_sending_request'] = 'There was an error sending the request';
+$messages['error_no_category_selected'] = 'Please select at least one category';
+$messages['error_missing_post_topic'] = 'Please type a post topic';
+$messages['error_missing_post_text'] = 'Please type some text for the post';
+$messages['error_adding_post'] = 'There was an error adding the post';
+$messages['post_added_not_published'] = 'Post added successfully but not published';
+$messages['post_added_ok'] = 'Post added successfully.';
+$messages['send_notifications_ok'] = 'A notification will be sent every time there is a new comment or trackback.';
 
 // posts page
-$messages["show_by"] = "Show By";
-$messages["category"] = "Category";
-$messages["author"] = "Author";
-$messages["post_status_all"] = "All";
-$messages["author_all"] = "All";
-$messages["search_terms"] = "Search terms";
-$messages["show"] = "Show";
-$messages["delete"] = "Delete";
-$messages["actions"] = "Actions";
-$messages["all"] = "All";
-$messages["category_all"] = "All";
-$messages["error_incorrect_article_id"] = "Incorrect article identifier";
-$messages["error_deleting_article"] = "There was an error deleting post \"%s\"";
-$messages["article_deleted_ok"] = "Post \"%s\" deleted successfully";
-$messages["articles_deleted_ok"] = "%s posts deleted successfully";
-$messages["error_deleting_article2"] = "There was an error deleting the post with identifier \"%s\"";
+$messages['show_by'] = 'Show By';
+$messages['category'] = 'Category';
+$messages['author'] = 'Author';
+$messages['post_status_all'] = 'All';
+$messages['author_all'] = 'All';
+$messages['search_terms'] = 'Search terms';
+$messages['show'] = 'Show';
+$messages['delete'] = 'Delete';
+$messages['actions'] = 'Actions';
+$messages['all'] = 'All';
+$messages['category_all'] = 'All';
+$messages['error_incorrect_article_id'] = 'Incorrect article identifier';
+$messages['error_deleting_article'] = 'There was an error deleting post "%s"';
+$messages['article_deleted_ok'] = 'Post "%s" deleted successfully';
+$messages['articles_deleted_ok'] = '%s posts deleted successfully';
+$messages['error_deleting_article2'] = 'There was an error deleting the post with identifier "%s"';
 
 // edit post page
-$messages["update"] = "Update";
-$messages["editPost"] = "Edit Post";
-$messages["error_fetching_post"] = "There was an error fetching the article";
-$messages["post_updated_ok"] = "Post \"%s\" updated successfully";
-$messages["error_updating_post"] = "There was an error updating the post";
-$messages["notification_added"] = "You will receive notifications of new comments or trackbacks";
-$messages["notification_removed"] = "No notifications about new comments or trackbacks will be sent";
+$messages['update'] = 'Update';
+$messages['editPost'] = 'Edit Post';
+$messages['error_fetching_post'] = 'There was an error fetching the article';
+$messages['post_updated_ok'] = 'Post "%s" updated successfully';
+$messages['error_updating_post'] = 'There was an error updating the post';
+$messages['notification_added'] = 'You will receive notifications of new comments or trackbacks';
+$messages['notification_removed'] = 'No notifications about new comments or trackbacks will be sent';
 
 // post comments
-$messages["url"] = "URL";
-$messages["comment_status_all"] = "All";
-$messages["comment_status_spam"] = "Spam";
-$messages["comment_status_nonspam"] = "No Spam";
-$messages["error_fetching_comments"] = "There was an error while fetching the article comments";
-$messages["error_deleting_comments"] = "There was an error removing the comments or there was no comment selected";
-$messages["comment_deleted_ok"] = "Comment \"%s\" deleted successfully";
-$messages["comments_deleted_ok"] = "%s comments deleted successfully";
-$messages["error_deleting_comment"] = "There was an error deleting comment \"%s\"";
-$messages["error_deleting_comment2"] = "There was an error deleting comment with identifier %s";
-$messages["editComments"] = "Comments";
-$messages["mark_as_spam"] = "Mark as spam";
-$messages["mark_as_no_spam"] = "Mark as no spam";
-$messages["error_incorrect_comment_id"] = "The comment identifier is not correct";
-$messages["error_marking_comment_as_spam"] = "There was an error marking the comment as spam";
-$messages["comment_marked_as_spam_ok"] = "The comment was marked as spam successfully";
-$messages["error_marking_comment_as_nonspam"] = "There was an error marking the comment as no spam";
-$messages["comment_marked_as_nonspam_ok"] = "The comment was marked as no spam successfully";
+$messages['url'] = 'URL';
+$messages['comment_status_all'] = 'All';
+$messages['comment_status_spam'] = 'Spam';
+$messages['comment_status_nonspam'] = 'No Spam';
+$messages['error_fetching_comments'] = 'There was an error while fetching the article comments';
+$messages['error_deleting_comments'] = 'There was an error removing the comments or there was no comment selected';
+$messages['comment_deleted_ok'] = 'Comment "%s" deleted successfully';
+$messages['comments_deleted_ok'] = '%s comments deleted successfully';
+$messages['error_deleting_comment'] = 'There was an error deleting comment "%s"';
+$messages['error_deleting_comment2'] = 'There was an error deleting comment with identifier %s';
+$messages['editComments'] = 'Comments';
+$messages['mark_as_spam'] = 'Mark as spam';
+$messages['mark_as_no_spam'] = 'Mark as no spam';
+$messages['error_incorrect_comment_id'] = 'The comment identifier is not correct';
+$messages['error_marking_comment_as_spam'] = 'There was an error marking the comment as spam';
+$messages['comment_marked_as_spam_ok'] = 'The comment was marked as spam successfully';
+$messages['error_marking_comment_as_nonspam'] = 'There was an error marking the comment as no spam';
+$messages['comment_marked_as_nonspam_ok'] = 'The comment was marked as no spam successfully';
 
 // post trackbacks
-$messages["blog"] = "Blog";
-$messages["excerpt"] = "Excerpt";
-$messages["error_fetching_trackbacks"] = "There was an error while fetching the trackbacks";
-$messages["error_deleting_trackbacks"] = "There was an error deleting the trackbacks or there were no items selected";
-$messages["error_deleting_trackback"] = "There was an error while deleting trackback \"%s\"";
-$messages["error_deleting_trackback2"] = "There was an error while deleting trackback with identifier \"%s\"";
-$messages["trackback_deleted_ok"] = "Trackback \"%s\" deleted successfully";
-$messages["trackbacks_deleted_ok"] = "%s trackbacks deleted successfully";
-$messages["editTrackbacks"] = "Trackbacks";
+$messages['blog'] = 'Blog';
+$messages['excerpt'] = 'Excerpt';
+$messages['error_fetching_trackbacks'] = 'There was an error while fetching the trackbacks';
+$messages['error_deleting_trackbacks'] = 'There was an error deleting the trackbacks or there were no items selected';
+$messages['error_deleting_trackback'] = 'There was an error while deleting trackback "%s"';
+$messages['error_deleting_trackback2'] = 'There was an error while deleting trackback with identifier "%s"';
+$messages['trackback_deleted_ok'] = 'Trackback "%s" deleted successfully';
+$messages['trackbacks_deleted_ok'] = '%s trackbacks deleted successfully';
+$messages['editTrackbacks'] = 'Trackbacks';
 
 // post statistics
-$messages["referrer"] = "Referrer";
-$messages["hits"] = "Hits";
-$messages["error_no_items_selected"] = "No items were selected to remove";
-$messages["error_deleting_referrer"] = "There was an error deleting referrer \"%s\"";
-$messages["error_deleting_referrer2"] = "There was an error deleting referrer with identifier \"%s\"";
-$messages["referrer_deleted_ok"] = "Referrer \"%s\" deleted successfully";
-$messages["referrers_deleted_ok"] = "%s referrers deleted successfully";
+$messages['referrer'] = 'Referrer';
+$messages['hits'] = 'Hits';
+$messages['error_no_items_selected'] = 'No items were selected to remove';
+$messages['error_deleting_referrer'] = 'There was an error deleting referrer "%s"';
+$messages['error_deleting_referrer2'] = 'There was an error deleting referrer with identifier "%s"';
+$messages['referrer_deleted_ok'] = 'Referrer "%s" deleted successfully';
+$messages['referrers_deleted_ok'] = '%s referrers deleted successfully';
 
 // categories
-$messages["posts"] = "Posts";
-$messages["show_in_main_page"] = "Show in front page";
-$messages["error_incorrect_category_id"] = "The category identifier is not correct or no items were selected";
-$messages["error_category_has_articles"] = "Category \"%s\" is used by some articles. Please edit the articles first and then remove the category";
-$messages["category_deleted_ok"] = "Category \"%s\" deleted successfully";
-$messages["categories_deleted_ok"] = "%s categories deleted successfully";
-$messages["error_deleting_category"] = "There was an error deleting category \"%s\"";
-$messages["error_deleting_category2"] = "There was an error deleting category with identifier \"%s\"";
-$messages["yes"] = "Yes";
-$messages["no"] = "No";
+$messages['posts'] = 'Posts';
+$messages['show_in_main_page'] = 'Show in front page';
+$messages['error_incorrect_category_id'] = 'The category identifier is not correct or no items were selected';
+$messages['error_category_has_articles'] = 'Category "%s" is used by some articles. Please edit the articles first and then remove the category';
+$messages['category_deleted_ok'] = 'Category "%s" deleted successfully';
+$messages['categories_deleted_ok'] = '%s categories deleted successfully';
+$messages['error_deleting_category'] = 'There was an error deleting category "%s"';
+$messages['error_deleting_category2'] = 'There was an error deleting category with identifier "%s"';
+$messages['yes'] = 'Yes';
+$messages['no'] = 'No';
 
 // new category
-$messages["name"] = "Name";
-$messages["category_name_help"] = "Name that will be used to display the category";
-$messages["description"] = "Description";
-$messages["category_description_help"] = "Longer description for this category";
-$messages["show_in_main_page_help"] = "Whether posts under this category should be shown in the main page, or only when this particular category is browsed";
-$messages["error_empty_name"] = "You must provide a name";
-$messages["error_empty_description"] = "You must provide a description";
-$messages["error_adding_article_category"] = "There was an error adding the new category. Please check the data and try again";
-$messages["category_added_ok"] = "Category \"%s\" was successfully added to the blog";
-$messages["add"] = "Add";
-$messages["reset"] = "Reset";
+$messages['name'] = 'Name';
+$messages['category_name_help'] = 'Name that will be used to display the category';
+$messages['description'] = 'Description';
+$messages['category_description_help'] = 'Longer description for this category';
+$messages['show_in_main_page_help'] = 'Whether posts under this category should be shown in the main page, or only when this particular category is browsed';
+$messages['error_empty_name'] = 'You must provide a name';
+$messages['error_empty_description'] = 'You must provide a description';
+$messages['error_adding_article_category'] = 'There was an error adding the new category. Please check the data and try again';
+$messages['category_added_ok'] = 'Category "%s" was successfully added to the blog';
+$messages['add'] = 'Add';
+$messages['reset'] = 'Reset';
 
 // update category
-$messages["error_updating_article_category"] = "There was an error updating the article category";
-$messages["error_fetching_category"] = "There was an error fetching the category";
-$messages["article_category_updated_ok"] = "Category \"%s\" was updated successfully";
+$messages['error_updating_article_category'] = 'There was an error updating the article category';
+$messages['error_fetching_category'] = 'There was an error fetching the category';
+$messages['article_category_updated_ok'] = 'Category "%s" was updated successfully';
 
 // links
-$messages["feed"] = "Feed";
-$messages["error_no_links_selected"] = "The link identifier was incorrect or no items were selected to remove";
-$messages["error_incorrect_link_id"] = "The link identifier was not correct";
-$messages["error_removing_link"] = "There was an error removing link \"%s\"";
-$messages["error_removing_link2"] = "There was an error removing link with identifier \"%s\"";
-$messages["link_deleted_ok"] = "Link \"%s\" was deleted successfully";
-$messages["links_deleted_ok"] = "%s links deleted successfully";
+$messages['feed'] = 'Feed';
+$messages['error_no_links_selected'] = 'The link identifier was incorrect or no items were selected to remove';
+$messages['error_incorrect_link_id'] = 'The link identifier was not correct';
+$messages['error_removing_link'] = 'There was an error removing link "%s"';
+$messages['error_removing_link2'] = 'There was an error removing link with identifier "%s"';
+$messages['link_deleted_ok'] = 'Link "%s" was deleted successfully';
+$messages['links_deleted_ok'] = '%s links deleted successfully';
 
 // new link
-$messages["link_name_help"] = "Name given to this link";
-$messages["link_url_help"] = "Address where this link points";
-$messages["link_description_help"] = "Brief description of this link";
-$messages["link_feed_help"] = "A link to any of the RSS or Atom feeds of think can also be provided";
-$messages["link_category_help"] = "Choose one of the available link categories";
-$messages["error_adding_link"] = "There was an error adding the link. Please check the data and try again";
-$messages["error_invalid_url"] = "The address is not correct";
-$messages["link_added_ok"] = "Link \"%s\" was successfully added";
+$messages['link_name_help'] = 'Name given to this link';
+$messages['link_url_help'] = 'Address where this link points';
+$messages['link_description_help'] = 'Brief description of this link';
+$messages['link_feed_help'] = 'A link to any of the RSS or Atom feeds of think can also be provided';
+$messages['link_category_help'] = 'Choose one of the available link categories';
+$messages['error_adding_link'] = 'There was an error adding the link. Please check the data and try again';
+$messages['error_invalid_url'] = 'The address is not correct';
+$messages['link_added_ok'] = 'Link "%s" was successfully added';
 
 // update link
-$messages["error_updating_link"] = "There was an error updating the link. Please check the data and try again";
-$messages["error_fetching_link"] = "There was an error fetching the link";
-$messages["link_updated_ok"] = "Link \"%s\" was updated successfully";
+$messages['error_updating_link'] = 'There was an error updating the link. Please check the data and try again';
+$messages['error_fetching_link'] = 'There was an error fetching the link';
+$messages['link_updated_ok'] = 'Link "%s" was updated successfully';
 
 // link categories
-$messages["links"] = "Links";
-$messages["error_invalid_link_category_id"] = "The link category identifier was not correct or there was no link category selected";
-$messages["error_links_in_link_category"] = "Link category \"%s\" is used by some links. Modify the links first and try again";
-$messages["error_removing_link_category"] = "There was an error removing link category \"%s\"";
-$messages["link_category_deleted_ok"] = "Link category \"%s\" deleted succesfully";
-$messages["link_categories_deleted_ok"] = "%s link categories deleted succesfully";
-$messages["error_removing_link_category2"] = "There was an error removing link category with identifier \"%s\"";
+$messages['links'] = 'Links';
+$messages['error_invalid_link_category_id'] = 'The link category identifier was not correct or there was no link category selected';
+$messages['error_links_in_link_category'] = 'Link category "%s" is used by some links. Modify the links first and try again';
+$messages['error_removing_link_category'] = 'There was an error removing link category "%s"';
+$messages['link_category_deleted_ok'] = 'Link category "%s" deleted succesfully';
+$messages['link_categories_deleted_ok'] = '%s link categories deleted succesfully';
+$messages['error_removing_link_category2'] = 'There was an error removing link category with identifier "%s"';
 
 // new link category
-$messages["link_category_name_help"] = "Name given to this link category";
-$messages["error_adding_link_category"] = "There was an error adding the new link category";
-$messages["link_category_added_ok"] = "Link category \"%s\" was successfully added";
+$messages['link_category_name_help'] = 'Name given to this link category';
+$messages['error_adding_link_category'] = 'There was an error adding the new link category';
+$messages['link_category_added_ok'] = 'Link category "%s" was successfully added';
 
 // edit link category
-$messages["error_updating_link_category"] = "There was an error updating the link category. Please check the data and try again";
-$messages["link_category_updated_ok"] = "Link category \"%s\" updated successfully";
-$messages["error_fetching_link_category"] = "There was an error fetching the link category";
+$messages['error_updating_link_category'] = 'There was an error updating the link category. Please check the data and try again';
+$messages['link_category_updated_ok'] = 'Link category "%s" updated successfully';
+$messages['error_fetching_link_category'] = 'There was an error fetching the link category';
 
 // custom fields
-$messages["type"] = "Type";
-$messages["hidden"] = "Hidden";
-$messages["fields_deleted_ok"] = "%s custom fields deleted successfully";
-$messages["field_deleted_ok"] = "Custom field \"%s\" deleted successfully";
-$messages["error_deleting_field"] = "There was an error deleting custom field \"%s\"";
-$messages["error_deleting_field2"] = "There was an error deleting custom field with identifier \"%s\"";
-$messages["error_incorrect_field_id"] = "The custom field identifier was not valid";
+$messages['type'] = 'Type';
+$messages['hidden'] = 'Hidden';
+$messages['fields_deleted_ok'] = '%s custom fields deleted successfully';
+$messages['field_deleted_ok'] = 'Custom field "%s" deleted successfully';
+$messages['error_deleting_field'] = 'There was an error deleting custom field "%s"';
+$messages['error_deleting_field2'] = 'There was an error deleting custom field with identifier "%s"';
+$messages['error_incorrect_field_id'] = 'The custom field identifier was not valid';
 
 // new custom field
-$messages["field_name_help"] = "Identifer that will be used to refer to the value of this field in posts";
-$messages["field_description_help"] = "Brief description of this field that will be shown when adding or editing posts";
-$messages["field_type_help"] = "Select one of the available field types";
-$messages["field_hidden_help"] = "If a field is hidden, it will not be shown when adding a or editing a post. This feature is mainly used by plugins";
-$messages["error_adding_custom_field"] = "There was an error adding the custom field. Please check the data and try again";
-$messages["custom_field_added_ok"] = "Custom field \"%s\" added successfully";
-$messages["text_field"] = "Text field";
-$messages["text_area"] = "Text box";
-$messages["checkbox"] = "Checkbox";
-$messages["date_field"] = "Date chooser";
+$messages['field_name_help'] = 'Identifer that will be used to refer to the value of this field in posts';
+$messages['field_description_help'] = 'Brief description of this field that will be shown when adding or editing posts';
+$messages['field_type_help'] = 'Select one of the available field types';
+$messages['field_hidden_help'] = 'If a field is hidden, it will not be shown when adding a or editing a post. This feature is mainly used by plugins';
+$messages['error_adding_custom_field'] = 'There was an error adding the custom field. Please check the data and try again';
+$messages['custom_field_added_ok'] = 'Custom field "%s" added successfully';
+$messages['text_field'] = 'Text field';
+$messages['text_area'] = 'Text box';
+$messages['checkbox'] = 'Checkbox';
+$messages['date_field'] = 'Date chooser';
 
 // edit custom field
-$messages["error_fetching_custom_field"] = "There was an error fetching the custom field";
-$messages["error_updating_custom_field"] = "There was an error updating the custom field. Please check the data and try again";
-$messages["custom_field_updated_ok"] = "Custom field \"%s\" updated successfully";
+$messages['error_fetching_custom_field'] = 'There was an error fetching the custom field';
+$messages['error_updating_custom_field'] = 'There was an error updating the custom field. Please check the data and try again';
+$messages['custom_field_updated_ok'] = 'Custom field "%s" updated successfully';
 
 // resources
-$messages["root_album"] = "Root album";
-$messages["num_resources"] = "Number of resources";
-$messages["total_size"] = "Total size";
-$messages["album"] = "Album";
-$messages["error_incorrect_album_id"] = "The album identifier is not correct";
-$messages["error_base_storage_folder_missing_or_unreadable"] = "It was not possible for pLog to create the necessary folders where resources are going to be installed. This might be due to several reasons, such as your PHP installation running with safe mode enabled or your user not having enough permissions to do so. You may still try to carry out the operation manually, by creating the following folders: <br/><br/>%s<br/><br/>If these folders already exist please make sure that they can be read and written by the user running the web server.";
-$messages["items_deleted_ok"] = "%s items deleted successfully";
-$messages["error_album_has_children"] = "Album \"%s\" has children. Please edit first the album and try again";
-$messages["item_deleted_ok"] = "Item \"%s\"deleted successfully";
-$messages["error_deleting_album"] = "There was an error deleting album \"%s\"";
-$messages["error_deleting_album2"] = "There was an error deleting album with identifier \"%s\"";
-$messages["error_deleting_resource"] = "There was an error deleting resource \"%s\"";
-$messages["error_deleting_resource2"] = "There was an error deleting resource with identifier \"%s\"";
-$messages["error_no_resources_selected"] = "No items were selected to delete";
-$messages["resource_deleted_ok"] = "Resource \"%s\" was deleted successfully";
-$messages["album_deleted_ok"] = "Album \"%s\" was deleted successfully";
+$messages['root_album'] = 'Root album';
+$messages['num_resources'] = 'Number of resources';
+$messages['total_size'] = 'Total size';
+$messages['album'] = 'Album';
+$messages['error_incorrect_album_id'] = 'The album identifier is not correct';
+$messages['error_base_storage_folder_missing_or_unreadable'] = 'It was not possible for pLog to create the necessary folders where resources are going to be installed. This might be due to several reasons, such as your PHP installation running with safe mode enabled or your user not having enough permissions to do so. You may still try to carry out the operation manually, by creating the following folders: <br/><br/>%s<br/><br/>If these folders already exist please make sure that they can be read and written by the user running the web server.';
+$messages['items_deleted_ok'] = '%s items deleted successfully';
+$messages['error_album_has_children'] = 'Album "%s" has children. Please edit first the album and try again';
+$messages['item_deleted_ok'] = 'Item "%s"deleted successfully';
+$messages['error_deleting_album'] = 'There was an error deleting album "%s"';
+$messages['error_deleting_album2'] = 'There was an error deleting album with identifier "%s"';
+$messages['error_deleting_resource'] = 'There was an error deleting resource "%s"';
+$messages['error_deleting_resource2'] = 'There was an error deleting resource with identifier "%s"';
+$messages['error_no_resources_selected'] = 'No items were selected to delete';
+$messages['resource_deleted_ok'] = 'Resource "%s" was deleted successfully';
+$messages['album_deleted_ok'] = 'Album "%s" was deleted successfully';
 
 // new album
-$messages["album_name_help"] = "Short name for the new album";
-$messages["parent"] = "Parent";
-$messages["no_parent"] = "No parent";
-$messages["parent_album_help"] = "Use this to have albums within albums and better organize your files";
-$messages["album_description_help"] = "Longer description of the contents of this album";
-$messages["error_adding_album"] = "There was an error adding the new album. Please check the data and try again";
-$messages["album_added_ok"] = "Album \"%s\" successfully added";
+$messages['album_name_help'] = 'Short name for the new album';
+$messages['parent'] = 'Parent';
+$messages['no_parent'] = 'No parent';
+$messages['parent_album_help'] = 'Use this to have albums within albums and better organize your files';
+$messages['album_description_help'] = 'Longer description of the contents of this album';
+$messages['error_adding_album'] = 'There was an error adding the new album. Please check the data and try again';
+$messages['album_added_ok'] = 'Album "%s" successfully added';
 
 // edit album
-$messages["error_incorrect_album_id"] = "The album identifier is not correct";
-$messages["error_fetching_album"] = "There was an error fetching the album";
-$messages["error_updating_album"] = "There was an error updating the album. Please check the data and try again";
-$messages["album_updated_ok"] = "Album \"%s\" updated successfully";
-$messages["show_album_help"] = "If disabled, the album will not be shown in the list of albums available in this blog";
+$messages['error_incorrect_album_id'] = 'The album identifier is not correct';
+$messages['error_fetching_album'] = 'There was an error fetching the album';
+$messages['error_updating_album'] = 'There was an error updating the album. Please check the data and try again';
+$messages['album_updated_ok'] = 'Album "%s" updated successfully';
+$messages['show_album_help'] = 'If disabled, the album will not be shown in the list of albums available in this blog';
 
 // new resource
-$messages["file"] = "File";
-$messages["resource_file_help"] = "File that will be added to the current blog. Use the 'Add field' link to upload more than one file at the same time";
-$messages["add_field"] = "Add field";
-$messages["resource_description_help"] = "Longer description of the contents of this file";
-$messages["resource_album_help"] = "Select the album to which this file will be added";
-$messages["error_no_resource_uploaded"] = "There was no file selected to upload";
-$messages["resource_added_ok"] = "Resource \"%s\" added successfully";
-$messages["error_resource_forbidden_extension"] = "The file was not added because it is of a forbidden type";
-$messages["error_resource_too_big"] = "The file was not added because it is too big";
-$messages["error_uploads_disabled"] = "The file was not added because uploads have been disabled";
-$messages["error_quota_exceeded"] = "The file was not added because resource quota has been exceeded";
-$messages["error_adding_resource"] = "There was an error adding the resource file";
+$messages['file'] = 'File';
+$messages['resource_file_help'] = 'File that will be added to the current blog. Use the "Add field" link to upload more than one file at the same time';
+$messages['add_field'] = 'Add field';
+$messages['resource_description_help'] = 'Longer description of the contents of this file';
+$messages['resource_album_help'] = 'Select the album to which this file will be added';
+$messages['error_no_resource_uploaded'] = 'There was no file selected to upload';
+$messages['resource_added_ok'] = 'Resource "%s" added successfully';
+$messages['error_resource_forbidden_extension'] = 'The file was not added because it is of a forbidden type';
+$messages['error_resource_too_big'] = 'The file was not added because it is too big';
+$messages['error_uploads_disabled'] = 'The file was not added because uploads have been disabled';
+$messages['error_quota_exceeded'] = 'The file was not added because resource quota has been exceeded';
+$messages['error_adding_resource'] = 'There was an error adding the resource file';
 
 // edit resource
-$messages["information"] = "Information";
-$messages["size"] = "Size";
-$messages["format"] = "Format";
-$messages["dimensions"] = "Dimensions";
-$messages["bits_per_sample"] = "Bits per sample";
-$messages["thumbnail_format"] = "Thumbnail format";
-$messages["regenerate_preview"] = "Regenerate preview";
-$messages["error_fetching_resource"] = "There was an error fetching the resource";
-$messages["error_updating_resource"] = "There was an error updating the resource";
-$messages["resource_updated_ok"] = "Resource \"%s\" updated successfully";
+$messages['information'] = 'Information';
+$messages['size'] = 'Size';
+$messages['format'] = 'Format';
+$messages['dimensions'] = 'Dimensions';
+$messages['bits_per_sample'] = 'Bits per sample';
+$messages['thumbnail_format'] = 'Thumbnail format';
+$messages['regenerate_preview'] = 'Regenerate preview';
+$messages['error_fetching_resource'] = 'There was an error fetching the resource';
+$messages['error_updating_resource'] = 'There was an error updating the resource';
+$messages['resource_updated_ok'] = 'Resource "%s" updated successfully';
 
 // blog settings
-$messages["blog_link"] = "Blog link";
-$messages["blog_link_help"] = "Permanent link to this blog";
-$messages["blog_name_help"] = "Title for this blog";
-$messages["blog_description_help"] = "Longer description about the contents of this blog";
-$messages["language"] = "Language";
-$messages["blog_language_help"] = "Language used to display the texts of this blog, both in the public and administration side";
-$messages["max_main_page_items"] = "Number of items in the main page";
-$messages["max_main_mage_items_help"] = "Number of posts that should be displayed at all times in the main page of the blog";
-$messages["max_recent_items"] = "Number of recent items";
-$messages["max_recent_items_help"] = "Maximum number of posts that will be shown as 'recent' in the front page";
-$messages["template"] = "Template";
-$messages["choose"] = "Choose";
-$messages["blog_template_help"] = "Template that will be used to display the contents of the blog. This list includes global templates plus all the templates installed only for this blog";
-$messages["use_read_mode"] = "Use 'more...' link in posts";
-$messages["use_read_more_help"] = "If enabled, only the text typed in the 'Text' textbox will be shown in the main page. In order to display the 'Extended text', a 'more...' link will be added to each post";
-$messages["enable_wysiwyg"] = "Enable the visual editor of posts";
-$messages["enable_wysiwyg_help"] = "Enables a more powerful, visual editor of HTML mark up. The editor only works in Internet Explorer 5.5 or higher or Mozilla 1.3 or higher";
-$messages["enable_comments"] = "Enable comments by default";
-$messages["enable_comments_help"] = "Enable comments for all posts by default. Comments can still be enabled/disabled for certain posts when creating new posts or editing old ones";
-$messages["show_future_posts"] = "Show future posts in the calendar";
-$messages["show_future_posts_help"] = "Whether posts which have a date in the future should appear in the calendar and visible to users";
-$messages["comments_order"] = "Comments order";
-$messages["comments_order_help"] = "Order in which comments should be displayed in the front page";
-$messages["oldest_first"] = "Oldest first";
-$messages["newest_first"] = "Newest first";
+$messages['blog_link'] = 'Blog link';
+$messages['blog_link_help'] = 'Permanent link to this blog';
+$messages['blog_name_help'] = 'Title for this blog';
+$messages['blog_description_help'] = 'Longer description about the contents of this blog';
+$messages['language'] = 'Language';
+$messages['blog_language_help'] = 'Language used to display the texts of this blog, both in the public and administration side';
+$messages['max_main_page_items'] = 'Number of items in the main page';
+$messages['max_main_mage_items_help'] = 'Number of posts that should be displayed at all times in the main page of the blog';
+$messages['max_recent_items'] = 'Number of recent items';
+$messages['max_recent_items_help'] = 'Maximum number of posts that will be shown as recent in the front page';
+$messages['template'] = 'Template';
+$messages['choose'] = 'Choose';
+$messages['blog_template_help'] = 'Template that will be used to display the contents of the blog. This list includes global templates plus all the templates installed only for this blog';
+$messages['use_read_mode'] = 'Use "more..." link in posts';
+$messages['use_read_more_help'] = 'If enabled, only the text typed in the "Text" textbox will be shown in the main page. In order to display the "Extended text", a "more..." link will be added to each post';
+$messages['enable_wysiwyg'] = 'Enable the visual editor of posts';
+$messages['enable_wysiwyg_help'] = 'Enables a more powerful, visual editor of HTML mark up. The editor only works in Internet Explorer 5.5 or higher or Mozilla 1.3 or higher';
+$messages['enable_comments'] = 'Enable comments by default';
+$messages['enable_comments_help'] = 'Enable comments for all posts by default. Comments can still be enabled/disabled for certain posts when creating new posts or editing old ones';
+$messages['show_future_posts'] = 'Show future posts in the calendar';
+$messages['show_future_posts_help'] = 'Whether posts which have a date in the future should appear in the calendar and visible to users';
+$messages['comments_order'] = 'Comments order';
+$messages['comments_order_help'] = 'Order in which comments should be displayed in the front page';
+$messages['oldest_first'] = 'Oldest first';
+$messages['newest_first'] = 'Newest first';
 
-$messages["categories_order"] = "Categories order";
-$messages["categories_order_help"] = "Order in which categories should be displayed in the front page";
-$messages["most_recent_updated_first"] = "Most recently updated first";
-$messages["alphabetical_order"] = "Alphabetical order";
-$messages["reverse_alphabetical_order"] = "Reverse alphabetical order";
-$messages["most_articles_first"] = "Most articles first";
-$messages["link_categories_order"] = "Link categories order";
-$messages["link_categories_order_help"] = "Order in which link categores should appear in the front page";
-$messages["most_links_first"] = "Most links first";
-$messages["most_links_last"] = "Most links last";
-$messages["time_offset"] = "Time offset";
-$messages["time_offset_help"] = "Time difference in hours that will be dynamically added to each date and time in the blog";
-$messages["close"] = "Close";
-$messages["select"] = "Select";
-$messages["error_updating_settings"] = "There was an error updating the blog settings. Please check the data and try again";
-$messages["error_invalid_number"] = "The number is not correct";
-$messages["blog_settings_updated_ok"] = "Blog settings updated successfully";
+$messages['categories_order'] = 'Categories order';
+$messages['categories_order_help'] = 'Order in which categories should be displayed in the front page';
+$messages['most_recent_updated_first'] = 'Most recently updated first';
+$messages['alphabetical_order'] = 'Alphabetical order';
+$messages['reverse_alphabetical_order'] = 'Reverse alphabetical order';
+$messages['most_articles_first'] = 'Most articles first';
+$messages['link_categories_order'] = 'Link categories order';
+$messages['link_categories_order_help'] = 'Order in which link categores should appear in the front page';
+$messages['most_links_first'] = 'Most links first';
+$messages['most_links_last'] = 'Most links last';
+$messages['time_offset'] = 'Time offset';
+$messages['time_offset_help'] = 'Time difference in hours that will be dynamically added to each date and time in the blog';
+$messages['close'] = 'Close';
+$messages['select'] = 'Select';
+$messages['error_updating_settings'] = 'There was an error updating the blog settings. Please check the data and try again';
+$messages['error_invalid_number'] = 'The number is not correct';
+$messages['blog_settings_updated_ok'] = 'Blog settings updated successfully';
 
 // user settings
-$messages["username_help"] = "Public username. It cannot be changed";
-$messages["full_name"] = "Full name";
-$messages["full_name_help"] = "Complete full name";
-$messages["password_help"] = "Type and confirm a new password, or leave empty for no change";
-$messages["confirm_password"] = "Confirm password";
-$messages["email"] = "Email";
-$messages["email_help"] = "Email address where notifications will be sent";
-$messages["bio"] = "Your bio";
-$messages["bio_help"] = "A longer description of yourself can be provided here";
-$messages["picture"] = "Picture";
-$messages["user_picture_help"] = "Please select a picture form the ones uploaded to this blog as your personal picture";
-$messages["error_invalid_password"] = "The password is not correct. Please make sure that it is not too short";
-$messages["error_passwords_dont_match"] = "Sorry, passwords do not match";
-$messages["error_incorrect_email_address"] = "The email address is not correct";
-$messages["error_updating_user_settings"] = "There was an error updating your user settings. Please check the data and try again";
-$messages["user_settings_updated_ok"] = "User settings updated successfully";
+$messages['username_help'] = 'Public username. It cannot be changed';
+$messages['full_name'] = 'Full name';
+$messages['full_name_help'] = 'Complete full name';
+$messages['password_help'] = 'Type and confirm a new password, or leave empty for no change';
+$messages['confirm_password'] = 'Confirm password';
+$messages['email'] = 'Email';
+$messages['email_help'] = 'Email address where notifications will be sent';
+$messages['bio'] = 'Your bio';
+$messages['bio_help'] = 'A longer description of yourself can be provided here';
+$messages['picture'] = 'Picture';
+$messages['user_picture_help'] = 'Please select a picture form the ones uploaded to this blog as your personal picture';
+$messages['error_invalid_password'] = 'The password is not correct. Please make sure that it is not too short';
+$messages['error_passwords_dont_match'] = 'Sorry, passwords do not match';
+$messages['error_incorrect_email_address'] = 'The email address is not correct';
+$messages['error_updating_user_settings'] = 'There was an error updating your user settings. Please check the data and try again';
+$messages['user_settings_updated_ok'] = 'User settings updated successfully';
 
 // plugin center
-$messages["identifier"] = "Identifier";
+$messages['identifier'] = 'Identifier';
 
 // blog users
-$messages["revoke_permissions"] = "Revoke permissions";
-$messages["error_no_users_selected"] = "There were no users selected";
-$messages["user_removed_from_blog_ok"] = "User \"%s\" was removed from this blog successfully";
-$messages["users_removed_from_blog_ok"] = "%s users removed from this blog successfully";
-$messages["error_removing_user_from_blog"] = "There was an error removing user \"%s\" from this blog";
-$messages["error_removing_user_from_blog2"] = "There was an error removing user with identifier \"%s\" from this blog";
+$messages['revoke_permissions'] = 'Revoke permissions';
+$messages['error_no_users_selected'] = 'There were no users selected';
+$messages['user_removed_from_blog_ok'] = 'User "%s" was removed from this blog successfully';
+$messages['users_removed_from_blog_ok'] = '%s users removed from this blog successfully';
+$messages['error_removing_user_from_blog'] = 'There was an error removing user "%s" from this blog';
+$messages['error_removing_user_from_blog2'] = 'There was an error removing user with identifier "%s" from this blog';
 
 // new blog user
-$messages["new_blog_username_help"] = "Username of the user to whom you would like to give access to this blog. New users will only have access to the 'Manage' and 'Resources' sections.";
-$messages["send_notification"] = "Send notification";
-$messages["send_user_notification_help"] = "Send an email notification to this user";
-$messages["notification_text"] = "Notification Text";
-$messages["notification_text_help"] = "Text that will be included in the notification message";
-$messages["error_adding_user"] = "There was an error granting access to the user. Please check the data and try again";
-$messages["error_empty_text"] = "You must provide some text";
-$messages["error_adding_user"] = "There was an error adding the user. Please check the data and try again";
-$messages["error_invalid_user"] = "The user \"%s\" is not valid or does not exist";
-$messages["user_added_to_blog_ok"] = "User \"%s\" has been given access to this blog successfully";
+$messages['new_blog_username_help'] = 'Username of the user to whom you would like to give access to this blog. New users will only have access to the "Manage" and "Resources" sections.';
+$messages['send_notification'] = 'Send notification';
+$messages['send_user_notification_help'] = 'Send an email notification to this user';
+$messages['notification_text'] = 'Notification Text';
+$messages['notification_text_help'] = 'Text that will be included in the notification message';
+$messages['error_adding_user'] = 'There was an error granting access to the user. Please check the data and try again';
+$messages['error_empty_text'] = 'You must provide some text';
+$messages['error_adding_user'] = 'There was an error adding the user. Please check the data and try again';
+$messages['error_invalid_user'] = 'The user "%s" is not valid or does not exist';
+$messages['user_added_to_blog_ok'] = 'User "%s" has been given access to this blog successfully';
 
 // blog templates
-$messages["error_no_templates_selected"] = "There were no templates selected";
-$messages["error_template_is_current"] = "Template \"%s\" cannot be deleted because it is the current one";
-$messages["error_removing_template"] = "There was an error deleting template \"%s\"";
-$messages["template_removed_ok"] = "Template \"%s\" deleted successfully";
-$messages["templates_removed_ok"] = "%s templates deleted successfully";
+$messages['error_no_templates_selected'] = 'There were no templates selected';
+$messages['error_template_is_current'] = 'Template "%s" cannot be deleted because it is the current one';
+$messages['error_removing_template'] = 'There was an error deleting template "%s"';
+$messages['template_removed_ok'] = 'Template "%s" deleted successfully';
+$messages['templates_removed_ok'] = '%s templates deleted successfully';
 
 // new blog template
-$messages["template_installed_ok"] = "Template \"%s\" added succesfully";
-$messages["error_installing_template"] = "There was an error installing template \"%s\"";
-$messages["error_missing_base_files"] = "Some of the template files are missing";
-$messages["error_add_template_disabled"] = "New templates cannot be added because this feature has been disabled in this site";
-$messages["error_must_upload_file"] = "There was no template package uploaded";
-$messages["error_uploads_disabled"] = "Uploads have been disabled in this site";
-$messages["error_no_new_templates_found"] = "No new templates were found";
-$messages["error_template_not_inside_folder"] = "The files used in the template set must be inside a folder with the same name as the template set";
-$messages["error_missing_base_files"] = "Some of the basic template files are missing";
-$messages["error_unpacking"] = "There was an error unpacking the file";
-$messages["error_forbidden_extensions"] = "The template set included files with forbidden extensions";
-$messages["error_creating_working_folder"] = "There was an error creating a temporary folder to unpack the files";
-$messages["error_checking_template"] = "There was an error checking the template: %s";
+$messages['template_installed_ok'] = 'Template "%s" added succesfully';
+$messages['error_installing_template'] = 'There was an error installing template "%s"';
+$messages['error_missing_base_files'] = 'Some of the template files are missing';
+$messages['error_add_template_disabled'] = 'New templates cannot be added because this feature has been disabled in this site';
+$messages['error_must_upload_file'] = 'There was no template package uploaded';
+$messages['error_uploads_disabled'] = 'Uploads have been disabled in this site';
+$messages['error_no_new_templates_found'] = 'No new templates were found';
+$messages['error_template_not_inside_folder'] = 'The files used in the template set must be inside a folder with the same name as the template set';
+$messages['error_missing_base_files'] = 'Some of the basic template files are missing';
+$messages['error_unpacking'] = 'There was an error unpacking the file';
+$messages['error_forbidden_extensions'] = 'The template set included files with forbidden extensions';
+$messages['error_creating_working_folder'] = 'There was an error creating a temporary folder to unpack the files';
+$messages['error_checking_template'] = 'There was an error checking the template: %s';
 
 // site users
-$messages["user_status_active"] = "Active";
-$messages["user_status_disabled"] = "Disabled";
-$messages["user_status_all"] = "All";
-$messages["user_status_unconfirmed"] = "Unconfirmed";
-$messages["error_invalid_user2"] = "User with identifier \"%s\" does not exist";
-$messages["error_deleting_user"] = "There was an error disabling user \"%s\"";
-$messages["user_deleted_ok"] = "User \"%s\" disabled successfully";
-$messages["users_deleted_ok"] = "%s users disabled successfully";
+$messages['user_status_active'] = 'Active';
+$messages['user_status_disabled'] = 'Disabled';
+$messages['user_status_all'] = 'All';
+$messages['user_status_unconfirmed'] = 'Unconfirmed';
+$messages['error_invalid_user2'] = 'User with identifier "%s" does not exist';
+$messages['error_deleting_user'] = 'There was an error disabling user "%s"';
+$messages['user_deleted_ok'] = 'User "%s" disabled successfully';
+$messages['users_deleted_ok'] = '%s users disabled successfully';
 
 // create user
-$messages["user_added_ok"] = "User \"%s\" added successfully";
-$messages["error_incorrect_username"] = "The username is not correct or it is already in use";
-$messages["user_status_help"] = "Current status for this user";
-$messages["user_blog_help"] = "Blog to which this user will be initially assigned";
-$messages["none"] = "None";
+$messages['user_added_ok'] = 'User "%s" added successfully';
+$messages['error_incorrect_username'] = 'The username is not correct or it is already in use';
+$messages['user_status_help'] = 'Current status for this user';
+$messages['user_blog_help'] = 'Blog to which this user will be initially assigned';
+$messages['none'] = 'None';
 
 // edit user
-$messages["error_invalid_user"] = "The user identifier is not correct or the user does not exist";
-$messages["error_updating_user"] = "There was an error updating the user settings. Please check the data and try again";
-$messages["blogs"] = "Blogs";
-$messages["user_blogs_helps"] = "Blogs which this user currently owns or where this user has access";
-$messages["site_admin"] = "Administrator";
-$messages["site_admin_help"] = "Whether this user has administrator privileges and is allowed to see the 'Administration' area and perform administrative tasks";
-$messages["user_updated_ok"] = "User \"%s\" updated successfully";
+$messages['error_invalid_user'] = 'The user identifier is not correct or the user does not exist';
+$messages['error_updating_user'] = 'There was an error updating the user settings. Please check the data and try again';
+$messages['blogs'] = 'Blogs';
+$messages['user_blogs_helps'] = 'Blogs which this user currently owns or where this user has access';
+$messages['site_admin'] = 'Administrator';
+$messages['site_admin_help'] = 'Whether this user has administrator privileges and is allowed to see the "Administration" area and perform administrative tasks';
+$messages['user_updated_ok'] = 'User "%s" updated successfully';
 
 // site blogs
-$messages["blog_status_all"] = "All";
-$messages["blog_status_active"] = "Active";
-$messages["blog_status_disabled"] = "Disabled";
-$messages["blog_status_unconfirmed"] = "Unconfirmed";
-$messages["owner"] = "Owner";
-$messages["quota"] = "Quota";
-$messages["bytes"] = "bytes";
-$messages["error_no_blogs_selected"] = "No blogs were selected to disable";
-$messages["error_blog_is_default_blog"] = "Blog \"%s\" cannot be deleted because it is set as the default blog";
-$messages["blog_deleted_ok"] = "Blog \"%s\" disabled successfully";
-$messages["blogs_deleted_ok"] = "%s blogs deleted successfully";
-$messages["error_deleting_blog"] = "There was an error disabling blog \"%s\"";
-$messages["error_deleting_blog2"] = "There was an error disabling blog with identifier \"%s\"";
+$messages['blog_status_all'] = 'All';
+$messages['blog_status_active'] = 'Active';
+$messages['blog_status_disabled'] = 'Disabled';
+$messages['blog_status_unconfirmed'] = 'Unconfirmed';
+$messages['owner'] = 'Owner';
+$messages['quota'] = 'Quota';
+$messages['bytes'] = 'bytes';
+$messages['error_no_blogs_selected'] = 'No blogs were selected to disable';
+$messages['error_blog_is_default_blog'] = 'Blog "%s" cannot be deleted because it is set as the default blog';
+$messages['blog_deleted_ok'] = 'Blog "%s" disabled successfully';
+$messages['blogs_deleted_ok'] = '%s blogs deleted successfully';
+$messages['error_deleting_blog'] = 'There was an error disabling blog "%s"';
+$messages['error_deleting_blog2'] = 'There was an error disabling blog with identifier "%s"';
 
 // create blog
-$messages["error_adding_blog"] = "There was an error adding the blog. Please check the data and try again";
-$messages["blog_added_ok"] = "Blog \"%s\" successfully added";
+$messages['error_adding_blog'] = 'There was an error adding the blog. Please check the data and try again';
+$messages['blog_added_ok'] = 'Blog "%s" successfully added';
 
 // edit blog
-$messages["blog_status_help"] = "Blog status";
-$messages["blog_owner_help"] = "User who will be set as the owner, with full control on the blog settings";
-$messages["users"] = "Users";
-$messages["blog_quota_help"] = "Resource quota in bytes. Set as 0 for unlimited or leave empty to make the blog use the global quota";
-$messages["blog_users_help"] = "Users who have access to this blog. Select a user from the left and move it to the right list in order to give this user access in this blog";
-$messages["edit_blog_settings_updated_ok"] = "Blog \"%s\" updated successfully";
-$messages["error_updating_blog_settings"] = "There was an error updating blog \"%s\"";
-$messages["error_incorrect_blog_owner"] = "The user selected as blog owner is not correct";
-$messages["error_fetching_blog"] = "There was an error fetching the blog";
-$messages["error_updating_blog_settings2"] = "There was an error updating the blog. Please check the data and try again";
-$messages["add_or_remove"] = "Add or remove users";
+$messages['blog_status_help'] = 'Blog status';
+$messages['blog_owner_help'] = 'User who will be set as the owner, with full control on the blog settings';
+$messages['users'] = 'Users';
+$messages['blog_quota_help'] = 'Resource quota in bytes. Set as 0 for unlimited or leave empty to make the blog use the global quota';
+$messages['blog_users_help'] = 'Users who have access to this blog. Select a user from the left and move it to the right list in order to give this user access in this blog';
+$messages['edit_blog_settings_updated_ok'] = 'Blog "%s" updated successfully';
+$messages['error_updating_blog_settings'] = 'There was an error updating blog "%s"';
+$messages['error_incorrect_blog_owner'] = 'The user selected as blog owner is not correct';
+$messages['error_fetching_blog'] = 'There was an error fetching the blog';
+$messages['error_updating_blog_settings2'] = 'There was an error updating the blog. Please check the data and try again';
+$messages['add_or_remove'] = 'Add or remove users';
 
 // site locales
-$messages["locale"] = "Locale";
-$messages["locale_encoding"] = "Encoding";
-$messages["locale_deleted_ok"] = "Locale \"%s\" deleted successfully";
-$messages["error_no_locales_selected"] = "There were no locales selected to remove";
-$messages["error_deleting_only_locale"] = "The locale cannot be deleted because is is the only one left in the system";
-$messages["locales_deleted_ok"]= "%s locales deleted successfully";
-$messages["error_deleting_locale"] = "There was an error deleting locale \"%s\"";
-$messages["error_locale_is_default"] = "Locale \"%s\" cannot be deleted because it is the default locale for new blogs";
+$messages['locale'] = 'Locale';
+$messages['locale_encoding'] = 'Encoding';
+$messages['locale_deleted_ok'] = 'Locale "%s" deleted successfully';
+$messages['error_no_locales_selected'] = 'There were no locales selected to remove';
+$messages['error_deleting_only_locale'] = 'The locale cannot be deleted because is is the only one left in the system';
+$messages['locales_deleted_ok']= '%s locales deleted successfully';
+$messages['error_deleting_locale'] = 'There was an error deleting locale "%s"';
+$messages['error_locale_is_default'] = 'Locale "%s" cannot be deleted because it is the default locale for new blogs';
 
 // add locale
-$messages["error_invalid_locale_file"] = "The locale file is not valid";
-$messages["error_no_new_locales_found"] = "No new locale files were found";
-$messages["locale_added_ok"] = "Locale \"%s\" added successfully";
-$messages["error_saving_locale"] = "There was an error saving the new locale";
+$messages['error_invalid_locale_file'] = 'The locale file is not valid';
+$messages['error_no_new_locales_found'] = 'No new locale files were found';
+$messages['locale_added_ok'] = 'Locale "%s" added successfully';
+$messages['error_saving_locale'] = 'There was an error saving the new locale';
 
 // site templates
-$messages["error_template_is_default"] = "Template \"%s\" cannot be deleted because it is the default one for new blogs";
+$messages['error_template_is_default'] = 'Template "%s" cannot be deleted because it is the default one for new blogs';
 
 // global settings
 /// general settings
-$messages["help_comments_enabled"] = "Enable or disable comments for new blogs by default";
-$messages["help_beautify_comments_text"] = "If this is enabled, comments posted by users will be formatted by adding paragraphs and auto-linking all URLs";
-$messages["help_temp_folder"] = "Folder that pLog can use to write its temporary data such as compiled templates, etc. Use a folder outside the web server tree for incresed security";
-$messages["help_base_url"] = "Base URL where this blog is installed";
-$messages["help_subdomains_enabled"] = "Enable or disable subdomains. Please see the documentation for more information regarding subdomains";
-$messages["help_subdomains_base_url"] = "When subdomains are enabled, this base URL is used instead of base_url. Use {blogname} to get the blog name and {username} to get the name of the user owner of the blog in order to generate a link to a blog";
-$messages["help_include_blog_id_in_url"] = "Meaningful only when subdomains are enabled and 'normal' URLs are enabled, forces internally-generated URLs not to have the 'blogId' parameter. Do not change unless you know what you are doing";
-$messages["help_script_name"] = "Set this if you need to rename index.php to something else";
-$messages["help_show_posts_max"] = "Maximum number of posts shown in the main page. Only meaningful for new blogs";
-$messages["help_recent_posts_max"] = "Maximum number of recent posts shown in the main page. Only meaningful for new blogs";
-$messages["help_save_drafts_via_xmlhttprequest_enabled"] = "Whether the feature that allows to save drafts via Javascript and the XmlHttpRequest is enabled";
-$messages["help_locale_folder"] = "Folder where the locale files are stored";
-$messages["help_default_locale"] = "Default language settings for new blogs";
-$messages["help_default_time_offset"] = "Default time offset for new blogs";
-$messages["help_html_allowed_tags_in_comments"] = "Space-separated list of the HTML tags that are allowed in comments";
-$messages["help_referer_tracker_enabled"] = "Enable or disable the feature to save referres to the database. Set to disabled for higher performance";
-$messages["help_show_more_enabled"] = "Enable or disable the 'read more...' feature by default for new blogs";
-$messages["help_update_article_reads"] = "Enable or disable the update of the counter of times that an article has been read is updated or not. Set to disabled for higher performance";
-$messages["help_update_cached_article_reads"] = "Enable or disable the update of the counter of times that an article has been read is updated, even when caching has been turned on";
-$messages["help_xmlrpc_ping_enabled"] = "Enable or disable sending XMLRPC pings to sites that support this feature";
-$messages["help_send_xmlrpc_pings_enabled_by_default"] = "Enable or disable by default this feature when posting or updating an article";
-$messages["help_xmlrpc_ping_hosts"] = "URL pointing to the XMLRPC interface of sites that support the XMLRPC ping specifictaion. Put each URL in one new line";
-$messages["help_trackback_server_enabled"] = "Enable or disable the feature to receive incoming trackbacks";
-$messages["help_htmlarea_enabled"] = "Enable or disable the WYSIWYG post editor by default in new blogs";
-$messages["help_plugin_manager_enabled"] = "Enable or disable plugins";
-$messages["help_minimum_password_length"] = "Minimun length for passwords";
-$messages["help_xhtml_converter_enabled"] = "If enabled, pLog will try to convert all HTML code into proper XHTML code";
-$messages["help_xhtml_converter_aggressive_mode_enabled"] = "If enabled, pLog will try even harder to generate XHTML out of HTML code, but it will be more prone to errors";
+$messages['help_comments_enabled'] = 'Enable or disable comments for new blogs by default';
+$messages['help_beautify_comments_text'] = 'If this is enabled, comments posted by users will be formatted by adding paragraphs and auto-linking all URLs';
+$messages['help_temp_folder'] = 'Folder that pLog can use to write its temporary data such as compiled templates, etc. Use a folder outside the web server tree for incresed security';
+$messages['help_base_url'] = 'Base URL where this blog is installed';
+$messages['help_subdomains_enabled'] = 'Enable or disable subdomains. Please see the documentation for more information regarding subdomains';
+$messages['help_subdomains_base_url'] = 'When subdomains are enabled, this base URL is used instead of base_url. Use {blogname} to get the blog name and {username} to get the name of the user owner of the blog in order to generate a link to a blog';
+$messages['help_include_blog_id_in_url'] = 'Meaningful only when subdomains are enabled and "normal" URLs are enabled, forces internally-generated URLs not to have the "blogId" parameter. Do not change unless you know what you are doing';
+$messages['help_script_name'] = 'Set this if you need to rename index.php to something else';
+$messages['help_show_posts_max'] = 'Maximum number of posts shown in the main page. Only meaningful for new blogs';
+$messages['help_recent_posts_max'] = 'Maximum number of recent posts shown in the main page. Only meaningful for new blogs';
+$messages['help_save_drafts_via_xmlhttprequest_enabled'] = 'Whether the feature that allows to save drafts via Javascript and the XmlHttpRequest is enabled';
+$messages['help_locale_folder'] = 'Folder where the locale files are stored';
+$messages['help_default_locale'] = 'Default language settings for new blogs';
+$messages['help_default_time_offset'] = 'Default time offset for new blogs';
+$messages['help_html_allowed_tags_in_comments'] = 'Space-separated list of the HTML tags that are allowed in comments';
+$messages['help_referer_tracker_enabled'] = 'Enable or disable the feature to save referres to the database. Set to disabled for higher performance';
+$messages['help_show_more_enabled'] = 'Enable or disable the "more..." feature by default for new blogs';
+$messages['help_update_article_reads'] = 'Enable or disable the update of the counter of times that an article has been read is updated or not. Set to disabled for higher performance';
+$messages['help_update_cached_article_reads'] = 'Enable or disable the update of the counter of times that an article has been read is updated, even when caching has been turned on';
+$messages['help_xmlrpc_ping_enabled'] = 'Enable or disable sending XMLRPC pings to sites that support this feature';
+$messages['help_send_xmlrpc_pings_enabled_by_default'] = 'Enable or disable by default this feature when posting or updating an article';
+$messages['help_xmlrpc_ping_hosts'] = 'URL pointing to the XMLRPC interface of sites that support the XMLRPC ping specifictaion. Put each URL in one new line';
+$messages['help_trackback_server_enabled'] = 'Enable or disable the feature to receive incoming trackbacks';
+$messages['help_htmlarea_enabled'] = 'Enable or disable the WYSIWYG post editor by default in new blogs';
+$messages['help_plugin_manager_enabled'] = 'Enable or disable plugins';
+$messages['help_minimum_password_length'] = 'Minimun length for passwords';
+$messages['help_xhtml_converter_enabled'] = 'If enabled, pLog will try to convert all HTML code into proper XHTML code';
+$messages['help_xhtml_converter_aggressive_mode_enabled'] = 'If enabled, pLog will try even harder to generate XHTML out of HTML code, but it will be more prone to errors';
 // summary settings
-$messages["help_summary_page_show_max"] = "Number of items that will be shown in the summary page. This setting control all lists in the summary page (recent articles, most active blogs, etc)";
-$messages["help_summary_blogs_per_page"] = "Number of blogs per page in the 'Blogs List' section";
-$messages["help_forbidden_usernames"] = "List of usernames that are not allowed to be registered";
-$messages["help_force_one_blog_per_email_account"] = "Restrict to only one blog per email account";
-$messages["help_summary_show_agreement"] = "Show and an agreement text and make users accept it before proceeding to the registration process";
-$messages["help_need_email_confirm_registration"] = "Force users to confirm their registration by clicking a link embedded in an email sent to their account";
+$messages['help_summary_page_show_max'] = 'Number of items that will be shown in the summary page. This setting control all lists in the summary page (recent articles, most active blogs, etc)';
+$messages['help_summary_blogs_per_page'] = 'Number of blogs per page in the "Blogs List" section';
+$messages['help_forbidden_usernames'] = 'List of usernames that are not allowed to be registered';
+$messages['help_force_one_blog_per_email_account'] = 'Restrict to only one blog per email account';
+$messages['help_summary_show_agreement'] = 'Show and an agreement text and make users accept it before proceeding to the registration process';
+$messages['help_need_email_confirm_registration'] = 'Force users to confirm their registration by clicking a link embedded in an email sent to their account';
 // templates
-$messages["help_template_folder"] = "Folder where templates are stored";
-$messages["help_default_template"] = "Default template for new blogs";
-$messages["help_users_can_add_templates"] = "Allow users to upload their own custom templates";
-$messages["help_template_compile_check"] = "If disabled, Smarty will check every request if template files have changed and if so, use the new version. Set this to disabled for higher performance";
-$messages["help_template_cache_enabled"] = "Enable the template cache. If enabled, cached versions will be used whenever possible and no data will need to be fetched from the database";
-$messages["help_template_cache_lifetime"] = "Lifetime in seconds of the cache. Set to -1 to force the cache to never expire or set it to 0 to disable the cache";
-$messages["help_template_http_cache_enabled"] = "Enable support for HTTP conditional requests. If enabled, pLog will take the 'If-Modified-Since' HTTP headers and send only content if strictly needed. Enable this for increased bandwidth savings";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-$messages["help_comments_enabled"] = "Enable comments by default in all new blogs";
+$messages['help_template_folder'] = 'Folder where templates are stored';
+$messages['help_default_template'] = 'Default template for new blogs';
+$messages['help_users_can_add_templates'] = 'Allow users to upload their own custom templates';
+$messages['help_template_compile_check'] = 'If disabled, Smarty will check every request if template files have changed and if so, use the new version. Set this to disabled for higher performance';
+$messages['help_template_cache_enabled'] = 'Enable the template cache. If enabled, cached versions will be used whenever possible and no data will need to be fetched from the database';
+$messages['help_template_cache_lifetime'] = 'Lifetime in seconds of the cache. Set to -1 to force the cache to never expire or set it to 0 to disable the cache';
+$messages['help_template_http_cache_enabled'] = 'Enable support for HTTP conditional requests. If enabled, pLog will take the "If-Modified-Since" HTTP header into account and send only content if strictly needed. Enable this to save bandwidth';
+// urls
 ?>




More information about the pLog-svn mailing list