[ Index ]

PHP Cross Reference of MyBB

title

Body

[close]

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

   1  <?php
   2  /**
   3   * MyBB 1.6 English Language Pack
   4   * Copyright 2010 MyBB Group, All Rights Reserved
   5   *
   6   * $Id$
   7   */
   8  
   9  $l['task_manager'] = "Task Manager";
  10  $l['add_new_task'] = "Add New Task";
  11  $l['add_new_task_desc'] = "Here you can create new scheduled tasks which are automatically run on your board.";
  12  $l['edit_task'] = "Edit Task";
  13  $l['edit_task_desc'] = "Below you can edit the various settings for this scheduled task.";
  14  $l['task_logs'] = "Task Logs";
  15  $l['view_task_logs'] = "View Task Logs";
  16  $l['view_task_logs_desc'] = "When a task is run and logging is enabled, any results or errors will be listed below. Entries older than 30 days are automatically deleted.";
  17  $l['scheduled_tasks'] = "Scheduled Tasks";
  18  $l['scheduled_tasks_desc'] = "Here you can manage tasks which are automatically run on your board. To run a task now click the icon to the right of the task.";
  19  
  20  $l['title'] = "Title";
  21  $l['short_description'] = "Short Description";
  22  $l['task_file'] = "Task File";
  23  $l['task_file_desc'] = "Select the task file you wish this task to run.";
  24  $l['time_minutes'] = "Time: Minutes";
  25  $l['time_minutes_desc'] = "Enter a comma separated list of minutes (0-59) for which this task should run on. Enter '*' if this task should run on every minute.";
  26  $l['time_hours'] = "Time: Hours";
  27  $l['time_hours_desc'] = "Enter a comma separated list of hours (0-23) for which this task should run on. Enter '*' if this task should run on every hour.";
  28  $l['time_days_of_month'] = "Time: Days of Month";
  29  $l['time_days_of_month_desc'] = "Enter a comma separated list of days (1-31) for which this task should run on. Enter '*' if this task should run on every day or you wish to specify a weekday below.";
  30  $l['every_weekday'] = "Every Weekday";
  31  $l['sunday'] = "Sunday";
  32  $l['monday'] = "Monday";
  33  $l['tuesday'] = "Tuesday";
  34  $l['wednesday'] = "Wednesday";
  35  $l['thursday'] = "Thursday";
  36  $l['friday'] = "Friday";
  37  $l['saturday'] = "Saturday";
  38  $l['time_weekdays'] = "Time: Weekdays";
  39  $l['time_weekdays_desc'] = "Select which weekdays this task should run on. Holding down CTRL selects multiple weekdays. Select 'Every weekday' if you want this task to run each weekday or you have entered a predefined day above.";
  40  $l['every_month'] = "Every Month";
  41  $l['time_months'] = "Time: Months";
  42  $l['time_months_desc'] = "Select which months this task should run on. Holding down CTRL selects multiple months. Select 'Every month' if you want this task to run each month.";
  43  $l['enabled'] = "Task enabled?";
  44  $l['enable_logging'] = "Enable Logging?";
  45  $l['save_task'] = "Save Task";
  46  $l['task'] = "Task";
  47  $l['date'] = "Date";
  48  $l['data'] = "Data";
  49  $l['no_task_logs'] = "There are currently no log entries for any of the scheduled tasks.";
  50  $l['next_run'] = "Next Run";
  51  $l['run_task_now'] = "Run this task now";
  52  $l['run_task'] = "Run task";
  53  $l['disable_task'] = "Disable Task";
  54  $l['enable_task'] = "Enable Task";
  55  $l['delete_task'] = "Delete Task";
  56  $l['alt_enabled'] = "Enabled";
  57  $l['alt_disabled'] = "Disabled";
  58  
  59  $l['error_invalid_task'] = "The specified task does not exist.";
  60  $l['error_missing_title'] = "You did not enter a title for this scheduled task";
  61  $l['error_missing_description'] = "You did not enter a description for this scheduled task";
  62  $l['error_invalid_task_file'] = "The task file you selected does not exist.";
  63  $l['error_invalid_minute'] = "The minute you've entered is invalid.";
  64  $l['error_invalid_hour'] = "The hour you've entered is invalid.";
  65  $l['error_invalid_day'] = "The day you've entered is invalid.";
  66  $l['error_invalid_weekday'] = "The weekday you've selected is invalid.";
  67  $l['error_invalid_month'] = "The month you've selected is invalid.";
  68  
  69  $l['success_task_created'] = "The task has been created successfully.";
  70  $l['success_task_updated'] = "The selected task has been updated successfully.";
  71  $l['success_task_deleted'] = "The selected task has been deleted successfully.";
  72  $l['success_task_enabled'] = "The selected task has been enabled successfully.";
  73  $l['success_task_disabled'] = "The selected task has been disabled successfully.";
  74  $l['success_task_run'] = "The selected task has been run successfully.";
  75  
  76  $l['confirm_task_deletion'] = "Are you sure you wish to delete this scheduled task?";
  77  $l['confirm_task_enable'] = "<strong>WARNING:</strong> You are about to enable a task that is only meant to be run via a cron (Please see the <a href=\"http://docs.mybb.com/Help-Task_System.html\" target=\"_blank\">MyBB Docs</a> for more information). Continue?";
  78  
  79  ?>


Generated: Tue Oct 8 19:19:50 2013 Cross-referenced by PHPXref 0.7.1