[ Index ]
 

Code source de LifeType 1.2.4

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/locale/admin/ -> locale_en_UK.php (source)

   1  <?php
   2  
   3  /////////////////                                          //////////////////
   4  ///////////////// STRINGS FOR THE ADMINISTRATION INTERFACE //////////////////
   5  /////////////////                                          //////////////////
   6  
   7  // login page
   8  $messages['login'] = 'Login';
   9  $messages['welcome_message'] = 'Welcome to LifeType';
  10  $messages['error_incorrect_username_or_password'] = 'Sorry, Incorrect username or password.';
  11  $messages['error_dont_belong_to_any_blog'] = 'Sorry, you do not belong to any blog yet.';
  12  $messages['logout_message'] = 'You have been successfully logged out.';
  13  $messages['logout_message_2'] = 'Click <a href="%1$s">here</a> to go to %2$s.';
  14  $messages['error_access_forbidden'] = 'Access is forbidden. You must authenticate first here.';
  15  $messages['username'] = 'Username';
  16  $messages['password'] = 'Password';
  17  
  18  // dashboard
  19  $messages['dashboard'] = 'Dashboard';
  20  $messages['recent_articles'] = 'Most Recent Articles';
  21  $messages['recent_comments'] = 'Most Recent Comments';
  22  $messages['recent_trackbacks'] = 'Most Recent Trackbacks';
  23  $messages['blog_statistics'] = 'Blog Statistics';
  24  $messages['total_posts'] = 'Total Posts';
  25  $messages['total_comments'] = 'Total Comments';
  26  $messages['total_trackbacks'] = 'Total Trackbacks';
  27  $messages['total_viewed'] = 'Total Viewed Posts';
  28  $messages['in'] = 'In';
  29  
  30  // menu options
  31  $messages['newPost'] = 'New Post';
  32  $messages['Manage'] = 'Manage';
  33  $messages['managePosts'] = 'Manage Posts';
  34  $messages['editPosts'] = 'Posts';
  35  $messages['editArticleCategories'] = 'Categories';
  36  $messages['newArticleCategory'] = 'New Category';
  37  $messages['manageLinks'] = 'Manage Links';
  38  $messages['editLinks'] = 'Links';
  39  $messages['newLink'] = 'New Link';
  40  $messages['editLink'] = 'Edit Link';
  41  $messages['editLinkCategories'] = 'Link Categories';
  42  $messages['newLinkCategory'] = 'New Link Category';
  43  $messages['editLinkCategory'] = 'Edit Link Category';
  44  $messages['manageCustomFields'] = 'Manage Custom Fields';
  45  $messages['blogCustomFields'] = 'Custom Fields';
  46  $messages['newCustomField'] = 'New Custom Field';
  47  $messages['resourceCenter'] = 'Resource Centre';
  48  $messages['resources'] = 'Resources';
  49  $messages['newResourceAlbum'] = 'New Album';
  50  $messages['newResource'] = 'New Resource';
  51  $messages['controlCenter'] = 'Control Centre';
  52  $messages['manageSettings'] = 'Settings';
  53  $messages['blogSettings'] = 'Blog Settings';
  54  $messages['userSettings'] = 'User Settings';
  55  $messages['pluginCenter'] = 'Plugin Centre';
  56  $messages['Stats'] = 'Statistics';
  57  $messages['manageBlogUsers'] = 'Manage Blog Users';
  58  $messages['newBlogUser'] = 'New Blog User';
  59  $messages['showBlogUsers'] = 'Blog Users';
  60  $messages['manageBlogTemplates'] = 'Blog Templates';
  61  $messages['newBlogTemplate'] = 'New Blog Template';
  62  $messages['blogTemplates'] = 'Blog Templates';
  63  $messages['adminSettings'] = 'Administration';
  64  $messages['Users'] = 'Users';
  65  $messages['createUser'] = 'Create User';
  66  $messages['editSiteUsers'] = 'Site Users';
  67  $messages['Blogs'] = 'Manage Blogs';
  68  $messages['createBlog'] = 'Create Blog';
  69  $messages['editSiteBlogs'] = 'Blogs';
  70  $messages['Locales'] = 'Manage Locales';
  71  $messages['newLocale'] = 'New Locale';
  72  $messages['siteLocales'] = 'Site Locales';
  73  $messages['Templates'] = 'Manage Templates';
  74  $messages['newTemplate'] = 'New Template';
  75  $messages['siteTemplates'] = 'Site Templates';
  76  $messages['GlobalSettings'] = 'Global Settings';
  77  $messages['editSiteSettings'] = 'General';
  78  $messages['summarySettings'] = 'Summary';
  79  $messages['templateSettings'] = 'Templates';
  80  $messages['urlSettings'] = 'URLs';
  81  $messages['emailSettings'] = 'Email';
  82  $messages['uploadSettings'] = 'Uploads';
  83  $messages['helpersSettings'] = 'External Helpers';
  84  $messages['interfacesSettings'] = 'Interfaces';
  85  $messages['securitySettings'] = 'Security';
  86  $messages['bayesianSettings'] = 'Bayesian Filter';
  87  $messages['resourcesSettings'] = 'Resources';
  88  $messages['searchSettings'] = 'Search';
  89  $messages['cleanUpSection'] = 'Clean Up';
  90  $messages['cleanUp'] = 'Clean Up';
  91  $messages['editResourceAlbum'] = 'Edit Album';
  92  $messages['resourceInfo'] = 'Edit Resource';
  93  $messages['editBlog'] = 'Edit Blog';
  94  $messages['Logout'] = 'Logout';
  95  
  96  // new post
  97  $messages['topic'] = 'Topic';
  98  $messages['topic_help'] = 'Title of the post.';
  99  $messages['text'] = 'Text';
 100  $messages['text_help'] = 'Text of the post. This part will always appear in the front page.';
 101  $messages['extended_text'] = 'Extended Text';
 102  $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.';
 103  $messages['trackback_urls'] = 'Real Trackback Urls';
 104  $messages['trackback_urls_help'] = 'If the article you want to send the trackback to does not support Trackback Auto-Discover mechanism, you may put its real trackback url here and use a new line for each url.';
 105  $messages['post_slug'] = 'Slug';
 106  $messages['post_slug_help'] = 'The slug will be used to generate nice permanent links.';
 107  $messages['date'] = 'Date';
 108  $messages['post_date_help'] = 'Date when this post is going to be published.';
 109  $messages['status'] = 'Status';
 110  $messages['post_status_help'] = 'Select one of these status.';
 111  $messages['post_status_published'] = 'Published';
 112  $messages['post_status_draft'] = 'Draft';
 113  $messages['post_status_deleted'] = 'Deleted';
 114  $messages['post_categories_help'] = 'Select one or more categories.';
 115  $messages['post_comments_enabled_help'] = 'Enable comments';
 116  $messages['send_notification_help'] = 'Notification of new comments.';
 117  $messages['send_trackback_pings_help'] = 'Send trackbacks';
 118  $messages['send_xmlrpc_pings_help'] = 'Send XMLRPC pings';
 119  $messages['save_draft_and_continue'] = 'Save draft';
 120  $messages['preview'] = 'Preview';
 121  $messages['add_post'] = 'Blog this!';
 122  $messages['error_saving_draft'] = 'There was an error saving the draft';
 123  $messages['draft_saved_ok'] = 'Draft article %s saved successfully';
 124  $messages['error_sending_request'] = 'There was an error sending the request';
 125  $messages['error_no_category_selected'] = 'Please select at least one category';
 126  $messages['error_missing_post_topic'] = 'Please type a post topic';
 127  $messages['error_missing_post_text'] = 'Please type some text for the post';
 128  $messages['error_adding_post'] = 'There was an error adding the post';
 129  $messages['post_added_not_published'] = 'Post added successfully but not published';
 130  $messages['post_added_ok'] = 'Post added successfully.';
 131  $messages['send_notifications_ok'] = 'A notification will be sent every time there is a new comment or trackback.';
 132  $messages['bookmarklet'] = "Bookmarklet";
 133  $messages['bookmarklet_help'] = "Drag this link to your toolbar or right-click it and choose Add to Favorites or Bookmark.";
 134  $messages['blogit_to_lifetype'] = "Blog It to LifeType!";
 135  $messages['original_post'] = "(Original Post)";
 136  
 137  // send trackbacks
 138  $messages['error_sending_trackbacks'] = 'There was an error sending the following trackbacks';
 139  $messages['send_trackbacks_help'] = 'Please select those URLs where you would like to send the trackback ping. Please make sure that the sites support trackback.';
 140  $messages['send_trackbacks'] = 'Send trackbacks';
 141  $messages['ping_selected'] = 'Ping selected';
 142  $messages['trackbacks_sent_ok'] = 'Trackbacks successfully sent to the selected URLs';
 143  
 144  // posts page
 145  $messages['show_by'] = 'Show By';
 146  $messages['author'] = 'Author';
 147  $messages['post_status_all'] = 'All';
 148  $messages['author_all'] = 'All';
 149  $messages['search_terms'] = 'Search terms';
 150  $messages['show'] = 'Show';
 151  $messages['delete'] = 'Delete';
 152  $messages['actions'] = 'Actions';
 153  $messages['all'] = 'All';
 154  $messages['category_all'] = 'All';
 155  $messages['error_incorrect_article_id'] = 'Incorrect article identifier';
 156  $messages['error_deleting_article'] = 'There was an error deleting post "%s"';
 157  $messages['article_deleted_ok'] = 'Post "%s" deleted successfully';
 158  $messages['articles_deleted_ok'] = '%s posts deleted successfully';
 159  $messages['error_deleting_article2'] = 'There was an error deleting the post with identifier "%s"';
 160  
 161  // edit post page
 162  $messages['update'] = 'Update';
 163  $messages['editPost'] = 'Edit Post';
 164  $messages['post_updated_ok'] = 'Post "%s" updated successfully.';
 165  $messages['error_updating_post'] = 'There was an error updating the post';
 166  $messages['notification_added'] = 'You will receive notifications of new comments or trackbacks';
 167  $messages['notification_removed'] = 'No notifications about new comments or trackbacks will be sent';
 168  
 169  // post comments
 170  $messages['url'] = 'URL';
 171  $messages['comment_status_all'] = 'All';
 172  $messages['comment_status_spam'] = 'Spam';
 173  $messages['comment_status_nonspam'] = 'No Spam';
 174  $messages['error_fetching_comments'] = 'There was an error while fetching the article comments';
 175  $messages['error_deleting_comments'] = 'There was an error removing the comments or there was no comment selected';
 176  $messages['comment_deleted_ok'] = 'Comment "%s" deleted successfully';
 177  $messages['comments_deleted_ok'] = '%s comments deleted successfully';
 178  $messages['error_deleting_comment'] = 'There was an error deleting comment "%s"';
 179  $messages['error_deleting_comment2'] = 'There was an error deleting comment with identifier %s';
 180  $messages['editComments'] = 'Comments';
 181  $messages['mark_as_spam'] = 'Mark as spam';
 182  $messages['mark_as_no_spam'] = 'Mark as no spam';
 183  $messages['error_incorrect_comment_id'] = 'The comment identifier is not correct';
 184  $messages['error_marking_comment_as_spam'] = 'There was an error marking the comment as spam';
 185  $messages['comment_marked_as_spam_ok'] = 'The comment was marked as spam successfully';
 186  $messages['error_marking_comment_as_nonspam'] = 'There was an error marking the comment as no spam';
 187  $messages['comment_marked_as_nonspam_ok'] = 'The comment was marked as no spam successfully';
 188  
 189  
 190  // post trackbacks
 191  $messages['blog'] = 'Blog';
 192  $messages['excerpt'] = 'Excerpt';
 193  $messages['error_fetching_trackbacks'] = 'There was an error while fetching the trackbacks';
 194  $messages['error_deleting_trackbacks'] = 'There was an error deleting the trackbacks or there were no items selected';
 195  $messages['error_deleting_trackback'] = 'There was an error while deleting trackback "%s"';
 196  $messages['error_deleting_trackback2'] = 'There was an error while deleting trackback with identifier "%s"';
 197  $messages['trackback_deleted_ok'] = 'Trackback "%s" deleted successfully';
 198  $messages['trackbacks_deleted_ok'] = '%s trackbacks deleted successfully';
 199  $messages['editTrackbacks'] = 'Trackbacks';
 200  
 201  // post statistics
 202  $messages['referrer'] = 'Referrer';
 203  $messages['hits'] = 'Hits';
 204  $messages['error_no_items_selected'] = 'No items were selected to remove';
 205  $messages['error_deleting_referrer'] = 'There was an error deleting referrer "%s"';
 206  $messages['error_deleting_referrer2'] = 'There was an error deleting referrer with identifier "%s"';
 207  $messages['referrer_deleted_ok'] = 'Referrer "%s" deleted successfully';
 208  $messages['referrers_deleted_ok'] = '%s referrers deleted successfully';
 209  
 210  // categories
 211  $messages['posts'] = 'Posts';
 212  $messages['show_in_main_page'] = 'Show in front page';
 213  $messages['error_category_has_articles'] = 'Category "%s" is used by some articles. Please edit the articles first and then remove the category';
 214  $messages['category_deleted_ok'] = 'Category "%s" deleted successfully';
 215  $messages['categories_deleted_ok'] = '%s categories deleted successfully';
 216  $messages['error_deleting_category'] = 'There was an error deleting category "%s"';
 217  $messages['error_deleting_category2'] = 'There was an error deleting category with identifier "%s"';
 218  $messages['yes'] = 'Yes';
 219  $messages['no'] = 'No';
 220  
 221  // new category
 222  $messages['name'] = 'Name';
 223  $messages['category_name_help'] = 'Name that will be used to display the category.';
 224  $messages['description'] = 'Description';
 225  $messages['category_description_help'] = 'Longer description for this category.';
 226  $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.';
 227  $messages['error_empty_name'] = 'You must provide a name';
 228  $messages['error_empty_description'] = 'You must provide a description';
 229  $messages['error_adding_article_category'] = 'There was an error adding the new category. Please check the data and try again';
 230  $messages['category_added_ok'] = 'Category "%s" was successfully added to the blog';
 231  $messages['add'] = 'Add';
 232  $messages['reset'] = 'Reset';
 233  
 234  // update category
 235  $messages['error_updating_article_category'] = 'There was an error updating the article category';
 236  $messages['article_category_updated_ok'] = 'Category "%s" was updated successfully';
 237  
 238  // links
 239  $messages['feed'] = 'Feed';
 240  $messages['error_no_links_selected'] = 'The link identifier was incorrect or no items were selected to remove';
 241  $messages['error_incorrect_link_id'] = 'The link identifier was not correct';
 242  $messages['error_removing_link'] = 'There was an error removing link "%s"';
 243  $messages['error_removing_link2'] = 'There was an error removing link with identifier "%s"';
 244  $messages['link_deleted_ok'] = 'Link "%s" was deleted successfully';
 245  $messages['links_deleted_ok'] = '%s links deleted successfully';
 246  
 247  // new link
 248  $messages['link_name_help'] = 'Name given to this link.';
 249  $messages['link_url_help'] = 'Address where this link points. Example: http://www.domainname.com/ (NOTE: http:// must be included!)';
 250  $messages['link_description_help'] = 'Brief description of this link.';
 251  $messages['link_feed_help'] = 'A link to any of the RSS or Atom feeds of this link can also be provided.';
 252  $messages['link_category_help'] = 'Choose one of the available link categories.';
 253  $messages['error_adding_link'] = 'There was an error adding the link. Please check the data and try again';
 254  $messages['error_invalid_url'] = 'The address is not correct';
 255  $messages['link_added_ok'] = 'Link "%s" was successfully added';
 256  $messages['bookmarkit_to_lifetype'] = "Bookmark It to LifeType!";
 257  
 258  // update link
 259  $messages['error_updating_link'] = 'There was an error updating the link. Please check the data and try again';
 260  $messages['error_fetching_link'] = 'There was an error fetching the link';
 261  $messages['link_updated_ok'] = 'Link "%s" was updated successfully';
 262  
 263  // link categories
 264  $messages['error_invalid_link_category_id'] = 'The link category identifier was not correct or there was no link category selected';
 265  $messages['error_links_in_link_category'] = 'Link category "%s" is used by some links. Modify the links first and try again';
 266  $messages['error_removing_link_category'] = 'There was an error removing link category "%s"';
 267  $messages['link_category_deleted_ok'] = 'Link category "%s" deleted successfully';
 268  $messages['link_categories_deleted_ok'] = '%s link categories deleted successfully';
 269  $messages['error_removing_link_category2'] = 'There was an error removing link category with identifier "%s"';
 270  
 271  // new link category
 272  $messages['link_category_name_help'] = 'Name given to this link category.';
 273  $messages['error_adding_link_category'] = 'There was an error adding the new link category';
 274  $messages['link_category_added_ok'] = 'Link category "%s" was successfully added';
 275  
 276  // edit link category
 277  $messages['error_updating_link_category'] = 'There was an error updating the link category. Please check the data and try again';
 278  $messages['link_category_updated_ok'] = 'Link category "%s" updated successfully';
 279  $messages['error_fetching_link_category'] = 'There was an error fetching the link category';
 280  
 281  // custom fields
 282  $messages['type'] = 'Type';
 283  $messages['hidden'] = 'Hidden';
 284  $messages['fields_deleted_ok'] = '%s custom fields deleted successfully';
 285  $messages['field_deleted_ok'] = 'Custom field "%s" deleted successfully';
 286  $messages['error_deleting_field'] = 'There was an error deleting custom field "%s"';
 287  $messages['error_deleting_field2'] = 'There was an error deleting custom field with identifier "%s"';
 288  $messages['error_incorrect_field_id'] = 'The custom field identifier was not valid';
 289  
 290  // new custom field
 291  $messages['field_name_help'] = 'Identifier that will be used to refer to the value of this field in posts.';
 292  $messages['field_description_help'] = 'Brief description of this field that will be shown when adding or editing posts.';
 293  $messages['field_type_help'] = 'Select one of the available field types.';
 294  $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.';
 295  $messages['error_adding_custom_field'] = 'There was an error adding the custom field. Please check the data and try again';
 296  $messages['custom_field_added_ok'] = 'Custom field "%s" added successfully';
 297  $messages['text_field'] = 'Text field';
 298  $messages['text_area'] = 'Text box';
 299  $messages['checkbox'] = 'Checkbox';
 300  $messages['date_field'] = 'Date chooser';
 301  
 302  // edit custom field
 303  $messages['error_fetching_custom_field'] = 'There was an error fetching the custom field';
 304  $messages['error_updating_custom_field'] = 'There was an error updating the custom field. Please check the data and try again';
 305  $messages['custom_field_updated_ok'] = 'Custom field "%s" updated successfully';
 306  
 307  // resources
 308  $messages['root_album'] = 'Root album';
 309  $messages['num_resources'] = 'Number of resources';
 310  $messages['total_size'] = 'Total size';
 311  $messages['album'] = 'Album';
 312  $messages['error_incorrect_album_id'] = 'The album identifier is not correct';
 313  $messages['error_base_storage_folder_missing_or_unreadable'] = 'It was not possible for LifeType 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.';
 314  $messages['items_deleted_ok'] = '%s items deleted successfully';
 315  $messages['error_album_has_children'] = 'Album "%s" has children. Please empty the album first and then try again.';
 316  $messages['item_deleted_ok'] = 'Item "%s"deleted successfully';
 317  $messages['error_deleting_album'] = 'There was an error deleting album "%s"';
 318  $messages['error_deleting_album2'] = 'There was an error deleting album with identifier "%s"';
 319  $messages['error_deleting_resource'] = 'There was an error deleting resource "%s"';
 320  $messages['error_deleting_resource2'] = 'There was an error deleting resource with identifier "%s"';
 321  $messages['error_no_resources_selected'] = 'No items were selected to delete';
 322  $messages['resource_deleted_ok'] = 'Resource "%s" was deleted successfully';
 323  $messages['album_deleted_ok'] = 'Album "%s" was deleted successfully';
 324  $messages['add_resource'] = 'Add resource';
 325  $messages['add_resource_preview'] = 'Add preview';
 326  $messages['add_resource_medium'] = 'Add medium preview';
 327  $messages['add_album'] = 'Add album';
 328  
 329  // new album
 330  $messages['album_name_help'] = 'Short name for the new album.';
 331  $messages['parent'] = 'Parent';
 332  $messages['no_parent'] = 'No parent';
 333  $messages['parent_album_help'] = 'Use this to have albums within albums and better organize your files.';
 334  $messages['album_description_help'] = 'Longer description of the contents of this album.';
 335  $messages['error_adding_album'] = 'There was an error adding the new album. Please check the data and try again';
 336  $messages['album_added_ok'] = 'Album "%s" successfully added';
 337  
 338  // edit album
 339  $messages['error_incorrect_album_id'] = 'The album identifier is not correct';
 340  $messages['error_fetching_album'] = 'There was an error fetching the album';
 341  $messages['error_updating_album'] = 'There was an error updating the album. Please check the data and try again';
 342  $messages['album_updated_ok'] = 'Album "%s" updated successfully';
 343  $messages['show_album_help'] = 'If disabled, the album will not be shown in the list of albums available in this blog.';
 344  
 345  // new resource
 346  $messages['file'] = 'File';
 347  $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.';
 348  $messages['add_field'] = 'Add field';
 349  $messages['resource_description_help'] = 'Longer description of the contents of this file.';
 350  $messages['resource_album_help'] = 'Select the album to which this file will be added.';
 351  $messages['error_no_resource_uploaded'] = 'There was no file selected to upload';
 352  $messages['resource_added_ok'] = 'Resource "%s" added successfully';
 353  $messages['error_resource_forbidden_extension'] = 'The file was not added because it is of a forbidden type';
 354  $messages['error_resource_too_big'] = 'The file was not added because it is too big';
 355  $messages['error_uploads_disabled'] = 'The file was not added because uploads have been disabled';
 356  $messages['error_quota_exceeded'] = 'The file was not added because resource quota has been exceeded';
 357  $messages['error_adding_resource'] = 'There was an error adding the resource file';
 358  
 359  // edit resource
 360  $messages['editResource'] = 'Edit Resource';
 361  $messages['resource_information_help'] = 'Below is some information about this resource file.';
 362  $messages['information'] = 'Information';
 363  $messages['thumbnail_format'] = 'Thumbnail format';
 364  $messages['regenerate_preview'] = 'Regenerate preview';
 365  $messages['error_fetching_resource'] = 'There was an error fetching the resource';
 366  $messages['error_updating_resource'] = 'There was an error updating the resource';
 367  $messages['resource_updated_ok'] = 'Resource "%s" updated successfully';
 368  
 369  // blog settings
 370  $messages['blog_link'] = 'Blog link';
 371  $messages['blog_link_help'] = 'Permanent link to this blog';
 372  $messages['blog_name_help'] = 'Title for this blog';
 373  $messages['blog_description_help'] = 'Longer description about the contents of this blog.';
 374  $messages['language'] = 'Language';
 375  $messages['blog_language_help'] = 'Language used to display the texts of this blog, both in the public and administration side.';
 376  $messages['max_main_page_items'] = 'Number of items in the main page';
 377  $messages['max_main_page_items_help'] = 'Number of posts that should be displayed at all times in the main page of the blog.';
 378  $messages['max_recent_items'] = 'Number of recent items';
 379  $messages['max_recent_items_help'] = 'Maximum number of posts that will be shown as recent in the front page.';
 380  $messages['template'] = 'Template';
 381  $messages['choose'] = 'Choose';
 382  $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.';
 383  $messages['use_read_more'] = 'Use "more..." link in posts';
 384  $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.';
 385  $messages['enable_wysiwyg'] = 'Enable the visual editor of posts';
 386  $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.';
 387  $messages['enable_comments'] = 'Enable comments';
 388  $messages['enable_comments_help'] = 'Enable comments for all posts.';
 389  $messages['show_future_posts'] = 'Show future posts in the calendar';
 390  $messages['show_future_posts_help'] = 'Whether posts which have a date in the future should appear in the calendar and visible to users.';
 391  $messages['comments_order'] = 'Comments order';
 392  $messages['comments_order_help'] = 'Order in which comments should be displayed in the front page.';
 393  $messages['articles_order'] = 'Articles order';
 394  $messages['articles_order_help'] = 'Order in which articles should be displayed.';
 395  $messages['oldest_first'] = 'Oldest first';
 396  $messages['newest_first'] = 'Newest first';
 397  $messages['categories_order'] = 'Categories order';
 398  $messages['categories_order_help'] = 'Order in which categories should be displayed in the front page.';
 399  $messages['most_recent_updated_first'] = 'Most recently updated first';
 400  $messages['alphabetical_order'] = 'Alphabetical order';
 401  $messages['reverse_alphabetical_order'] = 'Reverse alphabetical order';
 402  $messages['most_articles_first'] = 'Most articles first';
 403  $messages['link_categories_order'] = 'Link categories order';
 404  $messages['link_categories_order_help'] = 'Order in which link categories should appear in the front page.';
 405  $messages['most_links_first'] = 'Most links first';
 406  $messages['most_links_last'] = 'Most links last';
 407  $messages['time_offset'] = 'Time offset';
 408  $messages['time_offset_help'] = 'Time difference in hours that will be dynamically added to each date and time in the blog.';
 409  $messages['close'] = 'Close';
 410  $messages['select'] = 'Select';
 411  $messages['error_updating_settings'] = 'There was an error updating the blog settings. Please check the data and try again';
 412  $messages['error_invalid_number'] = 'The number is not correct';
 413  $messages['error_incorrect_time_offset'] = 'The time offset is not valid';
 414  $messages['blog_settings_updated_ok'] = 'Blog settings updated successfully';
 415  $messages['hours'] = 'Hours';
 416  
 417  // user settings
 418  $messages['username_help'] = 'Public username. It cannot be changed.';
 419  $messages['full_name'] = 'Full name';
 420  $messages['full_name_help'] = 'Complete full name';
 421  $messages['password_help'] = 'Type and confirm a new password, or leave empty for no change.';
 422  $messages['confirm_password'] = 'Confirm password';
 423  $messages['email'] = 'Email';
 424  $messages['email_help'] = 'Email address where notifications will be sent.';
 425  $messages['bio'] = 'Your bio';
 426  $messages['bio_help'] = 'A longer description of yourself can be provided here.';
 427  $messages['picture'] = 'Picture';
 428  $messages['user_picture_help'] = 'Please select a picture from the ones uploaded to this blog as your personal picture.';
 429  $messages['error_invalid_password'] = 'The password is not correct. Please make sure that it is not too short';
 430  $messages['error_passwords_dont_match'] = 'Sorry, passwords do not match';
 431  $messages['error_updating_user_settings'] = 'There was an error updating your user settings. Please check the data and try again';
 432  $messages['user_settings_updated_ok'] = 'User settings updated successfully';
 433  $messages['resource'] = 'Resource';
 434  
 435  // plugin centre
 436  $messages['identifier'] = 'Identifier';
 437  $messages['error_plugins_disabled'] = 'Sorry, Plugins are disabled.';
 438  
 439  // blog users
 440  $messages['revoke_permissions'] = 'Revoke permissions';
 441  $messages['error_no_users_selected'] = 'There were no users selected';
 442  $messages['user_removed_from_blog_ok'] = 'User "%s" does not have permissions to access this blog any more';
 443  $messages['users_removed_from_blog_ok'] = '%s users do not have access to this blog any more';
 444  $messages['error_removing_user_from_blog'] = 'There was an error removing access to this blog from user "%s"';
 445  $messages['error_removing_user_from_blog2'] = 'There was an error removing access to this blog from user whose identifier is "%s"';
 446  
 447  // new blog user
 448  $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.';
 449  $messages['send_notification'] = 'Send notification';
 450  $messages['send_user_notification_help'] = 'Send an email notification to this user.';
 451  $messages['notification_text'] = 'Notification Text';
 452  $messages['notification_text_help'] = 'Text that will be included in the notification message.';
 453  $messages['error_adding_user'] = 'There was an error granting access to the user. Please check the data and try again';
 454  $messages['error_empty_text'] = 'You must provide some text';
 455  $messages['error_adding_user'] = 'There was an error adding the user. Please check the data and try again';
 456  $messages['error_invalid_user'] = 'The user "%s" is not valid or does not exist';
 457  $messages['user_added_to_blog_ok'] = 'User "%s" has been given access to this blog successfully';
 458  
 459  // blog templates
 460  $messages['error_no_templates_selected'] = 'There were no templates selected';
 461  $messages['error_template_is_current'] = 'Template "%s" cannot be deleted because it is the current one';
 462  $messages['error_removing_template'] = 'There was an error deleting template "%s"';
 463  $messages['template_removed_ok'] = 'Template "%s" deleted successfully';
 464  $messages['templates_removed_ok'] = '%s templates deleted successfully';
 465  
 466  // new blog template
 467  $messages['template_installed_ok'] = 'Template "%s" added successfully';
 468  $messages['error_installing_template'] = 'There was an error installing template "%s"';
 469  $messages['error_missing_base_files'] = 'Some of the template files are missing';
 470  $messages['error_add_template_disabled'] = 'New templates cannot be added because this feature has been disabled in this site';
 471  $messages['error_must_upload_file'] = 'There was no template package uploaded';
 472  $messages['error_uploads_disabled'] = 'Uploads have been disabled in this site';
 473  $messages['error_no_new_templates_found'] = 'No new templates were found';
 474  $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';
 475  $messages['error_missing_base_files'] = 'Some of the basic template files are missing';
 476  $messages['error_unpacking'] = 'There was an error unpacking the file';
 477  $messages['error_forbidden_extensions'] = 'The template set included files with forbidden extensions';
 478  $messages['error_creating_working_folder'] = 'There was an error creating a temporary folder to unpack the files';
 479  $messages['error_checking_template'] = 'There was an error checking the template: %s';
 480  $messages['template_package'] = 'Template package';
 481  $messages['blog_template_package_help']  = 'Use this form to upload a new template set, which will only be available to your blog. If it is not possible to upload a template package using this form, upload the template set manually and place it in <b>%s</b>, which is the folder where your blog templates are stored and click the "<b>Scan templates</b>" button. LifeType will scan the folder and will automatically add any new template it can find.';
 482  $messages['scan_templates'] = 'Scan Templates';
 483  
 484  // site users
 485  $messages['user_status_active'] = 'Active';
 486  $messages['user_status_disabled'] = 'Disabled';
 487  $messages['user_status_all'] = 'All';
 488  $messages['user_status_unconfirmed'] = 'Unconfirmed';
 489  $messages['error_invalid_user2'] = 'User with identifier "%s" does not exist';
 490  $messages['error_deleting_user'] = 'There was an error disabling user "%s"';
 491  $messages['user_deleted_ok'] = 'User "%s" disabled successfully';
 492  $messages['users_deleted_ok'] = '%s users disabled successfully';
 493  
 494  // create user
 495  $messages['user_added_ok'] = 'User "%s" added successfully';
 496  $messages['user_status_help'] = 'Current status for this user';
 497  $messages['user_blog_help'] = 'Blog to which this user will be initially assigned.';
 498  $messages['none'] = 'None';
 499  
 500  // edit user
 501  $messages['error_invalid_user'] = 'The user identifier is not correct or the user does not exist';
 502  $messages['error_updating_user'] = 'There was an error updating the user settings. Please check the data and try again';
 503  $messages['blogs'] = 'Blogs';
 504  $messages['user_blogs_help'] = 'Blogs which this user currently owns or where this user has access.';
 505  $messages['site_admin'] = 'Administrator';
 506  $messages['site_admin_help'] = 'Whether this user has administrator privileges and is allowed to see the "Administration" area and perform administrative tasks.';
 507  $messages['user_updated_ok'] = 'User "%s" updated successfully';
 508  
 509  // site blogs
 510  $messages['blog_status_all'] = 'All';
 511  $messages['blog_status_active'] = 'Active';
 512  $messages['blog_status_disabled'] = 'Disabled';
 513  $messages['blog_status_unconfirmed'] = 'Unconfirmed';
 514  $messages['owner'] = 'Owner';
 515  $messages['quota'] = 'Quota';
 516  $messages['bytes'] = 'bytes';
 517  $messages['error_no_blogs_selected'] = 'No blogs were selected to disable';
 518  $messages['error_blog_is_default_blog'] = 'Blog "%s" cannot be deleted because it is set as the default blog';
 519  $messages['blog_deleted_ok'] = 'Blog "%s" disabled successfully';
 520  $messages['blogs_deleted_ok'] = '%s blogs deleted successfully';
 521  $messages['error_deleting_blog'] = 'There was an error disabling blog "%s"';
 522  $messages['error_deleting_blog2'] = 'There was an error disabling blog with identifier "%s"';
 523  
 524  // create blog
 525  $messages['error_adding_blog'] = 'There was an error adding the blog. Please check the data and try again';
 526  $messages['blog_added_ok'] = 'Blog "%s" successfully added';
 527  
 528  // edit blog
 529  $messages['blog_status_help'] = 'Blog status';
 530  $messages['blog_owner_help'] = 'User who will be set as the owner, with full control on the blog settings.';
 531  $messages['users'] = 'Users';
 532  $messages['blog_quota_help'] = 'Resource quota in bytes. Set as 0 for unlimited or leave empty to make the blog use the global quota.';
 533  $messages['edit_blog_settings_updated_ok'] = 'Blog "%s" updated successfully';
 534  $messages['error_updating_blog_settings'] = 'There was an error updating blog "%s"';
 535  $messages['error_incorrect_blog_owner'] = 'The user selected as blog owner is not correct';
 536  $messages['error_fetching_blog'] = 'There was an error fetching the blog';
 537  $messages['error_updating_blog_settings2'] = 'There was an error updating the blog. Please check the data and try again';
 538  $messages['add_or_remove'] = 'Add or remove users';
 539  
 540  // site locales
 541  $messages['locale'] = 'Locale';
 542  $messages['locale_encoding'] = 'Encoding';
 543  $messages['locale_deleted_ok'] = 'Locale "%s" deleted successfully';
 544  $messages['error_no_locales_selected'] = 'There were no locales selected to remove';
 545  $messages['error_deleting_only_locale'] = 'The locale cannot be deleted because is is the only one left in the system';
 546  $messages['locales_deleted_ok']= '%s locales deleted successfully';
 547  $messages['error_deleting_locale'] = 'There was an error deleting locale "%s"';
 548  $messages['error_locale_is_default'] = 'Locale "%s" cannot be deleted because it is the default locale for new blogs';
 549  
 550  // add locale
 551  $messages['error_invalid_locale_file'] = 'The locale file is not valid';
 552  $messages['error_no_new_locales_found'] = 'No new locale files were found';
 553  $messages['locale_added_ok'] = 'Locale "%s" added successfully';
 554  $messages['error_saving_locale'] = 'There was an error saving the new locale';
 555  $messages['scan_locales'] = 'Scan Locales';
 556  $messages['add_locale_help'] = 'Use this form to upload a new locale file. If it is not possible to upload files using this form, upload the locale file manually and place it in <b>./locales/</b>, which is the folder where locale files are stored and click the "<b>Scan Locales</b>" button. LifeType will scan the folder and will automatically add any new locale file can find.';
 557  
 558  // site templates
 559  $messages['error_template_is_default'] = 'Template "%s" cannot be deleted because it is the default one for new blogs';
 560  
 561  // add template
 562  $messages['global_template_package_help'] = 'Use this form to upload a new template set, which will be available to all blogs in the site. If it is not possible to upload a template package using this form, upload the template set manually and place it in <b>%s</b>, which is the folder where globally available templates are stored and click the "<b>Scan templates</b>" button. LifeType will scan the folder and will automatically add any new template it can find.';
 563  
 564  // global settings
 565  $messages['site_config_saved_ok'] = 'Site settings saved successfully';
 566  $messages['error_saving_site_config'] = 'There was an error saving the site settings';
 567  /// general settings
 568  $messages['help_comments_enabled'] = 'Enable comments for new blogs by default. [Default = Yes]';
 569  $messages['help_beautify_comments_text'] = 'If enabled, comments posted by users will be formatted by adding paragraphs and auto-linking all URLs. [Default = Yes]';
 570  $messages['help_temp_folder'] = 'Folder that LifeType can use to write its temporary data such as compiled templates, etc. Use a folder outside the web server tree for increased security. [Default = ./tmp]';
 571  $messages['help_base_url'] = 'Base URL where this blog is installed.';
 572  $messages['help_subdomains_enabled'] = 'Enable subdomains. Please see the documentation for more information regarding subdomains. [Default = No]';
 573  $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. [Default = Yes]';
 574  $messages['help_script_name'] = 'Set this if you need to rename index.php to something else. [Default = index.php]';
 575  $messages['help_show_posts_max'] = 'Maximum number of posts shown in the main page. Only meaningful for new blogs. [Default = 15]';
 576  $messages['help_recent_posts_max'] = 'Maximum number of recent posts shown in the main page. Only meaningful for new blogs. [Default = 10]';
 577  $messages['help_save_drafts_via_xmlhttprequest_enabled'] = 'Whether the feature that allows to save drafts via Javascript and XmlHttpRequest is enabled. [Default = Yes]';
 578  $messages['help_locale_folder'] = 'Folder where the locale files are stored. [Default = ./locale]';
 579  $messages['help_default_locale'] = 'Default language settings for new blogs. [Default = en_UK]';
 580  $messages['help_default_blog_id'] = 'Default blog that will be shown if no other is specified. [Default = 1]';
 581  $messages['help_default_time_offset'] = 'Default time offset for new blogs. [Default = 0]';
 582  $messages['help_html_allowed_tags_in_comments'] = 'Space-separated list of the HTML tags that are allowed in comments. [Default = &lt;a&gt;&lt;i&gt;&lt;br&gt;&lt;br/&gt;&lt;b&gt;]';
 583  $messages['help_referer_tracker_enabled'] = 'Enable the feature to save referrers to the database. Set to "No" for higher performance. [Default = Yes]';
 584  $messages['help_show_more_enabled'] = 'Enable the "more..." feature by default for new blogs. [Default = Yes]';
 585  $messages['help_update_article_reads'] = 'Enable the update of the counter of times that an article has been read is updated or not. Set to "No" for higher performance. [Default = Yes]';
 586  $messages['help_update_cached_article_reads'] = 'Enable the update of the counter of times that an article has been read is updated, even when caching has been turned on. [Default = Yes]';
 587  $messages['help_xmlrpc_ping_enabled'] = 'Enable sending XMLRPC pings to sites that support this feature. [Default = Yes]';
 588  $messages['help_send_xmlrpc_pings_enabled_by_default'] = 'Enable sending XMLRPC pings by default when posting or updating an article. [Default = Yes]';
 589  $messages['help_xmlrpc_ping_hosts'] = 'URL pointing to the XMLRPC interface of sites that support the XMLRPC ping specification. Put each URL in one new line. [Default = http://rpc.weblogs.com/RPC2]';
 590  $messages['help_trackback_server_enabled'] = 'Enable incoming trackbacks. [Default = Yes]';
 591  $messages['help_htmlarea_enabled'] = 'Enable the WYSIWYG post editor by default in new blogs. [Default = Yes]';
 592  $messages['help_plugin_manager_enabled'] = 'Enable plugins. [Default = Yes]';
 593  $messages['help_minimum_password_length'] = 'Minimum length for passwords. [Default = 4]';
 594  $messages['help_xhtml_converter_enabled'] = 'If enabled, LifeType will try to convert all HTML code into proper XHTML code. [Default = Yes]';
 595  $messages['help_xhtml_converter_aggressive_mode_enabled'] = 'If enabled, LifeType will try even harder to generate XHTML out of HTML code, but it will be more prone to errors. [Default = No]';
 596  $messages['help_session_save_path'] = 'Please use this setting to change the folder where LifeType stores its session data, via the PHP function session_save_path() Please make sure that the folder is writable by the web server. Leave empty to use PHP\'s default session folder. [Default = (empty)]';
 597  // summary settings
 598  $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). [Default = 10]';
 599  $messages['help_summary_items_per_page'] = 'Number of blogs per page in the "Blogs List" section. [Default = 25]';
 600  $messages['help_forbidden_usernames'] = 'List of usernames separated by a blank space that are not allowed to be registered. [Default = admin www blog ftp]';
 601  $messages['help_force_one_blog_per_email_account'] = 'Restrict to only one blog per email account. [Default = No]';
 602  $messages['help_summary_show_agreement'] = 'Show an agreement text and make users accept it before proceeding to the registration process. [Default = Yes]';
 603  $messages['help_need_email_confirm_registration'] = 'Force users to confirm their registration by clicking a link embedded in an email sent to their account. [Default = Yes]';
 604  $messages['help_summary_disable_registration'] = 'Disable users registration of new blogs in this site. [Default = No]';
 605  // templates
 606  $messages['help_template_folder'] = 'Folder where templates are stored. [Default = ./templates]';
 607  $messages['help_default_template'] = 'Default template for new blogs. [Default = standard]';
 608  $messages['help_users_can_add_templates'] = 'Allow users to upload their own custom templates. [Default = Yes]';
 609  $messages['help_template_compile_check'] = 'If enabled, Smarty will check every time if template files have changed and if so, use the new version. Set this to disabled for higher performance. [Default = Yes]';
 610  $messages['help_template_cache_enabled'] = 'Enable the template cache. If enabled, the cached version of a page will be used whenever possible. No data will need to be fetched from the database and templates will not need to be recompiled. [Default = Yes]';
 611  $messages['help_template_cache_lifetime'] = 'Lifetime in seconds of the cache. Set to -1 to force the cache to never expire. If set to 0, the cache will be disabled but it is recommended to set template_cache_enabled to "No" in order to disable the cache. [Default = -1]';
 612  $messages['help_template_http_cache_enabled'] = 'Enable support for HTTP conditional requests. If enabled, LifeType will take the "If-Modified-Since" HTTP header into account and send only content if strictly needed. Enable this to save bandwidth [Default = Yes]';
 613  $messages['help_allow_php_code_in_templates'] = 'Allows to embed native PHP code in Smarty templates inside {php}...{/php} blocks. [Default = No]';
 614  // urls
 615  $messages['help_request_format_mode'] = 'Select one of the available URL format. If using custom URLs, make sure to configure the settings below. [Default = Plain]';
 616  $messages['plain'] = 'Plain';
 617  $messages['search_engine_friendly'] = 'Search engine friendly';
 618  $messages['custom_url_format'] = 'Custom URLs';
 619  $messages['help_permalink_format'] = 'Format for permalinks when using custom URLs. [Default = /blog/{blogname}/{catname}/{year}/{month}/{day}/{postname}$]';
 620  $messages['help_category_link_format'] = 'Format for links to categories when using custom URLs. [Default = /blog/{blogname}/{catname}$]';
 621  $messages['help_blog_link_format'] = 'Format for links to blogs when using custom URLs. [Default = /blog/{blogname}$]';
 622  $messages['help_archive_link_format'] = 'Format for links to archives when using custom URLs. [Default = /blog/{blogname}/archives/{year}/?{month}/?{day}]';
 623  $messages['help_user_posts_link_format'] = 'Format for articles posted by a certain user when using custom URLs. [Default = /blog/{blogname}/user/{username}$]';
 624  $messages['help_post_trackbacks_link_format'] = 'Format for links to the trackbacks page when using custom URLs. [Default = /blog/{blogname}/post/trackbacks/{postname}$]';
 625  $messages['help_template_link_format'] = 'Format for links to custom static template pages when using custom URLs. [Default = /blog/{blogname}/page/{templatename}$]';
 626  $messages['help_album_link_format'] = 'Format for links to resource albums when using custom URLs. [Default = /blog/{blogname}/album/{albumname}$]';
 627  $messages['help_resource_link_format'] = 'Format for links to resource pages with files when using custom URLs. [Default = /blog/{blogname}/resource/{albumname}/{resourcename}$]';
 628  $messages['help_resource_preview_link_format'] = 'Format for links to resource previews when using custom URLs. [Default = /blog/{blogname}/resource/{albumname}/preview/{resourcename}$]';
 629  $messages['help_resource_medium_size_preview_link_format'] = 'Format for links to medium-sized resource previews when using custom URLs. [Default = /blog/{blogname}/resource/{albumname}/preview-med/{resourcename}$]';
 630  $messages['help_resource_download_link_format'] = 'Format for links to files when using custom URLs. [Default = /blog/{blogname}/resource/{albumname}/download/{resourcename}$]';
 631  // email
 632  $messages['help_check_email_address_validity'] = 'When checking email addresses, perform some basic checks to see whether an MX record exists in the given domain and if so, if the email address is actually a valid mailbox. [Default = No]';
 633  $messages['help_email_service_enabled'] = 'Enable outgoing emails [Default = Yes]';
 634  $messages['help_post_notification_source_address'] = 'Email address that will appear in the "From:" field when sending emails from LifeType. [Default = noreply@your.host.com]';
 635  $messages['help_email_service_type'] = 'Which system to use in order to send emails. [Default = PHP]';
 636  $messages['help_smtp_host'] = 'If using SMTP as the email sending system, set this to the SMTP server that will be used to send out the messages. [Default = (empty)]';
 637  $messages['help_smtp_port'] = 'If the SMTP server is running in a port other than 25, configure this value. [Default = (empty)]';
 638  $messages['help_smtp_use_authentication'] = 'Enable this if the SMTP server requires basic authentication.  [Default = No]';
 639  $messages['help_smtp_username'] = 'If the SMTP server requires authentication, set this to the right username. [Default = (empty)]';
 640  $messages['help_smtp_password'] = 'If the SMTP server requires authentication, set this to the password of the username above. [Default = (empty)]';
 641  // helpers
 642  $messages['help_path_to_tar'] = 'Path to the "tar" tool, needed to unpack template sets in .tar.gz or tar.bz2 formats. [Default = /bin/tar]';
 643  $messages['help_path_to_gzip'] = 'Path to the "gzip" tool, needed to unpack template sets in .tar.gz format. [Default = /bin/gzip]';
 644  $messages['help_path_to_bz2'] = 'Path to the "bzip2" tool, needed to unpack template sets in .tar.bz2 format. [Default = /usr/bin/bzip2]';
 645  $messages['help_path_to_unzip'] = 'Path to the "unzip" tool, needed to unpack template sets in .zip format. [Default = /usr/bin/unzip]';
 646  $messages['help_unzip_use_native_version'] = 'Use a bundled PHP native version to unpack .zip files. [Default = No]';
 647  // uploads
 648  $messages['help_uploads_enabled'] = 'Whether users are allowed to upload files. This affects the resources section and the upload of custom templates and locales. [Default = Yes]';
 649  $messages['help_maximum_file_upload_size'] = 'Maximum file size allowed in bytes. This limit will never be higher than PHP\'s own limit. [Default = 2000000]';
 650  $messages['help_upload_forbidden_files'] = 'Space-separated list of file types not allowed to be uploaded. Usage of \'*\' and \'?\' is allowed. [Default = *.php *.php3 *.php4 *.phtml]';
 651  // interfaces
 652  $messages['help_xmlrpc_api_enabled'] = 'Enable XMLRPC access to blogs. [Default = Yes]';
 653  $messages['help_rdf_enabled'] = 'Enable the syndication of contents via Atom or RSS. [Default = Yes]';
 654  $messages['help_default_rss_profile'] = 'Default version of RSS or Atom used to syndicate contents unless otherwise specified. [Default = RSS 1.0]';
 655  // security
 656  $messages['help_security_pipeline_enabled'] = 'Enable the security pipeline and all related filters. This also affects plugins that register new filters. [Default = Yes]';
 657  $messages['help_maximum_comment_size'] = 'Maximum size in bytes that a comment can have, set to 0 to disable this feature. [Default = 0]';
 658  // bayesian filter
 659  $messages['help_bayesian_filter_enabled'] = 'Enable the Bayesian filter for improved automatic spam filtering. [Default = Yes]';
 660  $messages['help_bayesian_filter_spam_probability_treshold'] = 'Maximum threshold before which a comment can be considered spam. [Default = 0.9]';
 661  $messages['help_bayesian_filter_nonspam_probability_treshold'] = 'Minimum threshold after which a post can be considered non-spam. [Default = 0.2]';
 662  $messages['help_bayesian_filter_min_length_token'] = 'Minimum length of a token in order for it to be considered meaningful for the Bayesian filter. [Default = 3]';
 663  $messages['help_bayesian_filter_max_length_token'] = 'Maximum length of a token in order for it to be considered meaningful for the Bayesian filter. [Default = 100]';
 664  $messages['help_bayesian_filter_number_significant_tokens'] = 'Number of significant tokens. [Default = 15]';
 665  $messages['help_bayesian_filter_spam_comments_action'] = 'What to do with comments that are considered spam. Set to "Throw away" only when your filter has been properly trained. [Default = Keep]';
 666  $messages['keep_spam_comments'] = 'Keep in the database marked as "Spam"';
 667  $messages['throw_away_spam_comments'] = 'Throw them away (do not save them)';
 668  // resources
 669  $messages['help_resources_enabled'] = 'Enable resources. [Default = Yes]';
 670  $messages['help_resources_folder'] = 'Relative path to the folder where resource files (pictures, videos etc.) will be kept. [Default = ./gallery]';
 671  $messages['help_thumbnail_method'] = 'Method used to generate thumbnails. If using PHP, support for GD is required. [Default = PHP]';
 672  $messages['help_path_to_convert'] = 'Path to the "convert" tool from the ImageMagick package. Mandatory if the thumbnail method is "ImageMagick". [Default = /usr/bin/convert]';
 673  $messages['help_thumbnail_format'] = 'Format in which thumbnails are saved. [Default = Same as image]';
 674  $messages['help_thumbnail_height'] = 'Default height for small thumbnails. [Default = 120]';
 675  $messages['help_thumbnail_width'] = 'Default width for small thumbnails. [Default = 120]';
 676  $messages['help_medium_size_thumbnail_height'] = 'Default height for medium thumbnails. [Default = 480]';
 677  $messages['help_medium_size_thumbnail_width'] = 'Default width for medium thumbnails. [Default = 640]';
 678  $messages['help_thumbnails_keep_aspect_ratio'] = 'Keep the aspect ratio when generating thumbnails. Might generate thumbnails bigger than the sizes specified above but quality is better. [Default = Yes]';
 679  $messages['help_thumbnail_generator_force_use_gd1'] = 'Force LifeType to use GD1-only functions. [Default = No]';
 680  $messages['help_thumbnail_generator_user_smoothing_algorithm'] = 'Algorithm used to smooth thumbnails. Only used when the thumbnail method is GD. [Default = PHP Imagecopyresampled]';
 681  $messages['help_resources_quota'] = 'Global resource quota for blogs in bytes (i.e. 5242880 Bytes = 5MB), or set to 0 for unlimited quota. [Default = 0]';
 682  $messages['help_resource_server_http_cache_enabled'] = 'Enable support for the "If-Modified-Since" header and HTTP conditional requests. Enable for increased bandwidth savings. [Default = No]';
 683  $messages['help_resource_server_http_cache_lifetime'] = 'Time in seconds that clients should use the cached version of resources. [Default = 86400]';
 684  $messages['same_as_image'] = 'Same as original image';
 685  // search
 686  $messages['help_search_engine_enabled'] = 'Enable the search engine. [Default = Yes]';
 687  $messages['help_search_in_custom_fields'] = 'Search in custom fields. [Default = Yes]';
 688  $messages['help_search_in_comments'] = 'Search in comments. [Default = Yes]';
 689  
 690  // cleanup
 691  $messages['purge'] = 'Purge';
 692  $messages['cleanup_spam'] = 'Purge Spam';
 693  $messages['cleanup_spam_help'] = 'This will remove all comments that have been marked as spam by users. It will not be possible to recover them once they have been removed.';
 694  $messages['spam_comments_purged_ok'] = 'Spam comments purged successfully';
 695  $messages['cleanup_posts'] = 'Purge Posts';
 696  $messages['cleanup_posts_help'] = 'This will remove all posts that have been deleted by users (marked as "Deleted") It will not be possible to recover them once they have been removed.';
 697  $messages['posts_purged_ok'] = 'Posts purged successfully';
 698  $messages['purging_error'] = 'There was a failure while purging the data';
 699  
 700  /// summary ///
 701  // front page
 702  $messages['summary'] = 'Summary';
 703  $messages['register'] = 'Register';
 704  $messages['summary_welcome'] = 'Welcome!';
 705  $messages['summary_most_active_blogs'] = 'Most Active Blogs';
 706  $messages['summary_most_commented_articles'] = 'Most Commented Articles';
 707  $messages['summary_most_read_articles'] = 'Most Read articles';
 708  $messages['password_forgotten'] = 'Forgot your password?';
 709  $messages['summary_newest_blogs'] = 'Newest Blogs';
 710  $messages['summary_latest_posts'] = 'Latest Posts';
 711  $messages['summary_search_blogs'] = 'Search Blogs';
 712  
 713  // blog list
 714  $messages['updated'] = 'Updated';
 715  $messages['total_reads'] = 'total';
 716  
 717  // blog profile
 718  $messages['blog'] = 'Blog';
 719  $messages['latest_posts'] = 'Latest posts';
 720  
 721  // registration
 722  $messages['register_step0_title'] = 'Service terms acceptance';
 723  $messages['agreement'] = 'Agreement'; 
 724  $messages['decline'] = 'Decline';
 725  $messages['accept'] = 'Accept';
 726  $messages['read_service_agreement'] = 'Please read the terms of this service and click the "Accept" button if you agree';
 727  $messages['register_step1_title'] = 'Create a user [1/4]';
 728  $messages['register_step1_help'] = 'First you need to create a new user in order to get a blog. This user will be the owner of the blog and will have access to all its functionalities.';
 729  $messages['register_next'] = 'Next';
 730  $messages['register_back'] = 'Back';
 731  $messages['register_step2_title'] = 'Create a blog [2/4]';
 732  $messages['register_blog_name_help'] = 'Name for your new blog';
 733  $messages['register_step3_title'] = 'Choose a Template [3/4]';
 734  $messages['step1'] = 'Step 1';
 735  $messages['step2'] = 'Step 2';
 736  $messages['step3'] = 'Step 3';
 737  $messages['register_step3_help'] = 'Please select one of the available templates as the default one for your blog. If you do not like it later on, it can always be changed.';
 738  $messages['error_must_choose_template'] = 'Please select one template';
 739  $messages['select_template'] = 'Select template';
 740  $messages['register_step5_title'] = 'Congratulations! [4/4]';
 741  $messages['finish'] = 'Finish';
 742  $messages['register_need_confirmation'] = 'An email message including the confirmation has been sent to your email address, please click the link as soon as you receive the message to start blogging!';
 743  $messages['register_step5_help'] = 'Congratulations, your new user and blog have been successfully created!';
 744  $messages['register_blog_link'] = 'If you would like to take a look at your new blog, you can go there now: <a href="%2$s">%1$s</a>';
 745  $messages['register_blog_admin_link'] = 'If you prefer to start posting right away, please click to go to the <a href="admin.php">administration interface</a>';
 746  $messages['register_error'] = 'There was an error during the process';
 747  $messages['error_registration_disabled'] = 'Sorry, registration of new blogs in this site has been disabled';
 748  // registration article topic and text
 749  $messages['register_default_article_topic'] = 'Congratulations!';
 750  $messages['register_default_article_text'] = 'If you can read this post, it means that the registration process was successful and that you can start blogging';
 751  $messages['register_default_category'] = 'General';
 752  // confirmation email
 753  $messages['register_confirmation_email_text'] = 'Please click the link below in order to activate your blog:
 754  
 755  %s
 756  
 757  Have a nice day';
 758  $messages['error_invalid_activation_code'] = 'Sorry, the confirmation code is not valid';
 759  $messages['blog_activated_ok'] = 'Congratulations, your new user and blog have been successfully validated!';
 760  // forgot your password?
 761  $messages['reset_password'] = 'Reset your password';
 762  $messages['reset_password_username_help'] = 'Name of the user whose password you would like to reset.';
 763  $messages['reset_password_email_help'] = 'Email address which was used to register this user.';
 764  $messages['reset_password_help'] = 'Use this form to reset the password of your user, should you not remember it. Please type the name of the user whose password you would like to reset, as well as the email address that was used to register this user.';
 765  $messages['error_resetting_password'] = 'There was an error resetting the password. Please check the data and try again';
 766  $messages['reset_password_error_incorrect_email_address'] = 'The email address is not correct or it is not the email address used to register this user';
 767  $messages['password_reset_message_sent_ok'] = 'An email message with a link has been sent to your email address. Please click the link in order to reset your password';
 768  $messages['error_incorrect_request'] = 'The parameters in the URL are not correct';
 769  $messages['change_password'] = 'Set new password';
 770  $messages['change_password_help'] = 'Please type and confirm your new password.';
 771  $messages['new_password'] = 'New password';
 772  $messages['new_password_help'] = 'Type here your new password.';
 773  $messages['password_updated_ok'] = 'Your password has been successfully updated';
 774  
 775  // Suggested by BCSE, some useful messages that not available in official locale
 776  $messages['upgrade_information'] = 'This page looks plain and un-styled because you\'re using a non-standard compliant browser. To see it in its best form, please <a href="http://www.webstandards.org/upgrade/" title="The Web Standards Project\'s Browser Upgrade initiative">upgrade</a> to a browser that supports web standards. It\'s free and painless.';
 777  $messages['jump_to_navigation'] = 'Jump to Navigation.';
 778  $messages['comment_email_never_display'] = 'Line and paragraph breaks automatic, e-mail address never displayed.';
 779  $messages['comment_html_allowed'] = '<acronym title="Hypertext Markup Language">HTML</acronym> allowed: &lt;<acronym title="Hyperlink">a</acronym> href=&quot;&quot; title=&quot;&quot; rel=&quot;&quot;&gt; &lt;<acronym title="Acronym Description">acronym</acronym> title=&quot;&quot;&gt; &lt;<acronym title="Quote">blockquote</acronym> cite=&quot;&quot;&gt; &lt;<acronym title="Strike">del</acronym>&gt; &lt;<acronym title="Italic">em</acronym>&gt; &lt;<acronym title="Underline">ins</acronym>&gt; &lt;<acronym title="Bold">strong</acronym>&gt;';
 780  $messages['trackback_uri'] = 'The <acronym title="Uniform Resource Identifier">URI</acronym> to trackback this entry is: ';
 781  
 782  $messages['xmlrpc_ping_ok'] = 'XMLRPC Ping sent successfully: ';
 783  $messages['error_sending_xmlrpc_ping'] = 'There was an error sending the XMLRPC ping to: ';
 784  $messages['error_sending_xmlrpc_ping_message'] = 'There was an error sending the XMLRPC ping: ';
 785  
 786  //
 787  // new strings for 1.1
 788  //
 789  $messages['error_incorrect_trackback_id'] = 'The trackback identifier is not correct';
 790  $messages['error_marking_trackback_as_spam'] = 'There was an error marking the trackback as spam';
 791  $messages['trackback_marked_as_spam_ok'] = 'The trackback was marked as successfully as spam';
 792  $messages['error_marking_trackback_as_nonspam'] = 'There was an error marking the trackback as non-spam';
 793  $messages['trackback_marked_as_nonspam_ok'] = 'The trackback was marked successfully as non-spam';
 794  $messages['upload_here'] = 'Upload here';
 795  $messages['reply_string'] = 'Re: ';
 796  $messages['cleanup_users'] = 'Purge Users';
 797  $messages['cleanup_users_help'] = 'This will remove all users that have been disabled by administrator (marked as "Disabled"). It will also remove any blogs that user own including everything in that blog. If user has permission to post in other blog, all posts made by them will be deleted as well.  It will not be possible to recover once users have been removed.';
 798  $messages['users_purged_ok'] = 'Users purged successfully';
 799  $messages['cleanup_blogs'] = 'Purge Blogs';
 800  $messages['cleanup_blogs_help'] = 'This will remove all blogs that have been disabled by administrator (marked as "Disabled"). It will remove everything in that blog.  It will not be possible to recover once blogs have been removed.';
 801  $messages['blogs_purged_ok'] = 'Blogs purged successfully';
 802  $messages['help_use_http_accept_language_detection'] = 'Most web browsers such as Mozilla Firefox, Safari or Internet Explorer send at least one language code the user <i>should</i> understand. If this feature is activated, LifeType tries to serve the user with the requested language if it\'s available. [Default = No]';
 803  
 804  $messages['error_invalid_blog_category'] = 'Invalid blog category';
 805  $messages['error_adding_blog_category'] = 'There was an error adding the blog category';
 806  $messages['newBlogCategory'] = 'New Blog Category';
 807  $messages['editBlogCategories'] = 'Blog Categories';
 808  $messages['blog_category_added_ok'] = 'Blog category added successfully';
 809  $messages['error_blog_category_has_blogs'] = 'The blog category "%s" has some blogs assigned to it. Please remove the blogs from the category and then try again.';
 810  $messages['error_deleting_blog_category'] = 'There was an error deleting blog category "%s"';
 811  $messages['blog_category_deleted_ok'] = 'Blog category "%s" was deleted successfully';
 812  $messages['blog_categories_deleted_ok'] = '%s blog categories deleted successfully';
 813  $messages['error_deleting_blog_category2'] = 'There was an error removing the blog category with id %s';
 814  $messages['blog_category'] = 'Blog Category';
 815  $messages['blog_category_help'] = 'Global blog category assigned to this blog.';
 816  
 817  $messages['help_use_captcha_auth'] = 'Use a CAPTCHA mechanism in the registration process to prevent automatic registration by robotic scripts. [ Default = No ]';
 818  $messages['help_skip_dashboard'] = 'The dashboard page will not be shown anymore and instead users will be taken to the first blog to which they belong right away. [ Default = No ]';
 819  
 820  $messages['manageGlobalArticleCategory'] = 'Global Article Categories';
 821  $messages['newGlobalArticleCategory'] = 'New Global Article Category';
 822  $messages['editGlobalArticleCategories'] = 'Global Article Categories';
 823  $messages['global_category_name_help'] = 'Name of the new global article category.';
 824  $messages['global_category_description_help'] = 'Description of the new global article category.';
 825  $messages['error_incorrect_global_category_id'] = 'Invalid global article category';
 826  $messages['global_category_deleted_ok'] = 'Article category "%s" deleted successfully';
 827  $messages['global_category_added_ok'] = 'Global category "%s" added successfully';
 828  $messages['error_deleting_global_category2'] = 'There was an error removing article category with id = %s';
 829  
 830  $messages['help_page_suffix_format'] = 'Suffix that will be appended to URLs that support paging. [ Default = /page/{page} ]';
 831  
 832  $messages['help_final_size_thumbnail_width'] = 'Final width of uploaded images. Leave empty or as zero to store the full size image. [ Default = 0 ]';
 833  $messages['help_final_size_thumbnail_height'] = 'Final height of uploaded images. Leave empty or as zero to store the full size image. [ Default = 0 ]';
 834  $messages['error_comment_too_big'] = 'The comment is too big';
 835  $messages['error_you_have_been_blocked'] = 'Blocked: this request was not completed.';
 836  $messages['created'] = 'Created';
 837  $messages['view'] = 'View';
 838  $messages['editUser'] = 'Edit User';
 839  $messages['help_urlize_word_separator'] = 'Character that will be used as the word separator when generating URLs pointing to LifeType pages. This will also be used when generating hostnames from blog names if support for subdomains is activated. [ Default = - ]';
 840  $messages['help_summary_template_cache_lifetime'] = 'Life time in seconds of the summary cached pages. If set to something else than \'0\' the summary pages will be kept for as long as indicated here insted of being refreshed every time data changes. [ Default = 0 ]';
 841  $messages['register_default_album_name'] = 'General';
 842  $messages['register_default_album_description'] = 'Use this album to upload new pictures.';
 843  $messages['show_in_summary'] = 'Show in Summary';
 844  $messages['show_in_summary_help'] = 'Include this blog in the summary page of this site.';
 845  
 846  $messages['saving_message'] = 'Saving ...';
 847  $messages['show_option_panel'] = 'Show Options';
 848  $messages['hide_option_panel'] = 'Hide Options';
 849  
 850  $messages['quick_launches'] = 'Quick Launches';
 851  
 852  $messages['confirmation_message_resent_ok'] = 'Confirmation message resent successfully.';
 853  
 854  $messages['goto_blog_page'] = 'Go to %s';
 855  
 856  $messages['help_num_blogs_per_user'] = 'Number of blogs that an owner can create through the administration interface.';
 857  
 858  $messages['massive_change_option'] = 'Bulk Edit Options';
 859  $messages['show_massive_change_option'] = 'Show Bulk Edit Options';
 860  $messages['hide_massive_change_option'] = 'Hide Bulk Edit Options';
 861  $messages['change_status'] = 'Change Status';
 862  $messages['change_category'] = 'Change Category';
 863  $messages['error_updating_comment_no_comment'] = 'There was an error updating the comment. Comment #%s could not be found';
 864  $messages['error_updating_comment_wrong_blog'] = 'There was an error updating the comment. Comment (%s) is not posted on this blog.';
 865  $messages['error_updating_comment'] = 'There was an error updating (%s)';
 866  $messages['error_updating_comment_already_updated'] = 'No change made to (%s)';
 867  $messages['comment_updated_ok'] = 'Comment successfully updated.';
 868  $messages['comments_updated_ok'] = '%s comments successfully updated.';
 869  
 870  $messages['error_post_status'] = 'Please select post status.';
 871  $messages['error_comment_status'] = 'Please select comment status.';
 872  $messages['admin_mode'] = 'Admin Mode';
 873  $messages['administrate_user_blog'] = 'Administrate this blog';
 874  $messages['trackbacks_updated_ok'] = '%s trackbacks updated successfully';
 875  $messages['trackback_updated_ok'] = 'Trackback updated successfully';
 876  $messages['error_trackback_status'] = 'Please select a valid status';
 877  $messages['select'] = 'Select';
 878  $messages['remove_selected'] = 'Remove Selected';
 879  
 880  $messages['notification_subject'] = 'LifeType Notification System';
 881  $messages['error_no_trackback_links_sent'] = 'Warning: No Trackbacks were sent.';
 882  
 883  $messages['help_http_cache_lifetime'] = 'Lifetime in seconds of the client side cache (browsers will not return to the server for this long, and pages will be served from the local cache.  This greatly speeds up the browsing experience, but will delay post and comment visibility. [Default = 1800]';
 884  
 885  $messages['trackbacks_no_trackback'] = 'Sending a trackback to the following URL failed: ';
 886  
 887  $messages['error_comment_spam_throw_away'] = 'You cannot post this message. Anti-spam filter has blocked it.';
 888  $messages['error_comment_spam_keep'] = 'The anti-spam filter has put your comment in the moderation queue and it will have to be approved by the blog owner.';
 889  
 890  $messages['blog_categories'] = 'Blog Categories';
 891  $messages['global_article_categories'] = 'Global Article Categories';
 892  
 893  $messages['help_force_posturl_unique'] = 'Force all post URLs within a blog to be unique.  This is only needed if you are changing the URLs and are removing the date portions of the URL. [ Default = no ]';
 894  
 895  $messages['default_send_notification'] = 'Default Send Notification';
 896  
 897  $messages['enable_pull_down_menu'] = 'Pull Down Menu';
 898  $messages['enable_pull_down_menu_help'] = 'Enable the pull down menu.';
 899  
 900  $messages['change_album'] = 'Change Album';
 901  
 902  $messages['warning_autosave_message'] = '<img src="imgs/admin/icon_warning-16.png" alt="Error" class="InfoIcon"/><p class="ErrorText">You seem to have left here without saving your post. If so, you may <a href="#" onclick="restoreAutoSave();">click here to restore it</a> or <a href="#" onclick="eraseAutoSave();">delete it</a>.</p>';
 903  
 904  $messages['check_username'] = 'Check User Name';
 905  $messages['check_username_ok'] = 'The user name is available!';
 906  $messages['error_username_exist'] = 'Sorry! The user name is not available, please try others.';
 907  
 908  $messages['error_rule_email_dns_server_temp_fail'] = 'Temporary failure - try again later.';
 909  $messages['error_rule_email_dns_server_unreachable'] = 'Email server unreachable.';
 910  $messages['error_rule_email_dns_not_permitted'] = 'E-mail not permitted.';
 911  
 912  $messages['blog_users_help'] = 'Users who have access to this blog.';
 913  
 914  $messages['summary_welcome_paragraph'] = 'This message is only a placeholder and should be edited when customizing this page for your service. This message is currently stored in the en_UK locale file but you may also edit the template templates/summary/index.template and place your text there.';
 915  
 916  $messages['first_day_of_week'] = 0;
 917  $messages['first_day_of_week_label'] = 'First Day of Week';
 918  $messages['first_day_of_week_help'] = 'First Day of Week in calendar.';
 919  
 920  $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, {username} to get the name of the user owner of the blog and {blogdomain} to allow the user to specify any subdomain in order to generate a link to a blog. (e.g. http://{blogname}.yourdomain.com)';
 921  
 922  $messages['registration_default_subject'] = 'LifeType registration confirmation';
 923  
 924  $messages['error_invalid_subdomain'] = 'The subdomain name is not valid or it is not unique';
 925  $messages['register_blog_domain_help'] = 'Name and subdomain that you would like to use for your new blog.';
 926  $messages['domain'] = 'Domain';
 927  $messages['help_subdomains_available_domains'] = 'Enter a space delimited set of main domains allowed.  The user will be presented with a dropdown list of these values, and can add any subdomain he wants.  This is only used if you enabled subdomains and used {blogdomain} in the subdomain_base_url above. Use a \'?\' if you want to allow any domain.';
 928  $messages['subdomains_any_domain'] = '<- Multi-domain enabled. Type in the full domain.';
 929  $messages['error_updating_blog_subdomain'] = 'There was an error updating the subdomain.  Please check the data and try again.';
 930  $messages['error_updating_blog_main_domain'] = 'There was an error updating the main domain setting. This probably means the site administrator has configured something incorrectly.';
 931  
 932  $messages['monthsshort'] = Array( 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' );
 933  $messages['weekdaysshort'] = Array( 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' );
 934  
 935  $messages['search_type'] = 'Search in';
 936  $messages['posts'] = 'Posts';
 937  $messages['blogs'] = 'Blogs';
 938  $messages['resources'] = 'Resources';
 939  $messages['upload_in_progress'] = 'Uploading. Please wait...';
 940  $messages['error_incorrect_username'] = 'The username is not correct, it is already in use or it is too long (maximum 15 characters)';
 941  
 942  $messages['Miscellaneous'] = 'Miscellaneous';
 943  $messages['Plugins'] = 'Plugins';
 944  
 945  $messages['auth_img'] = 'Authentication code';
 946  $messages['auth_img_help'] = 'Please type the code you see in the image below.';
 947  
 948  $messages['global_category'] = 'Global category';
 949  $messages['global_article_category_help'] = 'Site wide category for this post.';
 950  
 951  $messages['password_reset_subject'] = 'LifeType Password Request';
 952  
 953  //
 954  // new strings for LifeType 1.2
 955  //
 956  $messages['auth'] = 'Auth';
 957  $messages['authenticated'] = 'Authenticated';
 958  $messages['dropdown_list_field'] = 'Drop-down list';
 959  $messages['values'] = 'Field values';
 960  $messages['field_values'] = 'Values that will be shown as options in this field. The first one will be used as the default option.';
 961  
 962  $messages['permission_added_ok'] = 'Permission added successfullly';
 963  $messages['core_perm'] = 'Core Permission';
 964  $messages['admin_only'] = 'Admin Only';
 965  $messages['permissionsList'] = 'Permissions';
 966  $messages['newPermission'] = 'New Permission';
 967  $messages['permission_name_help'] = 'Unique name for the permission';
 968  $messages['permission_description_help'] = 'Description given for the permission';
 969  $messages['core_perm_help'] = 'If this permission is part of the core permissions, it will not be possible to delete it';
 970  $messages['admin_only_help'] = 'Whether this permission can only be assigned by administrator users';
 971  $messages['error_adding_new_permission'] = 'There was an error adding the new permission, please check your data';
 972  $messages['error_incorrect_permission_id'] = 'The permission identifier was not correct';
 973  $messages['error_permission_cannot_be_deleted'] = 'Permission "%s" cannot be deleted because either it has been granted to at least one user or it is a core permission.';
 974  $messages['error_deleting_permission'] = 'There was an error deleting permission "%s"';
 975  $messages['permission_deleted_ok'] = 'Permission "%s" was deleted successfully';
 976  $messages['permissions_deleted_ok'] = '%s permissions successfully deleted';
 977  $messages['error_deleting_permission2'] = 'There was an error deleting permission with identifier "%s"';
 978  
 979  $messages['help_hard_show_posts_max'] = 'Maximum upper limit for articles shown in blog pages. If users set a custom value over this limit, it will be ignored and the value specified here will be used. [ Default = 50 ]';
 980  $messages['help_hard_recent_posts_max'] = 'Maximum upper limit for recent articles shown in blog pages. If users set a custom value over this limit, it will be ignored and the value specified here will be used [ Default = 25 ]';
 981  
 982  $messages['error_permission_required'] = 'You don\'t have enough permissions to perform the requested action';
 983  $messages['user_permissions_updated_ok'] = 'User permissions updated successfully';
 984  
 985  // blog permissions
 986  $messages['add_album_desc'] = 'Add new albums';
 987  $messages['add_blog_template_desc'] = 'Add new blog templates';
 988  $messages['add_blog_user_desc'] = 'Add new blog users';
 989  $messages['add_category_desc'] = 'Add new categories';
 990  $messages['add_custom_field_desc'] = 'Add new custom fields';
 991  $messages['add_link_desc'] = 'Add new links';
 992  $messages['add_link_category_desc'] = 'Add new link categories';
 993  $messages['add_post_desc'] = 'Add new posts';
 994  $messages['add_resource_desc'] = 'Add new resources';
 995  $messages['blog_access_desc'] = 'Allow access to this blog';
 996  $messages['update_album_desc'] = 'Update existing albums';
 997  $messages['update_blog_desc'] = 'Update the blog settings';
 998  $messages['update_blog_template_desc'] = 'Update a blog template';
 999  $messages['update_blog_user_desc'] = 'Update user permissions';
1000  $messages['update_category_desc'] = 'Updating existing categories';
1001  $messages['update_comment_desc'] = 'Update existing comments';
1002  $messages['update_custom_field_desc'] = 'Update existing custom fields';
1003  $messages['update_link_desc'] = 'Update existing links';
1004  $messages['update_link_category_desc'] = 'Update existing link categories';
1005  $messages['update_post_desc'] = 'Update existing posts';
1006  $messages['update_resource_desc'] = 'Update existing resources';
1007  $messages['update_trackback_desc'] = 'Update existing trackbacks';
1008  $messages['view_blog_templates_desc'] = 'View the blog templates';
1009  $messages['view_blog_users_desc'] = 'View the blog users';
1010  $messages['view_categories_desc'] = 'View the blog categories';
1011  $messages['view_comments_desc'] = 'View the blog comments';
1012  $messages['view_custom_fields_desc'] = 'View the blog custom fields';
1013  $messages['view_links_desc'] = 'View the blog links';
1014  $messages['view_link_categories_desc'] = 'View the blog link categories';
1015  $messages['view_posts_desc'] = 'View the blog posts';
1016  $messages['view_resources_desc'] = 'View the blog resources';
1017  $messages['view_trackbacks_desc'] = 'View the blog trackbacks';
1018  $messages['login_perm_desc'] = 'User is allowed to log in';
1019  // admin permissions
1020  $messages['add_blog_category_desc'] = 'User can add blog categories';
1021  $messages['add_global_article_category_desc'] = 'User can add global article categories';
1022  $messages['add_locale_desc'] = 'User can add new locales';
1023  $messages['add_permission_desc'] = 'User can add new permissions';
1024  $messages['add_site_blog_desc'] = 'User can add new blogs';
1025  $messages['add_template_desc'] = 'User can add new templates';
1026  $messages['add_user_desc'] = 'User can add new users';
1027  $messages['edit_blog_admin_mode_desc'] = 'User can administrate other blogs (admin mode)';
1028  $messages['purge_data_desc'] = 'User can purge data';
1029  $messages['update_blog_category_desc'] = 'User can update and delete blog categories';
1030  $messages['update_global_article_category_desc'] = 'User can update and delete global article categories';
1031  $messages['update_global_settings_desc'] = 'User can update the site settings';
1032  $messages['update_locale_desc'] = 'User can update and delete locales';
1033  $messages['update_permission_desc'] = 'User can update and delete permissions';
1034  $messages['update_plugin_settings_desc'] = 'User can update plugin settings';
1035  $messages['update_site_blog_desc'] = 'User can update and delete blogs';
1036  $messages['update_template_desc'] = 'User can update and delete templates';
1037  $messages['update_user_desc'] = 'User can update and delete users';
1038  $messages['view_blog_categories'] = 'User can view the blog categories';
1039  $messages['view_global_article_categories_desc'] = 'User can view the global article categories';
1040  $messages['view_global_settings_desc'] = 'User can view the site settings';
1041  $messages['view_locales_desc'] = 'User can view the locales';
1042  $messages['view_permissions_desc'] = 'User can view the permissions';
1043  $messages['view_plugins_desc'] = 'User can view the installed plugins';
1044  $messages['view_site_blogs_desc'] = 'User can view the site blogs';
1045  $messages['view_templates_desc'] = 'User can view the templates';
1046  $messages['view_users_desc'] = 'User can view the users';
1047  $messages['update_blog_stats_desc'] = 'User can delete referrers';
1048  $messages['manage_admin_plugins_desc'] = 'Manage the admin-only features of plugins';
1049  
1050  $messages['summary_welcome_msg'] = 'Welcome, %s!';
1051  $messages['summary_go_to_admin'] = 'Go to admin interface';
1052  
1053  $messages['error_can_only_update_own_articles'] = 'Your permissions allow you only to modify your own articles.';
1054  $messages['update_all_user_articles_desc'] = 'Allow to modify other users\' articles';
1055  $messages['error_can_only_view_own_articles'] = 'Your permissions allow you only to see your own articles.';
1056  $messages['view_all_user_articles_desc'] = 'Allow to view other users\' articles';
1057  $messages['error_fetching_permission'] = 'There was an error loading the permission';
1058  $messages['editPermission'] = 'Edit Permission';
1059  $messages['error_updating_permission'] = 'There was an error updating the permission';
1060  $messages['permission_updated_ok'] = 'Permission updated succesfully';
1061  $messages['error_adding_permission'] = 'There was an error adding the permission';
1062  $messages['error_cannot_login'] = 'Sorry, you are not allowed to log in';
1063  $messages['admin_user_permissions_help'] = 'Site-wide permissions granted to this user';
1064  
1065  $messages['permissions'] = 'Permissions';
1066  $messages['blog_user_permissions_help'] = 'Permissions assigned to this user in this blog';
1067  $messages['pluginSettings'] = 'Plugin Settings';
1068  $messages['user_can_override'] = 'Users can override';
1069  $messages['user_cannot_override'] = 'Users cannot override';
1070  $messages['global_plugin_settings_saved_ok'] = 'Global plugin settings saved successfully';
1071  $messages['error_updating_global_plugin_settings'] = 'There was an error saving the the global plugin settings';
1072  $messages['error_incorrect_value'] = 'The value is not correct';
1073  $messages['parameter'] = 'Parameter';
1074  $messages['value'] = 'Value';
1075  $messages['override'] = 'Override';
1076  $messages['editCustomField'] = 'Edit Custom Field';
1077  $messages['view_blog_stats_desc'] = 'View the blog statistics';
1078  $messages['manage_plugins_desc'] = 'Manage blog plugins';
1079  
1080  $messages['error_global_category_has_articles'] = 'The global article category cannot be deleted because it still has articles';
1081  $messages['error_adding_global_article_category'] = 'There was an error adding the global article category';
1082  
1083  $messages['temp_folder_reset_ok'] = 'The temporary folder was successfully cleaned up';
1084  $messages['cleanup_temp_help'] = 'This will trigger a clean up of the temporary folder, forcing the data cache and the template cache to be reset for all blogs.';
1085  $messages['cleanup_temp'] = 'Purge temporary folder';
1086  
1087  $messages['comment_only_auth_users'] = 'Only authenticated users can comment';
1088  $messages['comment_only_auth_users_help'] = 'Only those users who have logged in with a valid user name and password will be allowed to write comments';
1089  $messages['show_comments_max'] = 'Comments per page';
1090  $messages['show_comments_max_help'] = 'Maximum number of comments per page [ Default = 20 ]';
1091  $messages['hard_show_comments_max_help'] = 'Hard limit for the number of comments per page [ Default = 50 ]';
1092  
1093  $messages['error_resource_not_whitelisted_extension'] = 'This file is not one of the allowed types.';
1094  $messages['help_upload_allowed_files'] = 'Space-separated list of file types that are allowed to be uploaded. Usage of \'*\' and \'?\' is allowed. If both upload_forbidden_file and this option are set, the whitelist (upload_allowed_files) takes precedence over the blacklist [Default = None]';
1095  
1096  $messages['help_template_load_order'] = 'Defines in which order template files are searched and loaded. If using \'Load default templates first\', LifeType will try to find files first in the templates/default/ folder and if not available there, then it will load the user\'s template files. If the same template file exists in both places, the default one takes precedence. If set to \'Load user templates first\', user templates are always loaded first and if unavailable, then the default one is used. If the same template file exists in both places, the user template always takes precedence.';
1097  $messages['template_load_order_user_first'] = 'Load default templates first';
1098  $messages['template_load_order_default_first'] = 'Load user templates first';
1099  
1100  $messages['editBlogUser'] = 'Edit Blog User';
1101  
1102  $messages['help_summary_service_name'] = 'Name of your site/service that will appear in several places in the front page as well as in the RSS feeds [ Default = empty ]';
1103  
1104  $messages['register_step2_help'] = 'Please provide the required information in order to create a blog.';
1105  
1106  $messages['create_date'] = 'Date created';
1107  
1108  $messages['insert_media'] = 'Insert media';
1109  $messages['insert_more'] = 'Toggle "More..." link';
1110  
1111  $messages['purging_please_wait'] = 'Please wait while data is being purged. This page will keep refreshing itself until all data has been processed, please do not attempt to stop this process';
1112  
1113  $messages['error_cannot_delete_last_blog_category'] = 'You cannot delete the last blog category.';
1114  
1115  $messages['help_logout_destination_url'] = 'URL where users will be forwarded when logging out of the administration interface instead of the login page. [ Default Value = empty ]';
1116  $messages['help_default_global_article_category_id'] = 'Identifier of the default global article category [ Default = empty ]';
1117  $messages['help_blog_does_not_exist_url'] = 'URL where users will be forwarded when they attempt to reach a blog that does not exist in this site, instead of being forwarded to the site\'s default blog [ Default = empty ]';
1118  
1119  $messages['error_invalid_blog_name'] = 'The blog name is not valid';
1120  
1121  /* strings for /default/ templates */
1122  
1123  
1124  $messages['help_forbidden_blognames'] = 'List of strings separated by a blank space that are not allowed to be used as blog names. It is possible to use regular expressions instead of plain strings. [ Default = (empty) ]';
1125  
1126  $messages['posts_updated_ok'] = '%s posts updated successfully';
1127  $messages['error_updating_post2'] = 'There was an error updating the article with idenfitier "%s"';
1128  $messages['resources_updated_ok'] = '% resources updated successfully';
1129  $messages['error_updating_resource2'] = 'There was an error updating the resource with identifier "%s"';
1130  $messages['albums_updated_ok'] = '%s albums updated successfully';
1131  $messages['error_updating_album2'] = 'There was an error updating album with identifier "%s"';
1132  $messages['links_updated_ok'] = '%s links updated successfully';
1133  $messages['error_updating_link2'] = 'There was an error updating the link with identifier "%s"';
1134  
1135  $messages['version'] = 'Version';
1136  
1137  $messages['error_resources_disabled'] = 'Sorry, support for uploading new resources has been disabled in this site';
1138  $messages['help_login_admin_panel'] = 'Click the blog name to enter the administration page.';
1139  
1140  $messages['blog_updated_ok'] = 'Blog "%s" was successfully updated';
1141  $messages['blogs_updated_ok'] = '%s blogs were successfully updated';
1142  $messages['error_updating_blog2'] = 'There was an error updating the blog with identifier "%s"';
1143  $messages['error_updating_blog'] = 'There was an error updating blog "%s"';
1144  
1145  $messages['error_updating_user'] = 'There was an error updating user "%s".';
1146  $messages['user_updated_ok'] = 'User "%s" was successfully updated.';
1147  $messages['users_updated_ok'] = '%s users were successfully updated';
1148  $messages['eror_updating_user2'] = 'There was an error updating the user with identifier "%s"';
1149  
1150  $messages['error_select_status'] = 'Please select a valid status';
1151  $messages['error_invalid_blog_name'] = 'Sorry, the blog name is not valid';
1152  
1153  $messages['help_resources_naming_rule'] = 'The file naming rules for uploaded resources. \'Original File Name\' will use the original name of the file. \'Encoded File Name\' will use the encoded file name for uploaded resources, the naming rule is [BlogId]-[ResourceId].[Ext]. Please use \'Encoded File Name\' if you are running LifeType on a Multi-Byte Microsoft Windows server. <strong>NOTE: Please don\'t change this option after users have uploaded files into LifeType or older files will not be accessible anymore.</strong> [Default = Original File Name]';
1154  $messages['original_file_name'] = 'Original File Name';
1155  $messages['encoded_file_name'] = 'Encoded File Name';
1156  
1157  $messages['quick_permission_selection'] = 'Quick permission selection';
1158  $messages['basic_blog_permission'] = 'Allow blog user to add, update and delete posts, links and resources';
1159  $messages['full_blog_permission'] = 'Allow blog user to access all blog functions as blog owner';
1160  
1161  $messages['error_template_exist'] = 'There was an error uploading the template, template "%s" already exist.';
1162  
1163  /// new strings in LT 1.2.2 ///
1164  $messages['posted_by_help'] = 'Select article owner';
1165  $messages['insert_player'] = 'Insert Player';
1166  
1167  /// new strings in LT 1.2.3 ///
1168  $messages['help_allow_javascript_blocks_in_posts'] = 'Allow blocks of Javascript code in posts via &lt;script&gt; tags. Please be aware that it may pose a security risk to your blog(s) [ Default = No ]';
1169  
1170  $messages['Versions'] = 'Versions';
1171  $messages['incorrect_file_version_error'] = 'The following files do not match the expected contents:';
1172  $messages['lifetype_version'] = 'LifeType';
1173  $messages['lifetype_version_help'] = 'The currently installed version of LifeType is:';
1174  $messages['file_version_check'] = 'File Version Check';
1175  $messages['file_version_check_help'] = 'This will perform a basic check on most of LifeType\'s core files, in order to ensure that the current version of the files matches the expected contents according to the installed version. If you have not performed any customizations or changes,
1176  all files should match the expected version. Please be patient, this process may take a while.';
1177  $messages['check'] = 'Check';
1178  $messages['all_files_ok'] = 'All files are correct';
1179  
1180  /// new strings for LT 1.2.4 ///
1181  $messages['plugin_latest_version'] = 'Most recent version available: ';
1182  $messages['check_versions'] = 'Check versions';
1183  $messages['lt_version_ok'] = 'The current version of Lifetype is up to date.';
1184  $messages['lt_version_error'] = 'The most recent version of Lifetype is: ';
1185  $messages['release_notes'] = 'Release notes';
1186  
1187  $messages['kb'] = 'Kb';
1188  $messages['mb'] = 'Mb';
1189  $messages['gb'] = 'Gb';
1190  $messages['edit'] = 'Edit';
1191  ?>


Généré le : Mon Nov 26 21:04:15 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics