[ Index ]

PHP Cross Reference of MyBB 1.8.37

title

Body

[close]

/inc/languages/english/admin/ -> forum_attachments.lang.php (source)

   1  <?php
   2  /**
   3   * MyBB 1.8 English Language Pack
   4   * Copyright 2014 MyBB Group, All Rights Reserved
   5   *
   6   */
   7  
   8  // Tabs
   9  $l['attachments'] = "Attachments";
  10  $l['stats'] = "Statistics";
  11  $l['find_attachments'] = "Find Attachments";
  12  $l['find_attachments_desc'] = "Using the attachments search system you can search for specific files users have attached to your forums. Begin by entering some search terms below. All fields are optional and won't be included in the criteria unless they contain a value.";
  13  $l['find_orphans'] = "Find Orphaned Attachments";
  14  $l['find_orphans_desc'] = "Orphaned attachments are attachments which are for some reason missing in the database or the file system. This utility will assist you in locating and removing them.";
  15  $l['attachment_stats'] = "Attachment Statistics";
  16  $l['attachment_stats_desc'] = "Below are some general statistics for the attachments currently on your forum.";
  17  
  18  // Errors
  19  $l['error_nothing_selected'] = "Please select one or more attachments to delete.";
  20  $l['error_no_attachments'] = "There aren't any attachments on your forum yet. Once an attachment is posted you'll be able to access this section.";
  21  $l['error_not_all_removed'] = "Only some orphaned attachments were successfully deleted, others could not be removed from the uploads directory.";
  22  $l['error_count'] = 'Unable to remove {1} attachment(s).';
  23  $l['error_invalid_username'] = "The username you entered is invalid.";
  24  $l['error_invalid_forums'] = "One or more forums you selected are invalid.";
  25  $l['error_no_results'] = "No attachments were found with the specified search criteria.";
  26  $l['error_not_found'] = "Attachment file could not be found in the uploads directory.";
  27  $l['error_not_attached'] = "Attachment was uploaded over 24 hours ago but not attached to a post.";
  28  $l['error_does_not_exist'] = "Thread or post for this attachment no longer exists.";
  29  
  30  // Success
  31  $l['success_deleted'] = "The selected attachments have been deleted successfully.";
  32  $l['success_orphan_deleted'] = "The selected orphaned attachment(s) have been deleted successfully.";
  33  $l['success_count'] = '{1} attachment(s) removed successfully.';
  34  $l['success_no_orphans'] = "There are no orphaned attachments on your forum.";
  35  
  36  // Confirm
  37  $l['confirm_delete'] = "Are you sure you wish to delete the selected attachments?";
  38  
  39  // == Pages
  40  // = Stats
  41  $l['general_stats'] = "General Statistics";
  42  $l['stats_attachment_stats'] = "Attachments - Attachment Statistics";
  43  $l['num_uploaded'] = "<strong>No. Uploaded Attachments</strong>";
  44  $l['space_used'] = "<strong>Attachment Space Used</strong>";
  45  $l['bandwidth_used'] = "<strong>Estimated Bandwidth Usage</strong>";
  46  $l['average_size'] = "<strong>Average Attachment Size</strong>";
  47  $l['size'] = "Size";
  48  $l['posted_by'] = "Posted By";
  49  $l['thread'] = "Thread";
  50  $l['downloads'] = "Downloads";
  51  $l['date_uploaded'] = "Date Uploaded";
  52  $l['popular_attachments'] = "Top 5 Most Popular Attachments";
  53  $l['largest_attachments'] = "Top 5 Largest Attachments";
  54  $l['users_diskspace'] = "Top 5 Users Using the Most Disk Space";
  55  $l['username'] = "Username";
  56  $l['total_size'] = "Total Size";
  57  
  58  // = Orphans
  59  $l['orphan_results'] = "Orphaned Attachments Search - Results";
  60  $l['orphan_attachments_search'] = "Orphaned Attachments Search";
  61  $l['reason_orphaned'] = "Reason Orphaned";
  62  $l['reason_not_in_table'] = "Not in attachments table";
  63  $l['reason_file_missing'] = "Attached file missing";
  64  $l['reason_thread_deleted'] = "Thread been deleted";
  65  $l['reason_post_never_made'] = "Post never made";
  66  $l['unknown'] = "Unknown";
  67  $l['results'] = "Results";
  68  $l['step1'] = "Step 1";
  69  $l['step2'] = "Step 2";
  70  $l['step1of2'] = "Step 1 of 2 - File System Scan";
  71  $l['step2of2'] = "Step 2 of 2 - Database Scan";
  72  $l['step1of2_line1'] = "Please wait, the file system is currently being scanned for orphaned attachments.";
  73  $l['step2of2_line1'] = "Please wait, the database is currently being scanned for orphaned attachments.";
  74  $l['step_line2'] = "You'll automatically be redirected to the next step once this process is complete.";
  75  $l['scanning'] = 'Scanning&hellip;';
  76  
  77  // = Attachments / Index
  78  $l['index_find_attachments'] = "Attachments - Find Attachments";
  79  $l['find_where'] = "Find attachments where&hellip;";
  80  $l['name_contains'] = "File name contains";
  81  $l['name_contains_desc'] = "Search for attachments that include the given query in the file name. For example, enter .zip to find attachments using the .zip file extension.";
  82  $l['type_contains'] = "File type contains";
  83  $l['forum_is'] = "Forum is";
  84  $l['username_is'] = "Posters' username is";
  85  $l['poster_is'] = "Poster is";
  86  $l['poster_is_either'] = "User or Guest";
  87  $l['poster_is_user'] = "Users Only";
  88  $l['poster_is_guest'] = "Guests Only";
  89  $l['more_than'] = "More than";
  90  $l['greater_than'] = "Greater than";
  91  $l['is_exactly'] = "Is exactly";
  92  $l['less_than'] = "Less than";
  93  $l['date_posted_is'] = "Date posted is";
  94  $l['days_ago'] = "days ago";
  95  $l['file_size_is'] = "File size is";
  96  $l['kb'] = "KB";
  97  $l['download_count_is'] = "Download count is";
  98  $l['display_options'] = "Display Options";
  99  $l['filename'] = "File Name";
 100  $l['filesize'] = "File Size";
 101  $l['download_count'] = "Download Count";
 102  $l['post_username'] = "Post Username";
 103  $l['asc'] = "Ascending";
 104  $l['desc'] = "Descending";
 105  $l['sort_results_by'] = "Sort results by";
 106  $l['results_per_page'] = "Results per page";
 107  $l['in'] = "in";
 108  
 109  // Buttons
 110  $l['button_delete_orphans'] = "Delete Checked Orphans";
 111  $l['button_delete_attachments'] = "Delete Checked Attachments";
 112  $l['button_find_attachments'] = "Find Attachments";


2005 - 2021 © MyBB.de | Alle Rechte vorbehalten! | Sponsor: netcup Cross-referenced by PHPXref