├── .gitattributes ├── .gitignore ├── Calamus.TaskScheduler.sln ├── Calamus.TaskScheduler ├── .config │ └── dotnet-tools.json ├── Calamus.TaskScheduler.csproj ├── Controllers │ └── HomeController.cs ├── Dockerfile ├── Infrastructure │ ├── ClearNLogJob.cs │ ├── CodeResult.cs │ ├── DateTimeConverter.cs │ ├── Dtos │ │ ├── EmailConfigRequest.cs │ │ ├── EmailNoticeModel.cs │ │ ├── JobCreateOrUpdateRequest.cs │ │ ├── JobResponse.cs │ │ ├── JobSearchRequest.cs │ │ ├── PropertyConfigurationModel.cs │ │ └── RequestBase.cs │ ├── EnumExtensions.cs │ ├── Enums.cs │ ├── Filters │ │ ├── GatewayResultFilterAttribute.cs │ │ ├── GlobalExeceptionFilterAttribute.cs │ │ └── ModelValidatorFilterAttribute.cs │ ├── HttpJob.cs │ ├── IDistributedCacheExtensions.cs │ ├── IocEngine.cs │ ├── JobDataMapExtensions.cs │ ├── Keys.cs │ ├── Listeners.cs │ ├── NLogHostService.cs │ └── WhereIfExtensions.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Home │ │ ├── CreateOrUpdate.cshtml │ │ ├── Index.cshtml │ │ ├── Info.cshtml │ │ ├── Log.cshtml │ │ └── Notice.cshtml │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _Layout_Layer.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── database │ ├── schema_20_to_22_upgrade.sql │ ├── schema_25_to_26_upgrade.sql │ ├── schema_26_to_30.sql │ ├── sqlserver_schema_10_to_20_upgrade.sql │ └── tables │ │ ├── tables_firebird.sql │ │ ├── tables_mysql_innodb.sql │ │ ├── tables_oracle.sql │ │ ├── tables_postgres.sql │ │ ├── tables_sqlServer.sql │ │ ├── tables_sqlServerMOT.sql │ │ └── tables_sqlite.sql ├── nlog.config ├── start.sh └── wwwroot │ ├── adminlte3 │ ├── dist │ │ ├── css │ │ │ ├── adminlte.css │ │ │ ├── adminlte.css.map │ │ │ ├── adminlte.min.css │ │ │ ├── adminlte.min.css.map │ │ │ └── alt │ │ │ │ ├── adminlte.components.css │ │ │ │ ├── adminlte.components.css.map │ │ │ │ ├── adminlte.components.min.css │ │ │ │ ├── adminlte.components.min.css.map │ │ │ │ ├── adminlte.core.css │ │ │ │ ├── adminlte.core.css.map │ │ │ │ ├── adminlte.core.min.css │ │ │ │ ├── adminlte.core.min.css.map │ │ │ │ ├── adminlte.extra-components.css │ │ │ │ ├── adminlte.extra-components.css.map │ │ │ │ ├── adminlte.extra-components.min.css │ │ │ │ ├── adminlte.extra-components.min.css.map │ │ │ │ ├── adminlte.pages.css │ │ │ │ ├── adminlte.pages.css.map │ │ │ │ ├── adminlte.pages.min.css │ │ │ │ ├── adminlte.pages.min.css.map │ │ │ │ ├── adminlte.plugins.css │ │ │ │ ├── adminlte.plugins.css.map │ │ │ │ ├── adminlte.plugins.min.css │ │ │ │ └── adminlte.plugins.min.css.map │ │ └── js │ │ │ ├── .eslintrc.json │ │ │ ├── adminlte.js │ │ │ ├── adminlte.js.map │ │ │ ├── adminlte.min.js │ │ │ ├── adminlte.min.js.map │ │ │ ├── demo.js │ │ │ └── pages │ │ │ ├── dashboard.js │ │ │ ├── dashboard2.js │ │ │ └── dashboard3.js │ └── plugins │ │ ├── bootstrap │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── fontawesome-free │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ ├── moment │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn-bd.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-SG.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-in.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-mx.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fil.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-deva.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── oc-lnc.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ ├── zh-mo.js │ │ │ └── zh-tw.js │ │ ├── locales.js │ │ ├── locales.min.js │ │ ├── locales.min.js.map │ │ ├── moment-with-locales.js │ │ ├── moment-with-locales.min.js │ │ ├── moment-with-locales.min.js.map │ │ ├── moment.min.js │ │ └── moment.min.js.map │ │ ├── overlayScrollbars │ │ ├── css │ │ │ ├── OverlayScrollbars.css │ │ │ └── OverlayScrollbars.min.css │ │ └── js │ │ │ ├── OverlayScrollbars.js │ │ │ ├── OverlayScrollbars.min.js │ │ │ ├── jquery.overlayScrollbars.js │ │ │ └── jquery.overlayScrollbars.min.js │ │ └── tempusdominus-bootstrap-4 │ │ ├── css │ │ ├── tempusdominus-bootstrap-4.css │ │ └── tempusdominus-bootstrap-4.min.css │ │ └── js │ │ ├── tempusdominus-bootstrap-4.js │ │ └── tempusdominus-bootstrap-4.min.js │ ├── favicon.ico │ ├── jquery.form.js │ ├── kendoui2017 │ ├── js │ │ ├── angular.min.js │ │ ├── cultures │ │ │ ├── kendo.culture.zh-CHS.min.js │ │ │ ├── kendo.culture.zh-CHS.min.js.map │ │ │ ├── kendo.culture.zh-CHT.min.js │ │ │ ├── kendo.culture.zh-CHT.min.js.map │ │ │ ├── kendo.culture.zh-CN.min.js │ │ │ ├── kendo.culture.zh-CN.min.js.map │ │ │ ├── kendo.culture.zh-HK.min.js │ │ │ ├── kendo.culture.zh-HK.min.js.map │ │ │ ├── kendo.culture.zh-Hans.min.js │ │ │ ├── kendo.culture.zh-Hans.min.js.map │ │ │ ├── kendo.culture.zh-Hant.min.js │ │ │ ├── kendo.culture.zh-Hant.min.js.map │ │ │ ├── kendo.culture.zh-MO.min.js │ │ │ ├── kendo.culture.zh-MO.min.js.map │ │ │ ├── kendo.culture.zh-SG.min.js │ │ │ ├── kendo.culture.zh-SG.min.js.map │ │ │ ├── kendo.culture.zh-TW.min.js │ │ │ ├── kendo.culture.zh-TW.min.js.map │ │ │ ├── kendo.culture.zh.min.js │ │ │ └── kendo.culture.zh.min.js.map │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jszip.min.js │ │ ├── kendo.all.min.js │ │ ├── kendo.all.min.js.map │ │ ├── kendo.core.min.js │ │ ├── kendo.core.min.js.map │ │ ├── kendo.web.min.js │ │ ├── kendo.web.min.js.map │ │ └── messages │ │ │ ├── kendo.messages.zh-CN.min.js │ │ │ ├── kendo.messages.zh-CN.min.js.map │ │ │ ├── kendo.messages.zh-HK.min.js │ │ │ ├── kendo.messages.zh-HK.min.js.map │ │ │ ├── kendo.messages.zh-TW.min.js │ │ │ └── kendo.messages.zh-TW.min.js.map │ └── styles │ │ ├── Bootstrap │ │ ├── editor.png │ │ ├── imagebrowser.png │ │ ├── indeterminate.gif │ │ ├── loading-image.gif │ │ ├── loading.gif │ │ ├── loading_2x.gif │ │ ├── markers.png │ │ ├── markers_2x.png │ │ ├── slider-h.gif │ │ ├── slider-v.gif │ │ ├── sprite.png │ │ ├── sprite_2x.png │ │ ├── sprite_kpi.png │ │ └── sprite_kpi_2x.png │ │ ├── Default │ │ ├── editor.png │ │ ├── imagebrowser.png │ │ ├── indeterminate.gif │ │ ├── loading-image.gif │ │ ├── loading.gif │ │ ├── loading_2x.gif │ │ ├── markers.png │ │ ├── markers_2x.png │ │ ├── slider-h.gif │ │ ├── slider-v.gif │ │ ├── sprite.png │ │ ├── sprite_2x.png │ │ ├── sprite_kpi.png │ │ └── sprite_kpi_2x.png │ │ ├── fonts │ │ ├── DejaVu │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-ExtraLight.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ └── LICENSE.txt │ │ └── glyphs │ │ │ ├── KendoUIGlyphs.eot │ │ │ ├── KendoUIGlyphs.svg │ │ │ ├── KendoUIGlyphs.ttf │ │ │ ├── KendoUIGlyphs.woff │ │ │ ├── WebComponentsIcons.eot │ │ │ ├── WebComponentsIcons.svg │ │ │ ├── WebComponentsIcons.ttf │ │ │ └── WebComponentsIcons.woff │ │ ├── images │ │ ├── back.png │ │ ├── kendoui.svg │ │ ├── kendoui.ttf │ │ ├── kendoui.woff │ │ ├── wp8_icons.png │ │ └── wp8_inverseicons.png │ │ ├── kendo.bootstrap-v4.min.css │ │ ├── kendo.bootstrap-v4.min.css.map │ │ ├── kendo.bootstrap.min.css │ │ ├── kendo.bootstrap.min.css.map │ │ ├── kendo.bootstrap.mobile.min.css │ │ ├── kendo.bootstrap.mobile.min.css.map │ │ ├── kendo.common.core.min.css │ │ ├── kendo.common.core.min.css.map │ │ ├── kendo.common.min.css │ │ ├── kendo.common.min.css.map │ │ ├── kendo.default-v2.min.css │ │ ├── kendo.default-v2.min.css.map │ │ ├── kendo.default.min.css │ │ ├── kendo.default.min.css.map │ │ ├── kendo.default.mobile.min.css │ │ ├── kendo.default.mobile.min.css.map │ │ ├── kendo.rtl.min.css │ │ ├── kendo.rtl.min.css.map │ │ └── textures │ │ ├── brushed-metal.png │ │ ├── dots1.png │ │ ├── dots10.png │ │ ├── dots11.png │ │ ├── dots12.png │ │ ├── dots13.png │ │ ├── dots2.png │ │ ├── dots3.png │ │ ├── dots4.png │ │ ├── dots5.png │ │ ├── dots6.png │ │ ├── dots7.png │ │ ├── dots8.png │ │ ├── dots9.png │ │ ├── glass-lighter.png │ │ ├── glass.png │ │ ├── highlight.png │ │ ├── hsv-gradient.png │ │ ├── hue.png │ │ ├── leather1.png │ │ ├── leather2.png │ │ ├── noise.png │ │ ├── stripe1.png │ │ ├── stripe2.png │ │ ├── stripe3.png │ │ ├── stripe4.png │ │ ├── stripe5.png │ │ ├── stripe6.png │ │ ├── transparency.png │ │ └── transtexture.png │ ├── laydate │ ├── laydate.js │ └── theme │ │ └── default │ │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ │ └── laydate.css │ └── layer │ ├── layer.js │ ├── mobile │ ├── layer.js │ └── need │ │ └── layer.css │ └── theme │ └── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | *.js linguist-language=csharp 38 | *.css linguist-language=csharp 39 | *.html linguist-language=csharp 40 | ############################################################################### 41 | # behavior for image files 42 | # 43 | # image files are treated as binary by default. 44 | ############################################################################### 45 | #*.jpg binary 46 | #*.png binary 47 | #*.gif binary 48 | 49 | ############################################################################### 50 | # diff behavior for common document formats 51 | # 52 | # Convert binary document formats to text before diffing them. This feature 53 | # is only available from the command line. Turn it on by uncommenting the 54 | # entries below. 55 | ############################################################################### 56 | #*.doc diff=astextplain 57 | #*.DOC diff=astextplain 58 | #*.docx diff=astextplain 59 | #*.DOCX diff=astextplain 60 | #*.dot diff=astextplain 61 | #*.DOT diff=astextplain 62 | #*.pdf diff=astextplain 63 | #*.PDF diff=astextplain 64 | #*.rtf diff=astextplain 65 | #*.RTF diff=astextplain 66 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30717.126 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Calamus.TaskScheduler", "Calamus.TaskScheduler\Calamus.TaskScheduler.csproj", "{DDECC6BF-9803-404C-B055-D393711B4BB6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {DDECC6BF-9803-404C-B055-D393711B4BB6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {DDECC6BF-9803-404C-B055-D393711B4BB6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {DDECC6BF-9803-404C-B055-D393711B4BB6}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {DDECC6BF-9803-404C-B055-D393711B4BB6}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {FA0E7422-542D-4824-8C06-1BE00D1E38F5} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "5.0.2", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Calamus.TaskScheduler.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | d88b30f5-c595-43c1-a9df-df08aeed7de4 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Always 22 | 23 | 24 | Always 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | Always 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim 2 | COPY . /quartznet 3 | WORKDIR quartznet 4 | # 时区设置 5 | RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 6 | RUN echo 'Asia/Shanghai' >/etc/timezone 7 | EXPOSE 80 8 | ENTRYPOINT ["dotnet","Calamus.TaskScheduler.dll"] -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/ClearNLogJob.cs: -------------------------------------------------------------------------------- 1 | using Quartz; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.IO; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace Calamus.TaskScheduler.Infrastructure 9 | { 10 | /// 11 | /// 每3天清空 NLog 产生的日志文件 12 | /// 13 | public class ClearNLogJob : IJob 14 | { 15 | public Task Execute(IJobExecutionContext context) 16 | { 17 | string path = Path.Combine(AppContext.BaseDirectory, "logs"); 18 | if (Directory.Exists(path)) 19 | { 20 | Directory.Delete(path, true); 21 | } 22 | 23 | return Task.CompletedTask; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/CodeResult.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure 7 | { 8 | public class CodeResult 9 | { 10 | public int Code { get; set; } 11 | public string Msg { get; set; } 12 | public static CodeResult Success 13 | { 14 | get 15 | { 16 | return new CodeResult 17 | { 18 | Code = 0, 19 | Msg = "success" 20 | }; 21 | } 22 | } 23 | public static CodeResult Failed 24 | { 25 | get 26 | { 27 | return new CodeResult 28 | { 29 | Code = -1, 30 | Msg = "failed" 31 | }; 32 | } 33 | } 34 | } 35 | 36 | public class CodeResult : CodeResult 37 | { 38 | public T Data { get; set; } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/DateTimeConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text.Json; 5 | using System.Text.Json.Serialization; 6 | using System.Threading.Tasks; 7 | 8 | namespace Calamus.TaskScheduler.Infrastructure 9 | { 10 | /// 11 | /// JSON 序列化日期格式转换 12 | /// 13 | public class DateTimeConverter : JsonConverter 14 | { 15 | public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) 16 | { 17 | if (reader.TokenType == JsonTokenType.String) 18 | { 19 | if (DateTime.TryParse(reader.GetString(), out DateTime date)) 20 | return date; 21 | } 22 | return reader.GetDateTime(); 23 | } 24 | 25 | public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options) 26 | { 27 | writer.WriteStringValue(value.ToString("yyyy-MM-dd HH:mm:ss")); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Dtos/EmailConfigRequest.cs: -------------------------------------------------------------------------------- 1 | using FluentValidation; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace Calamus.TaskScheduler.Infrastructure.Dtos 8 | { 9 | public class EmailConfigRequest 10 | { 11 | public string Host { get; set; } 12 | public int Port { get; set; } 13 | public string UserName { get; set; } 14 | public string Password { get; set; } 15 | public string To { get; set; } 16 | public string NickName { get; set; } 17 | /// 18 | /// 单位:分,通过缓存控制,多少分内只通知一次 19 | /// 20 | public int CacheExpiry { get; set; } 21 | } 22 | 23 | public class EmailNoticeCreateValidator : AbstractValidator 24 | { 25 | public EmailNoticeCreateValidator() 26 | { 27 | RuleFor(model => model.Host).NotEmpty(); 28 | RuleFor(model => model.Port).GreaterThan(0); 29 | RuleFor(model => model.UserName).NotEmpty(); 30 | RuleFor(model => model.Password).NotEmpty(); 31 | RuleFor(model => model.To).NotEmpty(); 32 | RuleFor(model => model.NickName).NotEmpty(); 33 | RuleFor(model => model.CacheExpiry).GreaterThan(0); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Dtos/EmailNoticeModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure.Dtos 7 | { 8 | public class EmailNoticeModel 9 | { 10 | public DateTime ErrorTime { get; set; } 11 | public string Message { get; set; } 12 | public string StackTrace { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Dtos/JobSearchRequest.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc.Rendering; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace Calamus.TaskScheduler.Infrastructure.Dtos 8 | { 9 | public class JobSearchRequest: RequestBase 10 | { 11 | public JobSearchRequest() 12 | { 13 | 14 | } 15 | public string Name { get; set; } 16 | public string Group { get; set; } 17 | 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Dtos/PropertyConfigurationModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure.Dtos 7 | { 8 | public class PropertyConfigurationModel 9 | { 10 | public string Name { get; set; } 11 | public string Value { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Dtos/RequestBase.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc.Rendering; 2 | using System.Collections.Generic; 3 | 4 | namespace Calamus.TaskScheduler.Infrastructure.Dtos 5 | { 6 | public abstract class RequestBase 7 | { 8 | public RequestBase() 9 | { 10 | Properties = new Dictionary>(); 11 | } 12 | public IDictionary> Properties { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Enums.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace Calamus.TaskScheduler.Infrastructure 8 | { 9 | public enum HttpMethodEnum 10 | { 11 | [Description("GET")] 12 | Get = 1, 13 | [Description("POST")] 14 | Post = 2 15 | } 16 | 17 | public enum TriggerTypeEnum 18 | { 19 | [Description("Simple")] 20 | Simple = 1, 21 | [Description("Cron")] 22 | Cron = 2 23 | } 24 | public enum IntervalTypeEnum 25 | { 26 | [Description("秒")] 27 | Second = 1, 28 | [Description("分")] 29 | Minute = 2, 30 | [Description("时")] 31 | Hour = 3, 32 | [Description("天")] 33 | Day = 4 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Filters/GatewayResultFilterAttribute.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.Filters; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace Calamus.TaskScheduler.Infrastructure.Filters 9 | { 10 | public class GatewayResultFilterAttribute : IResultFilter 11 | { 12 | public void OnResultExecuted(ResultExecutedContext context) 13 | { 14 | } 15 | 16 | public void OnResultExecuting(ResultExecutingContext context) 17 | { 18 | if (context.Result is EmptyResult) 19 | { 20 | context.Result = new JsonResult(CodeResult.Success); 21 | } 22 | else if (context.Result is ContentResult) 23 | { 24 | } 25 | else if (context.Result is ObjectResult temp) 26 | { 27 | if ((temp.Value as CodeResult) != null) 28 | { 29 | return; 30 | } 31 | context.Result = new JsonResult(new CodeResult { Code = 0, Msg = "success", Data = temp.Value}); 32 | } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Filters/GlobalExeceptionFilterAttribute.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.Filters; 3 | using Microsoft.Extensions.Logging; 4 | using System; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure.Filters 7 | { 8 | /// 9 | /// 全局异常处理过滤器 - 支持依赖注入 - TypeFilter 10 | /// 11 | public class GlobalExceptionFilterAttribute : TypeFilterAttribute 12 | { 13 | public GlobalExceptionFilterAttribute() : base(typeof(GlobalExeceptionFilter)) 14 | { 15 | 16 | } 17 | 18 | private class GlobalExeceptionFilter : IExceptionFilter 19 | { 20 | private readonly ILogger _logger; 21 | public GlobalExeceptionFilter(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | public void OnException(ExceptionContext context) 26 | { 27 | Exception exception = context.Exception; 28 | while (exception.InnerException!= null) 29 | { 30 | exception = exception.InnerException; 31 | } 32 | _logger.LogError(exception, exception.Message); 33 | 34 | 35 | context.ExceptionHandled = true; 36 | context.Result = new JsonResult(new CodeResult { Code = -1, Msg = exception.Message }); 37 | } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Filters/ModelValidatorFilterAttribute.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.Filters; 3 | using Microsoft.AspNetCore.Mvc.ModelBinding; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | 9 | namespace Calamus.TaskScheduler.Infrastructure.Filters 10 | { 11 | /// 12 | /// 请求模型绑定验证 13 | /// 14 | [AttributeUsage(AttributeTargets.Method)] 15 | public class ModelValidatorFilterAttribute : ActionFilterAttribute 16 | { 17 | public override void OnActionExecuting(ActionExecutingContext context) 18 | { 19 | if (!context.ModelState.IsValid) 20 | { 21 | StringBuilder stringBuilder = new StringBuilder(256); 22 | foreach (KeyValuePair item in context.ModelState) 23 | { 24 | if (item.Value.ValidationState != ModelValidationState.Valid && item.Value.Errors.Count > 0) 25 | { 26 | stringBuilder.AppendFormat("{0};", item.Value.Errors.First().ErrorMessage); 27 | }; 28 | } 29 | context.Result = new JsonResult(new CodeResult 30 | { 31 | Code = -1, 32 | Msg = stringBuilder.Replace(";", string.Empty, stringBuilder.Length - 1, 1).ToString() 33 | }); 34 | } 35 | base.OnActionExecuting(context); 36 | } 37 | 38 | public override void OnActionExecuted(ActionExecutedContext context) 39 | { 40 | base.OnActionExecuted(context); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/HttpJob.cs: -------------------------------------------------------------------------------- 1 | using Quartz; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Net.Http; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Calamus.TaskScheduler.Infrastructure 9 | { 10 | [PersistJobDataAfterExecution] // 执行完,更新JobData 11 | [DisallowConcurrentExecution] // 单个Job不允许并发 执行 12 | public class HttpJob : IJob 13 | { 14 | private readonly HttpClient _http; 15 | public HttpJob(IHttpClientFactory clientFactory) 16 | { 17 | _http = clientFactory.CreateClient(); 18 | } 19 | public async Task Execute(IJobExecutionContext context) 20 | { 21 | string requestUrl = context.JobDetail.JobDataMap.GetRequestUrl(); 22 | int httpMethod = context.JobDetail.JobDataMap.GetHttpMethod(); 23 | string result; 24 | if (httpMethod == (int)HttpMethodEnum.Post) 25 | { 26 | string requestBody = context.JobDetail.JobDataMap.GetRequestBody(); 27 | HttpResponseMessage response = await _http.PostAsync(requestUrl, new StringContent(requestBody, Encoding.UTF8, "application/json")); 28 | result = await response.Content.ReadAsStringAsync(); 29 | } 30 | else 31 | { 32 | result = await _http.GetStringAsync(requestUrl); 33 | } 34 | 35 | List list = context.JobDetail.JobDataMap.GetLogList(); 36 | while (list.Count >= 20) 37 | { 38 | list.RemoveAt(list.Count - 1);// 最大保存日志数量 20 条 39 | } 40 | 41 | string log = $"执行时间:{context.FireTimeUtc.LocalDateTime} - {DateTime.Now},请求耗时:{context.JobRunTime.TotalMilliseconds}ms,返回结果:{CutString(result, 500)}"; 42 | list.Insert(0, log); 43 | context.JobDetail.JobDataMap[DataKeys.LogList] = list; 44 | } 45 | 46 | /// 47 | /// 截取字符串长度 48 | /// 49 | /// 50 | /// 51 | /// 52 | string CutString(string source, int length) 53 | { 54 | if (source.Length <= length) return source; 55 | return source.Substring(0, length); 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/IocEngine.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.DependencyInjection; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace Calamus.TaskScheduler.Infrastructure 8 | { 9 | public sealed class IocEngine 10 | { 11 | public static readonly IocEngine Instance; 12 | static IocEngine() 13 | { 14 | Instance = new IocEngine(); 15 | } 16 | public IServiceProvider ServiceProvider { get; private set; } 17 | 18 | public void Init(IServiceCollection services) 19 | { 20 | ServiceProvider = services.BuildServiceProvider(); 21 | } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/JobDataMapExtensions.cs: -------------------------------------------------------------------------------- 1 | using Quartz; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace Calamus.TaskScheduler.Infrastructure 8 | { 9 | public static class JobDataMapExtensions 10 | { 11 | public static int GetHttpMethod(this JobDataMap map) 12 | => map.GetInt(DataKeys.HttpMethod); 13 | public static string GetRequestUrl(this JobDataMap map) 14 | => map.GetString(DataKeys.RequestUrl); 15 | public static int GetTriggerType(this JobDataMap map) 16 | => map.GetInt(DataKeys.TriggerType); 17 | public static int GetRepeatCount(this JobDataMap map) 18 | => map.GetInt(DataKeys.RepeatCount); 19 | public static int GetInterval(this JobDataMap map) 20 | => map.GetInt(DataKeys.Interval); 21 | public static int GetIntervalType(this JobDataMap map) 22 | => map.GetInt(DataKeys.IntervalType); 23 | public static string GetCron(this JobDataMap map) 24 | => map.GetString(DataKeys.Cron) ?? string.Empty; 25 | public static string GetRequestBody(this JobDataMap map) 26 | => map.GetString(DataKeys.RequestBody) ?? string.Empty; 27 | public static DateTime GetCreateTime(this JobDataMap map) 28 | => map.GetDateTime(DataKeys.CreateTime); 29 | public static DateTime GetStartTime(this JobDataMap map) 30 | => map.GetDateTime(DataKeys.StartTime); 31 | public static DateTime? GetEndTime(this JobDataMap map) 32 | => string.IsNullOrWhiteSpace(map.GetString(DataKeys.EndTime)) ? null : map.GetDateTime(DataKeys.EndTime); 33 | public static string GetLastException(this JobDataMap map) 34 | => map.GetString(DataKeys.LastException) ?? string.Empty; 35 | public static List GetLogList(this JobDataMap map) 36 | => (map[DataKeys.LogList] as List) ?? new List(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/Keys.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure 7 | { 8 | internal sealed class CacheKeys 9 | { 10 | public static readonly string AllGroupKey = "AllGroupKey"; 11 | public static readonly string SchedulerInfoKey = "SchedulerInfoKey"; 12 | } 13 | 14 | internal sealed class DataKeys 15 | { 16 | public static readonly string HttpMethod = "HttpMethod"; 17 | public static readonly string RequestUrl = "RequestUrl"; 18 | public static readonly string TriggerType = "TriggerType"; 19 | public static readonly string RepeatCount = "RepeatCount"; 20 | public static readonly string Interval = "Interval"; 21 | public static readonly string IntervalType = "IntervalType"; 22 | public static readonly string Cron = "Cron"; 23 | public static readonly string RequestBody = "RequestBody"; 24 | public static readonly string CreateTime = "CreateTime"; 25 | public static readonly string StartTime = "StartTime"; 26 | public static readonly string EndTime = "EndTime"; 27 | 28 | public static readonly string LastException = "LastException"; 29 | public static readonly string LogList = "LogList"; 30 | } 31 | 32 | internal sealed class EmailJobKeys 33 | { 34 | public static readonly string NameKey = "_EmailNameKey_"; 35 | public static readonly string GroupKey = "_EmailGroupKey_"; 36 | public static readonly string Host = "Host"; 37 | public static readonly string Port = "Port"; 38 | public static readonly string UserName = "UserName"; 39 | public static readonly string Password = "Password"; 40 | public static readonly string To = "To"; 41 | public static readonly string NickName = "NickName"; 42 | public static readonly string CacheExpiry = "CacheExpiry"; 43 | } 44 | 45 | internal sealed class NLogJobKey 46 | { 47 | public static readonly string NameKey = "_NLogNameKey_"; 48 | public static readonly string GroupKey = "_NLogGroupKey_"; 49 | } 50 | 51 | public class PropertiesKeys 52 | { 53 | public static readonly string Key_1 = "Key_1"; 54 | public static readonly string Key_2 = "Key_2"; 55 | public static readonly string Key_3 = "Key_3"; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/NLogHostService.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.Hosting; 2 | using NLog; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Threading; 7 | using System.Threading.Tasks; 8 | 9 | namespace Calamus.TaskScheduler.Infrastructure 10 | { 11 | public class NLogHostService : IHostedService 12 | { 13 | public Task StartAsync(CancellationToken cancellationToken) 14 | { 15 | return Task.CompletedTask; 16 | } 17 | 18 | public Task StopAsync(CancellationToken cancellationToken) 19 | { 20 | LogManager.Shutdown(); 21 | return Task.CompletedTask; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Infrastructure/WhereIfExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace Calamus.TaskScheduler.Infrastructure 7 | { 8 | public static class WhereIfExtensions 9 | { 10 | public static IEnumerable WhereIf(this IEnumerable source, bool condition, Func predicate) 11 | { 12 | return condition ? source.Where(predicate) : source; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.Configuration; 3 | using Microsoft.Extensions.Hosting; 4 | using Microsoft.Extensions.Logging; 5 | using NLog.Web; 6 | using System; 7 | using System.Collections.Generic; 8 | using System.Linq; 9 | using System.Threading.Tasks; 10 | 11 | namespace Calamus.TaskScheduler 12 | { 13 | public class Program 14 | { 15 | public static void Main(string[] args) 16 | { 17 | CreateHostBuilder(args).Build().Run(); 18 | } 19 | 20 | public static IHostBuilder CreateHostBuilder(string[] args) => 21 | Host.CreateDefaultBuilder(args) 22 | .ConfigureWebHostDefaults(webBuilder => 23 | { 24 | webBuilder.UseStartup(); 25 | }).UseNLog(); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:1110", 7 | "sslPort": 44343 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "Calamus.TaskScheduler": { 19 | "commandName": "Project", 20 | "dotnetRunMessages": "true", 21 | "launchBrowser": true, 22 | "applicationUrl": "https://localhost:5001;http://localhost:5000", 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/Startup.cs -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Views/Home/Info.cshtml: -------------------------------------------------------------------------------- 1 | @model List 2 | @{ 3 | ViewData["Title"] = "服务状态"; 4 | } 5 |
6 |
7 |

服务状态

8 |
9 | 12 |
13 | 14 |
15 | 16 |
17 |
18 | @foreach (var item in Model) 19 | { 20 |
@item.Name
21 |
@item.Value
22 | } 23 |
24 |
25 | 26 |
27 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Views/Home/Log.cshtml: -------------------------------------------------------------------------------- 1 | @model List 2 | @{ 3 | ViewData["Title"] = "任务日志"; 4 | Layout = "../Shared/_Layout_Layer.cshtml"; 5 | } 6 | @if (Model.Count <= 0) 7 | { 8 |

暂无执行成功日志。

9 | } 10 | @foreach (var item in Model) 11 | { 12 |
13 |

@item

14 |
15 | 16 | } -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Views/Shared/_Layout_Layer.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | @ViewData["Title"] - TaskScheduler 8 | 9 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 |
loading...
20 | @RenderBody() 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | @RenderSection("Scripts", false) 33 | 34 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Calamus.TaskScheduler.Infrastructure 2 | @using Calamus.TaskScheduler.Infrastructure.Dtos 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/appsettings.json -------------------------------------------------------------------------------- /Calamus.TaskScheduler/database/schema_20_to_22_upgrade.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- !! FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !! 3 | -- 4 | -- Migration script to add new column to QRTZ_FIRED_TRIGGERS 5 | -- 6 | -- !! FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !! 7 | -- 8 | 9 | -- you may need to change this syntax depending on your database! 10 | 11 | -- common 12 | -- delete from QRTZ_FIRED_TRIGGERS 13 | alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME [BIGINT] NOT NULL; 14 | 15 | -- mysql 16 | -- alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME BIGINT(19) NOT NULL 17 | 18 | -- oracle 19 | -- alter table QRTZ_FIRED_TRIGGERS add SCHED_TIME NUMBER(19) NOT NULL 20 | 21 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/database/schema_25_to_26_upgrade.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- !! FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !! 3 | -- 4 | -- Migration script to add new column to QRTZ_SIMPROP_TRIGGERS 5 | -- 6 | -- !! FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !! 7 | -- 8 | 9 | -- you may need to change this syntax depending on your database! 10 | 11 | -- sql server 12 | alter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID [NVARCHAR] (80); 13 | 14 | -- mysql 15 | -- alter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID VARCHAR(80); 16 | 17 | -- oracle 18 | -- alter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID VARCHAR2(80); 19 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/database/schema_26_to_30.sql: -------------------------------------------------------------------------------- 1 | /* 2 | Convert the IMAGE data types to VARBINARY(MAX) 3 | Upgrade SQL Server database from 2.x to 3 4 | */ 5 | 6 | --USE [database_name]; 7 | --GO 8 | 9 | ALTER TABLE [dbo].[QRTZ_CALENDARS] 10 | ALTER COLUMN [CALENDAR] [VARBINARY](MAX) NOT NULL; 11 | GO 12 | 13 | ALTER TABLE [dbo].[QRTZ_JOB_DETAILS] 14 | ALTER COLUMN [JOB_DATA] [VARBINARY](MAX) NULL; 15 | GO 16 | 17 | ALTER TABLE [dbo].[QRTZ_BLOB_TRIGGERS] 18 | ALTER COLUMN [BLOB_DATA] [VARBINARY](MAX) NULL; 19 | GO 20 | 21 | ALTER TABLE [dbo].[QRTZ_TRIGGERS] 22 | ALTER COLUMN [JOB_DATA] [VARBINARY](MAX) NULL; 23 | GO -------------------------------------------------------------------------------- /Calamus.TaskScheduler/nlog.config: -------------------------------------------------------------------------------- 1 |  2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/start.sh: -------------------------------------------------------------------------------- 1 | docker rmi quartznet1.0 2 | docker build --no-cache -t quartznet1.0 . 3 | docker stop quartznet 4 | docker rm quartznet 5 | docker run --name quartznet --privileged=true --restart=always -d -p 1063:80 quartznet1.0 6 | docker ps -a -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/dist/js/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "parserOptions": { 4 | "ecmaVersion": 5, 5 | "sourceType": "script" 6 | }, 7 | "env": { 8 | "jquery": true 9 | }, 10 | "extends": [ 11 | "plugin:unicorn/recommended", 12 | "xo", 13 | "xo/browser" 14 | ], 15 | "rules": { 16 | "capitalized-comments": "off", 17 | "indent": [ 18 | "error", 19 | 2, 20 | { 21 | "MemberExpression": "off", 22 | "SwitchCase": 1 23 | } 24 | ], 25 | "multiline-ternary": [ 26 | "error", 27 | "always-multiline" 28 | ], 29 | "object-curly-spacing": [ 30 | "error", 31 | "always" 32 | ], 33 | "semi": [ 34 | "error", 35 | "never" 36 | ], 37 | "strict": "error", 38 | "unicorn/no-for-loop": "off", 39 | "unicorn/no-null": "off", 40 | "unicorn/prefer-dataset": "off", 41 | "unicorn/prefer-includes": "off", 42 | "unicorn/prefer-node-append": "off", 43 | "unicorn/prefer-query-selector": "off", 44 | "unicorn/prevent-abbreviations": "off" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Brands'; 7 | font-style: normal; 8 | font-weight: 400; 9 | font-display: block; 10 | src: url("../webfonts/fa-brands-400.eot"); 11 | src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } 12 | 13 | .fab { 14 | font-family: 'Font Awesome 5 Brands'; 15 | font-weight: 400; } 16 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands";font-weight:400} -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Free'; 7 | font-style: normal; 8 | font-weight: 400; 9 | font-display: block; 10 | src: url("../webfonts/fa-regular-400.eot"); 11 | src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } 12 | 13 | .far { 14 | font-family: 'Font Awesome 5 Free'; 15 | font-weight: 400; } 16 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400} -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 5 Free'; 7 | font-style: normal; 8 | font-weight: 900; 9 | font-display: block; 10 | src: url("../webfonts/fa-solid-900.eot"); 11 | src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } 12 | 13 | .fa, 14 | .fas { 15 | font-family: 'Font Awesome 5 Free'; 16 | font-weight: 900; } 17 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900} -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/adminlte3/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/af.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Afrikaans [af] 3 | //! author : Werner Mollentze : https://github.com/wernerm 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var af = moment.defineLocale('af', { 15 | months: 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'), 19 | weekdays: 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'), 23 | weekdaysMin: 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'), 24 | meridiemParse: /vm|nm/i, 25 | isPM: function (input) { 26 | return /^nm$/i.test(input); 27 | }, 28 | meridiem: function (hours, minutes, isLower) { 29 | if (hours < 12) { 30 | return isLower ? 'vm' : 'VM'; 31 | } else { 32 | return isLower ? 'nm' : 'NM'; 33 | } 34 | }, 35 | longDateFormat: { 36 | LT: 'HH:mm', 37 | LTS: 'HH:mm:ss', 38 | L: 'DD/MM/YYYY', 39 | LL: 'D MMMM YYYY', 40 | LLL: 'D MMMM YYYY HH:mm', 41 | LLLL: 'dddd, D MMMM YYYY HH:mm', 42 | }, 43 | calendar: { 44 | sameDay: '[Vandag om] LT', 45 | nextDay: '[Môre om] LT', 46 | nextWeek: 'dddd [om] LT', 47 | lastDay: '[Gister om] LT', 48 | lastWeek: '[Laas] dddd [om] LT', 49 | sameElse: 'L', 50 | }, 51 | relativeTime: { 52 | future: 'oor %s', 53 | past: '%s gelede', 54 | s: "'n paar sekondes", 55 | ss: '%d sekondes', 56 | m: "'n minuut", 57 | mm: '%d minute', 58 | h: "'n uur", 59 | hh: '%d ure', 60 | d: "'n dag", 61 | dd: '%d dae', 62 | M: "'n maand", 63 | MM: '%d maande', 64 | y: "'n jaar", 65 | yy: '%d jaar', 66 | }, 67 | dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/, 68 | ordinal: function (number) { 69 | return ( 70 | number + 71 | (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de') 72 | ); // Thanks to Joris Röling : https://github.com/jjupiter 73 | }, 74 | week: { 75 | dow: 1, // Maandag is die eerste dag van die week. 76 | doy: 4, // Die week wat die 4de Januarie bevat is die eerste week van die jaar. 77 | }, 78 | }); 79 | 80 | return af; 81 | 82 | }))); 83 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Kuwait) [ar-kw] 3 | //! author : Nusret Parlak: https://github.com/nusretparlak 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var arKw = moment.defineLocale('ar-kw', { 15 | months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split( 16 | '_' 17 | ), 18 | monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split( 19 | '_' 20 | ), 21 | weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 22 | weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 23 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D MMMM YYYY', 30 | LLL: 'D MMMM YYYY HH:mm', 31 | LLLL: 'dddd D MMMM YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[اليوم على الساعة] LT', 35 | nextDay: '[غدا على الساعة] LT', 36 | nextWeek: 'dddd [على الساعة] LT', 37 | lastDay: '[أمس على الساعة] LT', 38 | lastWeek: 'dddd [على الساعة] LT', 39 | sameElse: 'L', 40 | }, 41 | relativeTime: { 42 | future: 'في %s', 43 | past: 'منذ %s', 44 | s: 'ثوان', 45 | ss: '%d ثانية', 46 | m: 'دقيقة', 47 | mm: '%d دقائق', 48 | h: 'ساعة', 49 | hh: '%d ساعات', 50 | d: 'يوم', 51 | dd: '%d أيام', 52 | M: 'شهر', 53 | MM: '%d أشهر', 54 | y: 'سنة', 55 | yy: '%d سنوات', 56 | }, 57 | week: { 58 | dow: 0, // Sunday is the first day of the week. 59 | doy: 12, // The week that contains Jan 12th is the first week of the year. 60 | }, 61 | }); 62 | 63 | return arKw; 64 | 65 | }))); 66 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Morocco) [ar-ma] 3 | //! author : ElFadili Yassine : https://github.com/ElFadiliY 4 | //! author : Abdel Said : https://github.com/abdelsaid 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var arMa = moment.defineLocale('ar-ma', { 16 | months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split( 17 | '_' 18 | ), 19 | monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split( 20 | '_' 21 | ), 22 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 23 | weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'), 24 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 25 | weekdaysParseExact: true, 26 | longDateFormat: { 27 | LT: 'HH:mm', 28 | LTS: 'HH:mm:ss', 29 | L: 'DD/MM/YYYY', 30 | LL: 'D MMMM YYYY', 31 | LLL: 'D MMMM YYYY HH:mm', 32 | LLLL: 'dddd D MMMM YYYY HH:mm', 33 | }, 34 | calendar: { 35 | sameDay: '[اليوم على الساعة] LT', 36 | nextDay: '[غدا على الساعة] LT', 37 | nextWeek: 'dddd [على الساعة] LT', 38 | lastDay: '[أمس على الساعة] LT', 39 | lastWeek: 'dddd [على الساعة] LT', 40 | sameElse: 'L', 41 | }, 42 | relativeTime: { 43 | future: 'في %s', 44 | past: 'منذ %s', 45 | s: 'ثوان', 46 | ss: '%d ثانية', 47 | m: 'دقيقة', 48 | mm: '%d دقائق', 49 | h: 'ساعة', 50 | hh: '%d ساعات', 51 | d: 'يوم', 52 | dd: '%d أيام', 53 | M: 'شهر', 54 | MM: '%d أشهر', 55 | y: 'سنة', 56 | yy: '%d سنوات', 57 | }, 58 | week: { 59 | dow: 1, // Monday is the first day of the week. 60 | doy: 4, // The week that contains Jan 4th is the first week of the year. 61 | }, 62 | }); 63 | 64 | return arMa; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Arabic (Tunisia) [ar-tn] 3 | //! author : Nader Toukabri : https://github.com/naderio 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var arTn = moment.defineLocale('ar-tn', { 15 | months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split( 16 | '_' 17 | ), 18 | monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split( 19 | '_' 20 | ), 21 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'), 22 | weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'), 23 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D MMMM YYYY', 30 | LLL: 'D MMMM YYYY HH:mm', 31 | LLLL: 'dddd D MMMM YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[اليوم على الساعة] LT', 35 | nextDay: '[غدا على الساعة] LT', 36 | nextWeek: 'dddd [على الساعة] LT', 37 | lastDay: '[أمس على الساعة] LT', 38 | lastWeek: 'dddd [على الساعة] LT', 39 | sameElse: 'L', 40 | }, 41 | relativeTime: { 42 | future: 'في %s', 43 | past: 'منذ %s', 44 | s: 'ثوان', 45 | ss: '%d ثانية', 46 | m: 'دقيقة', 47 | mm: '%d دقائق', 48 | h: 'ساعة', 49 | hh: '%d ساعات', 50 | d: 'يوم', 51 | dd: '%d أيام', 52 | M: 'شهر', 53 | MM: '%d أشهر', 54 | y: 'سنة', 55 | yy: '%d سنوات', 56 | }, 57 | week: { 58 | dow: 1, // Monday is the first day of the week. 59 | doy: 4, // The week that contains Jan 4th is the first week of the year. 60 | }, 61 | }); 62 | 63 | return arTn; 64 | 65 | }))); 66 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/bm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Bambara [bm] 3 | //! author : Estelle Comment : https://github.com/estellecomment 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var bm = moment.defineLocale('bm', { 15 | months: 'Zanwuyekalo_Fewuruyekalo_Marisikalo_Awirilikalo_Mɛkalo_Zuwɛnkalo_Zuluyekalo_Utikalo_Sɛtanburukalo_ɔkutɔburukalo_Nowanburukalo_Desanburukalo'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Zan_Few_Mar_Awi_Mɛ_Zuw_Zul_Uti_Sɛt_ɔku_Now_Des'.split('_'), 19 | weekdays: 'Kari_Ntɛnɛn_Tarata_Araba_Alamisa_Juma_Sibiri'.split('_'), 20 | weekdaysShort: 'Kar_Ntɛ_Tar_Ara_Ala_Jum_Sib'.split('_'), 21 | weekdaysMin: 'Ka_Nt_Ta_Ar_Al_Ju_Si'.split('_'), 22 | longDateFormat: { 23 | LT: 'HH:mm', 24 | LTS: 'HH:mm:ss', 25 | L: 'DD/MM/YYYY', 26 | LL: 'MMMM [tile] D [san] YYYY', 27 | LLL: 'MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm', 28 | LLLL: 'dddd MMMM [tile] D [san] YYYY [lɛrɛ] HH:mm', 29 | }, 30 | calendar: { 31 | sameDay: '[Bi lɛrɛ] LT', 32 | nextDay: '[Sini lɛrɛ] LT', 33 | nextWeek: 'dddd [don lɛrɛ] LT', 34 | lastDay: '[Kunu lɛrɛ] LT', 35 | lastWeek: 'dddd [tɛmɛnen lɛrɛ] LT', 36 | sameElse: 'L', 37 | }, 38 | relativeTime: { 39 | future: '%s kɔnɔ', 40 | past: 'a bɛ %s bɔ', 41 | s: 'sanga dama dama', 42 | ss: 'sekondi %d', 43 | m: 'miniti kelen', 44 | mm: 'miniti %d', 45 | h: 'lɛrɛ kelen', 46 | hh: 'lɛrɛ %d', 47 | d: 'tile kelen', 48 | dd: 'tile %d', 49 | M: 'kalo kelen', 50 | MM: 'kalo %d', 51 | y: 'san kelen', 52 | yy: 'san %d', 53 | }, 54 | week: { 55 | dow: 1, // Monday is the first day of the week. 56 | doy: 4, // The week that contains Jan 4th is the first week of the year. 57 | }, 58 | }); 59 | 60 | return bm; 61 | 62 | }))); 63 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/cv.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Chuvash [cv] 3 | //! author : Anatoly Mironov : https://github.com/mirontoli 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var cv = moment.defineLocale('cv', { 15 | months: 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split( 16 | '_' 17 | ), 18 | monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'), 19 | weekdays: 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'), 23 | weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD-MM-YYYY', 28 | LL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]', 29 | LLL: 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm', 30 | LLLL: 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Паян] LT [сехетре]', 34 | nextDay: '[Ыран] LT [сехетре]', 35 | lastDay: '[Ӗнер] LT [сехетре]', 36 | nextWeek: '[Ҫитес] dddd LT [сехетре]', 37 | lastWeek: '[Иртнӗ] dddd LT [сехетре]', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: function (output) { 42 | var affix = /сехет$/i.exec(output) 43 | ? 'рен' 44 | : /ҫул$/i.exec(output) 45 | ? 'тан' 46 | : 'ран'; 47 | return output + affix; 48 | }, 49 | past: '%s каялла', 50 | s: 'пӗр-ик ҫеккунт', 51 | ss: '%d ҫеккунт', 52 | m: 'пӗр минут', 53 | mm: '%d минут', 54 | h: 'пӗр сехет', 55 | hh: '%d сехет', 56 | d: 'пӗр кун', 57 | dd: '%d кун', 58 | M: 'пӗр уйӑх', 59 | MM: '%d уйӑх', 60 | y: 'пӗр ҫул', 61 | yy: '%d ҫул', 62 | }, 63 | dayOfMonthOrdinalParse: /\d{1,2}-мӗш/, 64 | ordinal: '%d-мӗш', 65 | week: { 66 | dow: 1, // Monday is the first day of the week. 67 | doy: 7, // The week that contains Jan 7th is the first week of the year. 68 | }, 69 | }); 70 | 71 | return cv; 72 | 73 | }))); 74 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/da.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Danish [da] 3 | //! author : Ulrik Nielsen : https://github.com/mrbase 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var da = moment.defineLocale('da', { 15 | months: 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split( 16 | '_' 17 | ), 18 | monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 19 | weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 20 | weekdaysShort: 'søn_man_tir_ons_tor_fre_lør'.split('_'), 21 | weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'), 22 | longDateFormat: { 23 | LT: 'HH:mm', 24 | LTS: 'HH:mm:ss', 25 | L: 'DD.MM.YYYY', 26 | LL: 'D. MMMM YYYY', 27 | LLL: 'D. MMMM YYYY HH:mm', 28 | LLLL: 'dddd [d.] D. MMMM YYYY [kl.] HH:mm', 29 | }, 30 | calendar: { 31 | sameDay: '[i dag kl.] LT', 32 | nextDay: '[i morgen kl.] LT', 33 | nextWeek: 'på dddd [kl.] LT', 34 | lastDay: '[i går kl.] LT', 35 | lastWeek: '[i] dddd[s kl.] LT', 36 | sameElse: 'L', 37 | }, 38 | relativeTime: { 39 | future: 'om %s', 40 | past: '%s siden', 41 | s: 'få sekunder', 42 | ss: '%d sekunder', 43 | m: 'et minut', 44 | mm: '%d minutter', 45 | h: 'en time', 46 | hh: '%d timer', 47 | d: 'en dag', 48 | dd: '%d dage', 49 | M: 'en måned', 50 | MM: '%d måneder', 51 | y: 'et år', 52 | yy: '%d år', 53 | }, 54 | dayOfMonthOrdinalParse: /\d{1,2}\./, 55 | ordinal: '%d.', 56 | week: { 57 | dow: 1, // Monday is the first day of the week. 58 | doy: 4, // The week that contains Jan 4th is the first week of the year. 59 | }, 60 | }); 61 | 62 | return da; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-SG.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (Singapore) [en-sg] 3 | //! author : Matthew Castrillon-Madrigal : https://github.com/techdimension 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enSg = moment.defineLocale('en-sg', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd, D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enSg; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-au.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (Australia) [en-au] 3 | //! author : Jared Morse : https://github.com/jarcoal 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enAu = moment.defineLocale('en-au', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'h:mm A', 26 | LTS: 'h:mm:ss A', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY h:mm A', 30 | LLLL: 'dddd, D MMMM YYYY h:mm A', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 0, // Sunday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enAu; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-ca.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (Canada) [en-ca] 3 | //! author : Jonathan Abourbih : https://github.com/jonbca 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enCa = moment.defineLocale('en-ca', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'h:mm A', 26 | LTS: 'h:mm:ss A', 27 | L: 'YYYY-MM-DD', 28 | LL: 'MMMM D, YYYY', 29 | LLL: 'MMMM D, YYYY h:mm A', 30 | LLLL: 'dddd, MMMM D, YYYY h:mm A', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | }); 72 | 73 | return enCa; 74 | 75 | }))); 76 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-gb.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (United Kingdom) [en-gb] 3 | //! author : Chris Gedrim : https://github.com/chrisgedrim 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enGb = moment.defineLocale('en-gb', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd, D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enGb; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-ie.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (Ireland) [en-ie] 3 | //! author : Chris Cartlidge : https://github.com/chriscartlidge 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enIe = moment.defineLocale('en-ie', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enIe; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-il.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (Israel) [en-il] 3 | //! author : Chris Gedrim : https://github.com/chrisgedrim 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enIl = moment.defineLocale('en-il', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd, D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | }); 72 | 73 | return enIl; 74 | 75 | }))); 76 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-in.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (India) [en-in] 3 | //! author : Jatin Agrawal : https://github.com/jatinag22 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enIn = moment.defineLocale('en-in', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'h:mm A', 26 | LTS: 'h:mm:ss A', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY h:mm A', 30 | LLLL: 'dddd, D MMMM YYYY h:mm A', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 0, // Sunday is the first day of the week. 73 | doy: 6, // The week that contains Jan 1st is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enIn; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/en-nz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : English (New Zealand) [en-nz] 3 | //! author : Luke McGregor : https://github.com/lukemcgregor 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var enNz = moment.defineLocale('en-nz', { 15 | months: 'January_February_March_April_May_June_July_August_September_October_November_December'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), 19 | weekdays: 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), 23 | weekdaysMin: 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'h:mm A', 26 | LTS: 'h:mm:ss A', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY h:mm A', 30 | LLLL: 'dddd, D MMMM YYYY h:mm A', 31 | }, 32 | calendar: { 33 | sameDay: '[Today at] LT', 34 | nextDay: '[Tomorrow at] LT', 35 | nextWeek: 'dddd [at] LT', 36 | lastDay: '[Yesterday at] LT', 37 | lastWeek: '[Last] dddd [at] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'in %s', 42 | past: '%s ago', 43 | s: 'a few seconds', 44 | ss: '%d seconds', 45 | m: 'a minute', 46 | mm: '%d minutes', 47 | h: 'an hour', 48 | hh: '%d hours', 49 | d: 'a day', 50 | dd: '%d days', 51 | M: 'a month', 52 | MM: '%d months', 53 | y: 'a year', 54 | yy: '%d years', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return enNz; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/eo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Esperanto [eo] 3 | //! author : Colin Dean : https://github.com/colindean 4 | //! author : Mia Nordentoft Imperatori : https://github.com/miestasmia 5 | //! comment : miestasmia corrected the translation by colindean 6 | //! comment : Vivakvo corrected the translation by colindean and miestasmia 7 | 8 | ;(function (global, factory) { 9 | typeof exports === 'object' && typeof module !== 'undefined' 10 | && typeof require === 'function' ? factory(require('../moment')) : 11 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 12 | factory(global.moment) 13 | }(this, (function (moment) { 'use strict'; 14 | 15 | //! moment.js locale configuration 16 | 17 | var eo = moment.defineLocale('eo', { 18 | months: 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split( 19 | '_' 20 | ), 21 | monthsShort: 'jan_feb_mart_apr_maj_jun_jul_aŭg_sept_okt_nov_dec'.split('_'), 22 | weekdays: 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'), 23 | weekdaysShort: 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'), 24 | weekdaysMin: 'di_lu_ma_me_ĵa_ve_sa'.split('_'), 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'YYYY-MM-DD', 29 | LL: '[la] D[-an de] MMMM, YYYY', 30 | LLL: '[la] D[-an de] MMMM, YYYY HH:mm', 31 | LLLL: 'dddd[n], [la] D[-an de] MMMM, YYYY HH:mm', 32 | llll: 'ddd, [la] D[-an de] MMM, YYYY HH:mm', 33 | }, 34 | meridiemParse: /[ap]\.t\.m/i, 35 | isPM: function (input) { 36 | return input.charAt(0).toLowerCase() === 'p'; 37 | }, 38 | meridiem: function (hours, minutes, isLower) { 39 | if (hours > 11) { 40 | return isLower ? 'p.t.m.' : 'P.T.M.'; 41 | } else { 42 | return isLower ? 'a.t.m.' : 'A.T.M.'; 43 | } 44 | }, 45 | calendar: { 46 | sameDay: '[Hodiaŭ je] LT', 47 | nextDay: '[Morgaŭ je] LT', 48 | nextWeek: 'dddd[n je] LT', 49 | lastDay: '[Hieraŭ je] LT', 50 | lastWeek: '[pasintan] dddd[n je] LT', 51 | sameElse: 'L', 52 | }, 53 | relativeTime: { 54 | future: 'post %s', 55 | past: 'antaŭ %s', 56 | s: 'kelkaj sekundoj', 57 | ss: '%d sekundoj', 58 | m: 'unu minuto', 59 | mm: '%d minutoj', 60 | h: 'unu horo', 61 | hh: '%d horoj', 62 | d: 'unu tago', //ne 'diurno', ĉar estas uzita por proksimumo 63 | dd: '%d tagoj', 64 | M: 'unu monato', 65 | MM: '%d monatoj', 66 | y: 'unu jaro', 67 | yy: '%d jaroj', 68 | }, 69 | dayOfMonthOrdinalParse: /\d{1,2}a/, 70 | ordinal: '%da', 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 7, // The week that contains Jan 7th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return eo; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/eu.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Basque [eu] 3 | //! author : Eneko Illarramendi : https://github.com/eillarra 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var eu = moment.defineLocale('eu', { 15 | months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split( 16 | '_' 17 | ), 18 | monthsShort: 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split( 19 | '_' 20 | ), 21 | monthsParseExact: true, 22 | weekdays: 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split( 23 | '_' 24 | ), 25 | weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'), 26 | weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'), 27 | weekdaysParseExact: true, 28 | longDateFormat: { 29 | LT: 'HH:mm', 30 | LTS: 'HH:mm:ss', 31 | L: 'YYYY-MM-DD', 32 | LL: 'YYYY[ko] MMMM[ren] D[a]', 33 | LLL: 'YYYY[ko] MMMM[ren] D[a] HH:mm', 34 | LLLL: 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm', 35 | l: 'YYYY-M-D', 36 | ll: 'YYYY[ko] MMM D[a]', 37 | lll: 'YYYY[ko] MMM D[a] HH:mm', 38 | llll: 'ddd, YYYY[ko] MMM D[a] HH:mm', 39 | }, 40 | calendar: { 41 | sameDay: '[gaur] LT[etan]', 42 | nextDay: '[bihar] LT[etan]', 43 | nextWeek: 'dddd LT[etan]', 44 | lastDay: '[atzo] LT[etan]', 45 | lastWeek: '[aurreko] dddd LT[etan]', 46 | sameElse: 'L', 47 | }, 48 | relativeTime: { 49 | future: '%s barru', 50 | past: 'duela %s', 51 | s: 'segundo batzuk', 52 | ss: '%d segundo', 53 | m: 'minutu bat', 54 | mm: '%d minutu', 55 | h: 'ordu bat', 56 | hh: '%d ordu', 57 | d: 'egun bat', 58 | dd: '%d egun', 59 | M: 'hilabete bat', 60 | MM: '%d hilabete', 61 | y: 'urte bat', 62 | yy: '%d urte', 63 | }, 64 | dayOfMonthOrdinalParse: /\d{1,2}\./, 65 | ordinal: '%d.', 66 | week: { 67 | dow: 1, // Monday is the first day of the week. 68 | doy: 7, // The week that contains Jan 7th is the first week of the year. 69 | }, 70 | }); 71 | 72 | return eu; 73 | 74 | }))); 75 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/fil.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Filipino [fil] 3 | //! author : Dan Hagman : https://github.com/hagmandan 4 | //! author : Matthew Co : https://github.com/matthewdeeco 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var fil = moment.defineLocale('fil', { 16 | months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split( 17 | '_' 18 | ), 19 | monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'), 20 | weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split( 21 | '_' 22 | ), 23 | weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'), 24 | weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'), 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'MM/D/YYYY', 29 | LL: 'MMMM D, YYYY', 30 | LLL: 'MMMM D, YYYY HH:mm', 31 | LLLL: 'dddd, MMMM DD, YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: 'LT [ngayong araw]', 35 | nextDay: '[Bukas ng] LT', 36 | nextWeek: 'LT [sa susunod na] dddd', 37 | lastDay: 'LT [kahapon]', 38 | lastWeek: 'LT [noong nakaraang] dddd', 39 | sameElse: 'L', 40 | }, 41 | relativeTime: { 42 | future: 'sa loob ng %s', 43 | past: '%s ang nakalipas', 44 | s: 'ilang segundo', 45 | ss: '%d segundo', 46 | m: 'isang minuto', 47 | mm: '%d minuto', 48 | h: 'isang oras', 49 | hh: '%d oras', 50 | d: 'isang araw', 51 | dd: '%d araw', 52 | M: 'isang buwan', 53 | MM: '%d buwan', 54 | y: 'isang taon', 55 | yy: '%d taon', 56 | }, 57 | dayOfMonthOrdinalParse: /\d{1,2}/, 58 | ordinal: function (number) { 59 | return number; 60 | }, 61 | week: { 62 | dow: 1, // Monday is the first day of the week. 63 | doy: 4, // The week that contains Jan 4th is the first week of the year. 64 | }, 65 | }); 66 | 67 | return fil; 68 | 69 | }))); 70 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/fo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Faroese [fo] 3 | //! author : Ragnar Johannesen : https://github.com/ragnar123 4 | //! author : Kristian Sakarisson : https://github.com/sakarisson 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var fo = moment.defineLocale('fo', { 16 | months: 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split( 17 | '_' 18 | ), 19 | monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'), 20 | weekdays: 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split( 21 | '_' 22 | ), 23 | weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'), 24 | weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'), 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D MMMM YYYY', 30 | LLL: 'D MMMM YYYY HH:mm', 31 | LLLL: 'dddd D. MMMM, YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[Í dag kl.] LT', 35 | nextDay: '[Í morgin kl.] LT', 36 | nextWeek: 'dddd [kl.] LT', 37 | lastDay: '[Í gjár kl.] LT', 38 | lastWeek: '[síðstu] dddd [kl] LT', 39 | sameElse: 'L', 40 | }, 41 | relativeTime: { 42 | future: 'um %s', 43 | past: '%s síðani', 44 | s: 'fá sekund', 45 | ss: '%d sekundir', 46 | m: 'ein minuttur', 47 | mm: '%d minuttir', 48 | h: 'ein tími', 49 | hh: '%d tímar', 50 | d: 'ein dagur', 51 | dd: '%d dagar', 52 | M: 'ein mánaður', 53 | MM: '%d mánaðir', 54 | y: 'eitt ár', 55 | yy: '%d ár', 56 | }, 57 | dayOfMonthOrdinalParse: /\d{1,2}\./, 58 | ordinal: '%d.', 59 | week: { 60 | dow: 1, // Monday is the first day of the week. 61 | doy: 4, // The week that contains Jan 4th is the first week of the year. 62 | }, 63 | }); 64 | 65 | return fo; 66 | 67 | }))); 68 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : French (Canada) [fr-ca] 3 | //! author : Jonathan Abourbih : https://github.com/jonbca 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var frCa = moment.defineLocale('fr-ca', { 15 | months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split( 16 | '_' 17 | ), 18 | monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split( 19 | '_' 20 | ), 21 | monthsParseExact: true, 22 | weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), 23 | weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), 24 | weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'), 25 | weekdaysParseExact: true, 26 | longDateFormat: { 27 | LT: 'HH:mm', 28 | LTS: 'HH:mm:ss', 29 | L: 'YYYY-MM-DD', 30 | LL: 'D MMMM YYYY', 31 | LLL: 'D MMMM YYYY HH:mm', 32 | LLLL: 'dddd D MMMM YYYY HH:mm', 33 | }, 34 | calendar: { 35 | sameDay: '[Aujourd’hui à] LT', 36 | nextDay: '[Demain à] LT', 37 | nextWeek: 'dddd [à] LT', 38 | lastDay: '[Hier à] LT', 39 | lastWeek: 'dddd [dernier à] LT', 40 | sameElse: 'L', 41 | }, 42 | relativeTime: { 43 | future: 'dans %s', 44 | past: 'il y a %s', 45 | s: 'quelques secondes', 46 | ss: '%d secondes', 47 | m: 'une minute', 48 | mm: '%d minutes', 49 | h: 'une heure', 50 | hh: '%d heures', 51 | d: 'un jour', 52 | dd: '%d jours', 53 | M: 'un mois', 54 | MM: '%d mois', 55 | y: 'un an', 56 | yy: '%d ans', 57 | }, 58 | dayOfMonthOrdinalParse: /\d{1,2}(er|e)/, 59 | ordinal: function (number, period) { 60 | switch (period) { 61 | // Words with masculine grammatical gender: mois, trimestre, jour 62 | default: 63 | case 'M': 64 | case 'Q': 65 | case 'D': 66 | case 'DDD': 67 | case 'd': 68 | return number + (number === 1 ? 'er' : 'e'); 69 | 70 | // Words with feminine grammatical gender: semaine 71 | case 'w': 72 | case 'W': 73 | return number + (number === 1 ? 're' : 'e'); 74 | } 75 | }, 76 | }); 77 | 78 | return frCa; 79 | 80 | }))); 81 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : French (Switzerland) [fr-ch] 3 | //! author : Gaspard Bucher : https://github.com/gaspard 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var frCh = moment.defineLocale('fr-ch', { 15 | months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split( 16 | '_' 17 | ), 18 | monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split( 19 | '_' 20 | ), 21 | monthsParseExact: true, 22 | weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), 23 | weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), 24 | weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'), 25 | weekdaysParseExact: true, 26 | longDateFormat: { 27 | LT: 'HH:mm', 28 | LTS: 'HH:mm:ss', 29 | L: 'DD.MM.YYYY', 30 | LL: 'D MMMM YYYY', 31 | LLL: 'D MMMM YYYY HH:mm', 32 | LLLL: 'dddd D MMMM YYYY HH:mm', 33 | }, 34 | calendar: { 35 | sameDay: '[Aujourd’hui à] LT', 36 | nextDay: '[Demain à] LT', 37 | nextWeek: 'dddd [à] LT', 38 | lastDay: '[Hier à] LT', 39 | lastWeek: 'dddd [dernier à] LT', 40 | sameElse: 'L', 41 | }, 42 | relativeTime: { 43 | future: 'dans %s', 44 | past: 'il y a %s', 45 | s: 'quelques secondes', 46 | ss: '%d secondes', 47 | m: 'une minute', 48 | mm: '%d minutes', 49 | h: 'une heure', 50 | hh: '%d heures', 51 | d: 'un jour', 52 | dd: '%d jours', 53 | M: 'un mois', 54 | MM: '%d mois', 55 | y: 'un an', 56 | yy: '%d ans', 57 | }, 58 | dayOfMonthOrdinalParse: /\d{1,2}(er|e)/, 59 | ordinal: function (number, period) { 60 | switch (period) { 61 | // Words with masculine grammatical gender: mois, trimestre, jour 62 | default: 63 | case 'M': 64 | case 'Q': 65 | case 'D': 66 | case 'DDD': 67 | case 'd': 68 | return number + (number === 1 ? 'er' : 'e'); 69 | 70 | // Words with feminine grammatical gender: semaine 71 | case 'w': 72 | case 'W': 73 | return number + (number === 1 ? 're' : 'e'); 74 | } 75 | }, 76 | week: { 77 | dow: 1, // Monday is the first day of the week. 78 | doy: 4, // The week that contains Jan 4th is the first week of the year. 79 | }, 80 | }); 81 | 82 | return frCh; 83 | 84 | }))); 85 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/it-ch.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Italian (Switzerland) [it-ch] 3 | //! author : xfh : https://github.com/xfh 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var itCh = moment.defineLocale('it-ch', { 15 | months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split( 16 | '_' 17 | ), 18 | monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'), 19 | weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'), 23 | weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD.MM.YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Oggi alle] LT', 34 | nextDay: '[Domani alle] LT', 35 | nextWeek: 'dddd [alle] LT', 36 | lastDay: '[Ieri alle] LT', 37 | lastWeek: function () { 38 | switch (this.day()) { 39 | case 0: 40 | return '[la scorsa] dddd [alle] LT'; 41 | default: 42 | return '[lo scorso] dddd [alle] LT'; 43 | } 44 | }, 45 | sameElse: 'L', 46 | }, 47 | relativeTime: { 48 | future: function (s) { 49 | return (/^[0-9].+$/.test(s) ? 'tra' : 'in') + ' ' + s; 50 | }, 51 | past: '%s fa', 52 | s: 'alcuni secondi', 53 | ss: '%d secondi', 54 | m: 'un minuto', 55 | mm: '%d minuti', 56 | h: "un'ora", 57 | hh: '%d ore', 58 | d: 'un giorno', 59 | dd: '%d giorni', 60 | M: 'un mese', 61 | MM: '%d mesi', 62 | y: 'un anno', 63 | yy: '%d anni', 64 | }, 65 | dayOfMonthOrdinalParse: /\d{1,2}º/, 66 | ordinal: '%dº', 67 | week: { 68 | dow: 1, // Monday is the first day of the week. 69 | doy: 4, // The week that contains Jan 4th is the first week of the year. 70 | }, 71 | }); 72 | 73 | return itCh; 74 | 75 | }))); 76 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/kk.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Kazakh [kk] 3 | //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var suffixes = { 15 | 0: '-ші', 16 | 1: '-ші', 17 | 2: '-ші', 18 | 3: '-ші', 19 | 4: '-ші', 20 | 5: '-ші', 21 | 6: '-шы', 22 | 7: '-ші', 23 | 8: '-ші', 24 | 9: '-шы', 25 | 10: '-шы', 26 | 20: '-шы', 27 | 30: '-шы', 28 | 40: '-шы', 29 | 50: '-ші', 30 | 60: '-шы', 31 | 70: '-ші', 32 | 80: '-ші', 33 | 90: '-шы', 34 | 100: '-ші', 35 | }; 36 | 37 | var kk = moment.defineLocale('kk', { 38 | months: 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split( 39 | '_' 40 | ), 41 | monthsShort: 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'), 42 | weekdays: 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split( 43 | '_' 44 | ), 45 | weekdaysShort: 'жек_дүй_сей_сәр_бей_жұм_сен'.split('_'), 46 | weekdaysMin: 'жк_дй_сй_ср_бй_жм_сн'.split('_'), 47 | longDateFormat: { 48 | LT: 'HH:mm', 49 | LTS: 'HH:mm:ss', 50 | L: 'DD.MM.YYYY', 51 | LL: 'D MMMM YYYY', 52 | LLL: 'D MMMM YYYY HH:mm', 53 | LLLL: 'dddd, D MMMM YYYY HH:mm', 54 | }, 55 | calendar: { 56 | sameDay: '[Бүгін сағат] LT', 57 | nextDay: '[Ертең сағат] LT', 58 | nextWeek: 'dddd [сағат] LT', 59 | lastDay: '[Кеше сағат] LT', 60 | lastWeek: '[Өткен аптаның] dddd [сағат] LT', 61 | sameElse: 'L', 62 | }, 63 | relativeTime: { 64 | future: '%s ішінде', 65 | past: '%s бұрын', 66 | s: 'бірнеше секунд', 67 | ss: '%d секунд', 68 | m: 'бір минут', 69 | mm: '%d минут', 70 | h: 'бір сағат', 71 | hh: '%d сағат', 72 | d: 'бір күн', 73 | dd: '%d күн', 74 | M: 'бір ай', 75 | MM: '%d ай', 76 | y: 'бір жыл', 77 | yy: '%d жыл', 78 | }, 79 | dayOfMonthOrdinalParse: /\d{1,2}-(ші|шы)/, 80 | ordinal: function (number) { 81 | var a = number % 10, 82 | b = number >= 100 ? 100 : null; 83 | return number + (suffixes[number] || suffixes[a] || suffixes[b]); 84 | }, 85 | week: { 86 | dow: 1, // Monday is the first day of the week. 87 | doy: 7, // The week that contains Jan 7th is the first week of the year. 88 | }, 89 | }); 90 | 91 | return kk; 92 | 93 | }))); 94 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ko.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Korean [ko] 3 | //! author : Kyungwook, Park : https://github.com/kyungw00k 4 | //! author : Jeeeyul Lee 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var ko = moment.defineLocale('ko', { 16 | months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'), 17 | monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split( 18 | '_' 19 | ), 20 | weekdays: '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'), 21 | weekdaysShort: '일_월_화_수_목_금_토'.split('_'), 22 | weekdaysMin: '일_월_화_수_목_금_토'.split('_'), 23 | longDateFormat: { 24 | LT: 'A h:mm', 25 | LTS: 'A h:mm:ss', 26 | L: 'YYYY.MM.DD.', 27 | LL: 'YYYY년 MMMM D일', 28 | LLL: 'YYYY년 MMMM D일 A h:mm', 29 | LLLL: 'YYYY년 MMMM D일 dddd A h:mm', 30 | l: 'YYYY.MM.DD.', 31 | ll: 'YYYY년 MMMM D일', 32 | lll: 'YYYY년 MMMM D일 A h:mm', 33 | llll: 'YYYY년 MMMM D일 dddd A h:mm', 34 | }, 35 | calendar: { 36 | sameDay: '오늘 LT', 37 | nextDay: '내일 LT', 38 | nextWeek: 'dddd LT', 39 | lastDay: '어제 LT', 40 | lastWeek: '지난주 dddd LT', 41 | sameElse: 'L', 42 | }, 43 | relativeTime: { 44 | future: '%s 후', 45 | past: '%s 전', 46 | s: '몇 초', 47 | ss: '%d초', 48 | m: '1분', 49 | mm: '%d분', 50 | h: '한 시간', 51 | hh: '%d시간', 52 | d: '하루', 53 | dd: '%d일', 54 | M: '한 달', 55 | MM: '%d달', 56 | y: '일 년', 57 | yy: '%d년', 58 | }, 59 | dayOfMonthOrdinalParse: /\d{1,2}(일|월|주)/, 60 | ordinal: function (number, period) { 61 | switch (period) { 62 | case 'd': 63 | case 'D': 64 | case 'DDD': 65 | return number + '일'; 66 | case 'M': 67 | return number + '월'; 68 | case 'w': 69 | case 'W': 70 | return number + '주'; 71 | default: 72 | return number; 73 | } 74 | }, 75 | meridiemParse: /오전|오후/, 76 | isPM: function (token) { 77 | return token === '오후'; 78 | }, 79 | meridiem: function (hour, minute, isUpper) { 80 | return hour < 12 ? '오전' : '오후'; 81 | }, 82 | }); 83 | 84 | return ko; 85 | 86 | }))); 87 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ky.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Kyrgyz [ky] 3 | //! author : Chyngyz Arystan uulu : https://github.com/chyngyz 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var suffixes = { 15 | 0: '-чү', 16 | 1: '-чи', 17 | 2: '-чи', 18 | 3: '-чү', 19 | 4: '-чү', 20 | 5: '-чи', 21 | 6: '-чы', 22 | 7: '-чи', 23 | 8: '-чи', 24 | 9: '-чу', 25 | 10: '-чу', 26 | 20: '-чы', 27 | 30: '-чу', 28 | 40: '-чы', 29 | 50: '-чү', 30 | 60: '-чы', 31 | 70: '-чи', 32 | 80: '-чи', 33 | 90: '-чу', 34 | 100: '-чү', 35 | }; 36 | 37 | var ky = moment.defineLocale('ky', { 38 | months: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split( 39 | '_' 40 | ), 41 | monthsShort: 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split( 42 | '_' 43 | ), 44 | weekdays: 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split( 45 | '_' 46 | ), 47 | weekdaysShort: 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'), 48 | weekdaysMin: 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'), 49 | longDateFormat: { 50 | LT: 'HH:mm', 51 | LTS: 'HH:mm:ss', 52 | L: 'DD.MM.YYYY', 53 | LL: 'D MMMM YYYY', 54 | LLL: 'D MMMM YYYY HH:mm', 55 | LLLL: 'dddd, D MMMM YYYY HH:mm', 56 | }, 57 | calendar: { 58 | sameDay: '[Бүгүн саат] LT', 59 | nextDay: '[Эртең саат] LT', 60 | nextWeek: 'dddd [саат] LT', 61 | lastDay: '[Кечээ саат] LT', 62 | lastWeek: '[Өткөн аптанын] dddd [күнү] [саат] LT', 63 | sameElse: 'L', 64 | }, 65 | relativeTime: { 66 | future: '%s ичинде', 67 | past: '%s мурун', 68 | s: 'бирнече секунд', 69 | ss: '%d секунд', 70 | m: 'бир мүнөт', 71 | mm: '%d мүнөт', 72 | h: 'бир саат', 73 | hh: '%d саат', 74 | d: 'бир күн', 75 | dd: '%d күн', 76 | M: 'бир ай', 77 | MM: '%d ай', 78 | y: 'бир жыл', 79 | yy: '%d жыл', 80 | }, 81 | dayOfMonthOrdinalParse: /\d{1,2}-(чи|чы|чү|чу)/, 82 | ordinal: function (number) { 83 | var a = number % 10, 84 | b = number >= 100 ? 100 : null; 85 | return number + (suffixes[number] || suffixes[a] || suffixes[b]); 86 | }, 87 | week: { 88 | dow: 1, // Monday is the first day of the week. 89 | doy: 7, // The week that contains Jan 7th is the first week of the year. 90 | }, 91 | }); 92 | 93 | return ky; 94 | 95 | }))); 96 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/lo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Lao [lo] 3 | //! author : Ryan Hart : https://github.com/ryanhart2 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var lo = moment.defineLocale('lo', { 15 | months: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split( 16 | '_' 17 | ), 18 | monthsShort: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split( 19 | '_' 20 | ), 21 | weekdays: 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'), 22 | weekdaysShort: 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'), 23 | weekdaysMin: 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D MMMM YYYY', 30 | LLL: 'D MMMM YYYY HH:mm', 31 | LLLL: 'ວັນdddd D MMMM YYYY HH:mm', 32 | }, 33 | meridiemParse: /ຕອນເຊົ້າ|ຕອນແລງ/, 34 | isPM: function (input) { 35 | return input === 'ຕອນແລງ'; 36 | }, 37 | meridiem: function (hour, minute, isLower) { 38 | if (hour < 12) { 39 | return 'ຕອນເຊົ້າ'; 40 | } else { 41 | return 'ຕອນແລງ'; 42 | } 43 | }, 44 | calendar: { 45 | sameDay: '[ມື້ນີ້ເວລາ] LT', 46 | nextDay: '[ມື້ອື່ນເວລາ] LT', 47 | nextWeek: '[ວັນ]dddd[ໜ້າເວລາ] LT', 48 | lastDay: '[ມື້ວານນີ້ເວລາ] LT', 49 | lastWeek: '[ວັນ]dddd[ແລ້ວນີ້ເວລາ] LT', 50 | sameElse: 'L', 51 | }, 52 | relativeTime: { 53 | future: 'ອີກ %s', 54 | past: '%sຜ່ານມາ', 55 | s: 'ບໍ່ເທົ່າໃດວິນາທີ', 56 | ss: '%d ວິນາທີ', 57 | m: '1 ນາທີ', 58 | mm: '%d ນາທີ', 59 | h: '1 ຊົ່ວໂມງ', 60 | hh: '%d ຊົ່ວໂມງ', 61 | d: '1 ມື້', 62 | dd: '%d ມື້', 63 | M: '1 ເດືອນ', 64 | MM: '%d ເດືອນ', 65 | y: '1 ປີ', 66 | yy: '%d ປີ', 67 | }, 68 | dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/, 69 | ordinal: function (number) { 70 | return 'ທີ່' + number; 71 | }, 72 | }); 73 | 74 | return lo; 75 | 76 | }))); 77 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/mi.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Maori [mi] 3 | //! author : John Corrigan : https://github.com/johnideal 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var mi = moment.defineLocale('mi', { 15 | months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split( 19 | '_' 20 | ), 21 | monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 22 | monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 23 | monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, 24 | monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i, 25 | weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'), 26 | weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'), 27 | weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'), 28 | longDateFormat: { 29 | LT: 'HH:mm', 30 | LTS: 'HH:mm:ss', 31 | L: 'DD/MM/YYYY', 32 | LL: 'D MMMM YYYY', 33 | LLL: 'D MMMM YYYY [i] HH:mm', 34 | LLLL: 'dddd, D MMMM YYYY [i] HH:mm', 35 | }, 36 | calendar: { 37 | sameDay: '[i teie mahana, i] LT', 38 | nextDay: '[apopo i] LT', 39 | nextWeek: 'dddd [i] LT', 40 | lastDay: '[inanahi i] LT', 41 | lastWeek: 'dddd [whakamutunga i] LT', 42 | sameElse: 'L', 43 | }, 44 | relativeTime: { 45 | future: 'i roto i %s', 46 | past: '%s i mua', 47 | s: 'te hēkona ruarua', 48 | ss: '%d hēkona', 49 | m: 'he meneti', 50 | mm: '%d meneti', 51 | h: 'te haora', 52 | hh: '%d haora', 53 | d: 'he ra', 54 | dd: '%d ra', 55 | M: 'he marama', 56 | MM: '%d marama', 57 | y: 'he tau', 58 | yy: '%d tau', 59 | }, 60 | dayOfMonthOrdinalParse: /\d{1,2}º/, 61 | ordinal: '%dº', 62 | week: { 63 | dow: 1, // Monday is the first day of the week. 64 | doy: 4, // The week that contains Jan 4th is the first week of the year. 65 | }, 66 | }); 67 | 68 | return mi; 69 | 70 | }))); 71 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/mt.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Maltese (Malta) [mt] 3 | //! author : Alessandro Maruccia : https://github.com/alesma 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var mt = moment.defineLocale('mt', { 15 | months: 'Jannar_Frar_Marzu_April_Mejju_Ġunju_Lulju_Awwissu_Settembru_Ottubru_Novembru_Diċembru'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'), 19 | weekdays: 'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'), 23 | weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd, D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Illum fil-]LT', 34 | nextDay: '[Għada fil-]LT', 35 | nextWeek: 'dddd [fil-]LT', 36 | lastDay: '[Il-bieraħ fil-]LT', 37 | lastWeek: 'dddd [li għadda] [fil-]LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'f’ %s', 42 | past: '%s ilu', 43 | s: 'ftit sekondi', 44 | ss: '%d sekondi', 45 | m: 'minuta', 46 | mm: '%d minuti', 47 | h: 'siegħa', 48 | hh: '%d siegħat', 49 | d: 'ġurnata', 50 | dd: '%d ġranet', 51 | M: 'xahar', 52 | MM: '%d xhur', 53 | y: 'sena', 54 | yy: '%d sni', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}º/, 57 | ordinal: '%dº', 58 | week: { 59 | dow: 1, // Monday is the first day of the week. 60 | doy: 4, // The week that contains Jan 4th is the first week of the year. 61 | }, 62 | }); 63 | 64 | return mt; 65 | 66 | }))); 67 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/nb.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Norwegian Bokmål [nb] 3 | //! authors : Espen Hovlandsdal : https://github.com/rexxars 4 | //! Sigurd Gartmann : https://github.com/sigurdga 5 | //! Stephen Ramthun : https://github.com/stephenramthun 6 | 7 | ;(function (global, factory) { 8 | typeof exports === 'object' && typeof module !== 'undefined' 9 | && typeof require === 'function' ? factory(require('../moment')) : 10 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 11 | factory(global.moment) 12 | }(this, (function (moment) { 'use strict'; 13 | 14 | //! moment.js locale configuration 15 | 16 | var nb = moment.defineLocale('nb', { 17 | months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split( 18 | '_' 19 | ), 20 | monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split( 21 | '_' 22 | ), 23 | monthsParseExact: true, 24 | weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), 25 | weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'), 26 | weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'), 27 | weekdaysParseExact: true, 28 | longDateFormat: { 29 | LT: 'HH:mm', 30 | LTS: 'HH:mm:ss', 31 | L: 'DD.MM.YYYY', 32 | LL: 'D. MMMM YYYY', 33 | LLL: 'D. MMMM YYYY [kl.] HH:mm', 34 | LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm', 35 | }, 36 | calendar: { 37 | sameDay: '[i dag kl.] LT', 38 | nextDay: '[i morgen kl.] LT', 39 | nextWeek: 'dddd [kl.] LT', 40 | lastDay: '[i går kl.] LT', 41 | lastWeek: '[forrige] dddd [kl.] LT', 42 | sameElse: 'L', 43 | }, 44 | relativeTime: { 45 | future: 'om %s', 46 | past: '%s siden', 47 | s: 'noen sekunder', 48 | ss: '%d sekunder', 49 | m: 'ett minutt', 50 | mm: '%d minutter', 51 | h: 'en time', 52 | hh: '%d timer', 53 | d: 'en dag', 54 | dd: '%d dager', 55 | w: 'en uke', 56 | ww: '%d uker', 57 | M: 'en måned', 58 | MM: '%d måneder', 59 | y: 'ett år', 60 | yy: '%d år', 61 | }, 62 | dayOfMonthOrdinalParse: /\d{1,2}\./, 63 | ordinal: '%d.', 64 | week: { 65 | dow: 1, // Monday is the first day of the week. 66 | doy: 4, // The week that contains Jan 4th is the first week of the year. 67 | }, 68 | }); 69 | 70 | return nb; 71 | 72 | }))); 73 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/nn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Nynorsk [nn] 3 | //! authors : https://github.com/mechuwind 4 | //! Stephen Ramthun : https://github.com/stephenramthun 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var nn = moment.defineLocale('nn', { 16 | months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split( 17 | '_' 18 | ), 19 | monthsShort: 'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split( 20 | '_' 21 | ), 22 | monthsParseExact: true, 23 | weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'), 24 | weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'), 25 | weekdaysMin: 'su_må_ty_on_to_fr_la'.split('_'), 26 | weekdaysParseExact: true, 27 | longDateFormat: { 28 | LT: 'HH:mm', 29 | LTS: 'HH:mm:ss', 30 | L: 'DD.MM.YYYY', 31 | LL: 'D. MMMM YYYY', 32 | LLL: 'D. MMMM YYYY [kl.] H:mm', 33 | LLLL: 'dddd D. MMMM YYYY [kl.] HH:mm', 34 | }, 35 | calendar: { 36 | sameDay: '[I dag klokka] LT', 37 | nextDay: '[I morgon klokka] LT', 38 | nextWeek: 'dddd [klokka] LT', 39 | lastDay: '[I går klokka] LT', 40 | lastWeek: '[Føregåande] dddd [klokka] LT', 41 | sameElse: 'L', 42 | }, 43 | relativeTime: { 44 | future: 'om %s', 45 | past: '%s sidan', 46 | s: 'nokre sekund', 47 | ss: '%d sekund', 48 | m: 'eit minutt', 49 | mm: '%d minutt', 50 | h: 'ein time', 51 | hh: '%d timar', 52 | d: 'ein dag', 53 | dd: '%d dagar', 54 | w: 'ei veke', 55 | ww: '%d veker', 56 | M: 'ein månad', 57 | MM: '%d månader', 58 | y: 'eit år', 59 | yy: '%d år', 60 | }, 61 | dayOfMonthOrdinalParse: /\d{1,2}\./, 62 | ordinal: '%d.', 63 | week: { 64 | dow: 1, // Monday is the first day of the week. 65 | doy: 4, // The week that contains Jan 4th is the first week of the year. 66 | }, 67 | }); 68 | 69 | return nn; 70 | 71 | }))); 72 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/pt-br.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Portuguese (Brazil) [pt-br] 3 | //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var ptBr = moment.defineLocale('pt-br', { 15 | months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split( 16 | '_' 17 | ), 18 | monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), 19 | weekdays: 'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'), 23 | weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D [de] MMMM [de] YYYY', 30 | LLL: 'D [de] MMMM [de] YYYY [às] HH:mm', 31 | LLLL: 'dddd, D [de] MMMM [de] YYYY [às] HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[Hoje às] LT', 35 | nextDay: '[Amanhã às] LT', 36 | nextWeek: 'dddd [às] LT', 37 | lastDay: '[Ontem às] LT', 38 | lastWeek: function () { 39 | return this.day() === 0 || this.day() === 6 40 | ? '[Último] dddd [às] LT' // Saturday + Sunday 41 | : '[Última] dddd [às] LT'; // Monday - Friday 42 | }, 43 | sameElse: 'L', 44 | }, 45 | relativeTime: { 46 | future: 'em %s', 47 | past: 'há %s', 48 | s: 'poucos segundos', 49 | ss: '%d segundos', 50 | m: 'um minuto', 51 | mm: '%d minutos', 52 | h: 'uma hora', 53 | hh: '%d horas', 54 | d: 'um dia', 55 | dd: '%d dias', 56 | M: 'um mês', 57 | MM: '%d meses', 58 | y: 'um ano', 59 | yy: '%d anos', 60 | }, 61 | dayOfMonthOrdinalParse: /\d{1,2}º/, 62 | ordinal: '%dº', 63 | invalidDate: 'Data inválida', 64 | }); 65 | 66 | return ptBr; 67 | 68 | }))); 69 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/pt.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Portuguese [pt] 3 | //! author : Jefferson : https://github.com/jalex79 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var pt = moment.defineLocale('pt', { 15 | months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split( 16 | '_' 17 | ), 18 | monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'), 19 | weekdays: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'), 23 | weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'HH:mm', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD/MM/YYYY', 29 | LL: 'D [de] MMMM [de] YYYY', 30 | LLL: 'D [de] MMMM [de] YYYY HH:mm', 31 | LLLL: 'dddd, D [de] MMMM [de] YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[Hoje às] LT', 35 | nextDay: '[Amanhã às] LT', 36 | nextWeek: 'dddd [às] LT', 37 | lastDay: '[Ontem às] LT', 38 | lastWeek: function () { 39 | return this.day() === 0 || this.day() === 6 40 | ? '[Último] dddd [às] LT' // Saturday + Sunday 41 | : '[Última] dddd [às] LT'; // Monday - Friday 42 | }, 43 | sameElse: 'L', 44 | }, 45 | relativeTime: { 46 | future: 'em %s', 47 | past: 'há %s', 48 | s: 'segundos', 49 | ss: '%d segundos', 50 | m: 'um minuto', 51 | mm: '%d minutos', 52 | h: 'uma hora', 53 | hh: '%d horas', 54 | d: 'um dia', 55 | dd: '%d dias', 56 | w: 'uma semana', 57 | ww: '%d semanas', 58 | M: 'um mês', 59 | MM: '%d meses', 60 | y: 'um ano', 61 | yy: '%d anos', 62 | }, 63 | dayOfMonthOrdinalParse: /\d{1,2}º/, 64 | ordinal: '%dº', 65 | week: { 66 | dow: 1, // Monday is the first day of the week. 67 | doy: 4, // The week that contains Jan 4th is the first week of the year. 68 | }, 69 | }); 70 | 71 | return pt; 72 | 73 | }))); 74 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/sd.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Sindhi [sd] 3 | //! author : Narain Sagar : https://github.com/narainsagar 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var months = [ 15 | 'جنوري', 16 | 'فيبروري', 17 | 'مارچ', 18 | 'اپريل', 19 | 'مئي', 20 | 'جون', 21 | 'جولاءِ', 22 | 'آگسٽ', 23 | 'سيپٽمبر', 24 | 'آڪٽوبر', 25 | 'نومبر', 26 | 'ڊسمبر', 27 | ], 28 | days = ['آچر', 'سومر', 'اڱارو', 'اربع', 'خميس', 'جمع', 'ڇنڇر']; 29 | 30 | var sd = moment.defineLocale('sd', { 31 | months: months, 32 | monthsShort: months, 33 | weekdays: days, 34 | weekdaysShort: days, 35 | weekdaysMin: days, 36 | longDateFormat: { 37 | LT: 'HH:mm', 38 | LTS: 'HH:mm:ss', 39 | L: 'DD/MM/YYYY', 40 | LL: 'D MMMM YYYY', 41 | LLL: 'D MMMM YYYY HH:mm', 42 | LLLL: 'dddd، D MMMM YYYY HH:mm', 43 | }, 44 | meridiemParse: /صبح|شام/, 45 | isPM: function (input) { 46 | return 'شام' === input; 47 | }, 48 | meridiem: function (hour, minute, isLower) { 49 | if (hour < 12) { 50 | return 'صبح'; 51 | } 52 | return 'شام'; 53 | }, 54 | calendar: { 55 | sameDay: '[اڄ] LT', 56 | nextDay: '[سڀاڻي] LT', 57 | nextWeek: 'dddd [اڳين هفتي تي] LT', 58 | lastDay: '[ڪالهه] LT', 59 | lastWeek: '[گزريل هفتي] dddd [تي] LT', 60 | sameElse: 'L', 61 | }, 62 | relativeTime: { 63 | future: '%s پوء', 64 | past: '%s اڳ', 65 | s: 'چند سيڪنڊ', 66 | ss: '%d سيڪنڊ', 67 | m: 'هڪ منٽ', 68 | mm: '%d منٽ', 69 | h: 'هڪ ڪلاڪ', 70 | hh: '%d ڪلاڪ', 71 | d: 'هڪ ڏينهن', 72 | dd: '%d ڏينهن', 73 | M: 'هڪ مهينو', 74 | MM: '%d مهينا', 75 | y: 'هڪ سال', 76 | yy: '%d سال', 77 | }, 78 | preparse: function (string) { 79 | return string.replace(/،/g, ','); 80 | }, 81 | postformat: function (string) { 82 | return string.replace(/,/g, '،'); 83 | }, 84 | week: { 85 | dow: 1, // Monday is the first day of the week. 86 | doy: 4, // The week that contains Jan 4th is the first week of the year. 87 | }, 88 | }); 89 | 90 | return sd; 91 | 92 | }))); 93 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/se.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Northern Sami [se] 3 | //! authors : Bård Rolstad Henriksen : https://github.com/karamell 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var se = moment.defineLocale('se', { 15 | months: 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split( 16 | '_' 17 | ), 18 | monthsShort: 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split( 19 | '_' 20 | ), 21 | weekdays: 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split( 22 | '_' 23 | ), 24 | weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'), 25 | weekdaysMin: 's_v_m_g_d_b_L'.split('_'), 26 | longDateFormat: { 27 | LT: 'HH:mm', 28 | LTS: 'HH:mm:ss', 29 | L: 'DD.MM.YYYY', 30 | LL: 'MMMM D. [b.] YYYY', 31 | LLL: 'MMMM D. [b.] YYYY [ti.] HH:mm', 32 | LLLL: 'dddd, MMMM D. [b.] YYYY [ti.] HH:mm', 33 | }, 34 | calendar: { 35 | sameDay: '[otne ti] LT', 36 | nextDay: '[ihttin ti] LT', 37 | nextWeek: 'dddd [ti] LT', 38 | lastDay: '[ikte ti] LT', 39 | lastWeek: '[ovddit] dddd [ti] LT', 40 | sameElse: 'L', 41 | }, 42 | relativeTime: { 43 | future: '%s geažes', 44 | past: 'maŋit %s', 45 | s: 'moadde sekunddat', 46 | ss: '%d sekunddat', 47 | m: 'okta minuhta', 48 | mm: '%d minuhtat', 49 | h: 'okta diimmu', 50 | hh: '%d diimmut', 51 | d: 'okta beaivi', 52 | dd: '%d beaivvit', 53 | M: 'okta mánnu', 54 | MM: '%d mánut', 55 | y: 'okta jahki', 56 | yy: '%d jagit', 57 | }, 58 | dayOfMonthOrdinalParse: /\d{1,2}\./, 59 | ordinal: '%d.', 60 | week: { 61 | dow: 1, // Monday is the first day of the week. 62 | doy: 4, // The week that contains Jan 4th is the first week of the year. 63 | }, 64 | }); 65 | 66 | return se; 67 | 68 | }))); 69 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/si.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Sinhalese [si] 3 | //! author : Sampath Sitinamaluwa : https://github.com/sampathsris 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | /*jshint -W100*/ 15 | var si = moment.defineLocale('si', { 16 | months: 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්‍රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split( 17 | '_' 18 | ), 19 | monthsShort: 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split( 20 | '_' 21 | ), 22 | weekdays: 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්‍රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split( 23 | '_' 24 | ), 25 | weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්‍රහ_සිකු_සෙන'.split('_'), 26 | weekdaysMin: 'ඉ_ස_අ_බ_බ්‍ර_සි_සෙ'.split('_'), 27 | weekdaysParseExact: true, 28 | longDateFormat: { 29 | LT: 'a h:mm', 30 | LTS: 'a h:mm:ss', 31 | L: 'YYYY/MM/DD', 32 | LL: 'YYYY MMMM D', 33 | LLL: 'YYYY MMMM D, a h:mm', 34 | LLLL: 'YYYY MMMM D [වැනි] dddd, a h:mm:ss', 35 | }, 36 | calendar: { 37 | sameDay: '[අද] LT[ට]', 38 | nextDay: '[හෙට] LT[ට]', 39 | nextWeek: 'dddd LT[ට]', 40 | lastDay: '[ඊයේ] LT[ට]', 41 | lastWeek: '[පසුගිය] dddd LT[ට]', 42 | sameElse: 'L', 43 | }, 44 | relativeTime: { 45 | future: '%sකින්', 46 | past: '%sකට පෙර', 47 | s: 'තත්පර කිහිපය', 48 | ss: 'තත්පර %d', 49 | m: 'මිනිත්තුව', 50 | mm: 'මිනිත්තු %d', 51 | h: 'පැය', 52 | hh: 'පැය %d', 53 | d: 'දිනය', 54 | dd: 'දින %d', 55 | M: 'මාසය', 56 | MM: 'මාස %d', 57 | y: 'වසර', 58 | yy: 'වසර %d', 59 | }, 60 | dayOfMonthOrdinalParse: /\d{1,2} වැනි/, 61 | ordinal: function (number) { 62 | return number + ' වැනි'; 63 | }, 64 | meridiemParse: /පෙර වරු|පස් වරු|පෙ.ව|ප.ව./, 65 | isPM: function (input) { 66 | return input === 'ප.ව.' || input === 'පස් වරු'; 67 | }, 68 | meridiem: function (hours, minutes, isLower) { 69 | if (hours > 11) { 70 | return isLower ? 'ප.ව.' : 'පස් වරු'; 71 | } else { 72 | return isLower ? 'පෙ.ව.' : 'පෙර වරු'; 73 | } 74 | }, 75 | }); 76 | 77 | return si; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/sq.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Albanian [sq] 3 | //! author : Flakërim Ismani : https://github.com/flakerimi 4 | //! author : Menelion Elensúle : https://github.com/Oire 5 | //! author : Oerd Cukalla : https://github.com/oerd 6 | 7 | ;(function (global, factory) { 8 | typeof exports === 'object' && typeof module !== 'undefined' 9 | && typeof require === 'function' ? factory(require('../moment')) : 10 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 11 | factory(global.moment) 12 | }(this, (function (moment) { 'use strict'; 13 | 14 | //! moment.js locale configuration 15 | 16 | var sq = moment.defineLocale('sq', { 17 | months: 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split( 18 | '_' 19 | ), 20 | monthsShort: 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'), 21 | weekdays: 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split( 22 | '_' 23 | ), 24 | weekdaysShort: 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'), 25 | weekdaysMin: 'D_H_Ma_Më_E_P_Sh'.split('_'), 26 | weekdaysParseExact: true, 27 | meridiemParse: /PD|MD/, 28 | isPM: function (input) { 29 | return input.charAt(0) === 'M'; 30 | }, 31 | meridiem: function (hours, minutes, isLower) { 32 | return hours < 12 ? 'PD' : 'MD'; 33 | }, 34 | longDateFormat: { 35 | LT: 'HH:mm', 36 | LTS: 'HH:mm:ss', 37 | L: 'DD/MM/YYYY', 38 | LL: 'D MMMM YYYY', 39 | LLL: 'D MMMM YYYY HH:mm', 40 | LLLL: 'dddd, D MMMM YYYY HH:mm', 41 | }, 42 | calendar: { 43 | sameDay: '[Sot në] LT', 44 | nextDay: '[Nesër në] LT', 45 | nextWeek: 'dddd [në] LT', 46 | lastDay: '[Dje në] LT', 47 | lastWeek: 'dddd [e kaluar në] LT', 48 | sameElse: 'L', 49 | }, 50 | relativeTime: { 51 | future: 'në %s', 52 | past: '%s më parë', 53 | s: 'disa sekonda', 54 | ss: '%d sekonda', 55 | m: 'një minutë', 56 | mm: '%d minuta', 57 | h: 'një orë', 58 | hh: '%d orë', 59 | d: 'një ditë', 60 | dd: '%d ditë', 61 | M: 'një muaj', 62 | MM: '%d muaj', 63 | y: 'një vit', 64 | yy: '%d vite', 65 | }, 66 | dayOfMonthOrdinalParse: /\d{1,2}\./, 67 | ordinal: '%d.', 68 | week: { 69 | dow: 1, // Monday is the first day of the week. 70 | doy: 4, // The week that contains Jan 4th is the first week of the year. 71 | }, 72 | }); 73 | 74 | return sq; 75 | 76 | }))); 77 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/sv.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Swedish [sv] 3 | //! author : Jens Alm : https://github.com/ulmus 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var sv = moment.defineLocale('sv', { 15 | months: 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split( 16 | '_' 17 | ), 18 | monthsShort: 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'), 19 | weekdays: 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'), 20 | weekdaysShort: 'sön_mån_tis_ons_tor_fre_lör'.split('_'), 21 | weekdaysMin: 'sö_må_ti_on_to_fr_lö'.split('_'), 22 | longDateFormat: { 23 | LT: 'HH:mm', 24 | LTS: 'HH:mm:ss', 25 | L: 'YYYY-MM-DD', 26 | LL: 'D MMMM YYYY', 27 | LLL: 'D MMMM YYYY [kl.] HH:mm', 28 | LLLL: 'dddd D MMMM YYYY [kl.] HH:mm', 29 | lll: 'D MMM YYYY HH:mm', 30 | llll: 'ddd D MMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Idag] LT', 34 | nextDay: '[Imorgon] LT', 35 | lastDay: '[Igår] LT', 36 | nextWeek: '[På] dddd LT', 37 | lastWeek: '[I] dddd[s] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'om %s', 42 | past: 'för %s sedan', 43 | s: 'några sekunder', 44 | ss: '%d sekunder', 45 | m: 'en minut', 46 | mm: '%d minuter', 47 | h: 'en timme', 48 | hh: '%d timmar', 49 | d: 'en dag', 50 | dd: '%d dagar', 51 | M: 'en månad', 52 | MM: '%d månader', 53 | y: 'ett år', 54 | yy: '%d år', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(\:e|\:a)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? ':e' 62 | : b === 1 63 | ? ':a' 64 | : b === 2 65 | ? ':a' 66 | : b === 3 67 | ? ':e' 68 | : ':e'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return sv; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/sw.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Swahili [sw] 3 | //! author : Fahad Kassim : https://github.com/fadsel 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var sw = moment.defineLocale('sw', { 15 | months: 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'), 19 | weekdays: 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'), 23 | weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'), 24 | weekdaysParseExact: true, 25 | longDateFormat: { 26 | LT: 'hh:mm A', 27 | LTS: 'HH:mm:ss', 28 | L: 'DD.MM.YYYY', 29 | LL: 'D MMMM YYYY', 30 | LLL: 'D MMMM YYYY HH:mm', 31 | LLLL: 'dddd, D MMMM YYYY HH:mm', 32 | }, 33 | calendar: { 34 | sameDay: '[leo saa] LT', 35 | nextDay: '[kesho saa] LT', 36 | nextWeek: '[wiki ijayo] dddd [saat] LT', 37 | lastDay: '[jana] LT', 38 | lastWeek: '[wiki iliyopita] dddd [saat] LT', 39 | sameElse: 'L', 40 | }, 41 | relativeTime: { 42 | future: '%s baadaye', 43 | past: 'tokea %s', 44 | s: 'hivi punde', 45 | ss: 'sekunde %d', 46 | m: 'dakika moja', 47 | mm: 'dakika %d', 48 | h: 'saa limoja', 49 | hh: 'masaa %d', 50 | d: 'siku moja', 51 | dd: 'siku %d', 52 | M: 'mwezi mmoja', 53 | MM: 'miezi %d', 54 | y: 'mwaka mmoja', 55 | yy: 'miaka %d', 56 | }, 57 | week: { 58 | dow: 1, // Monday is the first day of the week. 59 | doy: 7, // The week that contains Jan 7th is the first week of the year. 60 | }, 61 | }); 62 | 63 | return sw; 64 | 65 | }))); 66 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/tet.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Tetun Dili (East Timor) [tet] 3 | //! author : Joshua Brooks : https://github.com/joshbrooks 4 | //! author : Onorio De J. Afonso : https://github.com/marobo 5 | //! author : Sonia Simoes : https://github.com/soniasimoes 6 | 7 | ;(function (global, factory) { 8 | typeof exports === 'object' && typeof module !== 'undefined' 9 | && typeof require === 'function' ? factory(require('../moment')) : 10 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 11 | factory(global.moment) 12 | }(this, (function (moment) { 'use strict'; 13 | 14 | //! moment.js locale configuration 15 | 16 | var tet = moment.defineLocale('tet', { 17 | months: 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juñu_Jullu_Agustu_Setembru_Outubru_Novembru_Dezembru'.split( 18 | '_' 19 | ), 20 | monthsShort: 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'), 21 | weekdays: 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sesta_Sabadu'.split('_'), 22 | weekdaysShort: 'Dom_Seg_Ters_Kua_Kint_Sest_Sab'.split('_'), 23 | weekdaysMin: 'Do_Seg_Te_Ku_Ki_Ses_Sa'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd, D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Ohin iha] LT', 34 | nextDay: '[Aban iha] LT', 35 | nextWeek: 'dddd [iha] LT', 36 | lastDay: '[Horiseik iha] LT', 37 | lastWeek: 'dddd [semana kotuk] [iha] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'iha %s', 42 | past: '%s liuba', 43 | s: 'segundu balun', 44 | ss: 'segundu %d', 45 | m: 'minutu ida', 46 | mm: 'minutu %d', 47 | h: 'oras ida', 48 | hh: 'oras %d', 49 | d: 'loron ida', 50 | dd: 'loron %d', 51 | M: 'fulan ida', 52 | MM: 'fulan %d', 53 | y: 'tinan ida', 54 | yy: 'tinan %d', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/, 57 | ordinal: function (number) { 58 | var b = number % 10, 59 | output = 60 | ~~((number % 100) / 10) === 1 61 | ? 'th' 62 | : b === 1 63 | ? 'st' 64 | : b === 2 65 | ? 'nd' 66 | : b === 3 67 | ? 'rd' 68 | : 'th'; 69 | return number + output; 70 | }, 71 | week: { 72 | dow: 1, // Monday is the first day of the week. 73 | doy: 4, // The week that contains Jan 4th is the first week of the year. 74 | }, 75 | }); 76 | 77 | return tet; 78 | 79 | }))); 80 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/th.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Thai [th] 3 | //! author : Kridsada Thanabulpong : https://github.com/sirn 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var th = moment.defineLocale('th', { 15 | months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split( 16 | '_' 17 | ), 18 | monthsShort: 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split( 19 | '_' 20 | ), 21 | monthsParseExact: true, 22 | weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'), 23 | weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference 24 | weekdaysMin: 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'), 25 | weekdaysParseExact: true, 26 | longDateFormat: { 27 | LT: 'H:mm', 28 | LTS: 'H:mm:ss', 29 | L: 'DD/MM/YYYY', 30 | LL: 'D MMMM YYYY', 31 | LLL: 'D MMMM YYYY เวลา H:mm', 32 | LLLL: 'วันddddที่ D MMMM YYYY เวลา H:mm', 33 | }, 34 | meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/, 35 | isPM: function (input) { 36 | return input === 'หลังเที่ยง'; 37 | }, 38 | meridiem: function (hour, minute, isLower) { 39 | if (hour < 12) { 40 | return 'ก่อนเที่ยง'; 41 | } else { 42 | return 'หลังเที่ยง'; 43 | } 44 | }, 45 | calendar: { 46 | sameDay: '[วันนี้ เวลา] LT', 47 | nextDay: '[พรุ่งนี้ เวลา] LT', 48 | nextWeek: 'dddd[หน้า เวลา] LT', 49 | lastDay: '[เมื่อวานนี้ เวลา] LT', 50 | lastWeek: '[วัน]dddd[ที่แล้ว เวลา] LT', 51 | sameElse: 'L', 52 | }, 53 | relativeTime: { 54 | future: 'อีก %s', 55 | past: '%sที่แล้ว', 56 | s: 'ไม่กี่วินาที', 57 | ss: '%d วินาที', 58 | m: '1 นาที', 59 | mm: '%d นาที', 60 | h: '1 ชั่วโมง', 61 | hh: '%d ชั่วโมง', 62 | d: '1 วัน', 63 | dd: '%d วัน', 64 | w: '1 สัปดาห์', 65 | ww: '%d สัปดาห์', 66 | M: '1 เดือน', 67 | MM: '%d เดือน', 68 | y: '1 ปี', 69 | yy: '%d ปี', 70 | }, 71 | }); 72 | 73 | return th; 74 | 75 | }))); 76 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Tagalog (Philippines) [tl-ph] 3 | //! author : Dan Hagman : https://github.com/hagmandan 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var tlPh = moment.defineLocale('tl-ph', { 15 | months: 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'), 19 | weekdays: 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'), 23 | weekdaysMin: 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'MM/D/YYYY', 28 | LL: 'MMMM D, YYYY', 29 | LLL: 'MMMM D, YYYY HH:mm', 30 | LLLL: 'dddd, MMMM DD, YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: 'LT [ngayong araw]', 34 | nextDay: '[Bukas ng] LT', 35 | nextWeek: 'LT [sa susunod na] dddd', 36 | lastDay: 'LT [kahapon]', 37 | lastWeek: 'LT [noong nakaraang] dddd', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'sa loob ng %s', 42 | past: '%s ang nakalipas', 43 | s: 'ilang segundo', 44 | ss: '%d segundo', 45 | m: 'isang minuto', 46 | mm: '%d minuto', 47 | h: 'isang oras', 48 | hh: '%d oras', 49 | d: 'isang araw', 50 | dd: '%d araw', 51 | M: 'isang buwan', 52 | MM: '%d buwan', 53 | y: 'isang taon', 54 | yy: '%d taon', 55 | }, 56 | dayOfMonthOrdinalParse: /\d{1,2}/, 57 | ordinal: function (number) { 58 | return number; 59 | }, 60 | week: { 61 | dow: 1, // Monday is the first day of the week. 62 | doy: 4, // The week that contains Jan 4th is the first week of the year. 63 | }, 64 | }); 65 | 66 | return tlPh; 67 | 68 | }))); 69 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Central Atlas Tamazight Latin [tzm-latn] 3 | //! author : Abdel Said : https://github.com/abdelsaid 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var tzmLatn = moment.defineLocale('tzm-latn', { 15 | months: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split( 16 | '_' 17 | ), 18 | monthsShort: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split( 19 | '_' 20 | ), 21 | weekdays: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 22 | weekdaysShort: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 23 | weekdaysMin: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[asdkh g] LT', 34 | nextDay: '[aska g] LT', 35 | nextWeek: 'dddd [g] LT', 36 | lastDay: '[assant g] LT', 37 | lastWeek: 'dddd [g] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'dadkh s yan %s', 42 | past: 'yan %s', 43 | s: 'imik', 44 | ss: '%d imik', 45 | m: 'minuḍ', 46 | mm: '%d minuḍ', 47 | h: 'saɛa', 48 | hh: '%d tassaɛin', 49 | d: 'ass', 50 | dd: '%d ossan', 51 | M: 'ayowr', 52 | MM: '%d iyyirn', 53 | y: 'asgas', 54 | yy: '%d isgasn', 55 | }, 56 | week: { 57 | dow: 6, // Saturday is the first day of the week. 58 | doy: 12, // The week that contains Jan 12th is the first week of the year. 59 | }, 60 | }); 61 | 62 | return tzmLatn; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/tzm.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Central Atlas Tamazight [tzm] 3 | //! author : Abdel Said : https://github.com/abdelsaid 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var tzm = moment.defineLocale('tzm', { 15 | months: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split( 16 | '_' 17 | ), 18 | monthsShort: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split( 19 | '_' 20 | ), 21 | weekdays: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 22 | weekdaysShort: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 23 | weekdaysMin: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'dddd D MMMM YYYY HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[ⴰⵙⴷⵅ ⴴ] LT', 34 | nextDay: '[ⴰⵙⴽⴰ ⴴ] LT', 35 | nextWeek: 'dddd [ⴴ] LT', 36 | lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT', 37 | lastWeek: 'dddd [ⴴ] LT', 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s', 42 | past: 'ⵢⴰⵏ %s', 43 | s: 'ⵉⵎⵉⴽ', 44 | ss: '%d ⵉⵎⵉⴽ', 45 | m: 'ⵎⵉⵏⵓⴺ', 46 | mm: '%d ⵎⵉⵏⵓⴺ', 47 | h: 'ⵙⴰⵄⴰ', 48 | hh: '%d ⵜⴰⵙⵙⴰⵄⵉⵏ', 49 | d: 'ⴰⵙⵙ', 50 | dd: '%d oⵙⵙⴰⵏ', 51 | M: 'ⴰⵢoⵓⵔ', 52 | MM: '%d ⵉⵢⵢⵉⵔⵏ', 53 | y: 'ⴰⵙⴳⴰⵙ', 54 | yy: '%d ⵉⵙⴳⴰⵙⵏ', 55 | }, 56 | week: { 57 | dow: 6, // Saturday is the first day of the week. 58 | doy: 12, // The week that contains Jan 12th is the first week of the year. 59 | }, 60 | }); 61 | 62 | return tzm; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/ur.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Urdu [ur] 3 | //! author : Sawood Alam : https://github.com/ibnesayeed 4 | //! author : Zack : https://github.com/ZackVision 5 | 6 | ;(function (global, factory) { 7 | typeof exports === 'object' && typeof module !== 'undefined' 8 | && typeof require === 'function' ? factory(require('../moment')) : 9 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 10 | factory(global.moment) 11 | }(this, (function (moment) { 'use strict'; 12 | 13 | //! moment.js locale configuration 14 | 15 | var months = [ 16 | 'جنوری', 17 | 'فروری', 18 | 'مارچ', 19 | 'اپریل', 20 | 'مئی', 21 | 'جون', 22 | 'جولائی', 23 | 'اگست', 24 | 'ستمبر', 25 | 'اکتوبر', 26 | 'نومبر', 27 | 'دسمبر', 28 | ], 29 | days = ['اتوار', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ']; 30 | 31 | var ur = moment.defineLocale('ur', { 32 | months: months, 33 | monthsShort: months, 34 | weekdays: days, 35 | weekdaysShort: days, 36 | weekdaysMin: days, 37 | longDateFormat: { 38 | LT: 'HH:mm', 39 | LTS: 'HH:mm:ss', 40 | L: 'DD/MM/YYYY', 41 | LL: 'D MMMM YYYY', 42 | LLL: 'D MMMM YYYY HH:mm', 43 | LLLL: 'dddd، D MMMM YYYY HH:mm', 44 | }, 45 | meridiemParse: /صبح|شام/, 46 | isPM: function (input) { 47 | return 'شام' === input; 48 | }, 49 | meridiem: function (hour, minute, isLower) { 50 | if (hour < 12) { 51 | return 'صبح'; 52 | } 53 | return 'شام'; 54 | }, 55 | calendar: { 56 | sameDay: '[آج بوقت] LT', 57 | nextDay: '[کل بوقت] LT', 58 | nextWeek: 'dddd [بوقت] LT', 59 | lastDay: '[گذشتہ روز بوقت] LT', 60 | lastWeek: '[گذشتہ] dddd [بوقت] LT', 61 | sameElse: 'L', 62 | }, 63 | relativeTime: { 64 | future: '%s بعد', 65 | past: '%s قبل', 66 | s: 'چند سیکنڈ', 67 | ss: '%d سیکنڈ', 68 | m: 'ایک منٹ', 69 | mm: '%d منٹ', 70 | h: 'ایک گھنٹہ', 71 | hh: '%d گھنٹے', 72 | d: 'ایک دن', 73 | dd: '%d دن', 74 | M: 'ایک ماہ', 75 | MM: '%d ماہ', 76 | y: 'ایک سال', 77 | yy: '%d سال', 78 | }, 79 | preparse: function (string) { 80 | return string.replace(/،/g, ','); 81 | }, 82 | postformat: function (string) { 83 | return string.replace(/,/g, '،'); 84 | }, 85 | week: { 86 | dow: 1, // Monday is the first day of the week. 87 | doy: 4, // The week that contains Jan 4th is the first week of the year. 88 | }, 89 | }); 90 | 91 | return ur; 92 | 93 | }))); 94 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek Latin [uz-latn] 3 | //! author : Rasulbek Mirzayev : github.com/Rasulbeeek 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var uzLatn = moment.defineLocale('uz-latn', { 15 | months: 'Yanvar_Fevral_Mart_Aprel_May_Iyun_Iyul_Avgust_Sentabr_Oktabr_Noyabr_Dekabr'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'), 19 | weekdays: 'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split( 20 | '_' 21 | ), 22 | weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'), 23 | weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'), 24 | longDateFormat: { 25 | LT: 'HH:mm', 26 | LTS: 'HH:mm:ss', 27 | L: 'DD/MM/YYYY', 28 | LL: 'D MMMM YYYY', 29 | LLL: 'D MMMM YYYY HH:mm', 30 | LLLL: 'D MMMM YYYY, dddd HH:mm', 31 | }, 32 | calendar: { 33 | sameDay: '[Bugun soat] LT [da]', 34 | nextDay: '[Ertaga] LT [da]', 35 | nextWeek: 'dddd [kuni soat] LT [da]', 36 | lastDay: '[Kecha soat] LT [da]', 37 | lastWeek: "[O'tgan] dddd [kuni soat] LT [da]", 38 | sameElse: 'L', 39 | }, 40 | relativeTime: { 41 | future: 'Yaqin %s ichida', 42 | past: 'Bir necha %s oldin', 43 | s: 'soniya', 44 | ss: '%d soniya', 45 | m: 'bir daqiqa', 46 | mm: '%d daqiqa', 47 | h: 'bir soat', 48 | hh: '%d soat', 49 | d: 'bir kun', 50 | dd: '%d kun', 51 | M: 'bir oy', 52 | MM: '%d oy', 53 | y: 'bir yil', 54 | yy: '%d yil', 55 | }, 56 | week: { 57 | dow: 1, // Monday is the first day of the week. 58 | doy: 7, // The week that contains Jan 7th is the first week of the year. 59 | }, 60 | }); 61 | 62 | return uzLatn; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/uz.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Uzbek [uz] 3 | //! author : Sardor Muminov : https://github.com/muminoff 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var uz = moment.defineLocale('uz', { 15 | months: 'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split( 16 | '_' 17 | ), 18 | monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'), 19 | weekdays: 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'), 20 | weekdaysShort: 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'), 21 | weekdaysMin: 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'), 22 | longDateFormat: { 23 | LT: 'HH:mm', 24 | LTS: 'HH:mm:ss', 25 | L: 'DD/MM/YYYY', 26 | LL: 'D MMMM YYYY', 27 | LLL: 'D MMMM YYYY HH:mm', 28 | LLLL: 'D MMMM YYYY, dddd HH:mm', 29 | }, 30 | calendar: { 31 | sameDay: '[Бугун соат] LT [да]', 32 | nextDay: '[Эртага] LT [да]', 33 | nextWeek: 'dddd [куни соат] LT [да]', 34 | lastDay: '[Кеча соат] LT [да]', 35 | lastWeek: '[Утган] dddd [куни соат] LT [да]', 36 | sameElse: 'L', 37 | }, 38 | relativeTime: { 39 | future: 'Якин %s ичида', 40 | past: 'Бир неча %s олдин', 41 | s: 'фурсат', 42 | ss: '%d фурсат', 43 | m: 'бир дакика', 44 | mm: '%d дакика', 45 | h: 'бир соат', 46 | hh: '%d соат', 47 | d: 'бир кун', 48 | dd: '%d кун', 49 | M: 'бир ой', 50 | MM: '%d ой', 51 | y: 'бир йил', 52 | yy: '%d йил', 53 | }, 54 | week: { 55 | dow: 1, // Monday is the first day of the week. 56 | doy: 7, // The week that contains Jan 4th is the first week of the year. 57 | }, 58 | }); 59 | 60 | return uz; 61 | 62 | }))); 63 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/x-pseudo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Pseudo [x-pseudo] 3 | //! author : Andrew Hood : https://github.com/andrewhood125 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var xPseudo = moment.defineLocale('x-pseudo', { 15 | months: 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split( 16 | '_' 17 | ), 18 | monthsShort: 'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split( 19 | '_' 20 | ), 21 | monthsParseExact: true, 22 | weekdays: 'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split( 23 | '_' 24 | ), 25 | weekdaysShort: 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'), 26 | weekdaysMin: 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'), 27 | weekdaysParseExact: true, 28 | longDateFormat: { 29 | LT: 'HH:mm', 30 | L: 'DD/MM/YYYY', 31 | LL: 'D MMMM YYYY', 32 | LLL: 'D MMMM YYYY HH:mm', 33 | LLLL: 'dddd, D MMMM YYYY HH:mm', 34 | }, 35 | calendar: { 36 | sameDay: '[T~ódá~ý át] LT', 37 | nextDay: '[T~ómó~rró~w át] LT', 38 | nextWeek: 'dddd [át] LT', 39 | lastDay: '[Ý~ést~érdá~ý át] LT', 40 | lastWeek: '[L~ást] dddd [át] LT', 41 | sameElse: 'L', 42 | }, 43 | relativeTime: { 44 | future: 'í~ñ %s', 45 | past: '%s á~gó', 46 | s: 'á ~féw ~sécó~ñds', 47 | ss: '%d s~écóñ~ds', 48 | m: 'á ~míñ~úté', 49 | mm: '%d m~íñú~tés', 50 | h: 'á~ñ hó~úr', 51 | hh: '%d h~óúrs', 52 | d: 'á ~dáý', 53 | dd: '%d d~áýs', 54 | M: 'á ~móñ~th', 55 | MM: '%d m~óñt~hs', 56 | y: 'á ~ýéár', 57 | yy: '%d ý~éárs', 58 | }, 59 | dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, 60 | ordinal: function (number) { 61 | var b = number % 10, 62 | output = 63 | ~~((number % 100) / 10) === 1 64 | ? 'th' 65 | : b === 1 66 | ? 'st' 67 | : b === 2 68 | ? 'nd' 69 | : b === 3 70 | ? 'rd' 71 | : 'th'; 72 | return number + output; 73 | }, 74 | week: { 75 | dow: 1, // Monday is the first day of the week. 76 | doy: 4, // The week that contains Jan 4th is the first week of the year. 77 | }, 78 | }); 79 | 80 | return xPseudo; 81 | 82 | }))); 83 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/adminlte3/plugins/moment/locale/yo.js: -------------------------------------------------------------------------------- 1 | //! moment.js locale configuration 2 | //! locale : Yoruba Nigeria [yo] 3 | //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe 4 | 5 | ;(function (global, factory) { 6 | typeof exports === 'object' && typeof module !== 'undefined' 7 | && typeof require === 'function' ? factory(require('../moment')) : 8 | typeof define === 'function' && define.amd ? define(['../moment'], factory) : 9 | factory(global.moment) 10 | }(this, (function (moment) { 'use strict'; 11 | 12 | //! moment.js locale configuration 13 | 14 | var yo = moment.defineLocale('yo', { 15 | months: 'Sẹ́rẹ́_Èrèlè_Ẹrẹ̀nà_Ìgbé_Èbibi_Òkùdu_Agẹmo_Ògún_Owewe_Ọ̀wàrà_Bélú_Ọ̀pẹ̀̀'.split( 16 | '_' 17 | ), 18 | monthsShort: 'Sẹ́r_Èrl_Ẹrn_Ìgb_Èbi_Òkù_Agẹ_Ògú_Owe_Ọ̀wà_Bél_Ọ̀pẹ̀̀'.split('_'), 19 | weekdays: 'Àìkú_Ajé_Ìsẹ́gun_Ọjọ́rú_Ọjọ́bọ_Ẹtì_Àbámẹ́ta'.split('_'), 20 | weekdaysShort: 'Àìk_Ajé_Ìsẹ́_Ọjr_Ọjb_Ẹtì_Àbá'.split('_'), 21 | weekdaysMin: 'Àì_Aj_Ìs_Ọr_Ọb_Ẹt_Àb'.split('_'), 22 | longDateFormat: { 23 | LT: 'h:mm A', 24 | LTS: 'h:mm:ss A', 25 | L: 'DD/MM/YYYY', 26 | LL: 'D MMMM YYYY', 27 | LLL: 'D MMMM YYYY h:mm A', 28 | LLLL: 'dddd, D MMMM YYYY h:mm A', 29 | }, 30 | calendar: { 31 | sameDay: '[Ònì ni] LT', 32 | nextDay: '[Ọ̀la ni] LT', 33 | nextWeek: "dddd [Ọsẹ̀ tón'bọ] [ni] LT", 34 | lastDay: '[Àna ni] LT', 35 | lastWeek: 'dddd [Ọsẹ̀ tólọ́] [ni] LT', 36 | sameElse: 'L', 37 | }, 38 | relativeTime: { 39 | future: 'ní %s', 40 | past: '%s kọjá', 41 | s: 'ìsẹjú aayá die', 42 | ss: 'aayá %d', 43 | m: 'ìsẹjú kan', 44 | mm: 'ìsẹjú %d', 45 | h: 'wákati kan', 46 | hh: 'wákati %d', 47 | d: 'ọjọ́ kan', 48 | dd: 'ọjọ́ %d', 49 | M: 'osù kan', 50 | MM: 'osù %d', 51 | y: 'ọdún kan', 52 | yy: 'ọdún %d', 53 | }, 54 | dayOfMonthOrdinalParse: /ọjọ́\s\d{1,2}/, 55 | ordinal: 'ọjọ́ %d', 56 | week: { 57 | dow: 1, // Monday is the first day of the week. 58 | doy: 4, // The week that contains Jan 4th is the first week of the year. 59 | }, 60 | }); 61 | 62 | return yo; 63 | 64 | }))); 65 | -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/editor.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/imagebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/imagebrowser.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/indeterminate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/indeterminate.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading-image.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading_2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/loading_2x.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/markers.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/markers_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/markers_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/slider-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/slider-h.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/slider-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/slider-v.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_kpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_kpi.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_kpi_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Bootstrap/sprite_kpi_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/editor.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/imagebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/imagebrowser.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/indeterminate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/indeterminate.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading-image.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading_2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/loading_2x.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/markers.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/markers_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/markers_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/slider-h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/slider-h.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/slider-v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/slider-v.gif -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_kpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_kpi.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_kpi_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/Default/sprite_kpi_2x.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-BoldOblique.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-ExtraLight.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSans.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/DejaVu/DejaVuSerif.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/KendoUIGlyphs.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/fonts/glyphs/WebComponentsIcons.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/back.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/kendoui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/kendoui.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/kendoui.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/kendoui.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/wp8_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/wp8_icons.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/wp8_inverseicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/images/wp8_inverseicons.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/brushed-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/brushed-metal.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots1.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots10.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots11.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots12.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots13.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots2.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots3.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots4.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots5.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots6.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots7.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots8.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/dots9.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/glass-lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/glass-lighter.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/glass.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/highlight.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/hsv-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/hsv-gradient.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/hue.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/leather1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/leather1.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/leather2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/leather2.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/noise.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe1.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe2.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe3.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe4.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe5.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/stripe6.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/transparency.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/transtexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/kendoui2017/styles/textures/transtexture.png -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.eot -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.ttf -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/246850/Calamus.TaskScheduler/00b1c30c21bf23eaa5cd8497359f39f930562d7d/Calamus.TaskScheduler/wwwroot/laydate/theme/default/font/iconfont.woff -------------------------------------------------------------------------------- /Calamus.TaskScheduler/wwwroot/layer/mobile/layer.js: -------------------------------------------------------------------------------- 1 | /*! layer mobile-v2.0.0 Web弹层组件 MIT License http://layer.layui.com/mobile By 贤心 */ 2 | ;!function(e){"use strict";var t=document,n="querySelectorAll",i="getElementsByClassName",a=function(e){return t[n](e)},s={type:0,shade:!0,shadeClose:!0,fixed:!0,anim:"scale"},l={extend:function(e){var t=JSON.parse(JSON.stringify(s));for(var n in e)t[n]=e[n];return t},timer:{},end:{}};l.touch=function(e,t){e.addEventListener("click",function(e){t.call(this,e)},!1)};var r=0,o=["layui-m-layer"],c=function(e){var t=this;t.config=l.extend(e),t.view()};c.prototype.view=function(){var e=this,n=e.config,s=t.createElement("div");e.id=s.id=o[0]+r,s.setAttribute("class",o[0]+" "+o[0]+(n.type||0)),s.setAttribute("index",r);var l=function(){var e="object"==typeof n.title;return n.title?'

'+(e?n.title[0]:n.title)+"

":""}(),c=function(){"string"==typeof n.btn&&(n.btn=[n.btn]);var e,t=(n.btn||[]).length;return 0!==t&&n.btn?(e=''+n.btn[0]+"",2===t&&(e=''+n.btn[1]+""+e),'
'+e+"
"):""}();if(n.fixed||(n.top=n.hasOwnProperty("top")?n.top:100,n.style=n.style||"",n.style+=" top:"+(t.body.scrollTop+n.top)+"px"),2===n.type&&(n.content='

'+(n.content||"")+"

"),n.skin&&(n.anim="up"),"msg"===n.skin&&(n.shade=!1),s.innerHTML=(n.shade?"
':"")+'
"+l+'
'+n.content+"
"+c+"
",!n.type||2===n.type){var d=t[i](o[0]+n.type),y=d.length;y>=1&&layer.close(d[0].getAttribute("index"))}document.body.appendChild(s);var u=e.elem=a("#"+e.id)[0];n.success&&n.success(u),e.index=r++,e.action(n,u)},c.prototype.action=function(e,t){var n=this;e.time&&(l.timer[n.index]=setTimeout(function(){layer.close(n.index)},1e3*e.time));var a=function(){var t=this.getAttribute("type");0==t?(e.no&&e.no(),layer.close(n.index)):e.yes?e.yes(n.index):layer.close(n.index)};if(e.btn)for(var s=t[i]("layui-m-layerbtn")[0].children,r=s.length,o=0;o --创建数据库 quartz , Charset为utf8mb4 9 | 10 | > --根据database/tables/tables_mysql_innodb.sql语句创建表结构 11 | 12 | ### 2、启动方式 13 | > --docker部署(推荐) 14 | 15 | > --命令行启动 dotnet Calamus.TaskScheduler.dll 16 | 17 | > --IIS部署(不推荐) 18 | 19 | **配置文件** 20 | ``` 21 | { 22 | "Logging": { 23 | "LogLevel": { 24 | "Default": "Information", 25 | "Microsoft": "Warning", 26 | "Microsoft.Hosting.Lifetime": "Information" 27 | } 28 | }, 29 | "AllowedHosts": "*", 30 | "Quartz": { 31 | "Database": "server=localhost;port=3306;database=quartz;User ID=root;Password=123456", // quartz 持久化数据库连接,本实例使用MySQL 32 | "TablePrefix": "QRTZ_" // MySQL下注意区分大小写 33 | } 34 | } 35 | 36 | ``` 37 | --------------------------------------------------------------------------------