[ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 // set this to the encoding that should be used to display the pages correctly 4 $messages['encoding'] = 'iso-8859-1'; 5 $messages['locale_description'] = 'English locale file for LifeType'; 6 // locale format, see Locale::formatDate for more information 7 $messages['date_format'] = '%d/%m/%Y %H:%M'; 8 9 // days of the week 10 $messages['days'] = Array( 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' ); 11 // -- compatibility, do not touch -- // 12 $messages['Monday'] = $messages['days'][1]; 13 $messages['Tuesday'] = $messages['days'][2]; 14 $messages['Wednesday'] = $messages['days'][3]; 15 $messages['Thursday'] = $messages['days'][4]; 16 $messages['Friday'] = $messages['days'][5]; 17 $messages['Saturday'] = $messages['days'][6]; 18 $messages['Sunday'] = $messages['days'][0]; 19 20 // abbreviations 21 $messages['daysshort'] = Array( 'Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa' ); 22 // -- compatibility, do not touch -- // 23 $messages['Mo'] = $messages['daysshort'][1]; 24 $messages['Tu'] = $messages['daysshort'][2]; 25 $messages['We'] = $messages['daysshort'][3]; 26 $messages['Th'] = $messages['daysshort'][4]; 27 $messages['Fr'] = $messages['daysshort'][5]; 28 $messages['Sa'] = $messages['daysshort'][6]; 29 $messages['Su'] = $messages['daysshort'][0]; 30 31 // months of the year 32 $messages['months'] = Array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ); 33 // -- compatibility, do not touch -- // 34 $messages['January'] = $messages['months'][0]; 35 $messages['February'] = $messages['months'][1]; 36 $messages['March'] = $messages['months'][2]; 37 $messages['April'] = $messages['months'][3]; 38 $messages['May'] = $messages['months'][4]; 39 $messages['June'] = $messages['months'][5]; 40 $messages['July'] = $messages['months'][6]; 41 $messages['August'] = $messages['months'][7]; 42 $messages['September'] = $messages['months'][8]; 43 $messages['October'] = $messages['months'][9]; 44 $messages['November'] = $messages['months'][10]; 45 $messages['December'] = $messages['months'][11]; 46 $messages['message'] = 'Message'; 47 $messages['error'] = 'Error'; 48 $messages['date'] = 'Date'; 49 50 // miscellaneous texts 51 $messages['of'] = 'of'; 52 $messages['recently'] = 'recently...'; 53 $messages['comments'] = 'comments'; 54 $messages['comment on this'] = 'Comment'; 55 $messages['my_links'] = 'my Links'; 56 $messages['archives'] = 'archives'; 57 $messages['search'] = 'search'; 58 $messages['calendar'] = 'calendar'; 59 $messages['search_s'] = 'Search'; 60 $messages['search_this_blog'] = 'Search this blog:'; 61 $messages['about_myself'] = 'Who am I?'; 62 $messages['permalink_title'] = 'Permanent link to the archives'; 63 $messages['permalink'] = 'Permalink'; 64 $messages['posted_by'] = 'Posted by'; 65 $messages['reply'] = 'Reply'; 66 $messages['category'] = 'Category'; 67 68 // add comment form 69 $messages['add_comment'] = 'Add comment'; 70 $messages['comment_topic'] = 'Topic'; 71 $messages['comment_text'] = 'Text'; 72 $messages['comment_username'] = 'Your name'; 73 $messages['comment_email'] = 'Your email address (if any)'; 74 $messages['comment_url'] = 'Your personal page (if any)'; 75 $messages['comment_send'] = 'Send'; 76 $messages['comment_added'] = 'Comment added!'; 77 $messages['comment_add_error'] = 'Error adding comment'; 78 $messages['article_does_not_exist'] = 'The article does not exist'; 79 $messages['no_posts_found'] = 'No posts were found'; 80 $messages['user_has_no_posts_yet'] = 'The user does not have any posts yet'; 81 $messages['back'] = 'Back'; 82 $messages['post'] = 'Post'; 83 $messages['trackbacks_for_article'] = 'Trackbacks for article: '; 84 $messages['trackback_excerpt'] = 'Excerpt'; 85 $messages['trackback_weblog'] = 'Weblog'; 86 $messages['search_results'] = 'Search Results'; 87 $messages['search_matching_results'] = 'The following posts match your search terms: '; 88 $messages['search_no_matching_posts'] = 'No matching posts were found'; 89 $messages['read_more'] = '(More)'; 90 $messages['syndicate'] = 'Syndicate'; 91 $messages['main'] = 'Main'; 92 $messages['about'] = 'About'; 93 $messages['download'] = 'Download'; 94 $messages['error_incorrect_email_address'] = 'The email address is not correct'; 95 $messages['invalid_url'] = 'You entered an invalid URL. Please correct and try again'; 96 97 ////// error messages ///// 98 $messages['error_fetching_article'] = 'The article you specified could not be found.'; 99 $messages['error_fetching_articles'] = 'The articles could not be fetched.'; 100 $messages['error_fetching_category'] = 'There was an error fetching the category'; 101 $messages['error_trackback_no_trackback'] = 'No trackbacks were found for the article.'; 102 $messages['error_incorrect_article_id'] = 'The article identifier is not correct.'; 103 $messages['error_incorrect_blog_id'] = 'The blog identifier is not correct.'; 104 $messages['error_comment_without_text'] = 'You should at least provide some text.'; 105 $messages['error_comment_without_name'] = 'You should at least give your name or nickname.'; 106 $messages['error_adding_comment'] = 'There was an error adding the comment.'; 107 $messages['error_incorrect_parameter'] = 'Incorrect parameter.'; 108 $messages['error_parameter_missing'] = 'There is one parameter missing from the request.'; 109 $messages['error_comments_not_enabled'] = 'The commenting feature has been disabled in this site.'; 110 $messages['error_incorrect_search_terms'] = 'The search terms were not valid'; 111 $messages['error_no_search_results'] = 'No items matching the search terms were found'; 112 $messages['error_no_albums_defined'] = 'There are no albums available in this blog.'; 113 $messages['error_incorrect_category_id'] = 'The category identifier is not correct or no items were selected'; 114 $messages['error_fetching_resource'] = 'The file you specified could not be found.'; 115 $messages['error_incorrect_user'] = 'User is not valid'; 116 117 $messages['form_authenticated'] = 'Authenticated'; 118 $messages['posted_in'] = 'Posted in'; 119 120 $messages['previous_post'] = 'Previous'; 121 $messages['next_post'] = 'Next'; 122 $messages['comment_default_title'] = '(Untitled)'; 123 $messages['guestbook'] = 'Guestbook'; 124 $messages['trackbacks'] = 'Trackbacks'; 125 $messages['menu'] = 'Menu'; 126 $messages['albums'] = 'Albums'; 127 $messages['admin'] = 'Admin'; 128 $messages['links'] = 'Links'; 129 $messages['categories'] = 'Categories'; 130 $messages['articles'] = 'Articles'; 131 132 $messages['num_reads'] = 'Views'; 133 $messages['contact_me'] = 'Contact Me'; 134 $messages['required'] = 'Required'; 135 136 $messages['size'] = 'Size'; 137 $messages['format'] = 'Format'; 138 $messages['dimensions'] = 'Dimensions'; 139 $messages['bits_per_sample'] = 'Bits per sample'; 140 $messages['sample_rate'] = 'Sample rate'; 141 $messages['number_of_channels'] = 'Number of channels'; 142 $messages['length'] = 'Length'; 143 144 /// Strings added in LT 1.2.4 /// 145 $messages['audio_codec'] = 'Audio codec'; 146 $messages['video_codec'] = 'Video codec'; 147 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |