├── .gitattributes
├── .idea
├── .gitignore
├── Impacket_For_Web.iml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── misc.xml
├── modules.xml
└── vcs.xml
├── Dockerfile
├── README.md
├── Web
├── css
│ ├── animate.css
│ ├── bootstrap.min.css
│ ├── materialdesignicons.min.css
│ └── style.min.css
├── fonts
│ ├── materialdesignicons.eot
│ ├── materialdesignicons.svg
│ ├── materialdesignicons.ttf
│ ├── materialdesignicons.woff
│ └── materialdesignicons.woff2
├── images
│ ├── captcha.png
│ ├── gallery
│ │ ├── 1.jpg
│ │ ├── 10.jpg
│ │ ├── 11.jpg
│ │ ├── 13.jpg
│ │ ├── 14.jpg
│ │ ├── 15.jpg
│ │ ├── 16.jpg
│ │ ├── 17.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 6.jpg
│ │ ├── 7.jpg
│ │ ├── 8.jpg
│ │ └── 9.jpg
│ ├── img-slide-1.jpg
│ ├── img-slide-2.jpg
│ ├── img-slide-3.jpg
│ ├── img-slide-4.jpg
│ ├── img-slide-5.jpg
│ ├── logo-ico.png
│ ├── logo-sidebar.png
│ ├── logo-sidebar.png.bak
│ ├── logo.png
│ └── users
│ │ ├── avatar.jpg
│ │ └── avatar.jpg.bak
├── index.html
├── js
│ ├── Chart.js
│ ├── axios.js
│ ├── bootstrap-colorpicker
│ │ ├── bootstrap-colorpicker.js
│ │ ├── bootstrap-colorpicker.min.js
│ │ ├── css
│ │ │ ├── bootstrap-colorpicker.css
│ │ │ ├── bootstrap-colorpicker.css.map
│ │ │ ├── bootstrap-colorpicker.min.css
│ │ │ └── bootstrap-colorpicker.min.css.map
│ │ └── img
│ │ │ └── bootstrap-colorpicker
│ │ │ ├── alpha-horizontal.png
│ │ │ ├── alpha.png
│ │ │ ├── hue-horizontal.png
│ │ │ ├── hue.png
│ │ │ └── saturation.png
│ ├── bootstrap-datepicker
│ │ ├── bootstrap-datepicker.js
│ │ ├── bootstrap-datepicker.min.js
│ │ ├── bootstrap-datepicker3.css
│ │ ├── bootstrap-datepicker3.css.map
│ │ ├── bootstrap-datepicker3.min.css
│ │ ├── bootstrap-datepicker3.min.css.map
│ │ └── locales
│ │ │ ├── bootstrap-datepicker.ar.min.js
│ │ │ ├── bootstrap-datepicker.az.min.js
│ │ │ ├── bootstrap-datepicker.bg.min.js
│ │ │ ├── bootstrap-datepicker.bs.min.js
│ │ │ ├── bootstrap-datepicker.ca.min.js
│ │ │ ├── bootstrap-datepicker.cs.min.js
│ │ │ ├── bootstrap-datepicker.cy.min.js
│ │ │ ├── bootstrap-datepicker.da.min.js
│ │ │ ├── bootstrap-datepicker.de.min.js
│ │ │ ├── bootstrap-datepicker.el.min.js
│ │ │ ├── bootstrap-datepicker.en-AU.min.js
│ │ │ ├── bootstrap-datepicker.en-GB.min.js
│ │ │ ├── bootstrap-datepicker.eo.min.js
│ │ │ ├── bootstrap-datepicker.es.min.js
│ │ │ ├── bootstrap-datepicker.et.min.js
│ │ │ ├── bootstrap-datepicker.eu.min.js
│ │ │ ├── bootstrap-datepicker.fa.min.js
│ │ │ ├── bootstrap-datepicker.fi.min.js
│ │ │ ├── bootstrap-datepicker.fo.min.js
│ │ │ ├── bootstrap-datepicker.fr-CH.min.js
│ │ │ ├── bootstrap-datepicker.fr.min.js
│ │ │ ├── bootstrap-datepicker.gl.min.js
│ │ │ ├── bootstrap-datepicker.he.min.js
│ │ │ ├── bootstrap-datepicker.hr.min.js
│ │ │ ├── bootstrap-datepicker.hu.min.js
│ │ │ ├── bootstrap-datepicker.hy.min.js
│ │ │ ├── bootstrap-datepicker.id.min.js
│ │ │ ├── bootstrap-datepicker.is.min.js
│ │ │ ├── bootstrap-datepicker.it-CH.min.js
│ │ │ ├── bootstrap-datepicker.it.min.js
│ │ │ ├── bootstrap-datepicker.ja.min.js
│ │ │ ├── bootstrap-datepicker.ka.min.js
│ │ │ ├── bootstrap-datepicker.kh.min.js
│ │ │ ├── bootstrap-datepicker.kk.min.js
│ │ │ ├── bootstrap-datepicker.ko.min.js
│ │ │ ├── bootstrap-datepicker.kr.min.js
│ │ │ ├── bootstrap-datepicker.lt.min.js
│ │ │ ├── bootstrap-datepicker.lv.min.js
│ │ │ ├── bootstrap-datepicker.me.min.js
│ │ │ ├── bootstrap-datepicker.mk.min.js
│ │ │ ├── bootstrap-datepicker.mn.min.js
│ │ │ ├── bootstrap-datepicker.ms.min.js
│ │ │ ├── bootstrap-datepicker.nb.min.js
│ │ │ ├── bootstrap-datepicker.nl-BE.min.js
│ │ │ ├── bootstrap-datepicker.nl.min.js
│ │ │ ├── bootstrap-datepicker.no.min.js
│ │ │ ├── bootstrap-datepicker.pl.min.js
│ │ │ ├── bootstrap-datepicker.pt-BR.min.js
│ │ │ ├── bootstrap-datepicker.pt.min.js
│ │ │ ├── bootstrap-datepicker.ro.min.js
│ │ │ ├── bootstrap-datepicker.rs-latin.min.js
│ │ │ ├── bootstrap-datepicker.rs.min.js
│ │ │ ├── bootstrap-datepicker.ru.min.js
│ │ │ ├── bootstrap-datepicker.sk.min.js
│ │ │ ├── bootstrap-datepicker.sl.min.js
│ │ │ ├── bootstrap-datepicker.sq.min.js
│ │ │ ├── bootstrap-datepicker.sr-latin.min.js
│ │ │ ├── bootstrap-datepicker.sr.min.js
│ │ │ ├── bootstrap-datepicker.sv.min.js
│ │ │ ├── bootstrap-datepicker.sw.min.js
│ │ │ ├── bootstrap-datepicker.th.min.js
│ │ │ ├── bootstrap-datepicker.tr.min.js
│ │ │ ├── bootstrap-datepicker.uk.min.js
│ │ │ ├── bootstrap-datepicker.vi.min.js
│ │ │ ├── bootstrap-datepicker.zh-CN.min.js
│ │ │ └── bootstrap-datepicker.zh-TW.min.js
│ ├── bootstrap-datetimepicker
│ │ ├── bootstrap-datetimepicker.css
│ │ ├── bootstrap-datetimepicker.js
│ │ ├── bootstrap-datetimepicker.min.css
│ │ ├── bootstrap-datetimepicker.min.js
│ │ ├── locale
│ │ │ ├── af.js
│ │ │ ├── ar-ma.js
│ │ │ ├── ar-sa.js
│ │ │ ├── ar-tn.js
│ │ │ ├── ar.js
│ │ │ ├── az.js
│ │ │ ├── be.js
│ │ │ ├── bg.js
│ │ │ ├── bn.js
│ │ │ ├── bo.js
│ │ │ ├── br.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── cs.js
│ │ │ ├── cv.js
│ │ │ ├── cy.js
│ │ │ ├── da.js
│ │ │ ├── de-at.js
│ │ │ ├── de.js
│ │ │ ├── el.js
│ │ │ ├── en-au.js
│ │ │ ├── en-ca.js
│ │ │ ├── en-gb.js
│ │ │ ├── eo.js
│ │ │ ├── es.js
│ │ │ ├── et.js
│ │ │ ├── eu.js
│ │ │ ├── fa.js
│ │ │ ├── fi.js
│ │ │ ├── fo.js
│ │ │ ├── fr-ca.js
│ │ │ ├── fr.js
│ │ │ ├── fy.js
│ │ │ ├── gl.js
│ │ │ ├── he.js
│ │ │ ├── hi.js
│ │ │ ├── hr.js
│ │ │ ├── hu.js
│ │ │ ├── hy-am.js
│ │ │ ├── id.js
│ │ │ ├── is.js
│ │ │ ├── it.js
│ │ │ ├── ja.js
│ │ │ ├── jv.js
│ │ │ ├── ka.js
│ │ │ ├── km.js
│ │ │ ├── ko.js
│ │ │ ├── lb.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── me.js
│ │ │ ├── mk.js
│ │ │ ├── ml.js
│ │ │ ├── mr.js
│ │ │ ├── ms-my.js
│ │ │ ├── ms.js
│ │ │ ├── my.js
│ │ │ ├── nb.js
│ │ │ ├── ne.js
│ │ │ ├── nl.js
│ │ │ ├── nn.js
│ │ │ ├── pl.js
│ │ │ ├── pt-br.js
│ │ │ ├── pt.js
│ │ │ ├── ro.js
│ │ │ ├── ru.js
│ │ │ ├── si.js
│ │ │ ├── sk.js
│ │ │ ├── sl.js
│ │ │ ├── sq.js
│ │ │ ├── sr-cyrl.js
│ │ │ ├── sr.js
│ │ │ ├── sv.js
│ │ │ ├── ta.js
│ │ │ ├── th.js
│ │ │ ├── tl-ph.js
│ │ │ ├── tr.js
│ │ │ ├── tzl.js
│ │ │ ├── tzm-latn.js
│ │ │ ├── tzm.js
│ │ │ ├── uk.js
│ │ │ ├── uz.js
│ │ │ ├── vi.js
│ │ │ ├── zh-cn.js
│ │ │ └── zh-tw.js
│ │ └── moment.min.js
│ ├── bootstrap-notify.min.js
│ ├── bootstrap.min.js
│ ├── chosen.jquery.min.js
│ ├── ion-rangeslider
│ │ ├── ion.rangeSlider.min.css
│ │ └── ion.rangeSlider.min.js
│ ├── jconfirm
│ │ ├── jquery-confirm.min.css
│ │ └── jquery-confirm.min.js
│ ├── jquery-tags-input
│ │ ├── jquery.tagsinput.min.css
│ │ └── jquery.tagsinput.min.js
│ ├── jquery.bootstrap.wizard.min.js
│ ├── jquery.min.js
│ ├── lightyear.js
│ ├── main.min.js
│ ├── perfect-scrollbar.min.js
│ └── vue@2.js
├── logo-sidebar.png
└── settings.html
├── app
├── api
│ ├── __init__.py
│ └── v1
│ │ ├── __init__.py
│ │ ├── attack.py
│ │ └── proxy.py
├── core
│ ├── __init__.py
│ ├── config.py
│ ├── database.py
│ └── security.py
├── models
│ ├── __init__.py
│ ├── base.py
│ └── proxy.py
└── services
│ ├── __init__.py
│ ├── attack_service.so
│ ├── impacketweb
│ ├── atexec.so
│ ├── dcomexec.so
│ ├── psexec.so
│ └── wmiexec.so
│ └── proxy_service.py
├── images
├── 代码1.jpg
├── 代码2.jpg
├── 哈希传递.jpg
└── 设置代理.jpg
├── main.py
└── requirements.txt
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.js linguist-language=python
2 | *.css linguist-language=python
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 | # Editor-based HTTP Client requests
5 | /httpRequests/
6 | # Datasource local storage ignored files
7 | /dataSources/
8 | /dataSources.local.xml
9 |
--------------------------------------------------------------------------------
/.idea/Impacket_For_Web.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | # 使用带有Python的Alpine Linux作为基础镜像
2 | FROM python:3.10-alpine
3 |
4 | # 设置工作目录
5 | WORKDIR /Impacket_For_Web
6 |
7 | # 将当前目录的内容复制到容器的工作目录
8 | COPY . .
9 |
10 | # 安装必要的依赖项
11 | RUN apk add --no-cache \
12 | gcc \
13 | musl-dev \
14 | libffi-dev \
15 | openssl-dev
16 |
17 | # 安装Python依赖
18 | RUN pip install --no-cache-dir -r requirements.txt
19 |
20 | # 暴露端口8000
21 | EXPOSE 8000
22 |
23 | # 设置启动命令
24 | CMD ["python3", "main.py"]
25 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Impacket_For_Web
2 |
3 |
4 | 本项目对Impacket进行定制与拓展,增加代理隧道、增加Web API、增加可视化前端。
5 |
6 |
7 | # 特性
8 | + Socks 隧道:强大的代理功能,确保稳定的网络通信,独立于任何特定的网络环境。
9 | + 公网部署 & 多用户支持:本项目支持在公网上部署,多个用户可以同时操作和协作。
10 | + WebAPI 接口:为前端设计提供了强大的数据交互功能,同时支持简易的集成和二次开发。
11 | + 免除复杂参数:无需复杂的命令行参数,可通过友好的界面进行操作,直观展示横向移动的过程和结果
12 |
13 |
14 | # 功能
15 | + psexec 密码 OR 哈希命令执行
16 | + atexec 密码 OR 哈希命令执行
17 | + wmiexec 密码 OR 哈希命令执行
18 | + dcomexec 密码 OR 哈希单命令执行
19 | + 需要新功能可提需求
20 |
21 | # 部署
22 |
23 | 暂时只支持Linux的Python3.10,其他平台如想使用可借助Docker,~~后期补充Docker教程~~已补充
24 |
25 | ```
26 | # 拉取项目
27 | git clone https://github.com/XiaoLi996/Impacket_For_Web.git
28 | # 进入项目
29 | cd Impacket_For_Web
30 | # 安装依赖
31 | pip3 install -r requirements.txt
32 | # 运行程序
33 | python3 main.py
34 | # 访问程序
35 | http://localhost:8000/Web/index.html
36 | ```
37 |
38 | # Docker部署
39 |
40 | ```
41 | # 以Ubuntu为例
42 | # 安装Docker
43 | apt install docker.io
44 | # 拉取Ubuntu镜像并运行
45 | docker run -itd -p 8000:8000 --name Impacket_For_Web ubuntu
46 | # 进入容器
47 | docker exec -it Impacket_For_Web bash
48 | # 安装python3.10等必要环境
49 | apt update && apt install python3.10 python3-pip git
50 | # 拉取项目
51 | git clone https://github.com/XiaoLi996/Impacket_For_Web.git
52 | # 进入项目
53 | cd Impacket_For_Web
54 | # 安装依赖
55 | pip3 install -r requirements.txt
56 | # 运行程序
57 | python3 main.py
58 | # 访问程序
59 | http://localhost:8000/Web/index.html
60 | ```
61 |
62 | # Dockerfile部署
63 |
64 | ```
65 | # 拉取项目
66 | git clone https://github.com/XiaoLi996/Impacket_For_Web.git
67 | # 进入项目
68 | cd Impacket_For_Web
69 | # 构建镜像
70 | docker build -t impacket_for_web .
71 | # 运行容器
72 | docker run -itd -p 8000:8000 --name Impacket_For_Web impacket_for_web
73 | # 访问程序
74 | http://localhost:8000/Web/index.html
75 | ```
76 |
77 |
78 |
79 | 哈希传递:
80 |
81 | 
82 |
83 | 设置代理:
84 |
85 | 
86 |
87 | # 特别说明
88 |
89 | 如果需要部署公网使用需要更改以下代码中的localhost为自己的公网IP
90 | 后续会在前端加入配置项
91 |
92 | ```
93 | Web/index.html:119行
94 | Web/settings.js:153、179行
95 | ```
96 |
97 | 
98 | 
--------------------------------------------------------------------------------
/Web/fonts/materialdesignicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/fonts/materialdesignicons.eot
--------------------------------------------------------------------------------
/Web/fonts/materialdesignicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/fonts/materialdesignicons.ttf
--------------------------------------------------------------------------------
/Web/fonts/materialdesignicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/fonts/materialdesignicons.woff
--------------------------------------------------------------------------------
/Web/fonts/materialdesignicons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/fonts/materialdesignicons.woff2
--------------------------------------------------------------------------------
/Web/images/captcha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/captcha.png
--------------------------------------------------------------------------------
/Web/images/gallery/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/1.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/10.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/11.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/13.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/14.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/15.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/16.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/17.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/2.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/3.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/4.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/5.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/6.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/7.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/8.jpg
--------------------------------------------------------------------------------
/Web/images/gallery/9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/gallery/9.jpg
--------------------------------------------------------------------------------
/Web/images/img-slide-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/img-slide-1.jpg
--------------------------------------------------------------------------------
/Web/images/img-slide-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/img-slide-2.jpg
--------------------------------------------------------------------------------
/Web/images/img-slide-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/img-slide-3.jpg
--------------------------------------------------------------------------------
/Web/images/img-slide-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/img-slide-4.jpg
--------------------------------------------------------------------------------
/Web/images/img-slide-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/img-slide-5.jpg
--------------------------------------------------------------------------------
/Web/images/logo-ico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/logo-ico.png
--------------------------------------------------------------------------------
/Web/images/logo-sidebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/logo-sidebar.png
--------------------------------------------------------------------------------
/Web/images/logo-sidebar.png.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/logo-sidebar.png.bak
--------------------------------------------------------------------------------
/Web/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/logo.png
--------------------------------------------------------------------------------
/Web/images/users/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/users/avatar.jpg
--------------------------------------------------------------------------------
/Web/images/users/avatar.jpg.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/images/users/avatar.jpg.bak
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/css/bootstrap-colorpicker.min.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["src/less/colorpicker.less"],"names":[],"mappings":";;;;;;;;AAqBA,wBACE,MAAA,MACA,OAAA,MAXA,iBAAsB,iDAatB,OAAA,UACA,MAAA,KACA,0BACE,QAAA,MACA,OAAA,IACA,MAAA,IACA,OAAA,IAAA,MAAA,KAfF,sBAAA,IACA,mBAAA,IACA,cAAA,IAeE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KAAA,EAAA,EAAA,KACA,4BACE,QAAA,MACA,OAAA,IACA,MAAA,IACA,OAAA,IAAA,MAAA,KAzBJ,sBAAA,IACA,mBAAA,IACA,cAAA,IA8BF,mBADA,iBAEE,MAAA,KACA,OAAA,MACA,MAAA,KACA,OAAA,WACA,YAAA,IACA,cAAA,IAIiB,qBADF,mBAEf,QAAA,MACA,OAAA,IACA,WAAA,KACA,WAAA,IAAA,MAAA,KACA,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,WAAA,KAGF,iBA1DE,iBAAsB,0CA8DxB,mBA9DE,iBAAsB,4CAgEtB,QAAA,KAKF,mBADA,iBADA,wBAGE,gBAAA,QAGF,aACE,QAAA,IACA,UAAA,MACA,WAAA,IAxEA,sBAAA,IACA,mBAAA,IACA,cAAA,IAwEA,QAAA,KAIU,mBADA,oBAEV,QAAA,MACA,QAAA,GACA,YAAA,EAGU,mBACV,MAAA,KAGU,oBACV,QAAA,GACA,QAAA,aACA,YAAA,IAAA,MAAA,YACA,aAAA,IAAA,MAAA,YACA,cAAA,IAAA,MAAA,KACA,oBAAA,eACA,SAAA,SACA,IAAA,KACA,KAAA,IAGU,mBACV,QAAA,GACA,QAAA,aACA,YAAA,IAAA,MAAA,YACA,aAAA,IAAA,MAAA,YACA,cAAA,IAAA,MAAA,KACA,SAAA,SACA,IAAA,KACA,KAAA,IAGW,iBACX,SAAA,SAGU,oCACV,UAAA,MAGkC,uDAClC,QAAA,MAGF,mBACE,OAAA,KACA,WAAA,IACA,MAAA,KAlIA,iBAAsB,4CAoItB,oBAAA,EAAA,KAGiB,uBACjB,OAAA,KAGF,uBACE,QAAA,KACA,OAAA,KACA,WAAA,IACA,MAAA,KAGqB,yBACrB,OAAA,QACA,MAAA,KACA,OAAA,KACA,MAAA,KAGuB,2BACvB,YAAA,IAI2B,+BADW,0CAEtC,QAAA,aACA,OAAA,QACA,OAAA,KACA,eAAA,SACA,MAAA,KAGU,gCACV,SAAA,SACA,QAAA,aACA,MAAA,KACA,QAAA,KAGU,oCACV,MAAA,MACA,UAAA,MACA,OAAA,KAGkC,4DAClC,cAAA,IAGkC,uDAClC,MAAA,MAIkC,uDADA,qDAElC,MAAA,MACA,OAAA,KACA,MAAA,KACA,OAAA,WACA,YAAA,EACA,cAAA,IAIqD,yDADF,uDAEnD,QAAA,MACA,OAAA,KACA,WAAA,KACA,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,IACA,OAAA,KACA,WAAA,EAGkC,qDAlNlC,iBAAsB,qDAsNY,uDAtNlC,iBAAsB,uDA0NZ,gCACV,QAAA,KAGU,iCACV,QAAA,MAGiB,wCACjB,QAAA,aAGgB,0BAChB,KAAA,KACA,MAAA,IAGgB,yBAChB,KAAA,KACA,MAAA,IAGmB,6BACnB,aAAA,EACA,YAAA,EAGmB,4BACnB,aAAA,EACA,YAAA"}
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/alpha.png
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue-horizontal.png
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/hue.png
--------------------------------------------------------------------------------
/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/js/bootstrap-colorpicker/img/bootstrap-colorpicker/saturation.png
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ar={days:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"],daysShort:["أحد","اثنين","ثلاثاء","أربعاء","خميس","جمعة","سبت","أحد"],daysMin:["ح","ن","ث","ع","خ","ج","س","ح"],months:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthsShort:["يناير","فبراير","مارس","أبريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],today:"هذا اليوم",rtl:!0}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.az={days:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],daysShort:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],daysMin:["B.","B.e","Ç.a","Ç.","C.a","C.","Ş."],months:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthsShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],today:"Bu gün",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.bg={days:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],daysShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],daysMin:["Н","П","В","С","Ч","П","С"],months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Ян","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Ное","Дек"],today:"днес"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.bs={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ca={days:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"],daysShort:["Diu","Dil","Dmt","Dmc","Dij","Div","Dis"],daysMin:["dg","dl","dt","dc","dj","dv","ds"],months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],monthsShort:["Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Set","Oct","Nov","Des"],today:"Avui",monthsTitle:"Mesos",clear:"Esborrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.cs={days:["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"],daysShort:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],daysMin:["Ne","Po","Út","St","Čt","Pá","So"],months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],monthsShort:["Led","Úno","Bře","Dub","Kvě","Čer","Čnc","Srp","Zář","Říj","Lis","Pro"],today:"Dnes",clear:"Vymazat",weekStart:1,format:"dd.m.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.cy={days:["Sul","Llun","Mawrth","Mercher","Iau","Gwener","Sadwrn"],daysShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],daysMin:["Su","Ll","Ma","Me","Ia","Gwe","Sa"],months:["Ionawr","Chewfror","Mawrth","Ebrill","Mai","Mehefin","Gorfennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthsShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tach","Rha"],today:"Heddiw"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.da={days:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],daysShort:["søn","man","tir","ons","tor","fre","lør"],daysMin:["sø","ma","ti","on","to","fr","lø"],months:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],monthsShort:["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec"],today:"I Dag",clear:"Nulstil"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.de={days:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],daysShort:["Son","Mon","Die","Mit","Don","Fre","Sam"],daysMin:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthsShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],today:"Heute",monthsTitle:"Monate",clear:"Löschen",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.el={days:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],daysShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],daysMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthsShort:["Ιαν","Φεβ","Μαρ","Απρ","Μάι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],today:"Σήμερα",clear:"Καθαρισμός",weekStart:1,format:"d/m/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["en-AU"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"d/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["en-GB"]={days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],daysMin:["Su","Mo","Tu","We","Th","Fr","Sa"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],today:"Today",monthsTitle:"Months",clear:"Clear",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.eo={days:["dimanĉo","lundo","mardo","merkredo","ĵaŭdo","vendredo","sabato"],daysShort:["dim.","lun.","mar.","mer.","ĵaŭ.","ven.","sam."],daysMin:["d","l","ma","me","ĵ","v","s"],months:["januaro","februaro","marto","aprilo","majo","junio","julio","aŭgusto","septembro","oktobro","novembro","decembro"],monthsShort:["jan.","feb.","mar.","apr.","majo","jun.","jul.","aŭg.","sep.","okt.","nov.","dec."],today:"Hodiaŭ",clear:"Nuligi",weekStart:1,format:"yyyy-mm-dd"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.es={days:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"],daysShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],daysMin:["Do","Lu","Ma","Mi","Ju","Vi","Sa"],months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],monthsShort:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],today:"Hoy",monthsTitle:"Meses",clear:"Borrar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.et={days:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],daysShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],daysMin:["P","E","T","K","N","R","L"],months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthsShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],today:"Täna",clear:"Tühjenda",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.eu={days:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"],daysShort:["Ig","Al","Ar","Az","Og","Ol","Lr"],daysMin:["Ig","Al","Ar","Az","Og","Ol","Lr"],months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],monthsShort:["Urt","Ots","Mar","Api","Mai","Eka","Uzt","Abu","Ira","Urr","Aza","Abe"],today:"Gaur"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.fa={days:["یکشنبه","دوشنبه","سهشنبه","چهارشنبه","پنجشنبه","جمعه","شنبه","یکشنبه"],daysShort:["یک","دو","سه","چهار","پنج","جمعه","شنبه","یک"],daysMin:["ی","د","س","چ","پ","ج","ش","ی"],months:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthsShort:["ژان","فور","مار","آور","مه","ژون","ژوی","اوت","سپت","اکت","نوا","دسا"],today:"امروز",clear:"پاک کن",weekStart:1,format:"yyyy/mm/dd"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.fi={days:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"],daysShort:["sun","maa","tii","kes","tor","per","lau"],daysMin:["su","ma","ti","ke","to","pe","la"],months:["tammikuu","helmikuu","maaliskuu","huhtikuu","toukokuu","kesäkuu","heinäkuu","elokuu","syyskuu","lokakuu","marraskuu","joulukuu"],monthsShort:["tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mar","jou"],today:"tänään",clear:"Tyhjennä",weekStart:1,format:"d.m.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.fo={days:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leygardagur"],daysShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],daysMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],months:["Januar","Februar","Marts","Apríl","Mei","Juni","Juli","August","Septembur","Oktobur","Novembur","Desembur"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"Í Dag",clear:"Reinsa"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.fr={days:["Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi"],daysShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],daysMin:["D","L","Ma","Me","J","V","S"],months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],monthsShort:["Jan","Fév","Mar","Avr","Mai","Jui","Jul","Aou","Sep","Oct","Nov","Déc"],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.fr={days:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],daysShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],daysMin:["d","l","ma","me","j","v","s"],months:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthsShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],today:"Aujourd'hui",monthsTitle:"Mois",clear:"Effacer",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.gl={days:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],daysShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],daysMin:["Do","Lu","Ma","Me","Xo","Ve","Sa"],months:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthsShort:["Xan","Feb","Mar","Abr","Mai","Xun","Xul","Ago","Sep","Out","Nov","Dec"],today:"Hoxe",clear:"Limpar",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.he={days:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"],daysShort:["א","ב","ג","ד","ה","ו","ש","א"],daysMin:["א","ב","ג","ד","ה","ו","ש","א"],months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthsShort:["ינו","פבר","מרץ","אפר","מאי","יונ","יול","אוג","ספט","אוק","נוב","דצמ"],today:"היום",rtl:!0}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.hr={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthsShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],today:"Danas"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.hu={days:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],daysShort:["vas","hét","ked","sze","csü","pén","szo"],daysMin:["V","H","K","Sze","Cs","P","Szo"],months:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],monthsShort:["jan","feb","már","ápr","máj","jún","júl","aug","sze","okt","nov","dec"],today:"ma",weekStart:1,clear:"töröl",titleFormat:"yyyy. MM",format:"yyyy.mm.dd"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.hy={days:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"],daysShort:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],daysMin:["Կրկ","Երկ","Երք","Չրք","Հնգ","Ուր","Շբթ"],months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthsShort:["Հուն","Փետ","Մար","Ապր","Մայ","Հնս","Հլս","Օգս","Սեպ","Հոկ","Նմբ","Դեկ"],today:"Այսօր",clear:"Ջնջել",format:"dd.mm.yyyy",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.id={days:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],daysShort:["Mgu","Sen","Sel","Rab","Kam","Jum","Sab"],daysMin:["Mg","Sn","Sl","Ra","Ka","Ju","Sa"],months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ags","Sep","Okt","Nov","Des"],today:"Hari Ini",clear:"Kosongkan"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.is={days:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],daysShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],daysMin:["Su","Má","Þr","Mi","Fi","Fö","La"],months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],today:"Í Dag"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",clear:"Cancella",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.it={days:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],daysShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],daysMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthsShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],today:"Oggi",monthsTitle:"Mesi",clear:"Cancella",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ja={days:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"],daysShort:["日","月","火","水","木","金","土"],daysMin:["日","月","火","水","木","金","土"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",format:"yyyy/mm/dd",titleFormat:"yyyy年mm月",clear:"クリア"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ka={days:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],daysShort:["კვი","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],daysMin:["კვ","ორ","სა","ოთ","ხუ","პა","შა"],months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომები","ნოემბერი","დეკემბერი"],monthsShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],today:"დღეს",clear:"გასუფთავება",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.kh={days:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍","អាទិត្យ"],daysShort:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],daysMin:["អា.ទិ","ចន្ទ","អង្គារ","ពុធ","ព្រ.ហ","សុក្រ","សៅរ៍","អា.ទិ"],months:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthsShort:["មករា","កុម្ភះ","មិនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],today:"ថ្ងៃនេះ",clear:"សំអាត"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.kk={days:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],daysShort:["Жек","Дүй","Сей","Сәр","Бей","Жұм","Сен"],daysMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],months:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthsShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],today:"Бүгін",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ko={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],today:"오늘",clear:"삭제",format:"yyyy-mm-dd",titleFormat:"yyyy년mm월",weekStart:0}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.kr={days:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],daysShort:["일","월","화","수","목","금","토"],daysMin:["일","월","화","수","목","금","토"],months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthsShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.lt={days:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"],daysShort:["S","Pr","A","T","K","Pn","Š"],daysMin:["Sk","Pr","An","Tr","Ke","Pn","Št"],months:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthsShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],today:"Šiandien",monthsTitle:"Mėnesiai",clear:"Išvalyti",weekStart:1,format:"yyyy-mm-dd"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.lv={days:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"],daysShort:["Sv","P","O","T","C","Pk","S"],daysMin:["Sv","Pr","Ot","Tr","Ce","Pk","Se"],months:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],today:"Šodien",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.me={days:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],daysMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,clear:"Izbriši",format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.mk={days:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],daysShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],daysMin:["Не","По","Вт","Ср","Че","Пе","Са"],months:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthsShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],today:"Денес",format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.mn={days:["Ням","Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба"],daysShort:["Ням","Дав","Мяг","Лха","Пүр","Баа","Бям"],daysMin:["Ня","Да","Мя","Лх","Пү","Ба","Бя"],months:["Хулгана","Үхэр","Бар","Туулай","Луу","Могой","Морь","Хонь","Бич","Тахиа","Нохой","Гахай"],monthsShort:["Хул","Үхэ","Бар","Туу","Луу","Мог","Мор","Хон","Бич","Тах","Нох","Гах"],today:"Өнөөдөр",clear:"Тодорхой",format:"yyyy.mm.dd",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ms={days:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],daysShort:["Aha","Isn","Sel","Rab","Kha","Jum","Sab"],daysMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],months:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthsShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],today:"Hari Ini",clear:"Bersihkan"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.nb.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.nb={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I Dag",format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["nl-BE"]={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Leegmaken",weekStart:1,format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.nl={days:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],daysShort:["zo","ma","di","wo","do","vr","za"],daysMin:["zo","ma","di","wo","do","vr","za"],months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthsShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],today:"Vandaag",monthsTitle:"Maanden",clear:"Wissen",weekStart:1,format:"dd-mm-yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.no={days:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],daysShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],daysMin:["Sø","Ma","Ti","On","To","Fr","Lø"],months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],monthsShort:["Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Des"],today:"I dag",clear:"Nullstill",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.pl={days:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"],daysShort:["niedz.","pon.","wt.","śr.","czw.","piąt.","sob."],daysMin:["ndz.","pn.","wt.","śr.","czw.","pt.","sob."],months:["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"],monthsShort:["sty.","lut.","mar.","kwi.","maj","cze.","lip.","sie.","wrz.","paź.","lis.","gru."],today:"dzisiaj",weekStart:1,clear:"wyczyść",format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["pt-BR"]={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.pt={days:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"],daysShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],daysMin:["Do","Se","Te","Qu","Qu","Se","Sa"],months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthsShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],today:"Hoje",monthsTitle:"Meses",clear:"Limpar",format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ro={days:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],daysShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],daysMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthsShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],today:"Astăzi",clear:"Șterge",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["rs-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.rs={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.ru={days:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"],daysShort:["Вск","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthsShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],today:"Сегодня",clear:"Очистить",format:"dd.mm.yyyy",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sk={days:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"],daysShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],daysMin:["Ne","Po","Ut","St","Št","Pia","So"],months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],today:"Dnes",clear:"Vymazať",weekStart:1,format:"d.m.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sl={days:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],daysShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],daysMin:["Ne","Po","To","Sr","Če","Pe","So"],months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danes"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sq={days:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"],daysShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],daysMin:["Di","Hë","Ma","Më","En","Pr","Sht"],months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthsShort:["Jan","Shk","Mar","Pri","Maj","Qer","Korr","Gu","Sht","Tet","Nën","Dhjet"],today:"Sot"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["sr-latin"]={days:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],daysShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],daysMin:["N","Po","U","Sr","Č","Pe","Su"],months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],today:"Danas",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sr={days:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],daysShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],daysMin:["Н","По","У","Ср","Ч","Пе","Су"],months:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthsShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],today:"Данас",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sv={days:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],daysShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],daysMin:["Sö","Må","Ti","On","To","Fr","Lö"],months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthsShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],today:"Idag",format:"yyyy-mm-dd",weekStart:1,clear:"Rensa"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.sw.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.sw={days:["Jumapili","Jumatatu","Jumanne","Jumatano","Alhamisi","Ijumaa","Jumamosi"],daysShort:["J2","J3","J4","J5","Alh","Ij","J1"],daysMin:["2","3","4","5","A","I","1"],months:["Januari","Februari","Machi","Aprili","Mei","Juni","Julai","Agosti","Septemba","Oktoba","Novemba","Desemba"],monthsShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ago","Sep","Okt","Nov","Des"],today:"Leo"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.th={days:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"],daysShort:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],daysMin:["อา","จ","อ","พ","พฤ","ศ","ส","อา"],months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthsShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],today:"วันนี้"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.tr={days:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],daysShort:["Pz","Pzt","Sal","Çrş","Prş","Cu","Cts"],daysMin:["Pz","Pzt","Sa","Çr","Pr","Cu","Ct"],months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthsShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],today:"Bugün",clear:"Temizle",weekStart:1,format:"dd.mm.yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.uk={days:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"],daysShort:["Нед","Пнд","Втр","Срд","Чтв","Птн","Суб"],daysMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Cічень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthsShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],today:"Сьогодні",clear:"Очистити",format:"dd.mm.yyyy",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates.vi={days:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"],daysShort:["CN","Thứ 2","Thứ 3","Thứ 4","Thứ 5","Thứ 6","Thứ 7"],daysMin:["CN","T2","T3","T4","T5","T6","T7"],months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],monthsShort:["Th1","Th2","Th3","Th4","Th5","Th6","Th7","Th8","Th9","Th10","Th11","Th12"],today:"Hôm nay",clear:"Xóa",format:"dd/mm/yyyy"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["zh-CN"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["周日","周一","周二","周三","周四","周五","周六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今日",clear:"清除",format:"yyyy年mm月dd日",titleFormat:"yyyy年mm月",weekStart:1}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js:
--------------------------------------------------------------------------------
1 | !function(a){a.fn.datepicker.dates["zh-TW"]={days:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],daysShort:["週日","週一","週二","週三","週四","週五","週六"],daysMin:["日","一","二","三","四","五","六"],months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthsShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],today:"今天",format:"yyyy年mm月dd日",weekStart:1,clear:"清除"}}(jQuery);
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var af = moment.defineLocale('af', {
13 | months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'),
14 | monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
15 | weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),
16 | weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
17 | weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
18 | meridiemParse: /vm|nm/i,
19 | isPM : function (input) {
20 | return /^nm$/i.test(input);
21 | },
22 | meridiem : function (hours, minutes, isLower) {
23 | if (hours < 12) {
24 | return isLower ? 'vm' : 'VM';
25 | } else {
26 | return isLower ? 'nm' : 'NM';
27 | }
28 | },
29 | longDateFormat : {
30 | LT : 'HH:mm',
31 | LTS : 'HH:mm:ss',
32 | L : 'DD/MM/YYYY',
33 | LL : 'D MMMM YYYY',
34 | LLL : 'D MMMM YYYY HH:mm',
35 | LLLL : 'dddd, D MMMM YYYY HH:mm'
36 | },
37 | calendar : {
38 | sameDay : '[Vandag om] LT',
39 | nextDay : '[Môre om] LT',
40 | nextWeek : 'dddd [om] LT',
41 | lastDay : '[Gister om] LT',
42 | lastWeek : '[Laas] dddd [om] LT',
43 | sameElse : 'L'
44 | },
45 | relativeTime : {
46 | future : 'oor %s',
47 | past : '%s gelede',
48 | s : '\'n paar sekondes',
49 | m : '\'n minuut',
50 | mm : '%d minute',
51 | h : '\'n uur',
52 | hh : '%d ure',
53 | d : '\'n dag',
54 | dd : '%d dae',
55 | M : '\'n maand',
56 | MM : '%d maande',
57 | y : '\'n jaar',
58 | yy : '%d jaar'
59 | },
60 | ordinalParse: /\d{1,2}(ste|de)/,
61 | ordinal : function (number) {
62 | return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter
63 | },
64 | week : {
65 | dow : 1, // Maandag is die eerste dag van die week.
66 | doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
67 | }
68 | });
69 |
70 | return af;
71 |
72 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ar-ma.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Moroccan Arabic (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' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var ar_ma = moment.defineLocale('ar-ma', {
14 | months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
15 | monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
16 | weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
17 | weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
18 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
19 | longDateFormat : {
20 | LT : 'HH:mm',
21 | LTS : 'HH:mm:ss',
22 | L : 'DD/MM/YYYY',
23 | LL : 'D MMMM YYYY',
24 | LLL : 'D MMMM YYYY HH:mm',
25 | LLLL : 'dddd D MMMM YYYY HH:mm'
26 | },
27 | calendar : {
28 | sameDay: '[اليوم على الساعة] LT',
29 | nextDay: '[غدا على الساعة] LT',
30 | nextWeek: 'dddd [على الساعة] LT',
31 | lastDay: '[أمس على الساعة] LT',
32 | lastWeek: 'dddd [على الساعة] LT',
33 | sameElse: 'L'
34 | },
35 | relativeTime : {
36 | future : 'في %s',
37 | past : 'منذ %s',
38 | s : 'ثوان',
39 | m : 'دقيقة',
40 | mm : '%d دقائق',
41 | h : 'ساعة',
42 | hh : '%d ساعات',
43 | d : 'يوم',
44 | dd : '%d أيام',
45 | M : 'شهر',
46 | MM : '%d أشهر',
47 | y : 'سنة',
48 | yy : '%d سنوات'
49 | },
50 | week : {
51 | dow : 6, // Saturday is the first day of the week.
52 | doy : 12 // The week that contains Jan 1st is the first week of the year.
53 | }
54 | });
55 |
56 | return ar_ma;
57 |
58 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ar-sa.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Arabic Saudi Arabia (ar-sa)
3 | //! author : Suhail Alkowaileet : https://github.com/xsoh
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var symbolMap = {
13 | '1': '١',
14 | '2': '٢',
15 | '3': '٣',
16 | '4': '٤',
17 | '5': '٥',
18 | '6': '٦',
19 | '7': '٧',
20 | '8': '٨',
21 | '9': '٩',
22 | '0': '٠'
23 | }, numberMap = {
24 | '١': '1',
25 | '٢': '2',
26 | '٣': '3',
27 | '٤': '4',
28 | '٥': '5',
29 | '٦': '6',
30 | '٧': '7',
31 | '٨': '8',
32 | '٩': '9',
33 | '٠': '0'
34 | };
35 |
36 | var ar_sa = moment.defineLocale('ar-sa', {
37 | months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
38 | monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
39 | weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
40 | weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
41 | weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
42 | longDateFormat : {
43 | LT : 'HH:mm',
44 | LTS : 'HH:mm:ss',
45 | L : 'DD/MM/YYYY',
46 | LL : 'D MMMM YYYY',
47 | LLL : 'D MMMM YYYY HH:mm',
48 | LLLL : 'dddd D MMMM YYYY HH:mm'
49 | },
50 | meridiemParse: /ص|م/,
51 | isPM : function (input) {
52 | return 'م' === input;
53 | },
54 | meridiem : function (hour, minute, isLower) {
55 | if (hour < 12) {
56 | return 'ص';
57 | } else {
58 | return 'م';
59 | }
60 | },
61 | calendar : {
62 | sameDay: '[اليوم على الساعة] LT',
63 | nextDay: '[غدا على الساعة] LT',
64 | nextWeek: 'dddd [على الساعة] LT',
65 | lastDay: '[أمس على الساعة] LT',
66 | lastWeek: 'dddd [على الساعة] LT',
67 | sameElse: 'L'
68 | },
69 | relativeTime : {
70 | future : 'في %s',
71 | past : 'منذ %s',
72 | s : 'ثوان',
73 | m : 'دقيقة',
74 | mm : '%d دقائق',
75 | h : 'ساعة',
76 | hh : '%d ساعات',
77 | d : 'يوم',
78 | dd : '%d أيام',
79 | M : 'شهر',
80 | MM : '%d أشهر',
81 | y : 'سنة',
82 | yy : '%d سنوات'
83 | },
84 | preparse: function (string) {
85 | return string.replace(/[١٢٣٤٥٦٧٨٩٠]/g, function (match) {
86 | return numberMap[match];
87 | }).replace(/،/g, ',');
88 | },
89 | postformat: function (string) {
90 | return string.replace(/\d/g, function (match) {
91 | return symbolMap[match];
92 | }).replace(/,/g, '،');
93 | },
94 | week : {
95 | dow : 6, // Saturday is the first day of the week.
96 | doy : 12 // The week that contains Jan 1st is the first week of the year.
97 | }
98 | });
99 |
100 | return ar_sa;
101 |
102 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ar-tn.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Tunisian Arabic (ar-tn)
3 |
4 | (function (global, factory) {
5 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
6 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
7 | factory(global.moment)
8 | }(this, function (moment) { 'use strict';
9 |
10 |
11 | var ar_tn = moment.defineLocale('ar-tn', {
12 | months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
13 | monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
14 | weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
15 | weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
16 | weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
17 | longDateFormat: {
18 | LT: 'HH:mm',
19 | LTS: 'HH:mm:ss',
20 | L: 'DD/MM/YYYY',
21 | LL: 'D MMMM YYYY',
22 | LLL: 'D MMMM YYYY HH:mm',
23 | LLLL: 'dddd D MMMM YYYY HH:mm'
24 | },
25 | calendar: {
26 | sameDay: '[اليوم على الساعة] LT',
27 | nextDay: '[غدا على الساعة] LT',
28 | nextWeek: 'dddd [على الساعة] LT',
29 | lastDay: '[أمس على الساعة] LT',
30 | lastWeek: 'dddd [على الساعة] LT',
31 | sameElse: 'L'
32 | },
33 | relativeTime: {
34 | future: 'في %s',
35 | past: 'منذ %s',
36 | s: 'ثوان',
37 | m: 'دقيقة',
38 | mm: '%d دقائق',
39 | h: 'ساعة',
40 | hh: '%d ساعات',
41 | d: 'يوم',
42 | dd: '%d أيام',
43 | M: 'شهر',
44 | MM: '%d أشهر',
45 | y: 'سنة',
46 | yy: '%d سنوات'
47 | },
48 | week: {
49 | dow: 1, // Monday is the first day of the week.
50 | doy: 4 // The week that contains Jan 4th is the first week of the year.
51 | }
52 | });
53 |
54 | return ar_tn;
55 |
56 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/bg.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : bulgarian (bg)
3 | //! author : Krasen Borisov : https://github.com/kraz
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var bg = moment.defineLocale('bg', {
13 | months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'),
14 | monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
15 | weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'),
16 | weekdaysShort : 'нед_пон_вто_сря_чет_пет_съб'.split('_'),
17 | weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
18 | longDateFormat : {
19 | LT : 'H:mm',
20 | LTS : 'H:mm:ss',
21 | L : 'D.MM.YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY H:mm',
24 | LLLL : 'dddd, D MMMM YYYY H:mm'
25 | },
26 | calendar : {
27 | sameDay : '[Днес в] LT',
28 | nextDay : '[Утре в] LT',
29 | nextWeek : 'dddd [в] LT',
30 | lastDay : '[Вчера в] LT',
31 | lastWeek : function () {
32 | switch (this.day()) {
33 | case 0:
34 | case 3:
35 | case 6:
36 | return '[В изминалата] dddd [в] LT';
37 | case 1:
38 | case 2:
39 | case 4:
40 | case 5:
41 | return '[В изминалия] dddd [в] LT';
42 | }
43 | },
44 | sameElse : 'L'
45 | },
46 | relativeTime : {
47 | future : 'след %s',
48 | past : 'преди %s',
49 | s : 'няколко секунди',
50 | m : 'минута',
51 | mm : '%d минути',
52 | h : 'час',
53 | hh : '%d часа',
54 | d : 'ден',
55 | dd : '%d дни',
56 | M : 'месец',
57 | MM : '%d месеца',
58 | y : 'година',
59 | yy : '%d години'
60 | },
61 | ordinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
62 | ordinal : function (number) {
63 | var lastDigit = number % 10,
64 | last2Digits = number % 100;
65 | if (number === 0) {
66 | return number + '-ев';
67 | } else if (last2Digits === 0) {
68 | return number + '-ен';
69 | } else if (last2Digits > 10 && last2Digits < 20) {
70 | return number + '-ти';
71 | } else if (lastDigit === 1) {
72 | return number + '-ви';
73 | } else if (lastDigit === 2) {
74 | return number + '-ри';
75 | } else if (lastDigit === 7 || lastDigit === 8) {
76 | return number + '-ми';
77 | } else {
78 | return number + '-ти';
79 | }
80 | },
81 | week : {
82 | dow : 1, // Monday is the first day of the week.
83 | doy : 7 // The week that contains Jan 1st is the first week of the year.
84 | }
85 | });
86 |
87 | return bg;
88 |
89 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ca.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : catalan (ca)
3 | //! author : Juan G. Hurtado : https://github.com/juanghurtado
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var ca = moment.defineLocale('ca', {
13 | months : 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
14 | monthsShort : 'gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.'.split('_'),
15 | weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),
16 | weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
17 | weekdaysMin : 'Dg_Dl_Dt_Dc_Dj_Dv_Ds'.split('_'),
18 | longDateFormat : {
19 | LT : 'H:mm',
20 | LTS : 'LT:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY H:mm',
24 | LLLL : 'dddd D MMMM YYYY H:mm'
25 | },
26 | calendar : {
27 | sameDay : function () {
28 | return '[avui a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
29 | },
30 | nextDay : function () {
31 | return '[demà a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
32 | },
33 | nextWeek : function () {
34 | return 'dddd [a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
35 | },
36 | lastDay : function () {
37 | return '[ahir a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
38 | },
39 | lastWeek : function () {
40 | return '[el] dddd [passat a ' + ((this.hours() !== 1) ? 'les' : 'la') + '] LT';
41 | },
42 | sameElse : 'L'
43 | },
44 | relativeTime : {
45 | future : 'en %s',
46 | past : 'fa %s',
47 | s : 'uns segons',
48 | m : 'un minut',
49 | mm : '%d minuts',
50 | h : 'una hora',
51 | hh : '%d hores',
52 | d : 'un dia',
53 | dd : '%d dies',
54 | M : 'un mes',
55 | MM : '%d mesos',
56 | y : 'un any',
57 | yy : '%d anys'
58 | },
59 | ordinalParse: /\d{1,2}(r|n|t|è|a)/,
60 | ordinal : function (number, period) {
61 | var output = (number === 1) ? 'r' :
62 | (number === 2) ? 'n' :
63 | (number === 3) ? 'r' :
64 | (number === 4) ? 't' : 'è';
65 | if (period === 'w' || period === 'W') {
66 | output = 'a';
67 | }
68 | return number + output;
69 | },
70 | week : {
71 | dow : 1, // Monday is the first day of the week.
72 | doy : 4 // The week that contains Jan 4th is the first week of the year.
73 | }
74 | });
75 |
76 | return ca;
77 |
78 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var cv = moment.defineLocale('cv', {
13 | months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'),
14 | monthsShort : 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
15 | weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split('_'),
16 | weekdaysShort : 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
17 | weekdaysMin : 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD-MM-YYYY',
22 | LL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
23 | LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
24 | LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Паян] LT [сехетре]',
28 | nextDay: '[Ыран] LT [сехетре]',
29 | lastDay: '[Ӗнер] LT [сехетре]',
30 | nextWeek: '[Ҫитес] dddd LT [сехетре]',
31 | lastWeek: '[Иртнӗ] dddd LT [сехетре]',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : function (output) {
36 | var affix = /сехет$/i.exec(output) ? 'рен' : /ҫул$/i.exec(output) ? 'тан' : 'ран';
37 | return output + affix;
38 | },
39 | past : '%s каялла',
40 | s : 'пӗр-ик ҫеккунт',
41 | m : 'пӗр минут',
42 | mm : '%d минут',
43 | h : 'пӗр сехет',
44 | hh : '%d сехет',
45 | d : 'пӗр кун',
46 | dd : '%d кун',
47 | M : 'пӗр уйӑх',
48 | MM : '%d уйӑх',
49 | y : 'пӗр ҫул',
50 | yy : '%d ҫул'
51 | },
52 | ordinalParse: /\d{1,2}-мӗш/,
53 | ordinal : '%d-мӗш',
54 | week : {
55 | dow : 1, // Monday is the first day of the week.
56 | doy : 7 // The week that contains Jan 1st is the first week of the year.
57 | }
58 | });
59 |
60 | return cv;
61 |
62 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/cy.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Welsh (cy)
3 | //! author : Robert Allen
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var cy = moment.defineLocale('cy', {
13 | months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'),
14 | monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'),
15 | weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'),
16 | weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
17 | weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
18 | // time formats are the same as en-gb
19 | longDateFormat: {
20 | LT: 'HH:mm',
21 | LTS : 'HH:mm:ss',
22 | L: 'DD/MM/YYYY',
23 | LL: 'D MMMM YYYY',
24 | LLL: 'D MMMM YYYY HH:mm',
25 | LLLL: 'dddd, D MMMM YYYY HH:mm'
26 | },
27 | calendar: {
28 | sameDay: '[Heddiw am] LT',
29 | nextDay: '[Yfory am] LT',
30 | nextWeek: 'dddd [am] LT',
31 | lastDay: '[Ddoe am] LT',
32 | lastWeek: 'dddd [diwethaf am] LT',
33 | sameElse: 'L'
34 | },
35 | relativeTime: {
36 | future: 'mewn %s',
37 | past: '%s yn ôl',
38 | s: 'ychydig eiliadau',
39 | m: 'munud',
40 | mm: '%d munud',
41 | h: 'awr',
42 | hh: '%d awr',
43 | d: 'diwrnod',
44 | dd: '%d diwrnod',
45 | M: 'mis',
46 | MM: '%d mis',
47 | y: 'blwyddyn',
48 | yy: '%d flynedd'
49 | },
50 | ordinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
51 | // traditional ordinal numbers above 31 are not commonly used in colloquial Welsh
52 | ordinal: function (number) {
53 | var b = number,
54 | output = '',
55 | lookup = [
56 | '', 'af', 'il', 'ydd', 'ydd', 'ed', 'ed', 'ed', 'fed', 'fed', 'fed', // 1af to 10fed
57 | 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'eg', 'fed', 'eg', 'fed' // 11eg to 20fed
58 | ];
59 | if (b > 20) {
60 | if (b === 40 || b === 50 || b === 60 || b === 80 || b === 100) {
61 | output = 'fed'; // not 30ain, 70ain or 90ain
62 | } else {
63 | output = 'ain';
64 | }
65 | } else if (b > 0) {
66 | output = lookup[b];
67 | }
68 | return number + output;
69 | },
70 | week : {
71 | dow : 1, // Monday is the first day of the week.
72 | doy : 4 // The week that contains Jan 4th is the first week of the year.
73 | }
74 | });
75 |
76 | return cy;
77 |
78 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var da = moment.defineLocale('da', {
13 | months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'),
14 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
15 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
16 | weekdaysShort : 'søn_man_tir_ons_tor_fre_lør'.split('_'),
17 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D. MMMM YYYY',
23 | LLL : 'D. MMMM YYYY HH:mm',
24 | LLLL : 'dddd [d.] D. MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay : '[I dag kl.] LT',
28 | nextDay : '[I morgen kl.] LT',
29 | nextWeek : 'dddd [kl.] LT',
30 | lastDay : '[I går kl.] LT',
31 | lastWeek : '[sidste] dddd [kl] LT',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : 'om %s',
36 | past : '%s siden',
37 | s : 'få sekunder',
38 | m : 'et minut',
39 | mm : '%d minutter',
40 | h : 'en time',
41 | hh : '%d timer',
42 | d : 'en dag',
43 | dd : '%d dage',
44 | M : 'en måned',
45 | MM : '%d måneder',
46 | y : 'et år',
47 | yy : '%d år'
48 | },
49 | ordinalParse: /\d{1,2}\./,
50 | ordinal : '%d.',
51 | week : {
52 | dow : 1, // Monday is the first day of the week.
53 | doy : 4 // The week that contains Jan 4th is the first week of the year.
54 | }
55 | });
56 |
57 | return da;
58 |
59 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/de-at.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : austrian german (de-at)
3 | //! author : lluchs : https://github.com/lluchs
4 | //! author: Menelion Elensúle: https://github.com/Oire
5 | //! author : Martin Groller : https://github.com/MadMG
6 |
7 | (function (global, factory) {
8 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
9 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
10 | factory(global.moment)
11 | }(this, function (moment) { 'use strict';
12 |
13 |
14 | function processRelativeTime(number, withoutSuffix, key, isFuture) {
15 | var format = {
16 | 'm': ['eine Minute', 'einer Minute'],
17 | 'h': ['eine Stunde', 'einer Stunde'],
18 | 'd': ['ein Tag', 'einem Tag'],
19 | 'dd': [number + ' Tage', number + ' Tagen'],
20 | 'M': ['ein Monat', 'einem Monat'],
21 | 'MM': [number + ' Monate', number + ' Monaten'],
22 | 'y': ['ein Jahr', 'einem Jahr'],
23 | 'yy': [number + ' Jahre', number + ' Jahren']
24 | };
25 | return withoutSuffix ? format[key][0] : format[key][1];
26 | }
27 |
28 | var de_at = moment.defineLocale('de-at', {
29 | months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
30 | monthsShort : 'Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
31 | weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
32 | weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
33 | weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
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: '[Heute um] LT [Uhr]',
44 | sameElse: 'L',
45 | nextDay: '[Morgen um] LT [Uhr]',
46 | nextWeek: 'dddd [um] LT [Uhr]',
47 | lastDay: '[Gestern um] LT [Uhr]',
48 | lastWeek: '[letzten] dddd [um] LT [Uhr]'
49 | },
50 | relativeTime : {
51 | future : 'in %s',
52 | past : 'vor %s',
53 | s : 'ein paar Sekunden',
54 | m : processRelativeTime,
55 | mm : '%d Minuten',
56 | h : processRelativeTime,
57 | hh : '%d Stunden',
58 | d : processRelativeTime,
59 | dd : processRelativeTime,
60 | M : processRelativeTime,
61 | MM : processRelativeTime,
62 | y : processRelativeTime,
63 | yy : processRelativeTime
64 | },
65 | ordinalParse: /\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 de_at;
74 |
75 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/de.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : german (de)
3 | //! author : lluchs : https://github.com/lluchs
4 | //! author: Menelion Elensúle: https://github.com/Oire
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | function processRelativeTime(number, withoutSuffix, key, isFuture) {
14 | var format = {
15 | 'm': ['eine Minute', 'einer Minute'],
16 | 'h': ['eine Stunde', 'einer Stunde'],
17 | 'd': ['ein Tag', 'einem Tag'],
18 | 'dd': [number + ' Tage', number + ' Tagen'],
19 | 'M': ['ein Monat', 'einem Monat'],
20 | 'MM': [number + ' Monate', number + ' Monaten'],
21 | 'y': ['ein Jahr', 'einem Jahr'],
22 | 'yy': [number + ' Jahre', number + ' Jahren']
23 | };
24 | return withoutSuffix ? format[key][0] : format[key][1];
25 | }
26 |
27 | var de = moment.defineLocale('de', {
28 | months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
29 | monthsShort : 'Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
30 | weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
31 | weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
32 | weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
33 | longDateFormat : {
34 | LT: 'HH:mm',
35 | LTS: 'HH:mm:ss',
36 | L : 'DD.MM.YYYY',
37 | LL : 'D. MMMM YYYY',
38 | LLL : 'D. MMMM YYYY HH:mm',
39 | LLLL : 'dddd, D. MMMM YYYY HH:mm'
40 | },
41 | calendar : {
42 | sameDay: '[Heute um] LT [Uhr]',
43 | sameElse: 'L',
44 | nextDay: '[Morgen um] LT [Uhr]',
45 | nextWeek: 'dddd [um] LT [Uhr]',
46 | lastDay: '[Gestern um] LT [Uhr]',
47 | lastWeek: '[letzten] dddd [um] LT [Uhr]'
48 | },
49 | relativeTime : {
50 | future : 'in %s',
51 | past : 'vor %s',
52 | s : 'ein paar Sekunden',
53 | m : processRelativeTime,
54 | mm : '%d Minuten',
55 | h : processRelativeTime,
56 | hh : '%d Stunden',
57 | d : processRelativeTime,
58 | dd : processRelativeTime,
59 | M : processRelativeTime,
60 | MM : processRelativeTime,
61 | y : processRelativeTime,
62 | yy : processRelativeTime
63 | },
64 | ordinalParse: /\d{1,2}\./,
65 | ordinal : '%d.',
66 | week : {
67 | dow : 1, // Monday is the first day of the week.
68 | doy : 4 // The week that contains Jan 4th is the first week of the year.
69 | }
70 | });
71 |
72 | return de;
73 |
74 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/en-au.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : australian english (en-au)
3 |
4 | (function (global, factory) {
5 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
6 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
7 | factory(global.moment)
8 | }(this, function (moment) { 'use strict';
9 |
10 |
11 | var en_au = moment.defineLocale('en-au', {
12 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
13 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
14 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
15 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
16 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
17 | longDateFormat : {
18 | LT : 'h:mm A',
19 | LTS : 'h:mm:ss A',
20 | L : 'DD/MM/YYYY',
21 | LL : 'D MMMM YYYY',
22 | LLL : 'D MMMM YYYY h:mm A',
23 | LLLL : 'dddd, D MMMM YYYY h:mm A'
24 | },
25 | calendar : {
26 | sameDay : '[Today at] LT',
27 | nextDay : '[Tomorrow at] LT',
28 | nextWeek : 'dddd [at] LT',
29 | lastDay : '[Yesterday at] LT',
30 | lastWeek : '[Last] dddd [at] LT',
31 | sameElse : 'L'
32 | },
33 | relativeTime : {
34 | future : 'in %s',
35 | past : '%s ago',
36 | s : 'a few seconds',
37 | m : 'a minute',
38 | mm : '%d minutes',
39 | h : 'an hour',
40 | hh : '%d hours',
41 | d : 'a day',
42 | dd : '%d days',
43 | M : 'a month',
44 | MM : '%d months',
45 | y : 'a year',
46 | yy : '%d years'
47 | },
48 | ordinalParse: /\d{1,2}(st|nd|rd|th)/,
49 | ordinal : function (number) {
50 | var b = number % 10,
51 | output = (~~(number % 100 / 10) === 1) ? 'th' :
52 | (b === 1) ? 'st' :
53 | (b === 2) ? 'nd' :
54 | (b === 3) ? 'rd' : 'th';
55 | return number + output;
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 en_au;
64 |
65 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/en-ca.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : canadian english (en-ca)
3 | //! author : Jonathan Abourbih : https://github.com/jonbca
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var en_ca = moment.defineLocale('en-ca', {
13 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
14 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
15 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
16 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
17 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
18 | longDateFormat : {
19 | LT : 'h:mm A',
20 | LTS : 'h:mm:ss A',
21 | L : 'YYYY-MM-DD',
22 | LL : 'D MMMM, YYYY',
23 | LLL : 'D MMMM, YYYY h:mm A',
24 | LLLL : 'dddd, D MMMM, YYYY h:mm A'
25 | },
26 | calendar : {
27 | sameDay : '[Today at] LT',
28 | nextDay : '[Tomorrow at] LT',
29 | nextWeek : 'dddd [at] LT',
30 | lastDay : '[Yesterday at] LT',
31 | lastWeek : '[Last] dddd [at] LT',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : 'in %s',
36 | past : '%s ago',
37 | s : 'a few seconds',
38 | m : 'a minute',
39 | mm : '%d minutes',
40 | h : 'an hour',
41 | hh : '%d hours',
42 | d : 'a day',
43 | dd : '%d days',
44 | M : 'a month',
45 | MM : '%d months',
46 | y : 'a year',
47 | yy : '%d years'
48 | },
49 | ordinalParse: /\d{1,2}(st|nd|rd|th)/,
50 | ordinal : function (number) {
51 | var b = number % 10,
52 | output = (~~(number % 100 / 10) === 1) ? 'th' :
53 | (b === 1) ? 'st' :
54 | (b === 2) ? 'nd' :
55 | (b === 3) ? 'rd' : 'th';
56 | return number + output;
57 | }
58 | });
59 |
60 | return en_ca;
61 |
62 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/en-gb.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : great britain english (en-gb)
3 | //! author : Chris Gedrim : https://github.com/chrisgedrim
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var en_gb = moment.defineLocale('en-gb', {
13 | months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
14 | monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
15 | weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
16 | weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
17 | weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd, D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay : '[Today at] LT',
28 | nextDay : '[Tomorrow at] LT',
29 | nextWeek : 'dddd [at] LT',
30 | lastDay : '[Yesterday at] LT',
31 | lastWeek : '[Last] dddd [at] LT',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : 'in %s',
36 | past : '%s ago',
37 | s : 'a few seconds',
38 | m : 'a minute',
39 | mm : '%d minutes',
40 | h : 'an hour',
41 | hh : '%d hours',
42 | d : 'a day',
43 | dd : '%d days',
44 | M : 'a month',
45 | MM : '%d months',
46 | y : 'a year',
47 | yy : '%d years'
48 | },
49 | ordinalParse: /\d{1,2}(st|nd|rd|th)/,
50 | ordinal : function (number) {
51 | var b = number % 10,
52 | output = (~~(number % 100 / 10) === 1) ? 'th' :
53 | (b === 1) ? 'st' :
54 | (b === 2) ? 'nd' :
55 | (b === 3) ? 'rd' : 'th';
56 | return number + output;
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 en_gb;
65 |
66 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/eo.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : esperanto (eo)
3 | //! author : Colin Dean : https://github.com/colindean
4 | //! komento: Mi estas malcerta se mi korekte traktis akuzativojn en tiu traduko.
5 | //! Se ne, bonvolu korekti kaj avizi min por ke mi povas lerni!
6 |
7 | (function (global, factory) {
8 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
9 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
10 | factory(global.moment)
11 | }(this, function (moment) { 'use strict';
12 |
13 |
14 | var eo = moment.defineLocale('eo', {
15 | months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),
16 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'),
17 | weekdays : 'Dimanĉo_Lundo_Mardo_Merkredo_Ĵaŭdo_Vendredo_Sabato'.split('_'),
18 | weekdaysShort : 'Dim_Lun_Mard_Merk_Ĵaŭ_Ven_Sab'.split('_'),
19 | weekdaysMin : 'Di_Lu_Ma_Me_Ĵa_Ve_Sa'.split('_'),
20 | longDateFormat : {
21 | LT : 'HH:mm',
22 | LTS : 'HH:mm:ss',
23 | L : 'YYYY-MM-DD',
24 | LL : 'D[-an de] MMMM, YYYY',
25 | LLL : 'D[-an de] MMMM, YYYY HH:mm',
26 | LLLL : 'dddd, [la] D[-an de] MMMM, YYYY HH:mm'
27 | },
28 | meridiemParse: /[ap]\.t\.m/i,
29 | isPM: function (input) {
30 | return input.charAt(0).toLowerCase() === 'p';
31 | },
32 | meridiem : function (hours, minutes, isLower) {
33 | if (hours > 11) {
34 | return isLower ? 'p.t.m.' : 'P.T.M.';
35 | } else {
36 | return isLower ? 'a.t.m.' : 'A.T.M.';
37 | }
38 | },
39 | calendar : {
40 | sameDay : '[Hodiaŭ je] LT',
41 | nextDay : '[Morgaŭ je] LT',
42 | nextWeek : 'dddd [je] LT',
43 | lastDay : '[Hieraŭ je] LT',
44 | lastWeek : '[pasinta] dddd [je] LT',
45 | sameElse : 'L'
46 | },
47 | relativeTime : {
48 | future : 'je %s',
49 | past : 'antaŭ %s',
50 | s : 'sekundoj',
51 | m : 'minuto',
52 | mm : '%d minutoj',
53 | h : 'horo',
54 | hh : '%d horoj',
55 | d : 'tago',//ne 'diurno', ĉar estas uzita por proksimumo
56 | dd : '%d tagoj',
57 | M : 'monato',
58 | MM : '%d monatoj',
59 | y : 'jaro',
60 | yy : '%d jaroj'
61 | },
62 | ordinalParse: /\d{1,2}a/,
63 | ordinal : '%da',
64 | week : {
65 | dow : 1, // Monday is the first day of the week.
66 | doy : 7 // The week that contains Jan 1st is the first week of the year.
67 | }
68 | });
69 |
70 | return eo;
71 |
72 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/es.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : spanish (es)
3 | //! author : Julio Napurí : https://github.com/julionc
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var monthsShortDot = 'Ene._Feb._Mar._Abr._May._Jun._Jul._Ago._Sep._Oct._Nov._Dic.'.split('_'),
13 | monthsShort = 'Ene_Feb_Mar_Abr_May_Jun_Jul_Ago_Sep_Oct_Nov_Dic'.split('_');
14 |
15 | var es = moment.defineLocale('es', {
16 | months : 'Enero_Febrero_Marzo_Abril_Mayo_Junio_Julio_Agosto_Septiembre_Octubre_Noviembre_Diciembre'.split('_'),
17 | monthsShort : function (m, format) {
18 | if (/-MMM-/.test(format)) {
19 | return monthsShort[m.month()];
20 | } else {
21 | return monthsShortDot[m.month()];
22 | }
23 | },
24 | weekdays : 'Domingo_Lunes_Martes_Miércoles_Jueves_Viernes_Sábado'.split('_'),
25 | weekdaysShort : 'Dom._Lun._Mar._Mié._Jue._Vie._Sáb.'.split('_'),
26 | weekdaysMin : 'Do_Lu_Ma_Mi_Ju_Vi_Sá'.split('_'),
27 | longDateFormat : {
28 | LT : 'H:mm',
29 | LTS : 'H:mm:ss',
30 | L : 'DD/MM/YYYY',
31 | LL : 'D [de] MMMM [de] YYYY',
32 | LLL : 'D [de] MMMM [de] YYYY H:mm',
33 | LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'
34 | },
35 | calendar : {
36 | sameDay : function () {
37 | return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
38 | },
39 | nextDay : function () {
40 | return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
41 | },
42 | nextWeek : function () {
43 | return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
44 | },
45 | lastDay : function () {
46 | return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
47 | },
48 | lastWeek : function () {
49 | return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
50 | },
51 | sameElse : 'L'
52 | },
53 | relativeTime : {
54 | future : 'en %s',
55 | past : 'hace %s',
56 | s : 'unos segundos',
57 | m : 'un minuto',
58 | mm : '%d minutos',
59 | h : 'una hora',
60 | hh : '%d horas',
61 | d : 'un día',
62 | dd : '%d días',
63 | M : 'un mes',
64 | MM : '%d meses',
65 | y : 'un año',
66 | yy : '%d años'
67 | },
68 | ordinalParse : /\d{1,2}º/,
69 | ordinal : '%dº',
70 | week : {
71 | dow : 1, // Monday is the first day of the week.
72 | doy : 4 // The week that contains Jan 4th is the first week of the year.
73 | }
74 | });
75 |
76 | return es;
77 |
78 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/et.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : estonian (et)
3 | //! author : Henry Kehlmann : https://github.com/madhenry
4 | //! improvements : Illimar Tambek : https://github.com/ragulka
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | function processRelativeTime(number, withoutSuffix, key, isFuture) {
14 | var format = {
15 | 's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
16 | 'm' : ['ühe minuti', 'üks minut'],
17 | 'mm': [number + ' minuti', number + ' minutit'],
18 | 'h' : ['ühe tunni', 'tund aega', 'üks tund'],
19 | 'hh': [number + ' tunni', number + ' tundi'],
20 | 'd' : ['ühe päeva', 'üks päev'],
21 | 'M' : ['kuu aja', 'kuu aega', 'üks kuu'],
22 | 'MM': [number + ' kuu', number + ' kuud'],
23 | 'y' : ['ühe aasta', 'aasta', 'üks aasta'],
24 | 'yy': [number + ' aasta', number + ' aastat']
25 | };
26 | if (withoutSuffix) {
27 | return format[key][2] ? format[key][2] : format[key][1];
28 | }
29 | return isFuture ? format[key][0] : format[key][1];
30 | }
31 |
32 | var et = moment.defineLocale('et', {
33 | months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'),
34 | monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),
35 | weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'),
36 | weekdaysShort : 'P_E_T_K_N_R_L'.split('_'),
37 | weekdaysMin : 'P_E_T_K_N_R_L'.split('_'),
38 | longDateFormat : {
39 | LT : 'H:mm',
40 | LTS : 'H:mm:ss',
41 | L : 'DD.MM.YYYY',
42 | LL : 'D. MMMM YYYY',
43 | LLL : 'D. MMMM YYYY H:mm',
44 | LLLL : 'dddd, D. MMMM YYYY H:mm'
45 | },
46 | calendar : {
47 | sameDay : '[Täna,] LT',
48 | nextDay : '[Homme,] LT',
49 | nextWeek : '[Järgmine] dddd LT',
50 | lastDay : '[Eile,] LT',
51 | lastWeek : '[Eelmine] dddd LT',
52 | sameElse : 'L'
53 | },
54 | relativeTime : {
55 | future : '%s pärast',
56 | past : '%s tagasi',
57 | s : processRelativeTime,
58 | m : processRelativeTime,
59 | mm : processRelativeTime,
60 | h : processRelativeTime,
61 | hh : processRelativeTime,
62 | d : processRelativeTime,
63 | dd : '%d päeva',
64 | M : processRelativeTime,
65 | MM : processRelativeTime,
66 | y : processRelativeTime,
67 | yy : processRelativeTime
68 | },
69 | ordinalParse: /\d{1,2}\./,
70 | ordinal : '%d.',
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 et;
78 |
79 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/eu.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : euskara (eu)
3 | //! author : Eneko Illarramendi : https://github.com/eillarra
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var eu = moment.defineLocale('eu', {
13 | months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
14 | monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
15 | weekdays : 'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split('_'),
16 | weekdaysShort : 'ig._al._ar._az._og._ol._lr.'.split('_'),
17 | weekdaysMin : 'ig_al_ar_az_og_ol_lr'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'YYYY-MM-DD',
22 | LL : 'YYYY[ko] MMMM[ren] D[a]',
23 | LLL : 'YYYY[ko] MMMM[ren] D[a] HH:mm',
24 | LLLL : 'dddd, YYYY[ko] MMMM[ren] D[a] HH:mm',
25 | l : 'YYYY-M-D',
26 | ll : 'YYYY[ko] MMM D[a]',
27 | lll : 'YYYY[ko] MMM D[a] HH:mm',
28 | llll : 'ddd, YYYY[ko] MMM D[a] HH:mm'
29 | },
30 | calendar : {
31 | sameDay : '[gaur] LT[etan]',
32 | nextDay : '[bihar] LT[etan]',
33 | nextWeek : 'dddd LT[etan]',
34 | lastDay : '[atzo] LT[etan]',
35 | lastWeek : '[aurreko] dddd LT[etan]',
36 | sameElse : 'L'
37 | },
38 | relativeTime : {
39 | future : '%s barru',
40 | past : 'duela %s',
41 | s : 'segundo batzuk',
42 | m : 'minutu bat',
43 | mm : '%d minutu',
44 | h : 'ordu bat',
45 | hh : '%d ordu',
46 | d : 'egun bat',
47 | dd : '%d egun',
48 | M : 'hilabete bat',
49 | MM : '%d hilabete',
50 | y : 'urte bat',
51 | yy : '%d urte'
52 | },
53 | ordinalParse: /\d{1,2}\./,
54 | ordinal : '%d.',
55 | week : {
56 | dow : 1, // Monday is the first day of the week.
57 | doy : 7 // The week that contains Jan 1st is the first week of the year.
58 | }
59 | });
60 |
61 | return eu;
62 |
63 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/fa.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Persian (fa)
3 | //! author : Ebrahim Byagowi : https://github.com/ebraminio
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var symbolMap = {
13 | '1': '۱',
14 | '2': '۲',
15 | '3': '۳',
16 | '4': '۴',
17 | '5': '۵',
18 | '6': '۶',
19 | '7': '۷',
20 | '8': '۸',
21 | '9': '۹',
22 | '0': '۰'
23 | }, numberMap = {
24 | '۱': '1',
25 | '۲': '2',
26 | '۳': '3',
27 | '۴': '4',
28 | '۵': '5',
29 | '۶': '6',
30 | '۷': '7',
31 | '۸': '8',
32 | '۹': '9',
33 | '۰': '0'
34 | };
35 |
36 | var fa = moment.defineLocale('fa', {
37 | months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
38 | monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
39 | weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
40 | weekdaysShort : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
41 | weekdaysMin : 'ی_د_س_چ_پ_ج_ش'.split('_'),
42 | longDateFormat : {
43 | LT : 'HH:mm',
44 | LTS : 'HH:mm:ss',
45 | L : 'DD/MM/YYYY',
46 | LL : 'D MMMM YYYY',
47 | LLL : 'D MMMM YYYY HH:mm',
48 | LLLL : 'dddd, D MMMM YYYY HH:mm'
49 | },
50 | meridiemParse: /قبل از ظهر|بعد از ظهر/,
51 | isPM: function (input) {
52 | return /بعد از ظهر/.test(input);
53 | },
54 | meridiem : function (hour, minute, isLower) {
55 | if (hour < 12) {
56 | return 'قبل از ظهر';
57 | } else {
58 | return 'بعد از ظهر';
59 | }
60 | },
61 | calendar : {
62 | sameDay : '[امروز ساعت] LT',
63 | nextDay : '[فردا ساعت] LT',
64 | nextWeek : 'dddd [ساعت] LT',
65 | lastDay : '[دیروز ساعت] LT',
66 | lastWeek : 'dddd [پیش] [ساعت] LT',
67 | sameElse : 'L'
68 | },
69 | relativeTime : {
70 | future : 'در %s',
71 | past : '%s پیش',
72 | s : 'چندین ثانیه',
73 | m : 'یک دقیقه',
74 | mm : '%d دقیقه',
75 | h : 'یک ساعت',
76 | hh : '%d ساعت',
77 | d : 'یک روز',
78 | dd : '%d روز',
79 | M : 'یک ماه',
80 | MM : '%d ماه',
81 | y : 'یک سال',
82 | yy : '%d سال'
83 | },
84 | preparse: function (string) {
85 | return string.replace(/[۰-۹]/g, function (match) {
86 | return numberMap[match];
87 | }).replace(/،/g, ',');
88 | },
89 | postformat: function (string) {
90 | return string.replace(/\d/g, function (match) {
91 | return symbolMap[match];
92 | }).replace(/,/g, '،');
93 | },
94 | ordinalParse: /\d{1,2}م/,
95 | ordinal : '%dم',
96 | week : {
97 | dow : 6, // Saturday is the first day of the week.
98 | doy : 12 // The week that contains Jan 1st is the first week of the year.
99 | }
100 | });
101 |
102 | return fa;
103 |
104 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/fo.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : faroese (fo)
3 | //! author : Ragnar Johannesen : https://github.com/ragnar123
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var fo = moment.defineLocale('fo', {
13 | months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
14 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
15 | weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
16 | weekdaysShort : 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
17 | weekdaysMin : 'su_má_tý_mi_hó_fr_le'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D. MMMM, YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay : '[Í dag kl.] LT',
28 | nextDay : '[Í morgin kl.] LT',
29 | nextWeek : 'dddd [kl.] LT',
30 | lastDay : '[Í gjár kl.] LT',
31 | lastWeek : '[síðstu] dddd [kl] LT',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : 'um %s',
36 | past : '%s síðani',
37 | s : 'fá sekund',
38 | m : 'ein minutt',
39 | mm : '%d minuttir',
40 | h : 'ein tími',
41 | hh : '%d tímar',
42 | d : 'ein dagur',
43 | dd : '%d dagar',
44 | M : 'ein mánaði',
45 | MM : '%d mánaðir',
46 | y : 'eitt ár',
47 | yy : '%d ár'
48 | },
49 | ordinalParse: /\d{1,2}\./,
50 | ordinal : '%d.',
51 | week : {
52 | dow : 1, // Monday is the first day of the week.
53 | doy : 4 // The week that contains Jan 4th is the first week of the year.
54 | }
55 | });
56 |
57 | return fo;
58 |
59 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/fr-ca.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : canadian french (fr-ca)
3 | //! author : Jonathan Abourbih : https://github.com/jonbca
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var fr_ca = moment.defineLocale('fr-ca', {
13 | months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
14 | monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
15 | weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
16 | weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
17 | weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'YYYY-MM-DD',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Aujourd\'hui à] LT',
28 | nextDay: '[Demain à] LT',
29 | nextWeek: 'dddd [à] LT',
30 | lastDay: '[Hier à] LT',
31 | lastWeek: 'dddd [dernier à] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'dans %s',
36 | past : 'il y a %s',
37 | s : 'quelques secondes',
38 | m : 'une minute',
39 | mm : '%d minutes',
40 | h : 'une heure',
41 | hh : '%d heures',
42 | d : 'un jour',
43 | dd : '%d jours',
44 | M : 'un mois',
45 | MM : '%d mois',
46 | y : 'un an',
47 | yy : '%d ans'
48 | },
49 | ordinalParse: /\d{1,2}(er|e)/,
50 | ordinal : function (number) {
51 | return number + (number === 1 ? 'er' : 'e');
52 | }
53 | });
54 |
55 | return fr_ca;
56 |
57 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/fr.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : french (fr)
3 | //! author : John Fischer : https://github.com/jfroffice
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var fr = moment.defineLocale('fr', {
13 | months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
14 | monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
15 | weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
16 | weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
17 | weekdaysMin : 'Di_Lu_Ma_Me_Je_Ve_Sa'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Aujourd\'hui à] LT',
28 | nextDay: '[Demain à] LT',
29 | nextWeek: 'dddd [à] LT',
30 | lastDay: '[Hier à] LT',
31 | lastWeek: 'dddd [dernier à] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'dans %s',
36 | past : 'il y a %s',
37 | s : 'quelques secondes',
38 | m : 'une minute',
39 | mm : '%d minutes',
40 | h : 'une heure',
41 | hh : '%d heures',
42 | d : 'un jour',
43 | dd : '%d jours',
44 | M : 'un mois',
45 | MM : '%d mois',
46 | y : 'un an',
47 | yy : '%d ans'
48 | },
49 | ordinalParse: /\d{1,2}(er|)/,
50 | ordinal : function (number) {
51 | return number + (number === 1 ? 'er' : '');
52 | },
53 | week : {
54 | dow : 1, // Monday is the first day of the week.
55 | doy : 4 // The week that contains Jan 4th is the first week of the year.
56 | }
57 | });
58 |
59 | return fr;
60 |
61 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/fy.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : frisian (fy)
3 | //! author : Robin van der Vliet : https://github.com/robin0van0der0v
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
13 | monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
14 |
15 | var fy = moment.defineLocale('fy', {
16 | months : 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),
17 | monthsShort : function (m, format) {
18 | if (/-MMM-/.test(format)) {
19 | return monthsShortWithoutDots[m.month()];
20 | } else {
21 | return monthsShortWithDots[m.month()];
22 | }
23 | },
24 | weekdays : 'snein_moandei_tiisdei_woansdei_tongersdei_freed_sneon'.split('_'),
25 | weekdaysShort : 'si._mo._ti._wo._to._fr._so.'.split('_'),
26 | weekdaysMin : 'Si_Mo_Ti_Wo_To_Fr_So'.split('_'),
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 HH:mm',
33 | LLLL : 'dddd D MMMM YYYY HH:mm'
34 | },
35 | calendar : {
36 | sameDay: '[hjoed om] LT',
37 | nextDay: '[moarn om] LT',
38 | nextWeek: 'dddd [om] LT',
39 | lastDay: '[juster om] LT',
40 | lastWeek: '[ôfrûne] dddd [om] LT',
41 | sameElse: 'L'
42 | },
43 | relativeTime : {
44 | future : 'oer %s',
45 | past : '%s lyn',
46 | s : 'in pear sekonden',
47 | m : 'ien minút',
48 | mm : '%d minuten',
49 | h : 'ien oere',
50 | hh : '%d oeren',
51 | d : 'ien dei',
52 | dd : '%d dagen',
53 | M : 'ien moanne',
54 | MM : '%d moannen',
55 | y : 'ien jier',
56 | yy : '%d jierren'
57 | },
58 | ordinalParse: /\d{1,2}(ste|de)/,
59 | ordinal : function (number) {
60 | return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
61 | },
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 fy;
69 |
70 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/gl.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : galician (gl)
3 | //! author : Juan G. Hurtado : https://github.com/juanghurtado
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var gl = moment.defineLocale('gl', {
13 | months : 'Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro'.split('_'),
14 | monthsShort : 'Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.'.split('_'),
15 | weekdays : 'Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado'.split('_'),
16 | weekdaysShort : 'Dom._Lun._Mar._Mér._Xov._Ven._Sáb.'.split('_'),
17 | weekdaysMin : 'Do_Lu_Ma_Mé_Xo_Ve_Sá'.split('_'),
18 | longDateFormat : {
19 | LT : 'H:mm',
20 | LTS : 'H:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY H:mm',
24 | LLLL : 'dddd D MMMM YYYY H:mm'
25 | },
26 | calendar : {
27 | sameDay : function () {
28 | return '[hoxe ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
29 | },
30 | nextDay : function () {
31 | return '[mañá ' + ((this.hours() !== 1) ? 'ás' : 'á') + '] LT';
32 | },
33 | nextWeek : function () {
34 | return 'dddd [' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
35 | },
36 | lastDay : function () {
37 | return '[onte ' + ((this.hours() !== 1) ? 'á' : 'a') + '] LT';
38 | },
39 | lastWeek : function () {
40 | return '[o] dddd [pasado ' + ((this.hours() !== 1) ? 'ás' : 'a') + '] LT';
41 | },
42 | sameElse : 'L'
43 | },
44 | relativeTime : {
45 | future : function (str) {
46 | if (str === 'uns segundos') {
47 | return 'nuns segundos';
48 | }
49 | return 'en ' + str;
50 | },
51 | past : 'hai %s',
52 | s : 'uns segundos',
53 | m : 'un minuto',
54 | mm : '%d minutos',
55 | h : 'unha hora',
56 | hh : '%d horas',
57 | d : 'un día',
58 | dd : '%d días',
59 | M : 'un mes',
60 | MM : '%d meses',
61 | y : 'un ano',
62 | yy : '%d anos'
63 | },
64 | ordinalParse : /\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 1st is the first week of the year.
69 | }
70 | });
71 |
72 | return gl;
73 |
74 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/he.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Hebrew (he)
3 | //! author : Tomer Cohen : https://github.com/tomer
4 | //! author : Moshe Simantov : https://github.com/DevelopmentIL
5 | //! author : Tal Ater : https://github.com/TalAter
6 |
7 | (function (global, factory) {
8 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
9 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
10 | factory(global.moment)
11 | }(this, function (moment) { 'use strict';
12 |
13 |
14 | var he = moment.defineLocale('he', {
15 | months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
16 | monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
17 | weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
18 | weekdaysShort : 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
19 | weekdaysMin : 'א_ב_ג_ד_ה_ו_ש'.split('_'),
20 | longDateFormat : {
21 | LT : 'HH:mm',
22 | LTS : 'HH:mm:ss',
23 | L : 'DD/MM/YYYY',
24 | LL : 'D [ב]MMMM YYYY',
25 | LLL : 'D [ב]MMMM YYYY HH:mm',
26 | LLLL : 'dddd, D [ב]MMMM YYYY HH:mm',
27 | l : 'D/M/YYYY',
28 | ll : 'D MMM YYYY',
29 | lll : 'D MMM YYYY HH:mm',
30 | llll : 'ddd, D MMM 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 | m : 'דקה',
45 | mm : '%d דקות',
46 | h : 'שעה',
47 | hh : function (number) {
48 | if (number === 2) {
49 | return 'שעתיים';
50 | }
51 | return number + ' שעות';
52 | },
53 | d : 'יום',
54 | dd : function (number) {
55 | if (number === 2) {
56 | return 'יומיים';
57 | }
58 | return number + ' ימים';
59 | },
60 | M : 'חודש',
61 | MM : function (number) {
62 | if (number === 2) {
63 | return 'חודשיים';
64 | }
65 | return number + ' חודשים';
66 | },
67 | y : 'שנה',
68 | yy : function (number) {
69 | if (number === 2) {
70 | return 'שנתיים';
71 | } else if (number % 10 === 0 && number !== 10) {
72 | return number + ' שנה';
73 | }
74 | return number + ' שנים';
75 | }
76 | }
77 | });
78 |
79 | return he;
80 |
81 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/id.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Bahasa Indonesia (id)
3 | //! author : Mohammad Satrio Utomo : https://github.com/tyok
4 | //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var id = moment.defineLocale('id', {
14 | months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'),
15 | monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des'.split('_'),
16 | weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),
17 | weekdaysShort : 'Min_Sen_Sel_Rab_Kam_Jum_Sab'.split('_'),
18 | weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sb'.split('_'),
19 | longDateFormat : {
20 | LT : 'HH.mm',
21 | LTS : 'HH.mm.ss',
22 | L : 'DD/MM/YYYY',
23 | LL : 'D MMMM YYYY',
24 | LLL : 'D MMMM YYYY [pukul] HH.mm',
25 | LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
26 | },
27 | meridiemParse: /pagi|siang|sore|malam/,
28 | meridiemHour : function (hour, meridiem) {
29 | if (hour === 12) {
30 | hour = 0;
31 | }
32 | if (meridiem === 'pagi') {
33 | return hour;
34 | } else if (meridiem === 'siang') {
35 | return hour >= 11 ? hour : hour + 12;
36 | } else if (meridiem === 'sore' || meridiem === 'malam') {
37 | return hour + 12;
38 | }
39 | },
40 | meridiem : function (hours, minutes, isLower) {
41 | if (hours < 11) {
42 | return 'pagi';
43 | } else if (hours < 15) {
44 | return 'siang';
45 | } else if (hours < 19) {
46 | return 'sore';
47 | } else {
48 | return 'malam';
49 | }
50 | },
51 | calendar : {
52 | sameDay : '[Hari ini pukul] LT',
53 | nextDay : '[Besok pukul] LT',
54 | nextWeek : 'dddd [pukul] LT',
55 | lastDay : '[Kemarin pukul] LT',
56 | lastWeek : 'dddd [lalu pukul] LT',
57 | sameElse : 'L'
58 | },
59 | relativeTime : {
60 | future : 'dalam %s',
61 | past : '%s yang lalu',
62 | s : 'beberapa detik',
63 | m : 'semenit',
64 | mm : '%d menit',
65 | h : 'sejam',
66 | hh : '%d jam',
67 | d : 'sehari',
68 | dd : '%d hari',
69 | M : 'sebulan',
70 | MM : '%d bulan',
71 | y : 'setahun',
72 | yy : '%d tahun'
73 | },
74 | week : {
75 | dow : 1, // Monday is the first day of the week.
76 | doy : 7 // The week that contains Jan 1st is the first week of the year.
77 | }
78 | });
79 |
80 | return id;
81 |
82 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/it.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : italian (it)
3 | //! author : Lorenzo : https://github.com/aliem
4 | //! author: Mattia Larentis: https://github.com/nostalgiaz
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var it = moment.defineLocale('it', {
14 | months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),
15 | monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
16 | weekdays : 'Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato'.split('_'),
17 | weekdaysShort : 'Dom_Lun_Mar_Mer_Gio_Ven_Sab'.split('_'),
18 | weekdaysMin : 'D_L_Ma_Me_G_V_S'.split('_'),
19 | longDateFormat : {
20 | LT : 'HH:mm',
21 | LTS : 'HH:mm:ss',
22 | L : 'DD/MM/YYYY',
23 | LL : 'D MMMM YYYY',
24 | LLL : 'D MMMM YYYY HH:mm',
25 | LLLL : 'dddd, D MMMM YYYY HH:mm'
26 | },
27 | calendar : {
28 | sameDay: '[Oggi alle] LT',
29 | nextDay: '[Domani alle] LT',
30 | nextWeek: 'dddd [alle] LT',
31 | lastDay: '[Ieri alle] LT',
32 | lastWeek: function () {
33 | switch (this.day()) {
34 | case 0:
35 | return '[la scorsa] dddd [alle] LT';
36 | default:
37 | return '[lo scorso] dddd [alle] LT';
38 | }
39 | },
40 | sameElse: 'L'
41 | },
42 | relativeTime : {
43 | future : function (s) {
44 | return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s;
45 | },
46 | past : '%s fa',
47 | s : 'alcuni secondi',
48 | m : 'un minuto',
49 | mm : '%d minuti',
50 | h : 'un\'ora',
51 | hh : '%d ore',
52 | d : 'un giorno',
53 | dd : '%d giorni',
54 | M : 'un mese',
55 | MM : '%d mesi',
56 | y : 'un anno',
57 | yy : '%d anni'
58 | },
59 | ordinalParse : /\d{1,2}º/,
60 | ordinal: '%dº',
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 it;
68 |
69 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ja.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : japanese (ja)
3 | //! author : LI Long : https://github.com/baryon
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var ja = moment.defineLocale('ja', {
13 | months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
14 | monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
15 | weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
16 | weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
17 | weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
18 | longDateFormat : {
19 | LT : 'Ah時m分',
20 | LTS : 'Ah時m分s秒',
21 | L : 'YYYY/MM/DD',
22 | LL : 'YYYY年M月D日',
23 | LLL : 'YYYY年M月D日Ah時m分',
24 | LLLL : 'YYYY年M月D日Ah時m分 dddd'
25 | },
26 | meridiemParse: /午前|午後/i,
27 | isPM : function (input) {
28 | return input === '午後';
29 | },
30 | meridiem : function (hour, minute, isLower) {
31 | if (hour < 12) {
32 | return '午前';
33 | } else {
34 | return '午後';
35 | }
36 | },
37 | calendar : {
38 | sameDay : '[今日] LT',
39 | nextDay : '[明日] LT',
40 | nextWeek : '[来週]dddd LT',
41 | lastDay : '[昨日] LT',
42 | lastWeek : '[前週]dddd LT',
43 | sameElse : 'L'
44 | },
45 | relativeTime : {
46 | future : '%s後',
47 | past : '%s前',
48 | s : '数秒',
49 | m : '1分',
50 | mm : '%d分',
51 | h : '1時間',
52 | hh : '%d時間',
53 | d : '1日',
54 | dd : '%d日',
55 | M : '1ヶ月',
56 | MM : '%dヶ月',
57 | y : '1年',
58 | yy : '%d年'
59 | }
60 | });
61 |
62 | return ja;
63 |
64 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/jv.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Boso Jowo (jv)
3 | //! author : Rony Lantip : https://github.com/lantip
4 | //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var jv = moment.defineLocale('jv', {
14 | months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),
15 | monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
16 | weekdays : 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
17 | weekdaysShort : 'Min_Sen_Sel_Reb_Kem_Jem_Sep'.split('_'),
18 | weekdaysMin : 'Mg_Sn_Sl_Rb_Km_Jm_Sp'.split('_'),
19 | longDateFormat : {
20 | LT : 'HH.mm',
21 | LTS : 'HH.mm.ss',
22 | L : 'DD/MM/YYYY',
23 | LL : 'D MMMM YYYY',
24 | LLL : 'D MMMM YYYY [pukul] HH.mm',
25 | LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
26 | },
27 | meridiemParse: /enjing|siyang|sonten|ndalu/,
28 | meridiemHour : function (hour, meridiem) {
29 | if (hour === 12) {
30 | hour = 0;
31 | }
32 | if (meridiem === 'enjing') {
33 | return hour;
34 | } else if (meridiem === 'siyang') {
35 | return hour >= 11 ? hour : hour + 12;
36 | } else if (meridiem === 'sonten' || meridiem === 'ndalu') {
37 | return hour + 12;
38 | }
39 | },
40 | meridiem : function (hours, minutes, isLower) {
41 | if (hours < 11) {
42 | return 'enjing';
43 | } else if (hours < 15) {
44 | return 'siyang';
45 | } else if (hours < 19) {
46 | return 'sonten';
47 | } else {
48 | return 'ndalu';
49 | }
50 | },
51 | calendar : {
52 | sameDay : '[Dinten puniko pukul] LT',
53 | nextDay : '[Mbenjang pukul] LT',
54 | nextWeek : 'dddd [pukul] LT',
55 | lastDay : '[Kala wingi pukul] LT',
56 | lastWeek : 'dddd [kepengker pukul] LT',
57 | sameElse : 'L'
58 | },
59 | relativeTime : {
60 | future : 'wonten ing %s',
61 | past : '%s ingkang kepengker',
62 | s : 'sawetawis detik',
63 | m : 'setunggal menit',
64 | mm : '%d menit',
65 | h : 'setunggal jam',
66 | hh : '%d jam',
67 | d : 'sedinten',
68 | dd : '%d dinten',
69 | M : 'sewulan',
70 | MM : '%d wulan',
71 | y : 'setaun',
72 | yy : '%d taun'
73 | },
74 | week : {
75 | dow : 1, // Monday is the first day of the week.
76 | doy : 7 // The week that contains Jan 1st is the first week of the year.
77 | }
78 | });
79 |
80 | return jv;
81 |
82 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/km.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : khmer (km)
3 | //! author : Kruy Vanna : https://github.com/kruyvanna
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var km = moment.defineLocale('km', {
13 | months: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
14 | monthsShort: 'មករា_កុម្ភៈ_មិនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
15 | weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
16 | weekdaysShort: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
17 | weekdaysMin: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
18 | longDateFormat: {
19 | LT: 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L: 'DD/MM/YYYY',
22 | LL: 'D MMMM YYYY',
23 | LLL: 'D MMMM YYYY HH:mm',
24 | LLLL: 'dddd, D MMMM YYYY HH:mm'
25 | },
26 | calendar: {
27 | sameDay: '[ថ្ងៃនៈ ម៉ោង] LT',
28 | nextDay: '[ស្អែក ម៉ោង] LT',
29 | nextWeek: 'dddd [ម៉ោង] LT',
30 | lastDay: '[ម្សិលមិញ ម៉ោង] LT',
31 | lastWeek: 'dddd [សប្តាហ៍មុន] [ម៉ោង] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime: {
35 | future: '%sទៀត',
36 | past: '%sមុន',
37 | s: 'ប៉ុន្មានវិនាទី',
38 | m: 'មួយនាទី',
39 | mm: '%d នាទី',
40 | h: 'មួយម៉ោង',
41 | hh: '%d ម៉ោង',
42 | d: 'មួយថ្ងៃ',
43 | dd: '%d ថ្ងៃ',
44 | M: 'មួយខែ',
45 | MM: '%d ខែ',
46 | y: 'មួយឆ្នាំ',
47 | yy: '%d ឆ្នាំ'
48 | },
49 | week: {
50 | dow: 1, // Monday is the first day of the week.
51 | doy: 4 // The week that contains Jan 4th is the first week of the year.
52 | }
53 | });
54 |
55 | return km;
56 |
57 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ko.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : korean (ko)
3 | //!
4 | //! authors
5 | //!
6 | //! - Kyungwook, Park : https://github.com/kyungw00k
7 | //! - Jeeeyul Lee
8 |
9 | (function (global, factory) {
10 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
11 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
12 | factory(global.moment)
13 | }(this, function (moment) { 'use strict';
14 |
15 |
16 | var ko = moment.defineLocale('ko', {
17 | months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
18 | monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
19 | weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
20 | weekdaysShort : '일_월_화_수_목_금_토'.split('_'),
21 | weekdaysMin : '일_월_화_수_목_금_토'.split('_'),
22 | longDateFormat : {
23 | LT : 'A h시 m분',
24 | LTS : 'A h시 m분 s초',
25 | L : 'YYYY.MM.DD',
26 | LL : 'YYYY년 MMMM D일',
27 | LLL : 'YYYY년 MMMM D일 A h시 m분',
28 | LLLL : 'YYYY년 MMMM D일 dddd A h시 m분'
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 | ordinalParse : /\d{1,2}일/,
55 | ordinal : '%d일',
56 | meridiemParse : /오전|오후/,
57 | isPM : function (token) {
58 | return token === '오후';
59 | },
60 | meridiem : function (hour, minute, isUpper) {
61 | return hour < 12 ? '오전' : '오후';
62 | }
63 | });
64 |
65 | return ko;
66 |
67 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/mk.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : macedonian (mk)
3 | //! author : Borislav Mickov : https://github.com/B0k0
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var mk = moment.defineLocale('mk', {
13 | months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'),
14 | monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),
15 | weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'),
16 | weekdaysShort : 'нед_пон_вто_сре_чет_пет_саб'.split('_'),
17 | weekdaysMin : 'нe_пo_вт_ср_че_пе_сa'.split('_'),
18 | longDateFormat : {
19 | LT : 'H:mm',
20 | LTS : 'H:mm:ss',
21 | L : 'D.MM.YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY H:mm',
24 | LLLL : 'dddd, D MMMM YYYY H:mm'
25 | },
26 | calendar : {
27 | sameDay : '[Денес во] LT',
28 | nextDay : '[Утре во] LT',
29 | nextWeek : 'dddd [во] LT',
30 | lastDay : '[Вчера во] LT',
31 | lastWeek : function () {
32 | switch (this.day()) {
33 | case 0:
34 | case 3:
35 | case 6:
36 | return '[Во изминатата] dddd [во] LT';
37 | case 1:
38 | case 2:
39 | case 4:
40 | case 5:
41 | return '[Во изминатиот] dddd [во] LT';
42 | }
43 | },
44 | sameElse : 'L'
45 | },
46 | relativeTime : {
47 | future : 'после %s',
48 | past : 'пред %s',
49 | s : 'неколку секунди',
50 | m : 'минута',
51 | mm : '%d минути',
52 | h : 'час',
53 | hh : '%d часа',
54 | d : 'ден',
55 | dd : '%d дена',
56 | M : 'месец',
57 | MM : '%d месеци',
58 | y : 'година',
59 | yy : '%d години'
60 | },
61 | ordinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
62 | ordinal : function (number) {
63 | var lastDigit = number % 10,
64 | last2Digits = number % 100;
65 | if (number === 0) {
66 | return number + '-ев';
67 | } else if (last2Digits === 0) {
68 | return number + '-ен';
69 | } else if (last2Digits > 10 && last2Digits < 20) {
70 | return number + '-ти';
71 | } else if (lastDigit === 1) {
72 | return number + '-ви';
73 | } else if (lastDigit === 2) {
74 | return number + '-ри';
75 | } else if (lastDigit === 7 || lastDigit === 8) {
76 | return number + '-ми';
77 | } else {
78 | return number + '-ти';
79 | }
80 | },
81 | week : {
82 | dow : 1, // Monday is the first day of the week.
83 | doy : 7 // The week that contains Jan 1st is the first week of the year.
84 | }
85 | });
86 |
87 | return mk;
88 |
89 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ml.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : malayalam (ml)
3 | //! author : Floyd Pink : https://github.com/floydpink
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var ml = moment.defineLocale('ml', {
13 | months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'),
14 | monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'),
15 | weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split('_'),
16 | weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
17 | weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
18 | longDateFormat : {
19 | LT : 'A h:mm -നു',
20 | LTS : 'A h:mm:ss -നു',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY, A h:mm -നു',
24 | LLLL : 'dddd, D MMMM YYYY, A h:mm -നു'
25 | },
26 | calendar : {
27 | sameDay : '[ഇന്ന്] LT',
28 | nextDay : '[നാളെ] LT',
29 | nextWeek : 'dddd, LT',
30 | lastDay : '[ഇന്നലെ] LT',
31 | lastWeek : '[കഴിഞ്ഞ] dddd, LT',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : '%s കഴിഞ്ഞ്',
36 | past : '%s മുൻപ്',
37 | s : 'അൽപ നിമിഷങ്ങൾ',
38 | m : 'ഒരു മിനിറ്റ്',
39 | mm : '%d മിനിറ്റ്',
40 | h : 'ഒരു മണിക്കൂർ',
41 | hh : '%d മണിക്കൂർ',
42 | d : 'ഒരു ദിവസം',
43 | dd : '%d ദിവസം',
44 | M : 'ഒരു മാസം',
45 | MM : '%d മാസം',
46 | y : 'ഒരു വർഷം',
47 | yy : '%d വർഷം'
48 | },
49 | meridiemParse: /രാത്രി|രാവിലെ|ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി/i,
50 | isPM : function (input) {
51 | return /^(ഉച്ച കഴിഞ്ഞ്|വൈകുന്നേരം|രാത്രി)$/.test(input);
52 | },
53 | meridiem : function (hour, minute, isLower) {
54 | if (hour < 4) {
55 | return 'രാത്രി';
56 | } else if (hour < 12) {
57 | return 'രാവിലെ';
58 | } else if (hour < 17) {
59 | return 'ഉച്ച കഴിഞ്ഞ്';
60 | } else if (hour < 20) {
61 | return 'വൈകുന്നേരം';
62 | } else {
63 | return 'രാത്രി';
64 | }
65 | }
66 | });
67 |
68 | return ml;
69 |
70 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ms-my.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Bahasa Malaysia (ms-MY)
3 | //! author : Weldan Jamili : https://github.com/weldan
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var ms_my = moment.defineLocale('ms-my', {
13 | months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
14 | monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
15 | weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
16 | weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
17 | weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH.mm',
20 | LTS : 'HH.mm.ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY [pukul] HH.mm',
24 | LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
25 | },
26 | meridiemParse: /pagi|tengahari|petang|malam/,
27 | meridiemHour: function (hour, meridiem) {
28 | if (hour === 12) {
29 | hour = 0;
30 | }
31 | if (meridiem === 'pagi') {
32 | return hour;
33 | } else if (meridiem === 'tengahari') {
34 | return hour >= 11 ? hour : hour + 12;
35 | } else if (meridiem === 'petang' || meridiem === 'malam') {
36 | return hour + 12;
37 | }
38 | },
39 | meridiem : function (hours, minutes, isLower) {
40 | if (hours < 11) {
41 | return 'pagi';
42 | } else if (hours < 15) {
43 | return 'tengahari';
44 | } else if (hours < 19) {
45 | return 'petang';
46 | } else {
47 | return 'malam';
48 | }
49 | },
50 | calendar : {
51 | sameDay : '[Hari ini pukul] LT',
52 | nextDay : '[Esok pukul] LT',
53 | nextWeek : 'dddd [pukul] LT',
54 | lastDay : '[Kelmarin pukul] LT',
55 | lastWeek : 'dddd [lepas pukul] LT',
56 | sameElse : 'L'
57 | },
58 | relativeTime : {
59 | future : 'dalam %s',
60 | past : '%s yang lepas',
61 | s : 'beberapa saat',
62 | m : 'seminit',
63 | mm : '%d minit',
64 | h : 'sejam',
65 | hh : '%d jam',
66 | d : 'sehari',
67 | dd : '%d hari',
68 | M : 'sebulan',
69 | MM : '%d bulan',
70 | y : 'setahun',
71 | yy : '%d tahun'
72 | },
73 | week : {
74 | dow : 1, // Monday is the first day of the week.
75 | doy : 7 // The week that contains Jan 1st is the first week of the year.
76 | }
77 | });
78 |
79 | return ms_my;
80 |
81 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ms.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Bahasa Malaysia (ms-MY)
3 | //! author : Weldan Jamili : https://github.com/weldan
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var ms = moment.defineLocale('ms', {
13 | months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
14 | monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
15 | weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
16 | weekdaysShort : 'Ahd_Isn_Sel_Rab_Kha_Jum_Sab'.split('_'),
17 | weekdaysMin : 'Ah_Is_Sl_Rb_Km_Jm_Sb'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH.mm',
20 | LTS : 'HH.mm.ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY [pukul] HH.mm',
24 | LLLL : 'dddd, D MMMM YYYY [pukul] HH.mm'
25 | },
26 | meridiemParse: /pagi|tengahari|petang|malam/,
27 | meridiemHour: function (hour, meridiem) {
28 | if (hour === 12) {
29 | hour = 0;
30 | }
31 | if (meridiem === 'pagi') {
32 | return hour;
33 | } else if (meridiem === 'tengahari') {
34 | return hour >= 11 ? hour : hour + 12;
35 | } else if (meridiem === 'petang' || meridiem === 'malam') {
36 | return hour + 12;
37 | }
38 | },
39 | meridiem : function (hours, minutes, isLower) {
40 | if (hours < 11) {
41 | return 'pagi';
42 | } else if (hours < 15) {
43 | return 'tengahari';
44 | } else if (hours < 19) {
45 | return 'petang';
46 | } else {
47 | return 'malam';
48 | }
49 | },
50 | calendar : {
51 | sameDay : '[Hari ini pukul] LT',
52 | nextDay : '[Esok pukul] LT',
53 | nextWeek : 'dddd [pukul] LT',
54 | lastDay : '[Kelmarin pukul] LT',
55 | lastWeek : 'dddd [lepas pukul] LT',
56 | sameElse : 'L'
57 | },
58 | relativeTime : {
59 | future : 'dalam %s',
60 | past : '%s yang lepas',
61 | s : 'beberapa saat',
62 | m : 'seminit',
63 | mm : '%d minit',
64 | h : 'sejam',
65 | hh : '%d jam',
66 | d : 'sehari',
67 | dd : '%d hari',
68 | M : 'sebulan',
69 | MM : '%d bulan',
70 | y : 'setahun',
71 | yy : '%d tahun'
72 | },
73 | week : {
74 | dow : 1, // Monday is the first day of the week.
75 | doy : 7 // The week that contains Jan 1st is the first week of the year.
76 | }
77 | });
78 |
79 | return ms;
80 |
81 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/my.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Burmese (my)
3 | //! author : Squar team, mysquar.com
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var symbolMap = {
13 | '1': '၁',
14 | '2': '၂',
15 | '3': '၃',
16 | '4': '၄',
17 | '5': '၅',
18 | '6': '၆',
19 | '7': '၇',
20 | '8': '၈',
21 | '9': '၉',
22 | '0': '၀'
23 | }, numberMap = {
24 | '၁': '1',
25 | '၂': '2',
26 | '၃': '3',
27 | '၄': '4',
28 | '၅': '5',
29 | '၆': '6',
30 | '၇': '7',
31 | '၈': '8',
32 | '၉': '9',
33 | '၀': '0'
34 | };
35 |
36 | var my = moment.defineLocale('my', {
37 | months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'),
38 | monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
39 | weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'),
40 | weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
41 | weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
42 |
43 | longDateFormat: {
44 | LT: 'HH:mm',
45 | LTS: 'HH:mm:ss',
46 | L: 'DD/MM/YYYY',
47 | LL: 'D MMMM YYYY',
48 | LLL: 'D MMMM YYYY HH:mm',
49 | LLLL: 'dddd D MMMM YYYY HH:mm'
50 | },
51 | calendar: {
52 | sameDay: '[ယနေ.] LT [မှာ]',
53 | nextDay: '[မနက်ဖြန်] LT [မှာ]',
54 | nextWeek: 'dddd LT [မှာ]',
55 | lastDay: '[မနေ.က] LT [မှာ]',
56 | lastWeek: '[ပြီးခဲ့သော] dddd LT [မှာ]',
57 | sameElse: 'L'
58 | },
59 | relativeTime: {
60 | future: 'လာမည့် %s မှာ',
61 | past: 'လွန်ခဲ့သော %s က',
62 | s: 'စက္ကန်.အနည်းငယ်',
63 | m: 'တစ်မိနစ်',
64 | mm: '%d မိနစ်',
65 | h: 'တစ်နာရီ',
66 | hh: '%d နာရီ',
67 | d: 'တစ်ရက်',
68 | dd: '%d ရက်',
69 | M: 'တစ်လ',
70 | MM: '%d လ',
71 | y: 'တစ်နှစ်',
72 | yy: '%d နှစ်'
73 | },
74 | preparse: function (string) {
75 | return string.replace(/[၁၂၃၄၅၆၇၈၉၀]/g, function (match) {
76 | return numberMap[match];
77 | });
78 | },
79 | postformat: function (string) {
80 | return string.replace(/\d/g, function (match) {
81 | return symbolMap[match];
82 | });
83 | },
84 | week: {
85 | dow: 1, // Monday is the first day of the week.
86 | doy: 4 // The week that contains Jan 1st is the first week of the year.
87 | }
88 | });
89 |
90 | return my;
91 |
92 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var nb = moment.defineLocale('nb', {
14 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
15 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
16 | weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
17 | weekdaysShort : 'søn_man_tirs_ons_tors_fre_lør'.split('_'),
18 | weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
19 | longDateFormat : {
20 | LT : 'H.mm',
21 | LTS : 'H.mm.ss',
22 | L : 'DD.MM.YYYY',
23 | LL : 'D. MMMM YYYY',
24 | LLL : 'D. MMMM YYYY [kl.] H.mm',
25 | LLLL : 'dddd D. MMMM YYYY [kl.] H.mm'
26 | },
27 | calendar : {
28 | sameDay: '[i dag kl.] LT',
29 | nextDay: '[i morgen kl.] LT',
30 | nextWeek: 'dddd [kl.] LT',
31 | lastDay: '[i går kl.] LT',
32 | lastWeek: '[forrige] dddd [kl.] LT',
33 | sameElse: 'L'
34 | },
35 | relativeTime : {
36 | future : 'om %s',
37 | past : 'for %s siden',
38 | s : 'noen sekunder',
39 | m : 'ett minutt',
40 | mm : '%d minutter',
41 | h : 'en time',
42 | hh : '%d timer',
43 | d : 'en dag',
44 | dd : '%d dager',
45 | M : 'en måned',
46 | MM : '%d måneder',
47 | y : 'ett år',
48 | yy : '%d år'
49 | },
50 | ordinalParse: /\d{1,2}\./,
51 | ordinal : '%d.',
52 | week : {
53 | dow : 1, // Monday is the first day of the week.
54 | doy : 4 // The week that contains Jan 4th is the first week of the year.
55 | }
56 | });
57 |
58 | return nb;
59 |
60 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/nl.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : dutch (nl)
3 | //! author : Joris Röling : https://github.com/jjupiter
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
13 | monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
14 |
15 | var nl = moment.defineLocale('nl', {
16 | months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
17 | monthsShort : function (m, format) {
18 | if (/-MMM-/.test(format)) {
19 | return monthsShortWithoutDots[m.month()];
20 | } else {
21 | return monthsShortWithDots[m.month()];
22 | }
23 | },
24 | weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
25 | weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),
26 | weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'),
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 HH:mm',
33 | LLLL : 'dddd D MMMM YYYY HH:mm'
34 | },
35 | calendar : {
36 | sameDay: '[vandaag om] LT',
37 | nextDay: '[morgen om] LT',
38 | nextWeek: 'dddd [om] LT',
39 | lastDay: '[gisteren om] LT',
40 | lastWeek: '[afgelopen] dddd [om] LT',
41 | sameElse: 'L'
42 | },
43 | relativeTime : {
44 | future : 'over %s',
45 | past : '%s geleden',
46 | s : 'een paar seconden',
47 | m : 'één minuut',
48 | mm : '%d minuten',
49 | h : 'één uur',
50 | hh : '%d uur',
51 | d : 'één dag',
52 | dd : '%d dagen',
53 | M : 'één maand',
54 | MM : '%d maanden',
55 | y : 'één jaar',
56 | yy : '%d jaar'
57 | },
58 | ordinalParse: /\d{1,2}(ste|de)/,
59 | ordinal : function (number) {
60 | return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
61 | },
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 nl;
69 |
70 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/nn.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : norwegian nynorsk (nn)
3 | //! author : https://github.com/mechuwind
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var nn = moment.defineLocale('nn', {
13 | months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
14 | monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
15 | weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
16 | weekdaysShort : 'sun_mån_tys_ons_tor_fre_lau'.split('_'),
17 | weekdaysMin : 'su_må_ty_on_to_fr_lø'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD.MM.YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[I dag klokka] LT',
28 | nextDay: '[I morgon klokka] LT',
29 | nextWeek: 'dddd [klokka] LT',
30 | lastDay: '[I går klokka] LT',
31 | lastWeek: '[Føregåande] dddd [klokka] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'om %s',
36 | past : 'for %s sidan',
37 | s : 'nokre sekund',
38 | m : 'eit minutt',
39 | mm : '%d minutt',
40 | h : 'ein time',
41 | hh : '%d timar',
42 | d : 'ein dag',
43 | dd : '%d dagar',
44 | M : 'ein månad',
45 | MM : '%d månader',
46 | y : 'eit år',
47 | yy : '%d år'
48 | },
49 | ordinalParse: /\d{1,2}\./,
50 | ordinal : '%d.',
51 | week : {
52 | dow : 1, // Monday is the first day of the week.
53 | doy : 4 // The week that contains Jan 4th is the first week of the year.
54 | }
55 | });
56 |
57 | return nn;
58 |
59 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/pt-br.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : brazilian portuguese (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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var pt_br = moment.defineLocale('pt-br', {
13 | months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
14 | monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
15 | weekdays : 'Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado'.split('_'),
16 | weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
17 | weekdaysMin : 'Dom_2ª_3ª_4ª_5ª_6ª_Sáb'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D [de] MMMM [de] YYYY',
23 | LLL : 'D [de] MMMM [de] YYYY [às] HH:mm',
24 | LLLL : 'dddd, D [de] MMMM [de] YYYY [às] HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Hoje às] LT',
28 | nextDay: '[Amanhã às] LT',
29 | nextWeek: 'dddd [às] LT',
30 | lastDay: '[Ontem às] LT',
31 | lastWeek: function () {
32 | return (this.day() === 0 || this.day() === 6) ?
33 | '[Último] dddd [às] LT' : // Saturday + Sunday
34 | '[Última] dddd [às] LT'; // Monday - Friday
35 | },
36 | sameElse: 'L'
37 | },
38 | relativeTime : {
39 | future : 'em %s',
40 | past : '%s atrás',
41 | s : 'poucos segundos',
42 | m : 'um minuto',
43 | mm : '%d minutos',
44 | h : 'uma hora',
45 | hh : '%d horas',
46 | d : 'um dia',
47 | dd : '%d dias',
48 | M : 'um mês',
49 | MM : '%d meses',
50 | y : 'um ano',
51 | yy : '%d anos'
52 | },
53 | ordinalParse: /\d{1,2}º/,
54 | ordinal : '%dº'
55 | });
56 |
57 | return pt_br;
58 |
59 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var pt = moment.defineLocale('pt', {
13 | months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
14 | monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
15 | weekdays : 'Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado'.split('_'),
16 | weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
17 | weekdaysMin : 'Dom_2ª_3ª_4ª_5ª_6ª_Sáb'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D [de] MMMM [de] YYYY',
23 | LLL : 'D [de] MMMM [de] YYYY HH:mm',
24 | LLLL : 'dddd, D [de] MMMM [de] YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Hoje às] LT',
28 | nextDay: '[Amanhã às] LT',
29 | nextWeek: 'dddd [às] LT',
30 | lastDay: '[Ontem às] LT',
31 | lastWeek: function () {
32 | return (this.day() === 0 || this.day() === 6) ?
33 | '[Último] dddd [às] LT' : // Saturday + Sunday
34 | '[Última] dddd [às] LT'; // Monday - Friday
35 | },
36 | sameElse: 'L'
37 | },
38 | relativeTime : {
39 | future : 'em %s',
40 | past : 'há %s',
41 | s : 'segundos',
42 | m : 'um minuto',
43 | mm : '%d minutos',
44 | h : 'uma hora',
45 | hh : '%d horas',
46 | d : 'um dia',
47 | dd : '%d dias',
48 | M : 'um mês',
49 | MM : '%d meses',
50 | y : 'um ano',
51 | yy : '%d anos'
52 | },
53 | ordinalParse: /\d{1,2}º/,
54 | ordinal : '%dº',
55 | week : {
56 | dow : 1, // Monday is the first day of the week.
57 | doy : 4 // The week that contains Jan 4th is the first week of the year.
58 | }
59 | });
60 |
61 | return pt;
62 |
63 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/ro.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : romanian (ro)
3 | //! author : Vlad Gurdiga : https://github.com/gurdiga
4 | //! author : Valentin Agachi : https://github.com/avaly
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | function relativeTimeWithPlural(number, withoutSuffix, key) {
14 | var format = {
15 | 'mm': 'minute',
16 | 'hh': 'ore',
17 | 'dd': 'zile',
18 | 'MM': 'luni',
19 | 'yy': 'ani'
20 | },
21 | separator = ' ';
22 | if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {
23 | separator = ' de ';
24 | }
25 | return number + separator + format[key];
26 | }
27 |
28 | var ro = moment.defineLocale('ro', {
29 | months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'),
30 | monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'),
31 | weekdays : 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
32 | weekdaysShort : 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
33 | weekdaysMin : 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),
34 | longDateFormat : {
35 | LT : 'H:mm',
36 | LTS : 'H:mm:ss',
37 | L : 'DD.MM.YYYY',
38 | LL : 'D MMMM YYYY',
39 | LLL : 'D MMMM YYYY H:mm',
40 | LLLL : 'dddd, D MMMM YYYY H:mm'
41 | },
42 | calendar : {
43 | sameDay: '[azi la] LT',
44 | nextDay: '[mâine la] LT',
45 | nextWeek: 'dddd [la] LT',
46 | lastDay: '[ieri la] LT',
47 | lastWeek: '[fosta] dddd [la] LT',
48 | sameElse: 'L'
49 | },
50 | relativeTime : {
51 | future : 'peste %s',
52 | past : '%s în urmă',
53 | s : 'câteva secunde',
54 | m : 'un minut',
55 | mm : relativeTimeWithPlural,
56 | h : 'o oră',
57 | hh : relativeTimeWithPlural,
58 | d : 'o zi',
59 | dd : relativeTimeWithPlural,
60 | M : 'o lună',
61 | MM : relativeTimeWithPlural,
62 | y : 'un an',
63 | yy : relativeTimeWithPlural
64 | },
65 | week : {
66 | dow : 1, // Monday is the first day of the week.
67 | doy : 7 // The week that contains Jan 1st is the first week of the year.
68 | }
69 | });
70 |
71 | return ro;
72 |
73 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var si = moment.defineLocale('si', {
13 | months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split('_'),
14 | monthsShort : 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split('_'),
15 | weekdays : 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'),
16 | weekdaysShort : 'ඉරි_සඳු_අඟ_බදා_බ්රහ_සිකු_සෙන'.split('_'),
17 | weekdaysMin : 'ඉ_ස_අ_බ_බ්ර_සි_සෙ'.split('_'),
18 | longDateFormat : {
19 | LT : 'a h:mm',
20 | LTS : 'a h:mm:ss',
21 | L : 'YYYY/MM/DD',
22 | LL : 'YYYY MMMM D',
23 | LLL : 'YYYY MMMM D, a h:mm',
24 | LLLL : 'YYYY MMMM D [වැනි] dddd, a h:mm:ss'
25 | },
26 | calendar : {
27 | sameDay : '[අද] LT[ට]',
28 | nextDay : '[හෙට] LT[ට]',
29 | nextWeek : 'dddd LT[ට]',
30 | lastDay : '[ඊයේ] LT[ට]',
31 | lastWeek : '[පසුගිය] dddd LT[ට]',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : '%sකින්',
36 | past : '%sකට පෙර',
37 | s : 'තත්පර කිහිපය',
38 | m : 'මිනිත්තුව',
39 | mm : 'මිනිත්තු %d',
40 | h : 'පැය',
41 | hh : 'පැය %d',
42 | d : 'දිනය',
43 | dd : 'දින %d',
44 | M : 'මාසය',
45 | MM : 'මාස %d',
46 | y : 'වසර',
47 | yy : 'වසර %d'
48 | },
49 | ordinalParse: /\d{1,2} වැනි/,
50 | ordinal : function (number) {
51 | return number + ' වැනි';
52 | },
53 | meridiem : function (hours, minutes, isLower) {
54 | if (hours > 11) {
55 | return isLower ? 'ප.ව.' : 'පස් වරු';
56 | } else {
57 | return isLower ? 'පෙ.ව.' : 'පෙර වරු';
58 | }
59 | }
60 | });
61 |
62 | return si;
63 |
64 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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 (tests)
5 | //! author : Oerd Cukalla : https://github.com/oerd (fixes)
6 |
7 | (function (global, factory) {
8 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
9 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
10 | factory(global.moment)
11 | }(this, function (moment) { 'use strict';
12 |
13 |
14 | var sq = moment.defineLocale('sq', {
15 | months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
16 | monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
17 | weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
18 | weekdaysShort : 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
19 | weekdaysMin : 'D_H_Ma_Më_E_P_Sh'.split('_'),
20 | meridiemParse: /PD|MD/,
21 | isPM: function (input) {
22 | return input.charAt(0) === 'M';
23 | },
24 | meridiem : function (hours, minutes, isLower) {
25 | return hours < 12 ? 'PD' : 'MD';
26 | },
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 HH:mm',
33 | LLLL : 'dddd, D MMMM YYYY HH:mm'
34 | },
35 | calendar : {
36 | sameDay : '[Sot në] LT',
37 | nextDay : '[Nesër në] LT',
38 | nextWeek : 'dddd [në] LT',
39 | lastDay : '[Dje në] LT',
40 | lastWeek : 'dddd [e kaluar në] LT',
41 | sameElse : 'L'
42 | },
43 | relativeTime : {
44 | future : 'në %s',
45 | past : '%s më parë',
46 | s : 'disa sekonda',
47 | m : 'një minutë',
48 | mm : '%d minuta',
49 | h : 'një orë',
50 | hh : '%d orë',
51 | d : 'një ditë',
52 | dd : '%d ditë',
53 | M : 'një muaj',
54 | MM : '%d muaj',
55 | y : 'një vit',
56 | yy : '%d vite'
57 | },
58 | ordinalParse: /\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 sq;
67 |
68 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var sv = moment.defineLocale('sv', {
13 | months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'),
14 | monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
15 | weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
16 | weekdaysShort : 'sön_mån_tis_ons_tor_fre_lör'.split('_'),
17 | weekdaysMin : 'sö_må_ti_on_to_fr_lö'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'YYYY-MM-DD',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Idag] LT',
28 | nextDay: '[Imorgon] LT',
29 | lastDay: '[Igår] LT',
30 | nextWeek: '[På] dddd LT',
31 | lastWeek: '[I] dddd[s] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'om %s',
36 | past : 'för %s sedan',
37 | s : 'några sekunder',
38 | m : 'en minut',
39 | mm : '%d minuter',
40 | h : 'en timme',
41 | hh : '%d timmar',
42 | d : 'en dag',
43 | dd : '%d dagar',
44 | M : 'en månad',
45 | MM : '%d månader',
46 | y : 'ett år',
47 | yy : '%d år'
48 | },
49 | ordinalParse: /\d{1,2}(e|a)/,
50 | ordinal : function (number) {
51 | var b = number % 10,
52 | output = (~~(number % 100 / 10) === 1) ? 'e' :
53 | (b === 1) ? 'a' :
54 | (b === 2) ? 'a' :
55 | (b === 3) ? 'e' : 'e';
56 | return number + output;
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 sv;
65 |
66 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var th = moment.defineLocale('th', {
13 | months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),
14 | monthsShort : 'มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา'.split('_'),
15 | weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
16 | weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
17 | weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
18 | longDateFormat : {
19 | LT : 'H นาฬิกา m นาที',
20 | LTS : 'H นาฬิกา m นาที s วินาที',
21 | L : 'YYYY/MM/DD',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY เวลา H นาฬิกา m นาที',
24 | LLLL : 'วันddddที่ D MMMM YYYY เวลา H นาฬิกา m นาที'
25 | },
26 | meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
27 | isPM: function (input) {
28 | return input === 'หลังเที่ยง';
29 | },
30 | meridiem : function (hour, minute, isLower) {
31 | if (hour < 12) {
32 | return 'ก่อนเที่ยง';
33 | } else {
34 | return 'หลังเที่ยง';
35 | }
36 | },
37 | calendar : {
38 | sameDay : '[วันนี้ เวลา] LT',
39 | nextDay : '[พรุ่งนี้ เวลา] LT',
40 | nextWeek : 'dddd[หน้า เวลา] LT',
41 | lastDay : '[เมื่อวานนี้ เวลา] LT',
42 | lastWeek : '[วัน]dddd[ที่แล้ว เวลา] LT',
43 | sameElse : 'L'
44 | },
45 | relativeTime : {
46 | future : 'อีก %s',
47 | past : '%sที่แล้ว',
48 | s : 'ไม่กี่วินาที',
49 | m : '1 นาที',
50 | mm : '%d นาที',
51 | h : '1 ชั่วโมง',
52 | hh : '%d ชั่วโมง',
53 | d : '1 วัน',
54 | dd : '%d วัน',
55 | M : '1 เดือน',
56 | MM : '%d เดือน',
57 | y : '1 ปี',
58 | yy : '%d ปี'
59 | }
60 | });
61 |
62 | return th;
63 |
64 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/tl-ph.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Tagalog/Filipino (tl-ph)
3 | //! author : Dan Hagman
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var tl_ph = moment.defineLocale('tl-ph', {
13 | months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
14 | monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
15 | weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
16 | weekdaysShort : 'Lin_Lun_Mar_Miy_Huw_Biy_Sab'.split('_'),
17 | weekdaysMin : 'Li_Lu_Ma_Mi_Hu_Bi_Sab'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'MM/D/YYYY',
22 | LL : 'MMMM D, YYYY',
23 | LLL : 'MMMM D, YYYY HH:mm',
24 | LLLL : 'dddd, MMMM DD, YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[Ngayon sa] LT',
28 | nextDay: '[Bukas sa] LT',
29 | nextWeek: 'dddd [sa] LT',
30 | lastDay: '[Kahapon sa] LT',
31 | lastWeek: 'dddd [huling linggo] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'sa loob ng %s',
36 | past : '%s ang nakalipas',
37 | s : 'ilang segundo',
38 | m : 'isang minuto',
39 | mm : '%d minuto',
40 | h : 'isang oras',
41 | hh : '%d oras',
42 | d : 'isang araw',
43 | dd : '%d araw',
44 | M : 'isang buwan',
45 | MM : '%d buwan',
46 | y : 'isang taon',
47 | yy : '%d taon'
48 | },
49 | ordinalParse: /\d{1,2}/,
50 | ordinal : function (number) {
51 | return number;
52 | },
53 | week : {
54 | dow : 1, // Monday is the first day of the week.
55 | doy : 4 // The week that contains Jan 4th is the first week of the year.
56 | }
57 | });
58 |
59 | return tl_ph;
60 |
61 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/tr.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : turkish (tr)
3 | //! authors : Erhan Gundogan : https://github.com/erhangundogan,
4 | //! Burak Yiğit Kaya: https://github.com/BYK
5 |
6 | (function (global, factory) {
7 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
8 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
9 | factory(global.moment)
10 | }(this, function (moment) { 'use strict';
11 |
12 |
13 | var suffixes = {
14 | 1: '\'inci',
15 | 5: '\'inci',
16 | 8: '\'inci',
17 | 70: '\'inci',
18 | 80: '\'inci',
19 | 2: '\'nci',
20 | 7: '\'nci',
21 | 20: '\'nci',
22 | 50: '\'nci',
23 | 3: '\'üncü',
24 | 4: '\'üncü',
25 | 100: '\'üncü',
26 | 6: '\'ncı',
27 | 9: '\'uncu',
28 | 10: '\'uncu',
29 | 30: '\'uncu',
30 | 60: '\'ıncı',
31 | 90: '\'ıncı'
32 | };
33 |
34 | var tr = moment.defineLocale('tr', {
35 | months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık'.split('_'),
36 | monthsShort : 'Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara'.split('_'),
37 | weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split('_'),
38 | weekdaysShort : 'Paz_Pts_Sal_Çar_Per_Cum_Cts'.split('_'),
39 | weekdaysMin : 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),
40 | longDateFormat : {
41 | LT : 'HH:mm',
42 | LTS : 'HH:mm:ss',
43 | L : 'DD.MM.YYYY',
44 | LL : 'D MMMM YYYY',
45 | LLL : 'D MMMM YYYY HH:mm',
46 | LLLL : 'dddd, D MMMM YYYY HH:mm'
47 | },
48 | calendar : {
49 | sameDay : '[bugün saat] LT',
50 | nextDay : '[yarın saat] LT',
51 | nextWeek : '[haftaya] dddd [saat] LT',
52 | lastDay : '[dün] LT',
53 | lastWeek : '[geçen hafta] dddd [saat] LT',
54 | sameElse : 'L'
55 | },
56 | relativeTime : {
57 | future : '%s sonra',
58 | past : '%s önce',
59 | s : 'birkaç saniye',
60 | m : 'bir dakika',
61 | mm : '%d dakika',
62 | h : 'bir saat',
63 | hh : '%d saat',
64 | d : 'bir gün',
65 | dd : '%d gün',
66 | M : 'bir ay',
67 | MM : '%d ay',
68 | y : 'bir yıl',
69 | yy : '%d yıl'
70 | },
71 | ordinalParse: /\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,
72 | ordinal : function (number) {
73 | if (number === 0) { // special case for zero
74 | return number + '\'ıncı';
75 | }
76 | var a = number % 10,
77 | b = number % 100 - a,
78 | c = number >= 100 ? 100 : null;
79 | return number + (suffixes[a] || suffixes[b] || suffixes[c]);
80 | },
81 | week : {
82 | dow : 1, // Monday is the first day of the week.
83 | doy : 7 // The week that contains Jan 1st is the first week of the year.
84 | }
85 | });
86 |
87 | return tr;
88 |
89 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/tzl.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : talossan (tzl)
3 | //! author : Robin van der Vliet : https://github.com/robin0van0der0v with the help of Iustì Canun
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 |
13 | var tzl = moment.defineLocale('tzl', {
14 | months : 'Januar_Fevraglh_Març_Avrïu_Mai_Gün_Julia_Guscht_Setemvar_Listopäts_Noemvar_Zecemvar'.split('_'),
15 | monthsShort : 'Jan_Fev_Mar_Avr_Mai_Gün_Jul_Gus_Set_Lis_Noe_Zec'.split('_'),
16 | weekdays : 'Súladi_Lúneçi_Maitzi_Márcuri_Xhúadi_Viénerçi_Sáturi'.split('_'),
17 | weekdaysShort : 'Súl_Lún_Mai_Már_Xhú_Vié_Sát'.split('_'),
18 | weekdaysMin : 'Sú_Lú_Ma_Má_Xh_Vi_Sá'.split('_'),
19 | longDateFormat : {
20 | LT : 'HH.mm',
21 | LTS : 'LT.ss',
22 | L : 'DD.MM.YYYY',
23 | LL : 'D. MMMM [dallas] YYYY',
24 | LLL : 'D. MMMM [dallas] YYYY LT',
25 | LLLL : 'dddd, [li] D. MMMM [dallas] YYYY LT'
26 | },
27 | meridiem : function (hours, minutes, isLower) {
28 | if (hours > 11) {
29 | return isLower ? 'd\'o' : 'D\'O';
30 | } else {
31 | return isLower ? 'd\'a' : 'D\'A';
32 | }
33 | },
34 | calendar : {
35 | sameDay : '[oxhi à] LT',
36 | nextDay : '[demà à] LT',
37 | nextWeek : 'dddd [à] LT',
38 | lastDay : '[ieiri à] LT',
39 | lastWeek : '[sür el] dddd [lasteu à] LT',
40 | sameElse : 'L'
41 | },
42 | relativeTime : {
43 | future : 'osprei %s',
44 | past : 'ja%s',
45 | s : processRelativeTime,
46 | m : processRelativeTime,
47 | mm : processRelativeTime,
48 | h : processRelativeTime,
49 | hh : processRelativeTime,
50 | d : processRelativeTime,
51 | dd : processRelativeTime,
52 | M : processRelativeTime,
53 | MM : processRelativeTime,
54 | y : processRelativeTime,
55 | yy : processRelativeTime
56 | },
57 | ordinalParse: /\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 | function processRelativeTime(number, withoutSuffix, key, isFuture) {
66 | var format = {
67 | 's': ['viensas secunds', '\'iensas secunds'],
68 | 'm': ['\'n míut', '\'iens míut'],
69 | 'mm': [number + ' míuts', ' ' + number + ' míuts'],
70 | 'h': ['\'n þora', '\'iensa þora'],
71 | 'hh': [number + ' þoras', ' ' + number + ' þoras'],
72 | 'd': ['\'n ziua', '\'iensa ziua'],
73 | 'dd': [number + ' ziuas', ' ' + number + ' ziuas'],
74 | 'M': ['\'n mes', '\'iens mes'],
75 | 'MM': [number + ' mesen', ' ' + number + ' mesen'],
76 | 'y': ['\'n ar', '\'iens ar'],
77 | 'yy': [number + ' ars', ' ' + number + ' ars']
78 | };
79 | return isFuture ? format[key][0] : (withoutSuffix ? format[key][0] : format[key][1].trim());
80 | }
81 |
82 | return tzl;
83 |
84 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/tzm-latn.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Morocco Central Atlas Tamaziɣt in Latin (tzm-latn)
3 | //! author : Abdel Said : https://github.com/abdelsaid
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var tzm_latn = moment.defineLocale('tzm-latn', {
13 | months : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),
14 | monthsShort : 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'),
15 | weekdays : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
16 | weekdaysShort : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
17 | weekdaysMin : 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[asdkh g] LT',
28 | nextDay: '[aska g] LT',
29 | nextWeek: 'dddd [g] LT',
30 | lastDay: '[assant g] LT',
31 | lastWeek: 'dddd [g] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'dadkh s yan %s',
36 | past : 'yan %s',
37 | s : 'imik',
38 | m : 'minuḍ',
39 | mm : '%d minuḍ',
40 | h : 'saɛa',
41 | hh : '%d tassaɛin',
42 | d : 'ass',
43 | dd : '%d ossan',
44 | M : 'ayowr',
45 | MM : '%d iyyirn',
46 | y : 'asgas',
47 | yy : '%d isgasn'
48 | },
49 | week : {
50 | dow : 6, // Saturday is the first day of the week.
51 | doy : 12 // The week that contains Jan 1st is the first week of the year.
52 | }
53 | });
54 |
55 | return tzm_latn;
56 |
57 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/tzm.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : Morocco Central Atlas Tamaziɣt (tzm)
3 | //! author : Abdel Said : https://github.com/abdelsaid
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var tzm = moment.defineLocale('tzm', {
13 | months : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),
14 | monthsShort : 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split('_'),
15 | weekdays : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
16 | weekdaysShort : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
17 | weekdaysMin : 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS: 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'dddd D MMMM YYYY HH:mm'
25 | },
26 | calendar : {
27 | sameDay: '[ⴰⵙⴷⵅ ⴴ] LT',
28 | nextDay: '[ⴰⵙⴽⴰ ⴴ] LT',
29 | nextWeek: 'dddd [ⴴ] LT',
30 | lastDay: '[ⴰⵚⴰⵏⵜ ⴴ] LT',
31 | lastWeek: 'dddd [ⴴ] LT',
32 | sameElse: 'L'
33 | },
34 | relativeTime : {
35 | future : 'ⴷⴰⴷⵅ ⵙ ⵢⴰⵏ %s',
36 | past : 'ⵢⴰⵏ %s',
37 | s : 'ⵉⵎⵉⴽ',
38 | m : 'ⵎⵉⵏⵓⴺ',
39 | mm : '%d ⵎⵉⵏⵓⴺ',
40 | h : 'ⵙⴰⵄⴰ',
41 | hh : '%d ⵜⴰⵙⵙⴰⵄⵉⵏ',
42 | d : 'ⴰⵙⵙ',
43 | dd : '%d oⵙⵙⴰⵏ',
44 | M : 'ⴰⵢoⵓⵔ',
45 | MM : '%d ⵉⵢⵢⵉⵔⵏ',
46 | y : 'ⴰⵙⴳⴰⵙ',
47 | yy : '%d ⵉⵙⴳⴰⵙⵏ'
48 | },
49 | week : {
50 | dow : 6, // Saturday is the first day of the week.
51 | doy : 12 // The week that contains Jan 1st is the first week of the year.
52 | }
53 | });
54 |
55 | return tzm;
56 |
57 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/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' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var uz = moment.defineLocale('uz', {
13 | months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'),
14 | monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
15 | weekdays : 'Якшанба_Душанба_Сешанба_Чоршанба_Пайшанба_Жума_Шанба'.split('_'),
16 | weekdaysShort : 'Якш_Душ_Сеш_Чор_Пай_Жум_Шан'.split('_'),
17 | weekdaysMin : 'Як_Ду_Се_Чо_Па_Жу_Ша'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM YYYY',
23 | LLL : 'D MMMM YYYY HH:mm',
24 | LLLL : 'D MMMM YYYY, dddd HH:mm'
25 | },
26 | calendar : {
27 | sameDay : '[Бугун соат] LT [да]',
28 | nextDay : '[Эртага] LT [да]',
29 | nextWeek : 'dddd [куни соат] LT [да]',
30 | lastDay : '[Кеча соат] LT [да]',
31 | lastWeek : '[Утган] dddd [куни соат] LT [да]',
32 | sameElse : 'L'
33 | },
34 | relativeTime : {
35 | future : 'Якин %s ичида',
36 | past : 'Бир неча %s олдин',
37 | s : 'фурсат',
38 | m : 'бир дакика',
39 | mm : '%d дакика',
40 | h : 'бир соат',
41 | hh : '%d соат',
42 | d : 'бир кун',
43 | dd : '%d кун',
44 | M : 'бир ой',
45 | MM : '%d ой',
46 | y : 'бир йил',
47 | yy : '%d йил'
48 | },
49 | week : {
50 | dow : 1, // Monday is the first day of the week.
51 | doy : 7 // The week that contains Jan 4th is the first week of the year.
52 | }
53 | });
54 |
55 | return uz;
56 |
57 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/vi.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : vietnamese (vi)
3 | //! author : Bang Nguyen : https://github.com/bangnk
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var vi = moment.defineLocale('vi', {
13 | months : 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split('_'),
14 | monthsShort : 'Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12'.split('_'),
15 | weekdays : 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split('_'),
16 | weekdaysShort : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
17 | weekdaysMin : 'CN_T2_T3_T4_T5_T6_T7'.split('_'),
18 | longDateFormat : {
19 | LT : 'HH:mm',
20 | LTS : 'HH:mm:ss',
21 | L : 'DD/MM/YYYY',
22 | LL : 'D MMMM [năm] YYYY',
23 | LLL : 'D MMMM [năm] YYYY HH:mm',
24 | LLLL : 'dddd, D MMMM [năm] YYYY HH:mm',
25 | l : 'DD/M/YYYY',
26 | ll : 'D MMM YYYY',
27 | lll : 'D MMM YYYY HH:mm',
28 | llll : 'ddd, D MMM YYYY HH:mm'
29 | },
30 | calendar : {
31 | sameDay: '[Hôm nay lúc] LT',
32 | nextDay: '[Ngày mai lúc] LT',
33 | nextWeek: 'dddd [tuần tới lúc] LT',
34 | lastDay: '[Hôm qua lúc] LT',
35 | lastWeek: 'dddd [tuần rồi lúc] LT',
36 | sameElse: 'L'
37 | },
38 | relativeTime : {
39 | future : '%s tới',
40 | past : '%s trước',
41 | s : 'vài giây',
42 | m : 'một phút',
43 | mm : '%d phút',
44 | h : 'một giờ',
45 | hh : '%d giờ',
46 | d : 'một ngày',
47 | dd : '%d ngày',
48 | M : 'một tháng',
49 | MM : '%d tháng',
50 | y : 'một năm',
51 | yy : '%d năm'
52 | },
53 | ordinalParse: /\d{1,2}/,
54 | ordinal : function (number) {
55 | return number;
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 vi;
64 |
65 | }));
--------------------------------------------------------------------------------
/Web/js/bootstrap-datetimepicker/locale/zh-tw.js:
--------------------------------------------------------------------------------
1 | //! moment.js locale configuration
2 | //! locale : traditional chinese (zh-tw)
3 | //! author : Ben : https://github.com/ben-lin
4 |
5 | (function (global, factory) {
6 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
7 | typeof define === 'function' && define.amd ? define(['moment'], factory) :
8 | factory(global.moment)
9 | }(this, function (moment) { 'use strict';
10 |
11 |
12 | var zh_tw = moment.defineLocale('zh-tw', {
13 | months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),
14 | monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
15 | weekdays : '星期日_星期一_星期二_星期三_星期四_星期五_星期六'.split('_'),
16 | weekdaysShort : '週日_週一_週二_週三_週四_週五_週六'.split('_'),
17 | weekdaysMin : '日_一_二_三_四_五_六'.split('_'),
18 | longDateFormat : {
19 | LT : 'Ah點mm分',
20 | LTS : 'Ah點m分s秒',
21 | L : 'YYYY年MMMD日',
22 | LL : 'YYYY年MMMD日',
23 | LLL : 'YYYY年MMMD日Ah點mm分',
24 | LLLL : 'YYYY年MMMD日ddddAh點mm分',
25 | l : 'YYYY年MMMD日',
26 | ll : 'YYYY年MMMD日',
27 | lll : 'YYYY年MMMD日Ah點mm分',
28 | llll : 'YYYY年MMMD日ddddAh點mm分'
29 | },
30 | meridiemParse: /早上|上午|中午|下午|晚上/,
31 | meridiemHour : function (hour, meridiem) {
32 | if (hour === 12) {
33 | hour = 0;
34 | }
35 | if (meridiem === '早上' || meridiem === '上午') {
36 | return hour;
37 | } else if (meridiem === '中午') {
38 | return hour >= 11 ? hour : hour + 12;
39 | } else if (meridiem === '下午' || meridiem === '晚上') {
40 | return hour + 12;
41 | }
42 | },
43 | meridiem : function (hour, minute, isLower) {
44 | var hm = hour * 100 + minute;
45 | if (hm < 900) {
46 | return '早上';
47 | } else if (hm < 1130) {
48 | return '上午';
49 | } else if (hm < 1230) {
50 | return '中午';
51 | } else if (hm < 1800) {
52 | return '下午';
53 | } else {
54 | return '晚上';
55 | }
56 | },
57 | calendar : {
58 | sameDay : '[今天]LT',
59 | nextDay : '[明天]LT',
60 | nextWeek : '[下]ddddLT',
61 | lastDay : '[昨天]LT',
62 | lastWeek : '[上]ddddLT',
63 | sameElse : 'L'
64 | },
65 | ordinalParse: /\d{1,2}(日|月|週)/,
66 | ordinal : function (number, period) {
67 | switch (period) {
68 | case 'd' :
69 | case 'D' :
70 | case 'DDD' :
71 | return number + '日';
72 | case 'M' :
73 | return number + '月';
74 | case 'w' :
75 | case 'W' :
76 | return number + '週';
77 | default :
78 | return number;
79 | }
80 | },
81 | relativeTime : {
82 | future : '%s內',
83 | past : '%s前',
84 | s : '幾秒',
85 | m : '一分鐘',
86 | mm : '%d分鐘',
87 | h : '一小時',
88 | hh : '%d小時',
89 | d : '一天',
90 | dd : '%d天',
91 | M : '一個月',
92 | MM : '%d個月',
93 | y : '一年',
94 | yy : '%d年'
95 | }
96 | });
97 |
98 | return zh_tw;
99 |
100 | }));
--------------------------------------------------------------------------------
/Web/js/jquery-tags-input/jquery.tagsinput.min.css:
--------------------------------------------------------------------------------
1 | div.tagsinput{border:1px solid #ebebeb;background:#FFF;padding:6px 12px 1px 6px;width:300px;height:100px;overflow-y:auto;}div.tagsinput span.tag{border:none;-moz-border-radius:2px;-webkit-border-radius:2px;display:block;float:left;padding:2px 5px;text-decoration:none;background:#33cabb;color:#fff;margin-right:5px;margin-bottom:5px;font-family:'Microsoft yahei',Roboto,sans-serif;font-size:13px;line-height:18px}div.tagsinput span.tag a{font-weight:bold;color:rgba(255,255,255,0.5);text-decoration:none;font-size:12px;}div.tagsinput input{width:80px;margin:0px;font-family:'Microsoft yahei',Roboto,sans-serif;font-size:13px;border:1px solid transparent;padding:0;background:transparent;color:#000;outline:0px;margin-right:5px;margin-bottom:5px;}div.tagsinput div{display:block;float:left;}.tags_clear{clear:both;width:100%;height:0px;}.not_valid{background:#FBD8DB !important;color:#90111A !important;}
--------------------------------------------------------------------------------
/Web/js/lightyear.js:
--------------------------------------------------------------------------------
1 | var lightyear = function(){
2 |
3 | /**
4 | * 页面loading
5 | */
6 | var pageLoader = function($mode) {
7 | var $loadingEl = jQuery('#lyear-loading');
8 | $mode = $mode || 'show';
9 | if ($mode === 'show') {
10 | if ($loadingEl.length) {
11 | $loadingEl.fadeIn(250);
12 | } else {
13 | jQuery('body').prepend('');
14 | }
15 | } else if ($mode === 'hide') {
16 | if ($loadingEl.length) {
17 | $loadingEl.fadeOut(250);
18 | }
19 | }
20 | return false;
21 | };
22 |
23 | /**
24 | * 页面小提示
25 | * @param $msg 提示信息
26 | * @param $type 提示类型:'info', 'success', 'warning', 'danger'
27 | * @param $delay 毫秒数,例如:1000
28 | * @param $icon 图标,例如:'fa fa-user' 或 'glyphicon glyphicon-warning-sign'
29 | * @param $from 'top' 或 'bottom'
30 | * @param $align 'left', 'right', 'center'
31 | * @author CaiWeiMing <314013107@qq.com>
32 | */
33 | var tips = function ($msg, $type, $delay, $icon, $from, $align) {
34 | $type = $type || 'info';
35 | $delay = $delay || 1000;
36 | $from = $from || 'top';
37 | $align = $align || 'center';
38 | $enter = $type == 'danger' ? 'animated shake' : 'animated fadeInUp';
39 |
40 | jQuery.notify({
41 | icon: $icon,
42 | message: $msg
43 | },
44 | {
45 | element: 'body',
46 | type: $type,
47 | allow_dismiss: true,
48 | newest_on_top: true,
49 | showProgressbar: false,
50 | placement: {
51 | from: $from,
52 | align: $align
53 | },
54 | offset: 20,
55 | spacing: 10,
56 | z_index: 10800,
57 | delay: $delay,
58 | //timer: 1000,
59 | animate: {
60 | enter: $enter,
61 | exit: 'animated fadeOutDown'
62 | }
63 | });
64 | };
65 |
66 | return {
67 | // 页面小提示
68 | notify : function ($msg, $type, $delay, $icon, $from, $align) {
69 | tips($msg, $type, $delay, $icon, $from, $align);
70 | },
71 | // 页面加载动画
72 | loading : function ($mode) {
73 | pageLoader($mode);
74 | }
75 | };
76 | }();
--------------------------------------------------------------------------------
/Web/logo-sidebar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/Web/logo-sidebar.png
--------------------------------------------------------------------------------
/app/api/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/api/__init__.py
--------------------------------------------------------------------------------
/app/api/v1/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/api/v1/__init__.py
--------------------------------------------------------------------------------
/app/api/v1/attack.py:
--------------------------------------------------------------------------------
1 | # 在 api/v1/attack_service.py 文件中
2 | from fastapi import APIRouter, Depends, HTTPException, status, Form, Response
3 | from pydantic import BaseModel
4 | from app.services.attack_service import any_exec
5 | from sqlalchemy.orm import Session
6 | from app.core.database import _DATABASE_
7 |
8 | router = APIRouter()
9 |
10 |
11 | class Item(BaseModel):
12 | hostname: str
13 | username: str
14 | password: str
15 | command: str
16 | is_hash: int
17 | exec_method: str
18 |
19 |
20 | @router.post("/attack")
21 | def create_user_endpoint(item: Item, db: Session = Depends(_DATABASE_)):
22 | print(item.is_hash)
23 | res = any_exec(db, item.hostname, item.username, item.password, item.command, item.exec_method, item.is_hash)
24 | return res
25 |
--------------------------------------------------------------------------------
/app/api/v1/proxy.py:
--------------------------------------------------------------------------------
1 | # 在 api/v1/proxy.py 文件中
2 | from typing import Any, Union
3 |
4 | from fastapi import APIRouter, Depends, Form
5 | from pydantic import BaseModel
6 | from sqlalchemy.orm import Session
7 | from app.core.database import _DATABASE_ # 从这里导入
8 | from app.services.proxy_service import get_proxy, update_proxy
9 |
10 | router = APIRouter()
11 |
12 |
13 | class ProxyData(BaseModel):
14 | proxy_type: str
15 | proxy_host: str
16 | proxy_port: str
17 | is_active: int
18 |
19 |
20 | class SuccessResponse(BaseModel):
21 | code: int
22 | data: Any
23 |
24 |
25 | class ErrorResponse(BaseModel):
26 | code: int
27 | detail: str
28 |
29 |
30 | class Item(BaseModel):
31 | proxy_type: str
32 | proxy_host: str
33 | proxy_port: str
34 | is_active: int
35 |
36 | APIResponse = Union[SuccessResponse, ErrorResponse]
37 |
38 |
39 | @router.get("/get_proxy", response_model=APIResponse)
40 | def Routing_Get_Proxy(db: Session = Depends(_DATABASE_)):
41 | db_item = get_proxy(db)
42 | if db_item is None:
43 | return ErrorResponse(code=-1, detail="代理不存在")
44 |
45 | data = ProxyData(
46 | proxy_type=db_item.proxy_type,
47 | proxy_host=db_item.proxy_host,
48 | proxy_port=db_item.proxy_port,
49 | is_active=db_item.is_active
50 | )
51 | return SuccessResponse(code=0, data=data)
52 |
53 |
54 | @router.post("/set_proxy", response_model=APIResponse)
55 | def Routing_Set_Proxy(item: Item, db: Session = Depends(_DATABASE_)):
56 | db_item = update_proxy(db, item.proxy_type, item.proxy_host, item.proxy_port, item.is_active)
57 | if db_item["code"] == -1:
58 | return ErrorResponse(code=-1, detail="代理不存在")
59 | return SuccessResponse(code=0, data="修改成功")
60 |
61 |
--------------------------------------------------------------------------------
/app/core/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/core/__init__.py
--------------------------------------------------------------------------------
/app/core/config.py:
--------------------------------------------------------------------------------
1 | flag = 'hello'
2 |
--------------------------------------------------------------------------------
/app/core/database.py:
--------------------------------------------------------------------------------
1 | # 在core/database.py文件中
2 | from sqlalchemy import create_engine
3 | from sqlalchemy.orm import sessionmaker
4 | from app.models.base import Base
5 | from fastapi import Depends
6 |
7 |
8 | from app.models import proxy
9 |
10 | DATABASE_URL = "sqlite:///./database.db"
11 |
12 | engine = create_engine(DATABASE_URL)
13 | SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
14 |
15 | # 创建数据库表
16 | Base.metadata.create_all(bind=engine)
17 |
18 |
19 | # 这是获取数据库会话的依赖项
20 | def _DATABASE_():
21 | db = SessionLocal()
22 | try:
23 | yield db
24 | finally:
25 | db.close()
26 |
--------------------------------------------------------------------------------
/app/core/security.py:
--------------------------------------------------------------------------------
1 | # 在 core/security.py 文件中
2 | from fastapi.security import HTTPBasic
3 |
4 | security = HTTPBasic()
5 |
--------------------------------------------------------------------------------
/app/models/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/models/__init__.py
--------------------------------------------------------------------------------
/app/models/base.py:
--------------------------------------------------------------------------------
1 | # 在models/base.py中
2 | from sqlalchemy import Column, Integer, String
3 | from sqlalchemy.ext.declarative import declarative_base
4 |
5 | Base = declarative_base()
6 |
--------------------------------------------------------------------------------
/app/models/proxy.py:
--------------------------------------------------------------------------------
1 | # 在models/proxy.py中
2 | from sqlalchemy import Column, Integer, String, event
3 | from .base import Base # 从基础模型中导入 Base
4 |
5 |
6 | class Proxy(Base):
7 | __tablename__ = "proxy"
8 |
9 | id = Column(Integer, primary_key=True, index=True)
10 | proxy_type = Column(String, unique=True)
11 | proxy_host = Column(String, unique=True)
12 | proxy_port = Column(Integer, unique=True)
13 | is_active = Column(Integer, default=1)
14 |
15 |
16 | def insert_initial_data(target, connection, **kwargs):
17 | result = connection.execute(target.select()).fetchone()
18 | if not result: # 检查表是否为空
19 | connection.execute(target.insert(), {
20 | "proxy_type": "Socks5",
21 | "proxy_host": "8.8.8.8",
22 | "proxy_port": "1080",
23 | "is_active": 1
24 | })
25 |
26 |
27 | event.listen(Proxy.__table__, 'after_create', insert_initial_data)
28 |
--------------------------------------------------------------------------------
/app/services/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/__init__.py
--------------------------------------------------------------------------------
/app/services/attack_service.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/attack_service.so
--------------------------------------------------------------------------------
/app/services/impacketweb/atexec.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/impacketweb/atexec.so
--------------------------------------------------------------------------------
/app/services/impacketweb/dcomexec.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/impacketweb/dcomexec.so
--------------------------------------------------------------------------------
/app/services/impacketweb/psexec.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/impacketweb/psexec.so
--------------------------------------------------------------------------------
/app/services/impacketweb/wmiexec.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/app/services/impacketweb/wmiexec.so
--------------------------------------------------------------------------------
/app/services/proxy_service.py:
--------------------------------------------------------------------------------
1 | # 在 services/proxy_service.py 文件中
2 | from pydantic import BaseModel
3 | from sqlalchemy.orm import Session
4 | from app.models.proxy import Proxy
5 |
6 |
7 |
8 | def get_proxy(db: Session):
9 | return db.query(Proxy).filter(Proxy.id == 1).first()
10 |
11 |
12 | def update_proxy(db: Session, proxy_type: str, proxy_host: str, proxy_port: int, is_active: int):
13 | db_item: Proxy = db.query(Proxy).filter(Proxy.id == 1).first()
14 | if db_item is None:
15 | return {"code": -1, "detail": "代理不存在"}
16 | db_item.proxy_type = proxy_type
17 | db_item.proxy_host = proxy_host
18 | db_item.proxy_port = proxy_port
19 | db_item.is_active = is_active
20 | db.commit()
21 | db.refresh(db_item)
22 | return {"code": 0, "data": db_item}
23 |
--------------------------------------------------------------------------------
/images/代码1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/images/代码1.jpg
--------------------------------------------------------------------------------
/images/代码2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/images/代码2.jpg
--------------------------------------------------------------------------------
/images/哈希传递.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/images/哈希传递.jpg
--------------------------------------------------------------------------------
/images/设置代理.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XiaoLi996/Impacket_For_Web/a0fa39d99ad8ff665460d7a82e2b353de03a1f60/images/设置代理.jpg
--------------------------------------------------------------------------------
/main.py:
--------------------------------------------------------------------------------
1 | from fastapi import FastAPI
2 | from fastapi.exceptions import HTTPException
3 | from starlette.staticfiles import StaticFiles
4 | from fastapi.middleware.cors import CORSMiddleware
5 | from uvicorn import run
6 | from app.api.v1 import proxy, attack
7 |
8 | app = FastAPI()
9 |
10 | origins = ["*"]
11 |
12 | app.add_middleware(
13 | CORSMiddleware,
14 | allow_origins=origins,
15 | allow_credentials=True,
16 | allow_methods=["*"],
17 | allow_headers=["*"],
18 | )
19 | app.mount("/Web", StaticFiles(directory="Web"), name="Web")
20 | app.include_router(proxy.router, prefix="/v1/proxy", tags=["proxy"])
21 | app.include_router(attack.router, prefix="/v1/attack", tags=["attack"])
22 |
23 | if __name__ == '__main__':
24 | run("main:app", host="0.0.0.0", port=8000, reload=True)
25 |
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | fastapi~=0.96.0
2 | SQLAlchemy~=2.0.15
3 | pydantic~=1.10.9
4 | uvicorn~=0.22.0
5 | Werkzeug~=2.3.5
6 | passlib~=1.7.4
7 | requests~=2.31.0
8 | impacket~=0.11.0
9 | PySocks~=1.7.1
--------------------------------------------------------------------------------