[ Index ]

PHP Cross Reference of MyBB 1.8.37

title

Body

[close]

/inc/languages/english/admin/ -> tools_tasks.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['task_manager'] = "Task Manager";
   9  $l['add_new_task'] = "Add New Task";
  10  $l['add_new_task_desc'] = "Here you can create new scheduled tasks which are automatically run on your board.";
  11  $l['edit_task'] = "Edit Task";
  12  $l['edit_task_desc'] = "Below you can edit the various settings for this scheduled task.";
  13  $l['task_logs'] = "Task Logs";
  14  $l['view_task_logs'] = "View Task Logs";
  15  $l['view_task_logs_desc'] = "When a task has ran and logging is enabled, any results or errors will be listed below. Entries older than 30 days are automatically deleted.";
  16  $l['scheduled_tasks'] = "Scheduled Tasks";
  17  $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.";
  18  
  19  $l['title'] = "Title";
  20  $l['short_description'] = "Short Description";
  21  $l['task_file'] = "Task File";
  22  $l['task_file_desc'] = "Select the task file you wish this task to run.";
  23  $l['time_minutes'] = "Time: Minutes";
  24  $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.";
  25  $l['time_hours'] = "Time: Hours";
  26  $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.";
  27  $l['time_days_of_month'] = "Time: Days of Month";
  28  $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.";
  29  $l['every_weekday'] = "Every Weekday";
  30  $l['sunday'] = "Sunday";
  31  $l['monday'] = "Monday";
  32  $l['tuesday'] = "Tuesday";
  33  $l['wednesday'] = "Wednesday";
  34  $l['thursday'] = "Thursday";
  35  $l['friday'] = "Friday";
  36  $l['saturday'] = "Saturday";
  37  $l['time_weekdays'] = "Time: Weekdays";
  38  $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.";
  39  $l['every_month'] = "Every Month";
  40  $l['time_months'] = "Time: Months";
  41  $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.";
  42  $l['enabled'] = "Task enabled?";
  43  $l['enable_logging'] = "Enable Logging?";
  44  $l['save_task'] = "Save Task";
  45  $l['task'] = "Task";
  46  $l['date'] = "Date";
  47  $l['data'] = "Data";
  48  $l['no_task_logs'] = "There are currently no log entries for any of the scheduled tasks.";
  49  $l['next_run'] = "Next Run";
  50  $l['run_task_now'] = "Run this task now";
  51  $l['disable_task'] = "Disable Task";
  52  $l['run_task'] = "Run Task";
  53  $l['enable_task'] = "Enable Task";
  54  $l['delete_task'] = "Delete Task";
  55  
  56  $l['error_invalid_task'] = "The specified task does not exist.";
  57  $l['error_missing_title'] = "You did not enter a title for this scheduled task";
  58  $l['error_missing_description'] = "You did not enter a description for this scheduled task";
  59  $l['error_invalid_task_file'] = "The task file you selected does not exist.";
  60  $l['error_invalid_minute'] = "The minute you've entered is invalid.";
  61  $l['error_invalid_hour'] = "The hour you've entered is invalid.";
  62  $l['error_invalid_day'] = "The day you've entered is invalid.";
  63  $l['error_invalid_weekday'] = "The weekday you've selected is invalid.";
  64  $l['error_invalid_month'] = "The month you've selected is invalid.";
  65  
  66  $l['success_task_created'] = "The task has been created successfully.";
  67  $l['success_task_updated'] = "The selected task has been updated successfully.";
  68  $l['success_task_deleted'] = "The selected task has been deleted successfully.";
  69  $l['success_task_enabled'] = "The selected task has been enabled successfully.";
  70  $l['success_task_disabled'] = "The selected task has been disabled successfully.";
  71  $l['success_task_run'] = "The selected task has been run successfully.";
  72  
  73  $l['confirm_task_deletion'] = "Are you sure you wish to delete this scheduled task?";
  74  $l['confirm_task_enable'] = "<strong>WARNING:</strong> You are about to enable a task that is only meant to be run via cron (Please see the <a href=\"https://docs.mybb.com/1.8/administration/task-manager\" target=\"_blank\" rel=\"noopener\">MyBB Docs</a> for more information). Continue?";
  75  $l['no_tasks'] = "There are no tasks on your forum at this time.";
  76  


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