cron.lang 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Dolibarr language file - Source file is en_US - cron
  2. # About page
  3. # Right
  4. Permission23101 = Read Scheduled job
  5. Permission23102 = Create/update Scheduled job
  6. Permission23103 = Delete Scheduled job
  7. Permission23104 = Execute Scheduled job
  8. # Admin
  9. CronSetup= Scheduled job management setup
  10. URLToLaunchCronJobs=URL to check and launch qualified cron jobs
  11. OrToLaunchASpecificJob=Or to check and launch a specific job
  12. KeyForCronAccess=Security key for URL to launch cron jobs
  13. FileToLaunchCronJobs=Command line to launch cron jobs
  14. CronExplainHowToRunUnix=On Unix environment you should use the following crontab entry to run the command line each 5 minutes
  15. CronExplainHowToRunWin=On Microsoft(tm) Windows environement you can use Scheduled task tools to run the command line each 5 minutes
  16. CronMethodDoesNotExists=Class %s does not contains any method %s
  17. # Menu
  18. EnabledAndDisabled=Enabled and disabled
  19. # Page list
  20. CronLastOutput=Latest run output
  21. CronLastResult=Latest result code
  22. CronCommand=Command
  23. CronList=Scheduled jobs
  24. CronDelete=Delete scheduled jobs
  25. CronConfirmDelete=Are you sure you want to delete these scheduled jobs?
  26. CronExecute=Launch scheduled job
  27. CronConfirmExecute=Are you sure you want to execute these scheduled jobs now?
  28. CronInfo=Scheduled job module allows to schedule jobs to execute them automatically. Jobs can also be started manually.
  29. CronTask=Job
  30. CronNone=None
  31. CronDtStart=Not before
  32. CronDtEnd=Not after
  33. CronDtNextLaunch=Next execution
  34. CronDtLastLaunch=Start date of latest execution
  35. CronDtLastResult=End date of latest execution
  36. CronFrequency=Frequency
  37. CronClass=Class
  38. CronMethod=Method
  39. CronModule=Module
  40. CronNoJobs=No jobs registered
  41. CronPriority=Priority
  42. CronLabel=Label
  43. CronNbRun=Nb. launch
  44. CronMaxRun=Max nb. launch
  45. CronEach=Every
  46. JobFinished=Job launched and finished
  47. #Page card
  48. CronAdd= Add jobs
  49. CronEvery=Execute job each
  50. CronObject=Instance/Object to create
  51. CronArgs=Parameters
  52. CronSaveSucess=Save successfully
  53. CronNote=Comment
  54. CronFieldMandatory=Fields %s is mandatory
  55. CronErrEndDateStartDt=End date cannot be before start date
  56. CronStatusActiveBtn=Enable
  57. CronStatusInactiveBtn=Disable
  58. CronTaskInactive=This job is disabled
  59. CronId=Id
  60. CronClassFile=Classes (filename.class.php)
  61. CronModuleHelp=Name of Dolibarr module directory (also work with external Dolibarr module). <BR> For exemple to call the fetch method of Dolibarr Product object /htdocs/<u>product</u>/class/product.class.php, the value for module is <i>product</i>
  62. CronClassFileHelp=The file name to load. <BR> For exemple to call the fetch method of Dolibarr Product object /htdocs/product/class/<u>product.class.php</u>, the value for class file name is <i>product.class.php</i>
  63. CronObjectHelp=The object name to load. <BR> For exemple to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for class file name is <i>Product</i>
  64. CronMethodHelp=The object method to launch. <BR> For exemple to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for method is <i>fecth</i>
  65. CronArgsHelp=The method arguments. <BR> For exemple to call the fetch method of Dolibarr Product object /htdocs/product/class/product.class.php, the value for paramters can be <i>0, ProductRef</i>
  66. CronCommandHelp=The system command line to execute.
  67. CronCreateJob=Create new Scheduled Job
  68. CronFrom=From
  69. # Info
  70. # Common
  71. CronType=Job type
  72. CronType_method=Call method of a Dolibarr Class
  73. CronType_command=Shell command
  74. CronCannotLoadClass=Cannot load class %s or object %s
  75. UseMenuModuleToolsToAddCronJobs=Go into menu "Home - Admin tools - Scheduled jobs" to see and edit scheduled jobs.
  76. JobDisabled=Job disabled
  77. MakeLocalDatabaseDumpShort=Local database backup
  78. MakeLocalDatabaseDump=Create a local database dump
  79. WarningCronDelayed=Attention, for performance purpose, whatever is next date of execution of enabled jobs, your jobs may be delayed to a maximum of %s hours, before being run.