[ Index ]

PHP Cross Reference of MyBB 1.8.37

title

Body

[close]

/inc/languages/english/admin/ -> user_group_promotions.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  $l['user_group_promotions'] = "User Group Promotions";
   9  $l['user_group_promotions_desc'] = "Here you can manage User Group Promotions.";
  10  $l['edit_promotion'] = "Edit Promotion";
  11  $l['edit_promotion_desc'] = "Here you can edit promotions which are automatically run on your board.";
  12  $l['add_new_promotion'] = "Add New Promotion";
  13  $l['add_new_promotion_desc'] = "Here you can create new promotions which are automatically run on your board.";
  14  
  15  $l['title'] = "Title";
  16  $l['short_desc'] = "Short Description";
  17  $l['post_count'] = "Post Count";
  18  $l['thread_count'] = "Thread Count";
  19  $l['reputation'] = "Reputation";
  20  $l['referrals'] = "Referrals";
  21  $l['time_registered'] = "Time Registered";
  22  $l['time_online'] = "Time Online";
  23  $l['promo_requirements'] = "Promotion Requirements";
  24  $l['promo_requirements_desc'] = "Select which criteria must be met for this promotion. Holding down CTRL selects multiple criteria.";
  25  $l['greater_than_or_equal_to'] = "Greater than or equal to";
  26  $l['greater_than'] = "Greater than";
  27  $l['equal_to'] = "Equal to";
  28  $l['less_than_or_equal_to'] = "Less than or equal to";
  29  $l['less_than'] = "Less than";
  30  $l['reputation_count'] = "Reputation Count";
  31  $l['reputation_count_desc'] = "Enter the amount of reputation to be required. Reputation must be selected as a required value for this to be included. Select the type of comparison for reputation.";
  32  $l['referral_count'] = "Referral Count";
  33  $l['referral_count_desc'] = "Enter the number of referrals required. Referral count must be selected as a required value for this to be included. Select the type of comparison for referrals.";
  34  $l['warning_points'] = "Warning Points";
  35  $l['warning_points_desc'] = "Enter the number of warning points required. Warning Points must be selected as a required value for this to be included. Select the type of comparison for warning points.";
  36  $l['post_count_desc'] = "Enter the number of posts required. Post count must be selected as a required value for this to be included. Select the type of comparison for posts.";
  37  $l['thread_count_desc'] = "Enter the number of threads required. Thread count must be selected as a required value for this to be included. Select the type of comparison for threads.";
  38  $l['hours'] = "Hours";
  39  $l['days'] = "Days";
  40  $l['weeks'] = "Weeks";
  41  $l['months'] = "Months";
  42  $l['years'] = "Years";
  43  $l['time_registered_desc'] = "Enter the number of hours, days, weeks, months, or years that this user must have been registered for. Time registered must be selected as a required value for this to be included. Select whether the time registered should be counted in hours, days, weeks, months, or years.";
  44  $l['time_online_desc'] = "Enter the number of hours, days, weeks, months, or years that this user must have been online for. Time online must be selected as a required value for this to be included. Select whether the time spend online should be counted in hours, days, weeks, months, or years.";
  45  $l['all_user_groups'] = 'All User Groups';
  46  $l['orig_user_group'] = 'Original User Group';
  47  $l['orig_user_group_desc'] = "Select which user group or user groups that the user must be in for the promotion to run. Holding down CTRL selects multiple groups.";
  48  $l['new_user_group'] = 'New User Group';
  49  $l['new_user_group_desc'] = "Select the user group that the user will be moved into after this promotion.";
  50  $l['primary_user_group'] = 'Primary User Group';
  51  $l['secondary_user_group'] = 'Secondary User Group';
  52  $l['user_group_change_type'] = 'User Group Change Type';
  53  $l['user_group_change_type_desc'] = "Select 'Primary User Group' if the user should have their primary user group changed to the new user group. Select 'Secondary User Group' if the user should have the new user group added as an secondary user group to their profile.";
  54  $l['enabled'] = "Enabled?";
  55  $l['enable_logging'] = "Enable Logging?";
  56  $l['promotion_logs'] = "Promotion Logs";
  57  $l['view_promotion_logs'] = "View Promotion Logs";
  58  $l['view_promotion_logs_desc'] = 'Here you can view logs of promotions previously run.';
  59  $l['promoted_user'] = "Promoted User";
  60  $l['time_promoted'] = "Time Promoted";
  61  $l['no_promotion_logs'] = "There are currently no promotions logged.";
  62  $l['promotion_manager'] = "Promotions Manager";
  63  $l['promotion'] = "Promotion";
  64  $l['disable_promotion'] = "Disable Promotion";
  65  $l['enable_promotion'] = "Enable Promotion";
  66  $l['delete_promotion'] = "Delete Promotion";
  67  $l['no_promotions_set'] = "There are currently no set promotions.";
  68  $l['update_promotion'] = "Save Promotion";
  69  $l['multiple_usergroups'] = "Multiple User Groups";
  70  $l['secondary'] = "Secondary";
  71  $l['primary'] = "Primary";
  72  
  73  $l['error_no_promo_id'] = 'You did not enter a promotion id';
  74  $l['error_invalid_promo_id'] = 'You did not enter a valid promotion id';
  75  
  76  $l['error_no_title'] = "You did not enter a title for this promotion";
  77  $l['error_no_desc'] = "You did not enter a description for this promotion";
  78  $l['error_no_requirements'] = "You did not select at least one requirement for this promotion";
  79  $l['error_no_orig_usergroup'] = "You did not select at least one original user group for this promotion";
  80  $l['error_no_new_usergroup'] = "You did not select at least one new user group for this promotion";
  81  $l['error_no_usergroup_change_type'] = "You did not select at least one user group change type for this promotion";
  82  
  83  $l['success_promo_disabled'] = 'The selected group promotion has been disabled successfully.';
  84  $l['success_promo_deleted'] = 'The selected group promotion has been deleted successfully.';
  85  $l['success_promo_enabled'] = 'The selected group promotion has been enabled successfully.';
  86  $l['success_promo_updated'] = 'The selected group promotion has been updated successfully.';
  87  $l['success_promo_added'] = 'The promotion has been created successfully.';
  88  
  89  $l['confirm_promo_disable'] = "Are you sure you want to disable this promotion?";
  90  $l['confirm_promo_deletion'] = "Are you sure you wish to delete this promotion?";
  91  


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