├── README.md ├── .settings ├── org.eclipse.wst.jsdt.ui.superType.name ├── org.eclipse.wst.validation.prefs ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.m2e.core.prefs ├── org.eclipse.ltk.core.refactoring.prefs ├── org.eclipse.core.resources.prefs ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.jdt.core.prefs ├── .jsdtscope └── org.eclipse.wst.common.component ├── target ├── classes │ ├── com │ │ └── test │ │ │ ├── entity │ │ │ └── Student.class │ │ │ ├── Dao │ │ │ └── StudentMapper.class │ │ │ ├── SpringBootWebApplication.class │ │ │ ├── service │ │ │ ├── IStudentService.class │ │ │ └── impl │ │ │ │ └── StudentServiceImpl.class │ │ │ ├── controller │ │ │ └── StudentController.class │ │ │ └── mapping │ │ │ └── StudentMapping.xml │ └── application.properties ├── maven-archiver │ └── pom.properties └── m2e-wtp │ └── web-resources │ └── META-INF │ ├── maven │ └── org.springframework.boot │ │ ├── spring-boot-web-jsp │ │ ├── pom.properties │ │ └── pom.xml │ │ └── spring-boot-Demo │ │ ├── pom.properties │ │ └── pom.xml │ └── MANIFEST.MF ├── src └── main │ ├── webapp │ ├── element-ui │ │ └── lib │ │ │ ├── theme-default │ │ │ ├── fonts │ │ │ │ ├── element-icons.ttf │ │ │ │ └── element-icons.woff │ │ │ ├── common │ │ │ │ ├── popup.css │ │ │ │ └── transition.css │ │ │ ├── core │ │ │ │ ├── tag.css │ │ │ │ ├── dropdown.css │ │ │ │ ├── input.css │ │ │ │ └── option.css │ │ │ ├── date-picker │ │ │ │ ├── time-range-picker.css │ │ │ │ ├── picker.css │ │ │ │ ├── month-table.css │ │ │ │ ├── year-table.css │ │ │ │ ├── time-spinner.css │ │ │ │ ├── date-picker.css │ │ │ │ ├── time-picker.css │ │ │ │ ├── date-table.css │ │ │ │ ├── date-range-picker.css │ │ │ │ └── picker-panel.css │ │ │ └── mixins │ │ │ │ └── _button.css │ │ │ ├── mixins │ │ │ ├── locale.js │ │ │ ├── emitter.js │ │ │ └── migrating.js │ │ │ ├── util │ │ │ ├── merge.js │ │ │ ├── util.js │ │ │ ├── vdom.js │ │ │ ├── scrollbar-width.js │ │ │ ├── sync.js │ │ │ └── clickoutside.js │ │ │ ├── locale │ │ │ ├── format.js │ │ │ ├── index.js │ │ │ └── lang │ │ │ │ ├── zh-CN.js │ │ │ │ ├── zh-TW.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── sv-SE.js │ │ │ │ ├── fi.js │ │ │ │ ├── en.js │ │ │ │ ├── sk.js │ │ │ │ ├── da.js │ │ │ │ ├── nb-NO.js │ │ │ │ ├── tr-TR.js │ │ │ │ ├── el.js │ │ │ │ ├── bg.js │ │ │ │ ├── fr.js │ │ │ │ ├── it.js │ │ │ │ ├── de.js │ │ │ │ ├── ru-RU.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── fa.js │ │ │ │ ├── es.js │ │ │ │ ├── nl.js │ │ │ │ ├── pt.js │ │ │ │ ├── th.js │ │ │ │ ├── id.js │ │ │ │ ├── vi.js │ │ │ │ └── pl.js │ │ │ ├── umd │ │ │ └── locale │ │ │ │ ├── zh-CN.js │ │ │ │ ├── zh-TW.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── sv-SE.js │ │ │ │ ├── fi.js │ │ │ │ ├── en.js │ │ │ │ ├── sk.js │ │ │ │ ├── da.js │ │ │ │ ├── el.js │ │ │ │ ├── nb-NO.js │ │ │ │ ├── tr-TR.js │ │ │ │ ├── bg.js │ │ │ │ ├── fr.js │ │ │ │ ├── it.js │ │ │ │ ├── de.js │ │ │ │ ├── fa.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ru-RU.js │ │ │ │ ├── es.js │ │ │ │ ├── nl.js │ │ │ │ ├── id.js │ │ │ │ ├── pt.js │ │ │ │ ├── th.js │ │ │ │ ├── vi.js │ │ │ │ └── pl.js │ │ │ └── transitions │ │ │ └── collapse-transition.js │ └── js │ │ └── tool.js │ ├── java │ └── com │ │ └── test │ │ ├── entity │ │ └── Student.java │ │ ├── service │ │ ├── IStudentService.java │ │ └── impl │ │ │ └── StudentServiceImpl.java │ │ ├── Dao │ │ └── StudentMapper.java │ │ ├── SpringBootWebApplication.java │ │ ├── mapping │ │ └── StudentMapping.xml │ │ └── controller │ │ └── StudentController.java │ └── resources │ └── application.properties ├── .gitattributes ├── .gitignore ├── .project └── pom.xml /README.md: -------------------------------------------------------------------------------- 1 | # SpringBoot 2 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /target/classes/com/test/entity/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/entity/Student.class -------------------------------------------------------------------------------- /target/classes/com/test/Dao/StudentMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/Dao/StudentMapper.class -------------------------------------------------------------------------------- /.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false 3 | -------------------------------------------------------------------------------- /target/classes/com/test/SpringBootWebApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/SpringBootWebApplication.class -------------------------------------------------------------------------------- /target/classes/com/test/service/IStudentService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/service/IStudentService.class -------------------------------------------------------------------------------- /target/classes/com/test/controller/StudentController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/controller/StudentController.class -------------------------------------------------------------------------------- /target/classes/com/test/service/impl/StudentServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/target/classes/com/test/service/impl/StudentServiceImpl.class -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/src/main/webapp/element-ui/lib/theme-default/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjfy1992/SpringBoot/HEAD/src/main/webapp/element-ui/lib/theme-default/fonts/element-icons.woff -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Apache Maven 2 | #Fri Apr 28 10:08:38 CST 2017 3 | version=1.0 4 | groupId=org.springframework.boot 5 | artifactId=spring-boot-web-jsp 6 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/org.springframework.boot/spring-boot-web-jsp/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Fri Apr 28 17:11:17 CST 2017 3 | version=1.0 4 | groupId=org.springframework.boot 5 | m2e.projectName=spring-boot-Demo 6 | m2e.projectLocation=G\:\\spring-boot-web-jsp\\spring-boot-web-jsp 7 | artifactId=spring-boot-web-jsp 8 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/org.springframework.boot/spring-boot-Demo/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Sun Apr 30 09:32:42 CST 2017 3 | version=1.0 4 | groupId=org.springframework.boot 5 | m2e.projectName=spring-boot-Demo-master 6 | m2e.projectLocation=E\:\\Program Files\\eclipse-neon-workspace\\spring-boot-Demo-master 7 | artifactId=spring-boot-Demo 8 | -------------------------------------------------------------------------------- /src/main/java/com/test/entity/Student.java: -------------------------------------------------------------------------------- 1 | package com.test.entity; 2 | 3 | public class Student { 4 | 5 | private Integer id; 6 | private String name; 7 | 8 | public Integer getId() { 9 | return id; 10 | } 11 | public void setId(Integer id) { 12 | this.id = id; 13 | } 14 | public String getName() { 15 | return name; 16 | } 17 | public void setName(String name) { 18 | this.name = name; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/test/service/IStudentService.java: -------------------------------------------------------------------------------- 1 | package com.test.service; 2 | 3 | import com.github.pagehelper.Page; 4 | import com.test.entity.Student; 5 | 6 | public interface IStudentService { 7 | public Page getStudents(String parameter, int pageNum, int pageSize); 8 | public void addStudents(String name); 9 | public void deleteStudents(int[] id); 10 | public void updateStudents(int id, String new_name); 11 | } 12 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: Spring Boot Web JSP Example 3 | Implementation-Version: 1.0 4 | Built-By: Administrator 5 | Implementation-Vendor-Id: org.springframework.boot 6 | Build-Jdk: 1.8.0_60 7 | Implementation-URL: http://projects.spring.io/spring-boot/spring-boot- 8 | Demo/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/mixins/locale.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | var _locale = require('element-ui/lib/locale'); 6 | 7 | exports.default = { 8 | methods: { 9 | t: function t() { 10 | for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { 11 | args[_key] = arguments[_key]; 12 | } 13 | 14 | return _locale.t.apply(this, args); 15 | } 16 | } 17 | }; -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 8 | org.eclipse.jdt.core.compiler.source=1.8 9 | -------------------------------------------------------------------------------- /src/main/java/com/test/Dao/StudentMapper.java: -------------------------------------------------------------------------------- 1 | package com.test.Dao; 2 | 3 | import java.util.List; 4 | import org.apache.ibatis.annotations.Param; 5 | import com.test.entity.Student; 6 | 7 | public interface StudentMapper { 8 | public List getStudents(@Param("parameter")String parameter); 9 | public void addStudents(@Param("name")String name); 10 | public void deleteStudents(@Param("ids")int[] id); 11 | public void updateStudents(int id, String new_name); 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/merge.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | exports.__esModule = true; 4 | 5 | exports.default = function (target) { 6 | for (var i = 1, j = arguments.length; i < j; i++) { 7 | var source = arguments[i] || {}; 8 | for (var prop in source) { 9 | if (source.hasOwnProperty(prop)) { 10 | var value = source[prop]; 11 | if (value !== undefined) { 12 | target[prop] = value; 13 | } 14 | } 15 | } 16 | } 17 | 18 | return target; 19 | }; 20 | 21 | ; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/common/popup.css: -------------------------------------------------------------------------------- 1 | .v-modal-enter { 2 | animation: v-modal-in .2s ease; 3 | } 4 | 5 | .v-modal-leave { 6 | animation: v-modal-out .2s ease forwards; 7 | } 8 | 9 | @keyframes v-modal-in { 10 | 0% { 11 | opacity: 0; 12 | } 13 | 100% { 14 | } 15 | } 16 | 17 | @keyframes v-modal-out { 18 | 0% { 19 | } 20 | 100% { 21 | opacity: 0; 22 | } 23 | } 24 | 25 | .v-modal { 26 | position: fixed; 27 | left: 0; 28 | top: 0; 29 | width: 100%; 30 | height: 100%; 31 | opacity: 0.5; 32 | background: #000; 33 | } 34 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/util.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | exports.__esModule = true; 4 | exports.hasOwn = hasOwn; 5 | exports.toObject = toObject; 6 | var hasOwnProperty = Object.prototype.hasOwnProperty; 7 | function hasOwn(obj, key) { 8 | return hasOwnProperty.call(obj, key); 9 | }; 10 | 11 | function extend(to, _from) { 12 | for (var key in _from) { 13 | to[key] = _from[key]; 14 | } 15 | return to; 16 | }; 17 | 18 | function toObject(arr) { 19 | var res = {}; 20 | for (var i = 0; i < arr.length; i++) { 21 | if (arr[i]) { 22 | extend(res, arr[i]); 23 | } 24 | } 25 | return res; 26 | }; -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.mvc.view.prefix: /WEB-INF/jsp/ 2 | spring.mvc.view.suffix: .jsp 3 | 4 | mybatis.type-aliases-package = com.test.entity 5 | mybatis.mapperLocations = classpath*:**/mapping/*.xml 6 | 7 | spring.datasource.driverClassName = com.mysql.jdbc.Driver 8 | spring.datasource.url = jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8 9 | spring.datasource.username = root 10 | spring.datasource.password = root 11 | 12 | #pagehelper 13 | pagehelper.helperDialect=mysql 14 | pagehelper.reasonable=true 15 | pagehelper.supportMethodsArguments=true 16 | pagehelper.params=count=countSql -------------------------------------------------------------------------------- /target/classes/application.properties: -------------------------------------------------------------------------------- 1 | spring.mvc.view.prefix: /WEB-INF/jsp/ 2 | spring.mvc.view.suffix: .jsp 3 | 4 | mybatis.type-aliases-package = com.test.entity 5 | mybatis.mapperLocations = classpath*:**/mapping/*.xml 6 | 7 | spring.datasource.driverClassName = com.mysql.jdbc.Driver 8 | spring.datasource.url = jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8 9 | spring.datasource.username = root 10 | spring.datasource.password = root 11 | 12 | #pagehelper 13 | pagehelper.helperDialect=mysql 14 | pagehelper.reasonable=true 15 | pagehelper.supportMethodsArguments=true 16 | pagehelper.params=count=countSql -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/core/tag.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import "../common/var.css"; 3 | 4 | @component-namespace element-core { 5 | 6 | @b tag { 7 | background-color: var(--tag-fill); 8 | border: 0; 9 | border-radius: var(--tag-border-radius); 10 | color: var(--tag-color); 11 | height: 22px; 12 | margin: 1px; 13 | outline: 0; 14 | padding: 3px 16px 3px 3px; 15 | position: relative; 16 | 17 | @e button { 18 | color: var(--tag-close-color); 19 | cursor: pointer; 20 | line-height: 1; 21 | 22 | /* 增大可点击面积 */ 23 | padding: 5px; 24 | position: absolute; 25 | right: 0; 26 | top: 0; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/time-range-picker.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b time-range-picker { 5 | min-width: 354px; 6 | overflow: visible; 7 | 8 | @e content { 9 | position: relative; 10 | text-align: center; 11 | padding: 10px; 12 | } 13 | 14 | @e cell { 15 | box-sizing: border-box; 16 | margin: 0; 17 | padding: 4px 7px 7px; 18 | width: 50%; 19 | display: inline-block; 20 | } 21 | 22 | @e header { 23 | margin-bottom: 5px; 24 | text-align: center; 25 | font-size: 14px; 26 | } 27 | 28 | @e body { 29 | border-radius:2px; 30 | border: 1px solid var(--datepicker-border-color); 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/picker.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | @import "../common/transition.css"; 3 | 4 | @component-namespace el { 5 | @b date-editor { 6 | position: relative; 7 | display: inline-block; 8 | 9 | &.el-input { 10 | width: 193px; 11 | } 12 | 13 | @m daterange { 14 | &.el-input { 15 | width: 220px; 16 | } 17 | } 18 | 19 | @m datetimerange { 20 | &.el-input { 21 | width: 350px; 22 | } 23 | } 24 | 25 | .el-picker-panel { 26 | position: absolute; 27 | min-width: 180px; 28 | box-sizing: border-box; 29 | box-shadow: 0 2px 6px #ccc; 30 | background: var(--color-white); 31 | z-index: 10; 32 | top: 41px; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/vdom.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; 6 | 7 | exports.isVNode = isVNode; 8 | exports.getFirstComponentChild = getFirstComponentChild; 9 | 10 | var _util = require('element-ui/lib/utils/util'); 11 | 12 | function isVNode(node) { 13 | return (typeof node === 'undefined' ? 'undefined' : _typeof(node)) === 'object' && (0, _util.hasOwn)(node, 'componentOptions'); 14 | }; 15 | 16 | function getFirstComponentChild(children) { 17 | return children && children.filter(function (c) { 18 | return c && c.tag; 19 | })[0]; 20 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear in the root of a volume 35 | .DocumentRevisions-V100 36 | .fseventsd 37 | .Spotlight-V100 38 | .TemporaryItems 39 | .Trashes 40 | .VolumeIcon.icns 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | -------------------------------------------------------------------------------- /src/main/java/com/test/SpringBootWebApplication.java: -------------------------------------------------------------------------------- 1 | package com.test; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | import org.springframework.boot.builder.SpringApplicationBuilder; 7 | import org.springframework.boot.web.support.SpringBootServletInitializer; 8 | 9 | @MapperScan("com.test.Dao") 10 | 11 | @SpringBootApplication 12 | public class SpringBootWebApplication extends SpringBootServletInitializer { 13 | 14 | @Override 15 | protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { 16 | return application.sources(SpringBootWebApplication.class); 17 | } 18 | 19 | public static void main(String[] args) throws Exception { 20 | SpringApplication.run(SpringBootWebApplication.class, args); 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/month-table.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b month-table { 5 | font-size: 12px; 6 | margin: -1px; 7 | border-collapse: collapse; 8 | 9 | td { 10 | text-align: center; 11 | padding: 20px 3px; 12 | cursor: pointer; 13 | 14 | &.disabled .cell { 15 | background-color: #f4f4f4; 16 | cursor: not-allowed; 17 | color: #ccc; 18 | } 19 | 20 | .cell { 21 | width: 48px; 22 | height: 32px; 23 | display: block; 24 | line-height: 32px; 25 | color: var(--datepicker-color); 26 | 27 | &:hover { 28 | background-color: var(--datepicker-cell-hover-color); 29 | } 30 | } 31 | 32 | &.current:not(.disabled) .cell { 33 | background-color: var(--datepicker-active-color) !important; 34 | color: var(--color-white); 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/year-table.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b year-table { 5 | font-size: 12px; 6 | margin: -1px; 7 | border-collapse: collapse; 8 | 9 | .el-icon { 10 | color: var(--datepicker-icon-color); 11 | } 12 | 13 | td { 14 | text-align: center; 15 | padding: 20px 3px; 16 | cursor: pointer; 17 | 18 | &.disabled .cell { 19 | background-color: #f4f4f4; 20 | cursor: not-allowed; 21 | color: #ccc; 22 | } 23 | 24 | .cell { 25 | width: 48px; 26 | height: 32px; 27 | display: block; 28 | line-height: 32px; 29 | color: var(--datepicker-color); 30 | 31 | &:hover { 32 | background-color: var(--datepicker-cell-hover-color); 33 | } 34 | } 35 | 36 | &.current:not(.disabled) .cell { 37 | background-color: var(--datepicker-active-color) !important; 38 | color: var(--color-white); 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/scrollbar-width.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | exports.default = function () { 6 | if (_vue2.default.prototype.$isServer) return 0; 7 | if (scrollBarWidth !== undefined) return scrollBarWidth; 8 | 9 | var outer = document.createElement('div'); 10 | outer.className = 'el-scrollbar__wrap'; 11 | outer.style.visibility = 'hidden'; 12 | outer.style.width = '100px'; 13 | outer.style.position = 'absolute'; 14 | outer.style.top = '-9999px'; 15 | document.body.appendChild(outer); 16 | 17 | var widthNoScroll = outer.offsetWidth; 18 | outer.style.overflow = 'scroll'; 19 | 20 | var inner = document.createElement('div'); 21 | inner.style.width = '100%'; 22 | outer.appendChild(inner); 23 | 24 | var widthWithScroll = inner.offsetWidth; 25 | outer.parentNode.removeChild(outer); 26 | 27 | return widthNoScroll - widthWithScroll; 28 | }; 29 | 30 | var _vue = require('vue'); 31 | 32 | var _vue2 = _interopRequireDefault(_vue); 33 | 34 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 35 | 36 | var scrollBarWidth = void 0; 37 | 38 | ; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/core/dropdown.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import "../common/var.css"; 3 | @import "./option.css"; 4 | 5 | @component-namespace element { 6 | 7 | @b dropdown { 8 | background-color: var(--dropdown-fill); 9 | border: var(--dropdown-border); 10 | border-radius: var(--dropdown-radius); 11 | box-shadow: var(--dropdown-shadow); 12 | left: 0; 13 | list-style-type: none; 14 | margin: -var(--dropdown-border-width); 15 | margin-top: 5px; 16 | min-width: calc(var(--input-width) + 4); 17 | padding: 0; 18 | position: absolute; 19 | white-space: nowrap; 20 | z-index: var(--index-normal); 21 | 22 | @e empty { 23 | color: var(--dropdown-option-empty-color); 24 | font-size: var(--input-font-size); 25 | padding: 7px; 26 | text-align: center; 27 | } 28 | 29 | @e list { 30 | margin: 0; 31 | max-height: var(--cascader-height); 32 | overflow: auto; 33 | padding: 0; 34 | } 35 | 36 | @e option { 37 | max-height: 250px; 38 | overflow: auto; 39 | } 40 | 41 | &:empty { 42 | display: none; 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/main/java/com/test/service/impl/StudentServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.test.service.impl; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.stereotype.Service; 5 | 6 | import com.github.pagehelper.Page; 7 | import com.github.pagehelper.PageHelper; 8 | import com.test.Dao.StudentMapper; 9 | import com.test.entity.Student; 10 | import com.test.service.IStudentService; 11 | 12 | @Service 13 | public class StudentServiceImpl implements IStudentService{ 14 | 15 | @Autowired 16 | private StudentMapper studentMapper; 17 | 18 | @Override 19 | public Page getStudents(String parameter, int pageNum, int pageSize) { 20 | Page page = PageHelper.startPage(pageNum, pageSize); 21 | studentMapper.getStudents(parameter); 22 | return page; 23 | } 24 | 25 | @Override 26 | public void addStudents(String name) { 27 | studentMapper.addStudents(name); 28 | } 29 | 30 | @Override 31 | public void deleteStudents(int[] id) { 32 | studentMapper.deleteStudents(id); 33 | } 34 | 35 | @Override 36 | public void updateStudents(int id, String new_name) { 37 | studentMapper.updateStudents(id, new_name); 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/mixins/emitter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | exports.__esModule = true; 4 | function _broadcast(componentName, eventName, params) { 5 | this.$children.forEach(function (child) { 6 | var name = child.$options.componentName; 7 | 8 | if (name === componentName) { 9 | child.$emit.apply(child, [eventName].concat(params)); 10 | } else { 11 | _broadcast.apply(child, [componentName, eventName].concat([params])); 12 | } 13 | }); 14 | } 15 | exports.default = { 16 | methods: { 17 | dispatch: function dispatch(componentName, eventName, params) { 18 | var parent = this.$parent || this.$root; 19 | var name = parent.$options.componentName; 20 | 21 | while (parent && (!name || name !== componentName)) { 22 | parent = parent.$parent; 23 | 24 | if (parent) { 25 | name = parent.$options.componentName; 26 | } 27 | } 28 | if (parent) { 29 | parent.$emit.apply(parent, [eventName].concat(params)); 30 | } 31 | }, 32 | broadcast: function broadcast(componentName, eventName, params) { 33 | _broadcast.call(this, componentName, eventName, params); 34 | } 35 | } 36 | }; -------------------------------------------------------------------------------- /src/main/webapp/js/tool.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * 前端工具类 4 | */ 5 | 6 | //设置cookie键值对,值解析为JSON字符串 7 | var setCookie = function(key, value){ 8 | var str = JSON.stringify(value) 9 | document.cookie = key + "=" + str; 10 | } 11 | 12 | //在cookie中通过键名获取JSON格式的值并解析为对象,若未取到则返回空 13 | var getCookie = function(cname){ 14 | var name = cname + "="; 15 | var cookieValue = document.cookie.trim(); 16 | return cookieValue.indexOf(name)==0?JSON.parse(cookieValue.substring(name.length,cookieValue.length)):null; 17 | } 18 | 19 | //时间日期格式化 20 | var format = function(time, format){ 21 | var t = new Date(time); 22 | var tf = function(i){return (i < 10 ? '0' :'') + i}; 23 | return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function(a) 24 | { 25 | switch(a) 26 | { 27 | case 'yyyy': 28 | return tf(t.getFullYear()); 29 | break; 30 | case 'MM': 31 | return tf(t.getMonth() + 1); 32 | break; 33 | case 'mm': 34 | return tf(t.getMinutes()); 35 | break; 36 | case 'dd': 37 | return tf(t.getDate()); 38 | break; 39 | case 'HH': 40 | return tf(t.getHours()); 41 | break; 42 | case 'ss': 43 | return tf(t.getSeconds()); 44 | break; 45 | } 46 | }) 47 | } 48 | -------------------------------------------------------------------------------- /src/main/java/com/test/mapping/StudentMapping.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | insert into student(name) values (#{name}) 15 | 16 | 17 | 18 | update student set name = #{1} where id = #{0} 19 | 20 | 21 | 22 | delete from student 23 | 24 | id in 25 | 26 | #{id} 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /target/classes/com/test/mapping/StudentMapping.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | insert into student(name) values (#{name}) 15 | 16 | 17 | 18 | update student set name = #{1} where id = #{0} 19 | 20 | 21 | 22 | delete from student 23 | 24 | id in 25 | 26 | #{id} 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | spring-boot-Demo 4 | Spring Boot Web JSP Example. NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.wst.validation.validationbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.eclipse.jem.workbench.JavaEMFNature 31 | org.eclipse.wst.common.modulecore.ModuleCoreNature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.jdt.core.javanature 34 | org.eclipse.wst.common.project.facet.core.nature 35 | org.eclipse.wst.jsdt.core.jsNature 36 | 37 | 38 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/core/input.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import "../common/var.css"; 3 | 4 | @component-namespace element-core { 5 | 6 | @b input { 7 | background-color: var(--input-fill); 8 | border: var(--input-border); 9 | border-radius: var(--input-border-radius); 10 | box-sizing: border-box; 11 | color: var(--input-color); 12 | cursor: text; 13 | display: inline-block; 14 | font-size: var(--input-font-size); 15 | min-height: var(--input-height); 16 | min-width: var(--input-width); 17 | padding: 2px; 18 | position: relative; 19 | vertical-align: middle; 20 | 21 | @when disabled { 22 | background-color: var(--input-fill-disabled); 23 | border-color: inherit; 24 | box-shadow: none; 25 | color: var(--input-color-disabled); 26 | cursor: not-allowed; 27 | } 28 | 29 | @when readonly { 30 | cursor: pointer; 31 | } 32 | 33 | @when multiple { 34 | cursor: text; 35 | } 36 | 37 | &:hover, 38 | &.is-active { 39 | border-color: var(--input-focus-border); 40 | box-shadow: var(--input-shadow-hover); 41 | } 42 | 43 | @e original { 44 | background-color: inherit; 45 | border: none; 46 | box-sizing: border-box; 47 | cursor: inherit; 48 | height: 100%; 49 | line-height: 1.2; 50 | outline: none; 51 | padding: 5px 7px; 52 | width: auto; 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/time-spinner.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b time-spinner { 5 | &.has-seconds { 6 | .el-time-spinner__wrapper { 7 | width: 33%; 8 | 9 | .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) { 10 | padding-bottom: 15px; 11 | } 12 | } 13 | 14 | .el-time-spinner__wrapper:nth-child(2) { 15 | margin-left: 1%; 16 | } 17 | } 18 | 19 | @e wrapper { 20 | max-height: 190px; 21 | overflow: auto; 22 | display: inline-block; 23 | width: 50%; 24 | vertical-align: top; 25 | position: relative; 26 | } 27 | 28 | @e list { 29 | padding: 0; 30 | margin: 0; 31 | list-style: none; 32 | text-align: center; 33 | 34 | &::after, 35 | &::before { 36 | content: ''; 37 | display: block; 38 | width: 100%; 39 | height: 80px; 40 | } 41 | } 42 | 43 | @e item { 44 | height: 32px; 45 | line-height: 32px; 46 | font-size: 12px; 47 | 48 | &:hover:not(.disabled):not(.active) { 49 | background: var(--datepicker-cell-hover-color); 50 | cursor: pointer; 51 | } 52 | 53 | &.active:not(.disabled) { 54 | color: var(--color-white); 55 | } 56 | 57 | &.disabled { 58 | color: var(--datepicker-border-color); 59 | cursor: not-allowed; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/format.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; 6 | 7 | exports.default = function (Vue) { 8 | 9 | /** 10 | * template 11 | * 12 | * @param {String} string 13 | * @param {Array} ...args 14 | * @return {String} 15 | */ 16 | 17 | function template(string) { 18 | for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { 19 | args[_key - 1] = arguments[_key]; 20 | } 21 | 22 | if (args.length === 1 && _typeof(args[0]) === 'object') { 23 | args = args[0]; 24 | } 25 | 26 | if (!args || !args.hasOwnProperty) { 27 | args = {}; 28 | } 29 | 30 | return string.replace(RE_NARGS, function (match, prefix, i, index) { 31 | var result = void 0; 32 | 33 | if (string[index - 1] === '{' && string[index + match.length] === '}') { 34 | return i; 35 | } else { 36 | result = (0, _util.hasOwn)(args, i) ? args[i] : null; 37 | if (result === null || result === undefined) { 38 | return ''; 39 | } 40 | 41 | return result; 42 | } 43 | }); 44 | } 45 | 46 | return template; 47 | }; 48 | 49 | var _util = require('element-ui/lib/utils/util'); 50 | 51 | var RE_NARGS = /(%|)\{([0-9a-zA-Z_]+)\}/g; 52 | /** 53 | * String format template 54 | * - Inspired: 55 | * https://github.com/Matt-Esch/string-template/index.js 56 | */ -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/mixins/_button.css: -------------------------------------------------------------------------------- 1 | @define-mixin button-variant $color, $background-color, $border-color { 2 | color: $color; 3 | background-color: $background-color; 4 | border-color: $border-color; 5 | 6 | &:hover, 7 | &:focus { 8 | background: tint($background-color, var(--button-hover-tint-percent)); 9 | border-color: tint($border-color, var(--button-hover-tint-percent)); 10 | color: $color; 11 | } 12 | 13 | &:active { 14 | background: shade($background-color, var(--button-active-shade-percent)); 15 | border-color: shade($border-color, var(--button-active-shade-percent)); 16 | color: $color; 17 | outline: none; 18 | } 19 | 20 | &.is-active { 21 | background: shade($background-color, var(--button-active-shade-percent)); 22 | border-color: shade($border-color, var(--button-active-shade-percent)); 23 | color: $color; 24 | } 25 | 26 | &.is-plain { 27 | background: var(--button-default-fill); 28 | border: var(--border-base); 29 | color: var(--button-default-color); 30 | 31 | &:hover, 32 | &:focus { 33 | background: var(--color-white); 34 | border-color: $border-color; 35 | color: $background-color; 36 | } 37 | 38 | &:active { 39 | background: var(--color-white); 40 | border-color: shade($border-color, var(--button-active-shade-percent)); 41 | color: shade($background-color, var(--button-active-shade-percent)); 42 | outline: none; 43 | } 44 | } 45 | } 46 | 47 | @define-mixin button-size $padding-vertical, $padding-horizontal, $font-size, $border-radius { 48 | padding: $padding-vertical $padding-horizontal; 49 | font-size: $font-size; 50 | border-radius: $border-radius; 51 | } 52 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/common/transition.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import './var.css'; 3 | 4 | .fade-in-linear-enter-active, 5 | .fade-in-linear-leave-active { 6 | transition: var(--fade-linear-transition); 7 | } 8 | .fade-in-linear-enter, 9 | .fade-in-linear-leave, 10 | .fade-in-linear-leave-active { 11 | opacity: 0; 12 | } 13 | 14 | .el-fade-in-enter-active, 15 | .el-fade-in-leave-active { 16 | transition: all .3s cubic-bezier(.55,0,.1,1); 17 | } 18 | .el-fade-in-enter, 19 | .el-fade-in-leave-active { 20 | opacity: 0; 21 | } 22 | 23 | .el-zoom-in-center-enter-active, 24 | .el-zoom-in-center-leave-active { 25 | transition: all .3s cubic-bezier(.55,0,.1,1); 26 | } 27 | .el-zoom-in-center-enter, 28 | .el-zoom-in-center-leave-active { 29 | opacity: 0; 30 | transform: scaleX(0); 31 | } 32 | 33 | .el-zoom-in-top-enter-active, 34 | .el-zoom-in-top-leave-active { 35 | opacity: 1; 36 | transform: scaleY(1); 37 | transition: var(--md-fade-transition); 38 | transform-origin: center top; 39 | } 40 | .el-zoom-in-top-enter, 41 | .el-zoom-in-top-leave-active { 42 | opacity: 0; 43 | transform: scaleY(0); 44 | } 45 | 46 | .el-zoom-in-bottom-enter-active, 47 | .el-zoom-in-bottom-leave-active { 48 | opacity: 1; 49 | transform: scaleY(1); 50 | transition: var(--md-fade-transition); 51 | transform-origin: center bottom; 52 | } 53 | .el-zoom-in-bottom-enter, 54 | .el-zoom-in-bottom-leave-active { 55 | opacity: 0; 56 | transform: scaleY(0); 57 | } 58 | 59 | .collapse-transition { 60 | transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out; 61 | } 62 | 63 | .list-enter-active, .list-leave-active { 64 | transition: all 1s; 65 | } 66 | .list-enter, .list-leave-active { 67 | opacity: 0; 68 | transform: translateY(-30px); 69 | } 70 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/date-picker.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | @import "./picker-panel.css"; 3 | 4 | @component-namespace el { 5 | @b date-picker { 6 | min-width: 254px; 7 | 8 | &.has-sidebar.has-time { 9 | min-width: 434px; 10 | } 11 | 12 | &.has-sidebar { 13 | min-width: 370px; 14 | } 15 | 16 | &.has-time { 17 | min-width: 324px; 18 | } 19 | 20 | .el-picker-panel__content { 21 | min-width: 224px; 22 | } 23 | 24 | table { 25 | table-layout: fixed; 26 | width: 100%; 27 | } 28 | 29 | @e editor-wrap { 30 | position: relative; 31 | display: table-cell; 32 | padding: 0 5px; 33 | } 34 | 35 | @e time-header { 36 | position: relative; 37 | border-bottom: 1px solid var(--datepicker-inner-border-color); 38 | font-size: 12px; 39 | padding: 8px 5px 5px 5px; 40 | display: table; 41 | width: 100%; 42 | box-sizing: border-box; 43 | } 44 | 45 | @e header { 46 | margin: 12px; 47 | text-align: center; 48 | } 49 | 50 | @e header-label { 51 | font-size: 14px; 52 | padding: 0 5px; 53 | line-height: 22px; 54 | text-align: center; 55 | cursor: pointer; 56 | 57 | &:hover { 58 | color: var(--datepicker-text-hover-color); 59 | } 60 | 61 | &.active { 62 | color: var(--datepicker-active-color); 63 | } 64 | } 65 | 66 | @e prev-btn { 67 | float: left; 68 | } 69 | 70 | @e next-btn { 71 | float: right; 72 | } 73 | 74 | @e time-wrap { 75 | padding: 10px; 76 | text-align: center; 77 | } 78 | 79 | @e time-label { 80 | float: left; 81 | cursor: pointer; 82 | line-height: 30px; 83 | margin-left: 10px; 84 | } 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/core/option.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | @import "../common/var.css"; 3 | 4 | @component-namespace element { 5 | 6 | @b option { 7 | box-sizing: border-box; 8 | color: var(--dropdown-color); 9 | cursor: pointer; 10 | display: block; 11 | font-size: var(--dropdown-font-size); 12 | padding: 9px; 13 | 14 | @e remark { 15 | color: var(--dropdown-option-pinyin-color); 16 | float: right; 17 | } 18 | 19 | @m arrow { 20 | 21 | &:not(.is-last)::after { 22 | border-left: 1px solid var(--dropdown-border-color); 23 | border-top: 1px solid var(--dropdown-border-color); 24 | content: " "; 25 | height: 4px; 26 | margin-top: 6px; 27 | position: absolute; 28 | right: 12px; 29 | transform: rotate(135deg); 30 | width: 4px; 31 | } 32 | } 33 | 34 | @when disabled { 35 | background-color: transparent; 36 | color: var(--dropdown-option-color-disabled); 37 | cursor: not-allowed; 38 | } 39 | 40 | &:hover, 41 | &.is-hover { 42 | background-color: var(--dropdown-option-fill-hover); 43 | color: var(--dropdown-option-color-hover); 44 | } 45 | 46 | @when selected { 47 | background-color: var(--dropdown-option-fill-active); 48 | color: var(--dropdown-option-color-active); 49 | } 50 | } 51 | 52 | @b optiongroup { 53 | list-style: none; 54 | padding-left: 0; 55 | 56 | & .element-option { 57 | padding-left: 21px; 58 | } 59 | 60 | @e title { 61 | box-sizing: border-box; 62 | color: var(--dropdown-group-color); 63 | display: inline-block; 64 | font-size: var(--dropdown-font-size); 65 | padding: 8px; 66 | 67 | &:hover { 68 | background-color: inherit; 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/sync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | var SYNC_HOOK_PROP = '$v-sync'; 5 | 6 | /** 7 | * v-sync directive 8 | * 9 | * Usage: 10 | * v-sync:component-prop="context prop name" 11 | * 12 | * If your want to sync component's prop "visible" to context prop "myVisible", use like this: 13 | * v-sync:visible="myVisible" 14 | */ 15 | exports.default = { 16 | bind: function bind(el, binding, vnode) { 17 | var context = vnode.context; 18 | var component = vnode.child; 19 | var expression = binding.expression; 20 | var prop = binding.arg; 21 | 22 | if (!expression || !prop) { 23 | console.warn('v-sync should specify arg & expression, for example: v-sync:visible="myVisible"'); 24 | return; 25 | } 26 | 27 | if (!component || !component.$watch) { 28 | console.warn('v-sync is only available on Vue Component'); 29 | return; 30 | } 31 | 32 | var unwatchContext = context.$watch(expression, function (val) { 33 | component[prop] = val; 34 | }); 35 | 36 | var unwatchComponent = component.$watch(prop, function (val) { 37 | context[expression] = val; 38 | }); 39 | 40 | Object.defineProperty(component, SYNC_HOOK_PROP, { 41 | value: { 42 | unwatchContext: unwatchContext, 43 | unwatchComponent: unwatchComponent 44 | }, 45 | enumerable: false 46 | }); 47 | }, 48 | unbind: function unbind(el, binding, vnode) { 49 | var component = vnode.child; 50 | if (component && component[SYNC_HOOK_PROP]) { 51 | var _component$SYNC_HOOK_ = component[SYNC_HOOK_PROP], 52 | unwatchContext = _component$SYNC_HOOK_.unwatchContext, 53 | unwatchComponent = _component$SYNC_HOOK_.unwatchComponent; 54 | 55 | unwatchContext && unwatchContext(); 56 | unwatchComponent && unwatchComponent(); 57 | } 58 | } 59 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/mixins/migrating.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | /** 5 | * Show migrating guide in browser console. 6 | * 7 | * Usage: 8 | * import Migrating from 'element-ui/src/mixins/migrating'; 9 | * 10 | * mixins: [Migrating] 11 | * 12 | * add getMigratingConfig method for your component. 13 | * getMigratingConfig() { 14 | * return { 15 | * props: { 16 | * 'allow-no-selection': 'allow-no-selection is removed.', 17 | * 'selection-mode': 'selection-mode is removed.' 18 | * }, 19 | * events: { 20 | * selectionchange: 'selectionchange is renamed to selection-change.' 21 | * } 22 | * }; 23 | * }, 24 | */ 25 | exports.default = { 26 | mounted: function mounted() { 27 | if (process.env.NODE_ENV === 'production') return; 28 | if (!this.$vnode) return; 29 | 30 | var _getMigratingConfig = this.getMigratingConfig(), 31 | props = _getMigratingConfig.props, 32 | events = _getMigratingConfig.events; 33 | 34 | var _$vnode = this.$vnode, 35 | data = _$vnode.data, 36 | componentOptions = _$vnode.componentOptions; 37 | 38 | var definedProps = data.attrs || {}; 39 | var definedEvents = componentOptions.listeners || {}; 40 | 41 | for (var propName in definedProps) { 42 | if (definedProps.hasOwnProperty(propName) && props[propName]) { 43 | console.warn('[Element Migrating][Attribute]: ' + props[propName]); 44 | } 45 | } 46 | 47 | for (var eventName in definedEvents) { 48 | if (definedEvents.hasOwnProperty(eventName) && events[eventName]) { 49 | console.warn('[Element Migrating][Event]: ' + events[eventName]); 50 | } 51 | } 52 | }, 53 | 54 | methods: { 55 | getMigratingConfig: function getMigratingConfig() { 56 | return { 57 | props: {}, 58 | events: {} 59 | }; 60 | } 61 | } 62 | }; -------------------------------------------------------------------------------- /src/main/java/com/test/controller/StudentController.java: -------------------------------------------------------------------------------- 1 | package com.test.controller; 2 | 3 | import java.util.HashMap; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestMethod; 8 | import org.springframework.web.bind.annotation.RequestParam; 9 | import org.springframework.web.bind.annotation.ResponseBody; 10 | import org.springframework.web.bind.annotation.RestController; 11 | 12 | import com.github.pagehelper.Page; 13 | import com.test.entity.Student; 14 | import com.test.service.IStudentService; 15 | 16 | @RestController 17 | public class StudentController { 18 | 19 | @Autowired 20 | private IStudentService iStudentService; 21 | 22 | @RequestMapping("/getstu") 23 | public HashMap getStudents(@RequestParam(value="parameter") String parameter, 24 | @RequestParam(value="pageNum")int pageNum, @RequestParam(value="pageSize")int pageSize) { 25 | HashMap studentMap = new HashMap(); 26 | Page page = iStudentService.getStudents(parameter, pageNum, pageSize); 27 | studentMap.put("studentdata", page); 28 | studentMap.put("number", page.getTotal()); 29 | return studentMap; 30 | } 31 | 32 | @RequestMapping(value = "/add", method = RequestMethod.POST) 33 | public void add(@RequestParam(value="name") String name) { 34 | iStudentService.addStudents(name); 35 | } 36 | 37 | @RequestMapping(value = "/delete", method = RequestMethod.POST) 38 | public void delete(@RequestParam(value="array[]") int[] array) 39 | { 40 | iStudentService.deleteStudents(array); 41 | } 42 | 43 | @RequestMapping(value = "/update", method = RequestMethod.POST) 44 | public void update(@RequestParam(value="id")int id, @RequestParam(value="name")String name) 45 | { 46 | iStudentService.updateStudents(id, name); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.i18n = exports.use = exports.t = undefined; 5 | 6 | var _zhCN = require('element-ui/lib/locale/lang/zh-CN'); 7 | 8 | var _zhCN2 = _interopRequireDefault(_zhCN); 9 | 10 | var _vue = require('vue'); 11 | 12 | var _vue2 = _interopRequireDefault(_vue); 13 | 14 | var _deepmerge = require('deepmerge'); 15 | 16 | var _deepmerge2 = _interopRequireDefault(_deepmerge); 17 | 18 | var _format = require('./format'); 19 | 20 | var _format2 = _interopRequireDefault(_format); 21 | 22 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 23 | 24 | var format = (0, _format2.default)(_vue2.default); 25 | var lang = _zhCN2.default; 26 | var merged = false; 27 | var i18nHandler = function i18nHandler() { 28 | var vuei18n = Object.getPrototypeOf(this || _vue2.default).$t; 29 | if (typeof vuei18n === 'function') { 30 | if (!merged) { 31 | merged = true; 32 | _vue2.default.locale(_vue2.default.config.lang, (0, _deepmerge2.default)(lang, _vue2.default.locale(_vue2.default.config.lang) || {}, { clone: true })); 33 | } 34 | return vuei18n.apply(this, arguments); 35 | } 36 | }; 37 | 38 | var t = exports.t = function t(path, options) { 39 | var value = i18nHandler.apply(this, arguments); 40 | if (value !== null && value !== undefined) return value; 41 | 42 | var array = path.split('.'); 43 | var current = lang; 44 | 45 | for (var i = 0, j = array.length; i < j; i++) { 46 | var property = array[i]; 47 | value = current[property]; 48 | if (i === j - 1) return format(value, options); 49 | if (!value) return ''; 50 | current = value; 51 | } 52 | return ''; 53 | }; 54 | 55 | var use = exports.use = function use(l) { 56 | lang = l || lang; 57 | }; 58 | 59 | var i18n = exports.i18n = function i18n(fn) { 60 | i18nHandler = fn || i18nHandler; 61 | }; 62 | 63 | exports.default = { use: use, t: t, i18n: i18n }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/util/clickoutside.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | var _vue = require('vue'); 6 | 7 | var _vue2 = _interopRequireDefault(_vue); 8 | 9 | var _dom = require('element-ui/lib/utils/dom'); 10 | 11 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 12 | 13 | var nodeList = []; 14 | var ctx = '@@clickoutsideContext'; 15 | 16 | var startClick = void 0; 17 | 18 | !_vue2.default.prototype.$isServer && (0, _dom.on)(document, 'mousedown', function (e) { 19 | return startClick = e; 20 | }); 21 | 22 | !_vue2.default.prototype.$isServer && (0, _dom.on)(document, 'mouseup', function (e) { 23 | nodeList.forEach(function (node) { 24 | return node[ctx].documentHandler(e, startClick); 25 | }); 26 | }); 27 | /** 28 | * v-clickoutside 29 | * @desc 点击元素外面才会触发的事件 30 | * @example 31 | * ```vue 32 | *
33 | * ``` 34 | */ 35 | exports.default = { 36 | bind: function bind(el, binding, vnode) { 37 | var id = nodeList.push(el) - 1; 38 | var documentHandler = function documentHandler(mouseup, mousedown) { 39 | if (!vnode.context || el.contains(mouseup.target) || vnode.context.popperElm && (vnode.context.popperElm.contains(mouseup.target) || vnode.context.popperElm.contains(mousedown.target))) return; 40 | 41 | if (binding.expression && el[ctx].methodName && vnode.context[el[ctx].methodName]) { 42 | vnode.context[el[ctx].methodName](); 43 | } else { 44 | el[ctx].bindingFn && el[ctx].bindingFn(); 45 | } 46 | }; 47 | el[ctx] = { 48 | id: id, 49 | documentHandler: documentHandler, 50 | methodName: binding.expression, 51 | bindingFn: binding.value 52 | }; 53 | }, 54 | update: function update(el, binding) { 55 | el[ctx].methodName = binding.expression; 56 | el[ctx].bindingFn = binding.value; 57 | }, 58 | unbind: function unbind(el) { 59 | var len = nodeList.length; 60 | 61 | for (var i = 0; i < len; i++) { 62 | if (nodeList[i][ctx].id === el[ctx].id) { 63 | nodeList.splice(i, 1); 64 | break; 65 | } 66 | } 67 | } 68 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/time-picker.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b time-panel { 5 | margin: 5px 0; 6 | border: solid 1px var(--datepicker-border-color); 7 | background-color: var(--color-white); 8 | box-shadow: var(--box-shadow-base); 9 | border-radius: 2px; 10 | position: absolute; 11 | width: 180px; 12 | left: 0; 13 | z-index: var(--index-top); 14 | user-select: none; 15 | 16 | @e content { 17 | font-size: 0; 18 | position: relative; 19 | overflow: hidden; 20 | 21 | &::after, &::before { 22 | content: ":"; 23 | top: 50%; 24 | color: var(--color-white); 25 | position: absolute; 26 | font-size: 14px; 27 | margin-top: -15px; 28 | line-height: 16px; 29 | background-color: var(--datepicker-active-color); 30 | height: 32px; 31 | z-index: -1; 32 | left: 0; 33 | right: 0; 34 | box-sizing: border-box; 35 | padding-top: 6px; 36 | text-align: left; 37 | } 38 | 39 | &::after { 40 | left: 50%; 41 | margin-left: -2px; 42 | } 43 | 44 | &::before { 45 | padding-left: 50%; 46 | margin-right: -2px; 47 | } 48 | 49 | &.has-seconds { 50 | &::after { 51 | left: calc(100% / 3 * 2); 52 | } 53 | 54 | &::before { 55 | padding-left: calc(100% / 3); 56 | } 57 | } 58 | } 59 | 60 | @e footer { 61 | border-top: 1px solid var(--datepicker-inner-border-color); 62 | padding: 4px; 63 | height: 36px; 64 | line-height: 25px; 65 | text-align: right; 66 | box-sizing: border-box; 67 | } 68 | 69 | @e btn { 70 | border: none; 71 | line-height: 28px; 72 | padding: 0 5px; 73 | margin: 0 5px; 74 | cursor: pointer; 75 | background-color: transparent; 76 | outline: none; 77 | font-size: 12px; 78 | color: var(--color-base-silver); 79 | 80 | &.confirm { 81 | font-weight: 800; 82 | color: var(--datepicker-active-color); 83 | } 84 | } 85 | 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/date-table.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b date-table { 5 | font-size: 12px; 6 | min-width: 224px; 7 | user-select: none; 8 | 9 | @when week-mode { 10 | .el-date-table__row { 11 | &:hover { 12 | background-color: var(--datepicker-cell-hover-color); 13 | } 14 | 15 | &.current { 16 | background-color: var(--datepicker-inrange-color); 17 | } 18 | } 19 | } 20 | 21 | td { 22 | width: 32px; 23 | height: 32px; 24 | box-sizing: border-box; 25 | text-align: center; 26 | cursor: pointer; 27 | 28 | &.next-month, 29 | &.prev-month { 30 | color: var(--datepicker-off-color); 31 | } 32 | 33 | &.today { 34 | color: var(--datepicker-text-hover-color); 35 | position: relative; 36 | &:before { 37 | content: " "; 38 | position: absolute; 39 | top: 0px; 40 | right: 0px; 41 | width: 0; 42 | height: 0; 43 | border-top: 0.5em solid var(--datepicker-active-color); 44 | border-left: .5em solid transparent; 45 | } 46 | } 47 | 48 | &.available:hover { 49 | background-color: var(--datepicker-cell-hover-color); 50 | } 51 | 52 | &.in-range { 53 | background-color: var(--datepicker-inrange-color); 54 | &:hover { 55 | background-color: var(--datepicker-inrange-hover-color); 56 | } 57 | } 58 | 59 | &.current:not(.disabled), 60 | &.start-date, 61 | &.end-date { 62 | background-color: var(--datepicker-active-color) !important; 63 | color: var(--color-white); 64 | } 65 | 66 | &.disabled { 67 | background-color: #f4f4f4; 68 | opacity: 1; 69 | cursor: not-allowed; 70 | color: #ccc; 71 | } 72 | 73 | &.week { 74 | font-size: 80%; 75 | color: var(--datepicker-header-color); 76 | } 77 | } 78 | 79 | th { 80 | padding: 5px; 81 | color: var(--datepicker-header-color); 82 | font-weight: 400; 83 | } 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/zh-CN.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: '确定', 8 | clear: '清空' 9 | }, 10 | datepicker: { 11 | now: '此刻', 12 | today: '今天', 13 | cancel: '取消', 14 | clear: '清空', 15 | confirm: '确定', 16 | selectDate: '选择日期', 17 | selectTime: '选择时间', 18 | startDate: '开始日期', 19 | startTime: '开始时间', 20 | endDate: '结束日期', 21 | endTime: '结束时间', 22 | year: '年', 23 | month1: '1 月', 24 | month2: '2 月', 25 | month3: '3 月', 26 | month4: '4 月', 27 | month5: '5 月', 28 | month6: '6 月', 29 | month7: '7 月', 30 | month8: '8 月', 31 | month9: '9 月', 32 | month10: '10 月', 33 | month11: '11 月', 34 | month12: '12 月', 35 | // week: '周次', 36 | weeks: { 37 | sun: '日', 38 | mon: '一', 39 | tue: '二', 40 | wed: '三', 41 | thu: '四', 42 | fri: '五', 43 | sat: '六' 44 | }, 45 | months: { 46 | jan: '一月', 47 | feb: '二月', 48 | mar: '三月', 49 | apr: '四月', 50 | may: '五月', 51 | jun: '六月', 52 | jul: '七月', 53 | aug: '八月', 54 | sep: '九月', 55 | oct: '十月', 56 | nov: '十一月', 57 | dec: '十二月' 58 | } 59 | }, 60 | select: { 61 | loading: '加载中', 62 | noMatch: '无匹配数据', 63 | noData: '无数据', 64 | placeholder: '请选择' 65 | }, 66 | cascader: { 67 | noMatch: '无匹配数据', 68 | placeholder: '请选择' 69 | }, 70 | pagination: { 71 | goto: '前往', 72 | pagesize: '条/页', 73 | total: '共 {total} 条', 74 | pageClassifier: '页' 75 | }, 76 | messagebox: { 77 | title: '提示', 78 | confirm: '确定', 79 | cancel: '取消', 80 | error: '输入的数据不合法!' 81 | }, 82 | upload: { 83 | delete: '删除', 84 | preview: '查看图片', 85 | continue: '继续上传' 86 | }, 87 | table: { 88 | emptyText: '暂无数据', 89 | confirmFilter: '筛选', 90 | resetFilter: '重置', 91 | clearFilter: '全部' 92 | }, 93 | tree: { 94 | emptyText: '暂无数据' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/zh-TW.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: '確認', 8 | clear: '清空' 9 | }, 10 | datepicker: { 11 | now: '現在', 12 | today: '今天', 13 | cancel: '取消', 14 | clear: '清空', 15 | confirm: '確認', 16 | selectDate: '選擇日期', 17 | selectTime: '選擇時間', 18 | startDate: '開始日期', 19 | startTime: '開始時間', 20 | endDate: '結束日期', 21 | endTime: '結束時間', 22 | year: '年', 23 | month1: '1 月', 24 | month2: '2 月', 25 | month3: '3 月', 26 | month4: '4 月', 27 | month5: '5 月', 28 | month6: '6 月', 29 | month7: '7 月', 30 | month8: '8 月', 31 | month9: '9 月', 32 | month10: '10 月', 33 | month11: '11 月', 34 | month12: '12 月', 35 | // week: '周次', 36 | weeks: { 37 | sun: '日', 38 | mon: '一', 39 | tue: '二', 40 | wed: '三', 41 | thu: '四', 42 | fri: '五', 43 | sat: '六' 44 | }, 45 | months: { 46 | jan: '一月', 47 | feb: '二月', 48 | mar: '三月', 49 | apr: '四月', 50 | may: '五月', 51 | jun: '六月', 52 | jul: '七月', 53 | aug: '八月', 54 | sep: '九月', 55 | oct: '十月', 56 | nov: '十一月', 57 | dec: '十二月' 58 | } 59 | }, 60 | select: { 61 | loading: '加載中', 62 | noMatch: '無匹配資料', 63 | noData: '無資料', 64 | placeholder: '請選擇' 65 | }, 66 | cascader: { 67 | noMatch: '無匹配資料', 68 | placeholder: '請選擇' 69 | }, 70 | pagination: { 71 | goto: '前往', 72 | pagesize: '項/頁', 73 | total: '共 {total} 項', 74 | pageClassifier: '頁' 75 | }, 76 | messagebox: { 77 | title: '提示', 78 | confirm: '確定', 79 | cancel: '取消', 80 | error: '輸入的資料不符規定!' 81 | }, 82 | upload: { 83 | delete: '刪除', 84 | preview: '查看圖片', 85 | continue: '繼續上傳' 86 | }, 87 | table: { 88 | emptyText: '暫無資料', 89 | confirmFilter: '篩選', 90 | resetFilter: '重置', 91 | clearFilter: '全部' 92 | }, 93 | tree: { 94 | emptyText: '暫無資料' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/ja.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'クリア' 9 | }, 10 | datepicker: { 11 | now: '現在', 12 | today: '今日', 13 | cancel: 'キャンセル', 14 | clear: 'クリア', 15 | confirm: 'はい', 16 | selectDate: '日付を選択', 17 | selectTime: '時間を選択', 18 | startDate: '開始日', 19 | startTime: '開始時間', 20 | endDate: '終了日', 21 | endTime: '終了時間', 22 | year: '年', 23 | month1: '1月', 24 | month2: '2月', 25 | month3: '3月', 26 | month4: '4月', 27 | month5: '5月', 28 | month6: '6月', 29 | month7: '7月', 30 | month8: '8月', 31 | month9: '9月', 32 | month10: '10月', 33 | month11: '11月', 34 | month12: '12月', 35 | // week: '週次', 36 | weeks: { 37 | sun: '日', 38 | mon: '月', 39 | tue: '火', 40 | wed: '水', 41 | thu: '木', 42 | fri: '金', 43 | sat: '土' 44 | }, 45 | months: { 46 | jan: '1月', 47 | feb: '2月', 48 | mar: '3月', 49 | apr: '4月', 50 | may: '5月', 51 | jun: '6月', 52 | jul: '7月', 53 | aug: '8月', 54 | sep: '9月', 55 | oct: '10月', 56 | nov: '11月', 57 | dec: '12月' 58 | } 59 | }, 60 | select: { 61 | loading: 'ロード中', 62 | noMatch: 'データなし', 63 | noData: 'データなし', 64 | placeholder: '選択してください' 65 | }, 66 | cascader: { 67 | noMatch: 'データなし', 68 | placeholder: '選択してください' 69 | }, 70 | pagination: { 71 | goto: '', 72 | pagesize: '件/ページ', 73 | total: '総計 {total} 件', 74 | pageClassifier: 'ページ目へ' 75 | }, 76 | messagebox: { 77 | title: 'メッセージ', 78 | confirm: 'はい', 79 | cancel: 'キャンセル', 80 | error: '正しくない入力' 81 | }, 82 | upload: { 83 | delete: '削除する', 84 | preview: 'プレビュー', 85 | continue: '続行する' 86 | }, 87 | table: { 88 | emptyText: 'データなし', 89 | confirmFilter: '確認', 90 | resetFilter: '初期化', 91 | clearFilter: 'すべて' 92 | }, 93 | tree: { 94 | emptyText: 'データなし' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/ko.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: '확인', 8 | clear: '초기화' 9 | }, 10 | datepicker: { 11 | now: '지금', 12 | today: '오늘', 13 | cancel: '취소', 14 | clear: '초기화', 15 | confirm: '확인', 16 | selectDate: '날짜 선택', 17 | selectTime: '시간 선택', 18 | startDate: '시작 날짜', 19 | startTime: '시작 시간', 20 | endDate: '종료 날짜', 21 | endTime: '종료 시간', 22 | year: '년', 23 | month1: '1월', 24 | month2: '2월', 25 | month3: '3월', 26 | month4: '4월', 27 | month5: '5월', 28 | month6: '6월', 29 | month7: '7월', 30 | month8: '8월', 31 | month9: '9월', 32 | month10: '10월', 33 | month11: '11월', 34 | month12: '12월', 35 | // week: 'week', 36 | weeks: { 37 | sun: '일', 38 | mon: '월', 39 | tue: '화', 40 | wed: '수', 41 | thu: '목', 42 | fri: '금', 43 | sat: '토' 44 | }, 45 | months: { 46 | jan: '1월', 47 | feb: '2월', 48 | mar: '3월', 49 | apr: '4월', 50 | may: '5월', 51 | jun: '6월', 52 | jul: '7월', 53 | aug: '8월', 54 | sep: '9월', 55 | oct: '10월', 56 | nov: '11월', 57 | dec: '12월' 58 | } 59 | }, 60 | select: { 61 | loading: '불러오는 중', 62 | noMatch: '맞는 데이터가 없습니다', 63 | noData: '데이터 없음', 64 | placeholder: '선택' 65 | }, 66 | cascader: { 67 | noMatch: '맞는 데이터가 없습니다', 68 | placeholder: '선택' 69 | }, 70 | pagination: { 71 | goto: '이동', 72 | pagesize: '/page', 73 | total: '총 {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: '메시지', 78 | confirm: '확인', 79 | cancel: '취소', 80 | error: '올바르지 않은 입력' 81 | }, 82 | upload: { 83 | delete: '삭제', 84 | preview: '미리보기', 85 | continue: '계속하기' 86 | }, 87 | table: { 88 | emptyText: '데이터 없음', 89 | confirmFilter: '확인', 90 | resetFilter: '초기화', 91 | clearFilter: '전체' 92 | }, 93 | tree: { 94 | emptyText: '데이터 없음' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/sv-SE.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Töm' 9 | }, 10 | datepicker: { 11 | now: 'Nu', 12 | today: 'Idag', 13 | cancel: 'Avbryt', 14 | clear: 'Töm', 15 | confirm: 'OK', 16 | selectDate: 'Välj datum', 17 | selectTime: 'Välj tid', 18 | startDate: 'Startdatum', 19 | startTime: 'Starttid', 20 | endDate: 'Slutdatum', 21 | endTime: 'Sluttid', 22 | year: 'År', 23 | month1: 'Januari', 24 | month2: 'Februari', 25 | month3: 'Mars', 26 | month4: 'April', 27 | month5: 'Maj', 28 | month6: 'Juni', 29 | month7: 'Juli', 30 | month8: 'Augusti', 31 | month9: 'September', 32 | month10: 'Oktober', 33 | month11: 'November', 34 | month12: 'December', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Sön', 38 | mon: 'Mån', 39 | tue: 'Tis', 40 | wed: 'Ons', 41 | thu: 'Tor', 42 | fri: 'Fre', 43 | sat: 'Lör' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'Maj', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Aug', 54 | sep: 'Sep', 55 | oct: 'Okt', 56 | nov: 'Nov', 57 | dec: 'Dec' 58 | } 59 | }, 60 | select: { 61 | loading: 'Laddar', 62 | noMatch: 'Hittade inget', 63 | noData: 'Ingen data', 64 | placeholder: 'Välj' 65 | }, 66 | pagination: { 67 | goto: 'Gå till', 68 | pagesize: '/sida', 69 | total: 'Total {total}', 70 | pageClassifier: '' 71 | }, 72 | messagebox: { 73 | title: 'Meddelande', 74 | confirm: 'OK', 75 | cancel: 'Avbryt', 76 | error: 'Felaktig inmatning' 77 | }, 78 | upload: { 79 | delete: 'Radera', 80 | preview: 'Förhandsvisa', 81 | continue: 'Fortsätt' 82 | }, 83 | table: { 84 | emptyText: 'Inga Data', 85 | confirmFilter: 'Bekräfta', 86 | resetFilter: 'Återställ', 87 | clearFilter: 'Alla' 88 | }, 89 | tree: { 90 | emptyText: 'Inga Data' 91 | } 92 | } 93 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/fi.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Tyhjennä' 9 | }, 10 | datepicker: { 11 | now: 'Nyt', 12 | today: 'Tänään', 13 | cancel: 'Peruuta', 14 | clear: 'Tyhjennä', 15 | confirm: 'OK', 16 | selectDate: 'Valitse päivä', 17 | selectTime: 'Valitse aika', 18 | startDate: 'Aloituspäivä', 19 | startTime: 'Aloitusaika', 20 | endDate: 'Lopetuspäivä', 21 | endTime: 'Lopetusaika', 22 | year: '', 23 | month1: 'tammikuu', 24 | month2: 'helmikuu', 25 | month3: 'maaliskuu', 26 | month4: 'huhtikuu', 27 | month5: 'toukokuu', 28 | month6: 'kesäkuu', 29 | month7: 'heinäkuu', 30 | month8: 'elokuu', 31 | month9: 'syyskuu', 32 | month10: 'lokakuu', 33 | month11: 'marraskuu', 34 | month12: 'joulukuu', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'su', 38 | mon: 'ma', 39 | tue: 'ti', 40 | wed: 'ke', 41 | thu: 'to', 42 | fri: 'pe', 43 | sat: 'la' 44 | }, 45 | months: { 46 | jan: 'tam', 47 | feb: 'hel', 48 | mar: 'maa', 49 | apr: 'huh', 50 | may: 'tou', 51 | jun: 'kes', 52 | jul: 'hei', 53 | aug: 'elo', 54 | sep: 'syy', 55 | oct: 'lok', 56 | nov: 'mar', 57 | dec: 'jou' 58 | } 59 | }, 60 | select: { 61 | loading: 'Lataa', 62 | noMatch: 'Ei vastaavia tietoja', 63 | noData: 'Ei tietoja', 64 | placeholder: 'Valitse' 65 | }, 66 | pagination: { 67 | goto: 'Mene', 68 | pagesize: '/sivu', 69 | total: 'Yhteensä {total}', 70 | pageClassifier: '' 71 | }, 72 | messagebox: { 73 | title: 'Viesti', 74 | confirm: 'OK', 75 | cancel: 'Peruuta', 76 | error: 'Virheellinen syöte' 77 | }, 78 | upload: { 79 | delete: 'Poista', 80 | preview: 'Esikatsele', 81 | continue: 'Jatka' 82 | }, 83 | table: { 84 | emptyText: 'Ei tietoja', 85 | confirmFilter: 'Vahvista', 86 | resetFilter: 'Tyhjennä', 87 | clearFilter: 'Kaikki' 88 | }, 89 | tree: { 90 | emptyText: 'Ei tietoja' 91 | } 92 | } 93 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/en.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Clear' 9 | }, 10 | datepicker: { 11 | now: 'Now', 12 | today: 'Today', 13 | cancel: 'Cancel', 14 | clear: 'Clear', 15 | confirm: 'OK', 16 | selectDate: 'Select date', 17 | selectTime: 'Select time', 18 | startDate: 'Start Date', 19 | startTime: 'Start Time', 20 | endDate: 'End Date', 21 | endTime: 'End Time', 22 | year: '', 23 | month1: 'Jan', 24 | month2: 'Feb', 25 | month3: 'Mar', 26 | month4: 'Apr', 27 | month5: 'May', 28 | month6: 'Jun', 29 | month7: 'Jul', 30 | month8: 'Aug', 31 | month9: 'Sep', 32 | month10: 'Oct', 33 | month11: 'Nov', 34 | month12: 'Dec', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Sun', 38 | mon: 'Mon', 39 | tue: 'Tue', 40 | wed: 'Wed', 41 | thu: 'Thu', 42 | fri: 'Fri', 43 | sat: 'Sat' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'May', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Aug', 54 | sep: 'Sep', 55 | oct: 'Oct', 56 | nov: 'Nov', 57 | dec: 'Dec' 58 | } 59 | }, 60 | select: { 61 | loading: 'Loading', 62 | noMatch: 'No matching data', 63 | noData: 'No data', 64 | placeholder: 'Select' 65 | }, 66 | cascader: { 67 | noMatch: 'No matching data', 68 | placeholder: 'Select' 69 | }, 70 | pagination: { 71 | goto: 'Go to', 72 | pagesize: '/page', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Message', 78 | confirm: 'OK', 79 | cancel: 'Cancel', 80 | error: 'Illegal input' 81 | }, 82 | upload: { 83 | delete: 'Delete', 84 | preview: 'Preview', 85 | continue: 'Continue' 86 | }, 87 | table: { 88 | emptyText: 'No Data', 89 | confirmFilter: 'Confirm', 90 | resetFilter: 'Reset', 91 | clearFilter: 'All' 92 | }, 93 | tree: { 94 | emptyText: 'No Data' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/sk.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Zmazať' 9 | }, 10 | datepicker: { 11 | now: 'Teraz', 12 | today: 'Dnes', 13 | cancel: 'Zrušiť', 14 | clear: 'Zmazať', 15 | confirm: 'OK', 16 | selectDate: 'Vybrať dátum', 17 | selectTime: 'Vybrať čas', 18 | startDate: 'Dátum začiatku', 19 | startTime: 'Čas začiatku', 20 | endDate: 'Dátum konca', 21 | endTime: 'Čas konca', 22 | day: 'Deň', 23 | week: 'Týždeň', 24 | month: 'Mesiac', 25 | year: 'Rok', 26 | month1: 'Január', 27 | month2: 'Február', 28 | month3: 'Marec', 29 | month4: 'Apríl', 30 | month5: 'Máj', 31 | month6: 'Jún', 32 | month7: 'Júl', 33 | month8: 'August', 34 | month9: 'September', 35 | month10: 'Október', 36 | month11: 'November', 37 | month12: 'December', 38 | weeks: { 39 | sun: 'Ne', 40 | mon: 'Po', 41 | tue: 'Ut', 42 | wed: 'St', 43 | thu: 'Št', 44 | fri: 'Pi', 45 | sat: 'So' 46 | }, 47 | months: { 48 | jan: 'Jan', 49 | feb: 'Feb', 50 | mar: 'Mar', 51 | apr: 'Apr', 52 | may: 'Máj', 53 | jun: 'Jún', 54 | jul: 'Júl', 55 | aug: 'Aug', 56 | sep: 'Sep', 57 | oct: 'Okt', 58 | nov: 'Nov', 59 | dec: 'Dec' 60 | } 61 | }, 62 | select: { 63 | loading: 'Načítavanie', 64 | noMatch: 'Žiadna zhoda', 65 | noData: 'Žiadne dáta', 66 | placeholder: 'Vybrať' 67 | }, 68 | pagination: { 69 | goto: 'Choď na', 70 | pagesize: 'na stranu', 71 | total: 'Všetko {total}', 72 | pageClassifier: '' 73 | }, 74 | messagebox: { 75 | title: 'Správa', 76 | confirm: 'OK', 77 | cancel: 'Zrušiť', 78 | error: 'Neplatný vstup' 79 | }, 80 | upload: { 81 | delete: 'Vymazať', 82 | preview: 'Prehliadať', 83 | continue: 'Pokračovať' 84 | }, 85 | table: { 86 | emptyText: 'Žiadne dáta', 87 | confirmFilter: 'Potvrdiť', 88 | resetFilter: 'Zresetovať', 89 | clearFilter: 'Všetko' 90 | }, 91 | tree: { 92 | emptyText: 'Žiadne dáta' 93 | } 94 | } 95 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/da.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Ryd' 9 | }, 10 | datepicker: { 11 | now: 'Nu', 12 | today: 'I dag', 13 | cancel: 'Annuller', 14 | clear: 'Ryd', 15 | confirm: 'OK', 16 | selectDate: 'Vælg dato', 17 | selectTime: 'Vælg tidspunkt', 18 | startDate: 'Startdato', 19 | startTime: 'Starttidspunkt', 20 | endDate: 'Slutdato', 21 | endTime: 'Sluttidspunkt', 22 | year: 'År', 23 | month1: 'Januar', 24 | month2: 'Februar', 25 | month3: 'Marts', 26 | month4: 'April', 27 | month5: 'Maj', 28 | month6: 'Juni', 29 | month7: 'Juli', 30 | month8: 'August', 31 | month9: 'September', 32 | month10: 'Oktober', 33 | month11: 'November', 34 | month12: 'December', 35 | week: 'uge', 36 | weeks: { 37 | sun: 'Søn', 38 | mon: 'Man', 39 | tue: 'Tir', 40 | wed: 'Ons', 41 | thu: 'Tor', 42 | fri: 'Fre', 43 | sat: 'Lør' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'Maj', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Aug', 54 | sep: 'Sep', 55 | oct: 'Okt', 56 | nov: 'Nov', 57 | dec: 'Dec' 58 | } 59 | }, 60 | select: { 61 | loading: 'Henter', 62 | noMatch: 'Ingen matchende data', 63 | noData: 'Ingen data', 64 | placeholder: 'Vælg' 65 | }, 66 | cascader: { 67 | noMatch: 'Ingen matchende data', 68 | placeholder: 'Vælg' 69 | }, 70 | pagination: { 71 | goto: 'Gå til', 72 | pagesize: '/side', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | confirm: 'OK', 78 | cancel: 'Annuller', 79 | error: 'Ugyldig input' 80 | }, 81 | upload: { 82 | delete: 'Slet', 83 | preview: 'Forhåndsvisning', 84 | continue: 'Fortsæt' 85 | }, 86 | table: { 87 | emptyText: 'Ingen data', 88 | confirmFilter: 'Bekræft', 89 | resetFilter: 'Nulstil', 90 | clearFilter: 'Alle' 91 | }, 92 | tree: { 93 | emptyText: 'Ingen data' 94 | } 95 | } 96 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/nb-NO.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Tøm' 9 | }, 10 | datepicker: { 11 | now: 'Nå', 12 | today: 'I dag', 13 | cancel: 'Avbryt', 14 | clear: 'Tøm', 15 | confirm: 'OK', 16 | selectDate: 'Velg dato', 17 | selectTime: 'Velg tidspunkt', 18 | startDate: 'Start Dato', 19 | startTime: 'Start Tidspunkt', 20 | endDate: 'Sluttdato', 21 | endTime: 'Sluttidspunkt', 22 | year: '', 23 | month1: 'Januar', 24 | month2: 'Februar', 25 | month3: 'Mars', 26 | month4: 'April', 27 | month5: 'Mai', 28 | month6: 'Juni', 29 | month7: 'Juli', 30 | month8: 'August', 31 | month9: 'September', 32 | month10: 'Oktober', 33 | month11: 'November', 34 | month12: 'Desember', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Søn', 38 | mon: 'Man', 39 | tue: 'Tir', 40 | wed: 'Ons', 41 | thu: 'Tor', 42 | fri: 'Fre', 43 | sat: 'Lør' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'Mai', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Aug', 54 | sep: 'Sep', 55 | oct: 'Okt', 56 | nov: 'Nov', 57 | dec: 'Des' 58 | } 59 | }, 60 | select: { 61 | loading: 'Laster', 62 | noMatch: 'Ingen samsvarende data', 63 | noData: 'Ingen data', 64 | placeholder: 'Velg' 65 | }, 66 | cascader: { 67 | noMatch: 'Ingen samsvarende data', 68 | placeholder: 'Velg' 69 | }, 70 | pagination: { 71 | goto: 'Gå til', 72 | pagesize: '/side', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | confirm: 'OK', 78 | cancel: 'Avbryt', 79 | error: 'Ugyldig input' 80 | }, 81 | upload: { 82 | delete: 'Slett', 83 | preview: 'Forhåndsvisning', 84 | continue: 'Fortsett' 85 | }, 86 | table: { 87 | emptyText: 'Ingen Data', 88 | confirmFilter: 'Bekreft', 89 | resetFilter: 'Tilbakestill', 90 | clearFilter: 'Alle' 91 | }, 92 | tree: { 93 | emptyText: 'Ingen Data' 94 | } 95 | } 96 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/tr-TR.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Temizle' 9 | }, 10 | datepicker: { 11 | now: 'Şimdi', 12 | today: 'Bugün', 13 | cancel: 'İptal', 14 | clear: 'Temizle', 15 | confirm: 'OK', 16 | selectDate: 'Tarih seç', 17 | selectTime: 'Saat seç', 18 | startDate: 'Başlangıç Tarihi', 19 | startTime: 'Başlangıç Saati', 20 | endDate: 'Bitiş Tarihi', 21 | endTime: 'Bitiş Saati', 22 | year: '', 23 | month1: 'Ocak', 24 | month2: 'Şubat', 25 | month3: 'Mart', 26 | month4: 'Nisan', 27 | month5: 'Mayıs', 28 | month6: 'Haziran', 29 | month7: 'Temmuz', 30 | month8: 'Ağustos', 31 | month9: 'Eylül', 32 | month10: 'Ekim', 33 | month11: 'Kasım', 34 | month12: 'Aralık', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Paz', 38 | mon: 'Pzt', 39 | tue: 'Sal', 40 | wed: 'Çar', 41 | thu: 'Per', 42 | fri: 'Cum', 43 | sat: 'Cmt' 44 | }, 45 | months: { 46 | jan: 'Oca', 47 | feb: 'Şub', 48 | mar: 'Mar', 49 | apr: 'Nis', 50 | may: 'May', 51 | jun: 'Haz', 52 | jul: 'Tem', 53 | aug: 'Ağu', 54 | sep: 'Eyl', 55 | oct: 'Eki', 56 | nov: 'Kas', 57 | dec: 'Ara' 58 | } 59 | }, 60 | select: { 61 | loading: 'Yükleniyor', 62 | noMatch: 'Eşleşen veri bulunamadı', 63 | noData: 'Veri yok', 64 | placeholder: 'Seç' 65 | }, 66 | cascader: { 67 | noMatch: 'Eşleşen veri bulunamadı', 68 | placeholder: 'Seç' 69 | }, 70 | pagination: { 71 | goto: 'Git', 72 | pagesize: '/page', 73 | total: 'Toplam {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Mesaj', 78 | confirm: 'OK', 79 | cancel: 'İptal', 80 | error: 'İllegal giriş' 81 | }, 82 | upload: { 83 | delete: 'Sil', 84 | preview: 'Görüntüle', 85 | continue: 'Devam' 86 | }, 87 | table: { 88 | emptyText: 'Veri yok', 89 | confirmFilter: 'Onayla', 90 | resetFilter: 'Reset', 91 | clearFilter: 'Hepsi' 92 | }, 93 | tree: { 94 | emptyText: 'Veri yok' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/el.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Καθαρισμός' 9 | }, 10 | datepicker: { 11 | now: 'Τώρα', 12 | today: 'Σήμερα', 13 | cancel: 'Ακύρωση', 14 | clear: 'Καθαρισμός', 15 | confirm: 'OK', 16 | selectDate: 'Επιλέξτε ημέρα', 17 | selectTime: 'Επιλέξτε ώρα', 18 | startDate: 'Ημερομηνία Έναρξης', 19 | startTime: 'Ωρα Έναρξης', 20 | endDate: 'Ημερομηνία Λήξης', 21 | endTime: 'Ωρα Λήξης', 22 | year: 'Έτος', 23 | month1: 'Ιανουάριος', 24 | month2: 'Φεβρουάριος', 25 | month3: 'Μάρτιος', 26 | month4: 'Απρίλιος', 27 | month5: 'Μάιος', 28 | month6: 'Ιούνιος', 29 | month7: 'Ιούλιος', 30 | month8: 'Αύγουστος', 31 | month9: 'Σεπτέμβριος', 32 | month10: 'Οκτώβριος', 33 | month11: 'Νοέμβριος', 34 | month12: 'Δεκέμβριος', 35 | // week: 'εβδομάδα', 36 | weeks: { 37 | sun: 'Κυρ', 38 | mon: 'Δευ', 39 | tue: 'Τρι', 40 | wed: 'Τετ', 41 | thu: 'Πεμ', 42 | fri: 'Παρ', 43 | sat: 'Σαβ' 44 | }, 45 | months: { 46 | jan: 'Ιαν', 47 | feb: 'Φεβ', 48 | mar: 'Μαρ', 49 | apr: 'Απρ', 50 | may: 'Μαϊ', 51 | jun: 'Ιουν', 52 | jul: 'Ιουλ', 53 | aug: 'Αυγ', 54 | sep: 'Σεπ', 55 | oct: 'Οκτ', 56 | nov: 'Νοε', 57 | dec: 'Δεκ' 58 | } 59 | }, 60 | select: { 61 | loading: 'Φόρτωση', 62 | noMatch: 'Δεν βρέθηκαν αποτελέσματα', 63 | noData: 'Χωρίς δεδομένα', 64 | placeholder: 'Επιλογή' 65 | }, 66 | pagination: { 67 | goto: 'Μετάβαση σε', 68 | pagesize: '/σελίδα', 69 | total: 'Σύνολο {total}', 70 | pageClassifier: '' 71 | }, 72 | messagebox: { 73 | title: 'Μήνυμα', 74 | confirm: 'OK', 75 | cancel: 'Ακύρωση', 76 | error: 'Άκυρη εισαγωγή' 77 | }, 78 | upload: { 79 | delete: 'Διαγραφή', 80 | preview: 'Προεπισκόπηση', 81 | continue: 'Συνέχεια' 82 | }, 83 | table: { 84 | emptyText: 'Χωρίς Δεδομένα', 85 | confirmFilter: 'Επιβεβαίωση', 86 | resetFilter: 'Επαναφορά', 87 | clearFilter: 'Όλα' 88 | }, 89 | tree: { 90 | emptyText: 'Χωρίς Δεδομένα' 91 | } 92 | } 93 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/bg.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Изчисти' 9 | }, 10 | datepicker: { 11 | now: 'Сега', 12 | today: 'Днес', 13 | cancel: 'Откажи', 14 | clear: 'Изчисти', 15 | confirm: 'ОК', 16 | selectDate: 'Избери дата', 17 | selectTime: 'Избери час', 18 | startDate: 'Начална дата', 19 | startTime: 'Начален час', 20 | endDate: 'Крайна дата', 21 | endTime: 'Краен час', 22 | year: '', 23 | month1: 'Януари', 24 | month2: 'Февруари', 25 | month3: 'Март', 26 | month4: 'Април', 27 | month5: 'Май', 28 | month6: 'Юни', 29 | month7: 'Юли', 30 | month8: 'Август', 31 | month9: 'Септември', 32 | month10: 'Октомври', 33 | month11: 'Ноември', 34 | month12: 'Декември', 35 | // week: 'Седмица', 36 | weeks: { 37 | sun: 'Нед', 38 | mon: 'Пон', 39 | tue: 'Вто', 40 | wed: 'Сря', 41 | thu: 'Чет', 42 | fri: 'Пет', 43 | sat: 'Съб' 44 | }, 45 | months: { 46 | jan: 'Яну', 47 | feb: 'Фев', 48 | mar: 'Мар', 49 | apr: 'Апр', 50 | may: 'Май', 51 | jun: 'Юни', 52 | jul: 'Юли', 53 | aug: 'Авг', 54 | sep: 'Сеп', 55 | oct: 'Окт', 56 | nov: 'Ное', 57 | dec: 'Дек' 58 | } 59 | }, 60 | select: { 61 | loading: 'Зареждане', 62 | noMatch: 'Няма намерени', 63 | noData: 'Няма данни', 64 | placeholder: 'Избери' 65 | }, 66 | cascader: { 67 | noMatch: 'Няма намерени', 68 | placeholder: 'Избери' 69 | }, 70 | pagination: { 71 | goto: 'Иди на', 72 | pagesize: '/страница', 73 | total: 'Общо {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Съобщение', 78 | confirm: 'ОК', 79 | cancel: 'Откажи', 80 | error: 'Невалидни данни' 81 | }, 82 | upload: { 83 | delete: 'Изтрий', 84 | preview: 'Прегледай', 85 | continue: 'Продължи' 86 | }, 87 | table: { 88 | emptyText: 'Няма данни', 89 | confirmFilter: 'Потвърди', 90 | resetFilter: 'Изчисти', 91 | clearFilter: 'Всички' 92 | }, 93 | tree: { 94 | emptyText: 'Няма данни' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/fr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Effacer' 9 | }, 10 | datepicker: { 11 | now: 'Maintenant', 12 | today: 'Auj.', 13 | cancel: 'Annuler', 14 | clear: 'Effacer', 15 | confirm: 'OK', 16 | selectDate: 'Choisir date', 17 | selectTime: 'Choisir horaire', 18 | startDate: 'Date début', 19 | startTime: 'Horaire début', 20 | endDate: 'Date fin', 21 | endTime: 'Horaire fin', 22 | year: '', 23 | month1: 'Janvier', 24 | month2: 'Février', 25 | month3: 'Mars', 26 | month4: 'Avril', 27 | month5: 'Mai', 28 | month6: 'Juin', 29 | month7: 'Juillet', 30 | month8: 'Août', 31 | month9: 'Septembre', 32 | month10: 'Octobre', 33 | month11: 'Novembre', 34 | month12: 'Décembre', 35 | // week: 'Semaine', 36 | weeks: { 37 | sun: 'Dim', 38 | mon: 'Lun', 39 | tue: 'Mar', 40 | wed: 'Mer', 41 | thu: 'Jeu', 42 | fri: 'Ven', 43 | sat: 'Sam' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Fév', 48 | mar: 'Mar', 49 | apr: 'Avr', 50 | may: 'Mai', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Aoû', 54 | sep: 'Sep', 55 | oct: 'Oct', 56 | nov: 'Nov', 57 | dec: 'Déc' 58 | } 59 | }, 60 | select: { 61 | loading: 'Chargement', 62 | noMatch: 'Aucune correspondance', 63 | noData: 'Aucun résultat', 64 | placeholder: 'Choisir' 65 | }, 66 | cascader: { 67 | noMatch: 'Aucune correspondance', 68 | placeholder: 'Choisir' 69 | }, 70 | pagination: { 71 | goto: 'Aller à', 72 | pagesize: '/page', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | confirm: 'Confirmer', 78 | cancel: 'Annuler', 79 | error: 'Erreur' 80 | }, 81 | upload: { 82 | delete: 'Supprimer', 83 | preview: 'Aperçu', 84 | continue: 'Continuer' 85 | }, 86 | table: { 87 | emptyText: 'Aucune donnée', 88 | confirmFilter: 'Confirmer', 89 | resetFilter: 'Réinitialiser', 90 | clearFilter: 'Tous' 91 | }, 92 | tree: { 93 | emptyText: 'Aucune donnée' 94 | } 95 | } 96 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/it.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Pulisci' 9 | }, 10 | datepicker: { 11 | now: 'Ora', 12 | today: 'Oggi', 13 | cancel: 'Cancella', 14 | clear: 'Pulisci', 15 | confirm: 'OK', 16 | selectDate: 'Seleziona data', 17 | selectTime: 'Seleziona ora', 18 | startDate: 'Data inizio', 19 | startTime: 'Ora inizio', 20 | endDate: 'Data fine', 21 | endTime: 'Ora fine', 22 | year: 'Anno', 23 | month1: 'Gennaio', 24 | month2: 'Febbraio', 25 | month3: 'Marzo', 26 | month4: 'Aprile', 27 | month5: 'Maggio', 28 | month6: 'Giugno', 29 | month7: 'Luglio', 30 | month8: 'Agosto', 31 | month9: 'Settembre', 32 | month10: 'Ottobre', 33 | month11: 'Novembre', 34 | month12: 'Dicembre', 35 | // week: 'settimana', 36 | weeks: { 37 | sun: 'Dom', 38 | mon: 'Lun', 39 | tue: 'Mar', 40 | wed: 'Mer', 41 | thu: 'Gio', 42 | fri: 'Ven', 43 | sat: 'Sab' 44 | }, 45 | months: { 46 | jan: 'Gen', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'Mag', 51 | jun: 'Giu', 52 | jul: 'Lug', 53 | aug: 'Ago', 54 | sep: 'Set', 55 | oct: 'Ott', 56 | nov: 'Nov', 57 | dec: 'Dic' 58 | } 59 | }, 60 | select: { 61 | loading: 'Caricamento', 62 | noMatch: 'Nessuna corrispondenza', 63 | noData: 'Nessun risultato', 64 | placeholder: 'Seleziona' 65 | }, 66 | cascader: { 67 | noMatch: 'Nessuna corrispondenza', 68 | placeholder: 'Seleziona' 69 | }, 70 | pagination: { 71 | goto: 'Vai a', 72 | pagesize: '/page', 73 | total: 'Totale {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | confirm: 'OK', 78 | cancel: 'Cancella', 79 | error: 'Input non valido' 80 | }, 81 | upload: { 82 | delete: 'Cancella', 83 | preview: 'Anteprima', 84 | continue: 'Continua' 85 | }, 86 | table: { 87 | emptyText: 'Nessun dato', 88 | confirmFilter: 'Conferma', 89 | resetFilter: 'Reset', 90 | clearFilter: 'Tutti' 91 | }, 92 | tree: { 93 | emptyText: 'Nessun dato' 94 | } 95 | } 96 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/de.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Leeren' 9 | }, 10 | datepicker: { 11 | now: 'Jetzt', 12 | today: 'Heute', 13 | cancel: 'Abbrechen', 14 | clear: 'Leeren', 15 | confirm: 'OK', 16 | selectDate: 'Datum wählen', 17 | selectTime: 'Uhrzeit wählen', 18 | startDate: 'Startdatum', 19 | startTime: 'Startzeit', 20 | endDate: 'Enddatum', 21 | endTime: 'Endzeit', 22 | day: 'Tag', 23 | week: 'Woche', 24 | month: 'Monat', 25 | year: 'Jahr', 26 | month1: 'Januar', 27 | month2: 'Februar', 28 | month3: 'März', 29 | month4: 'April', 30 | month5: 'Mai', 31 | month6: 'Juni', 32 | month7: 'Juli', 33 | month8: 'August', 34 | month9: 'September', 35 | month10: 'Oktober', 36 | month11: 'November', 37 | month12: 'Dezember', 38 | weeks: { 39 | sun: 'So', 40 | mon: 'Mo', 41 | tue: 'Di', 42 | wed: 'Mi', 43 | thu: 'Do', 44 | fri: 'Fr', 45 | sat: 'Sa' 46 | }, 47 | months: { 48 | jan: 'Jan', 49 | feb: 'Feb', 50 | mar: 'Mär', 51 | apr: 'Apr', 52 | may: 'Mai', 53 | jun: 'Jun', 54 | jul: 'Jul', 55 | aug: 'Aug', 56 | sep: 'Sep', 57 | oct: 'Okt', 58 | nov: 'Nov', 59 | dec: 'Dez' 60 | } 61 | }, 62 | select: { 63 | loading: 'Lädt.', 64 | noMatch: 'Nichts gefunden.', 65 | noData: 'Keine Datei', 66 | placeholder: 'Datei wählen' 67 | }, 68 | cascader: { 69 | noMatch: 'Nichts gefunden.', 70 | placeholder: 'Datei wählen' 71 | }, 72 | pagination: { 73 | goto: 'Gehe zu', 74 | pagesize: 'pro Seite', 75 | total: 'Gesamt {total}', 76 | pageClassifier: '' 77 | }, 78 | messagebox: { 79 | confirm: 'OK', 80 | cancel: 'Abbrechen', 81 | error: 'Fehler' 82 | }, 83 | upload: { 84 | delete: 'Löschen', 85 | preview: 'Vorschau', 86 | continue: 'Fortsetzen' 87 | }, 88 | table: { 89 | emptyText: 'Keine Daten', 90 | confirmFilter: 'Anwenden', 91 | resetFilter: 'Zurücksetzen', 92 | clearFilter: 'Alles ' 93 | }, 94 | tree: { 95 | emptyText: 'Keine Daten' 96 | } 97 | } 98 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/ru-RU.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Очистить' 9 | }, 10 | datepicker: { 11 | now: 'Сейчас', 12 | today: 'Сегодня', 13 | cancel: 'Отмена', 14 | clear: 'Очистить', 15 | confirm: 'OK', 16 | selectDate: 'Выбрать дату', 17 | selectTime: 'Выбрать время', 18 | startDate: 'Дата начала', 19 | startTime: 'Время начала', 20 | endDate: 'Дата окончания', 21 | endTime: 'Время окончания', 22 | year: '', 23 | month1: 'Январь', 24 | month2: 'Февраль', 25 | month3: 'Март', 26 | month4: 'Апрель', 27 | month5: 'Май', 28 | month6: 'Июнь', 29 | month7: 'Июль', 30 | month8: 'Август', 31 | month9: 'Сентябрь', 32 | month10: 'Октябрь', 33 | month11: 'Ноябрь', 34 | month12: 'Декабрь', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Вс', 38 | mon: 'Пн', 39 | tue: 'Вт', 40 | wed: 'Ср', 41 | thu: 'Чт', 42 | fri: 'Пт', 43 | sat: 'Сб' 44 | }, 45 | months: { 46 | jan: 'Янв', 47 | feb: 'Фев', 48 | mar: 'Мар', 49 | apr: 'Апр', 50 | may: 'Май', 51 | jun: 'Июн', 52 | jul: 'Июл', 53 | aug: 'Авг', 54 | sep: 'Сен', 55 | oct: 'Окт', 56 | nov: 'Ноя', 57 | dec: 'Дек' 58 | } 59 | }, 60 | select: { 61 | loading: 'Загрузка', 62 | noMatch: 'Совпадений не найдено', 63 | noData: 'Нет данных', 64 | placeholder: 'Выбрать' 65 | }, 66 | cascader: { 67 | noMatch: 'Совпадений не найдено', 68 | placeholder: 'Выбрать' 69 | }, 70 | pagination: { 71 | goto: 'Перейти', 72 | pagesize: 'на странице', 73 | total: 'Всего {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Сообщение', 78 | confirm: 'OK', 79 | cancel: 'Отмена', 80 | error: 'Недопустимый ввод данных' 81 | }, 82 | upload: { 83 | delete: 'Удалить', 84 | preview: 'Превью', 85 | continue: 'Продолжить' 86 | }, 87 | table: { 88 | emptyText: 'Нет данных', 89 | confirmFilter: 'Подтвердить', 90 | resetFilter: 'Сбросить', 91 | clearFilter: 'Все' 92 | }, 93 | tree: { 94 | emptyText: 'Нет данных' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'Confirmar', 8 | clear: 'Limpar' 9 | }, 10 | datepicker: { 11 | now: 'Agora', 12 | today: 'Hoje', 13 | cancel: 'Cancelar', 14 | clear: 'Limpar', 15 | confirm: 'Confirmar', 16 | selectDate: 'Selecione a data', 17 | selectTime: 'Selecione a hora', 18 | startDate: 'Data inicial', 19 | startTime: 'Hora inicial', 20 | endDate: 'Data final', 21 | endTime: 'Hora final', 22 | year: '', 23 | month1: 'Janeiro', 24 | month2: 'Fevereiro', 25 | month3: 'Março', 26 | month4: 'Abril', 27 | month5: 'Maio', 28 | month6: 'Junho', 29 | month7: 'Julho', 30 | month8: 'Agosto', 31 | month9: 'Setembro', 32 | month10: 'Outubro', 33 | month11: 'Novembro', 34 | month12: 'Dezembro', 35 | // week: 'semana', 36 | weeks: { 37 | sun: 'Dom', 38 | mon: 'Seg', 39 | tue: 'Ter', 40 | wed: 'Qua', 41 | thu: 'Qui', 42 | fri: 'Sex', 43 | sat: 'Sab' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Fev', 48 | mar: 'Mar', 49 | apr: 'Abr', 50 | may: 'Mai', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Ago', 54 | sep: 'Set', 55 | oct: 'Out', 56 | nov: 'Nov', 57 | dec: 'Dez' 58 | } 59 | }, 60 | select: { 61 | loading: 'Carregando', 62 | noMatch: 'Sem resultados', 63 | noData: 'Sem dados', 64 | placeholder: 'Selecione' 65 | }, 66 | cascader: { 67 | noMatch: 'Sem resultados', 68 | placeholder: 'Selecione' 69 | }, 70 | pagination: { 71 | goto: 'Ir para', 72 | pagesize: '/pagina', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Mensagem', 78 | confirm: 'Confirmar', 79 | cancel: 'Cancelar', 80 | error: 'Erro!' 81 | }, 82 | upload: { 83 | delete: 'Apagar', 84 | preview: 'Pré-visualizar', 85 | continue: 'Continuar' 86 | }, 87 | table: { 88 | emptyText: 'Sem dados', 89 | confirmFilter: 'Confirmar', 90 | resetFilter: 'Limpar', 91 | clearFilter: 'Todos' 92 | }, 93 | tree: { 94 | emptyText: 'Sem dados' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/fa.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'باشد', 8 | clear: 'خذف' 9 | }, 10 | datepicker: { 11 | now: 'اکنون', 12 | today: 'امروز', 13 | cancel: 'لغو', 14 | clear: 'خذف', 15 | confirm: 'باشد', 16 | selectDate: 'انتخاب تاریخ', 17 | selectTime: 'انتخاب زمان', 18 | startDate: 'تاریخ شروع', 19 | startTime: 'زمان شروع', 20 | endDate: 'تاریخ پایان', 21 | endTime: 'زمان پایان', 22 | year: 'سال', 23 | month1: 'ژانویه', 24 | month2: 'فوریه', 25 | month3: 'مارس', 26 | month4: 'آوریل', 27 | month5: 'مه', 28 | month6: 'ژوئن', 29 | month7: 'جولای', 30 | month8: 'اوت', 31 | month9: 'سپتامبر', 32 | month10: 'اکتبر', 33 | month11: 'نوامبر', 34 | month12: 'دسامبر', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'یکشنبه', 38 | mon: 'دوشنبه', 39 | tue: 'سه​شنبه', 40 | wed: 'چهارشنبه', 41 | thu: 'پنج​شنبه', 42 | fri: 'جمعه', 43 | sat: 'شنبه' 44 | }, 45 | months: { 46 | jan: 'ژانویه', 47 | feb: 'فوریه', 48 | mar: 'مارس', 49 | apr: 'آوریل', 50 | may: 'مه', 51 | jun: 'ژوئن', 52 | jul: 'جولای', 53 | aug: 'اوت', 54 | sep: 'سپتامبر', 55 | oct: 'اکتبر', 56 | nov: 'نوامبر', 57 | dec: 'دسامبر' 58 | } 59 | }, 60 | select: { 61 | loading: 'بارگیری', 62 | noMatch: 'هیچ داده‌ای پیدا نشد', 63 | noData: 'اطلاعاتی وجود ندارد', 64 | placeholder: 'انتخاب کنید' 65 | }, 66 | cascader: { 67 | noMatch: 'هیچ داده‌ای پیدا نشد', 68 | placeholder: 'انتخاب کنید' 69 | }, 70 | pagination: { 71 | goto: 'برو به', 72 | pagesize: '/صفحه', 73 | total: 'مجموع {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'پیام', 78 | confirm: 'باشد', 79 | cancel: 'لغو', 80 | error: 'ورودی غیر مجاز' 81 | }, 82 | upload: { 83 | delete: 'حذف', 84 | preview: 'پیش‌نمایش', 85 | continue: 'ادهمه' 86 | }, 87 | table: { 88 | emptyText: 'اطلاعاتی وجود ندارد', 89 | confirmFilter: 'تایید', 90 | resetFilter: 'حذف', 91 | clearFilter: 'همه' 92 | }, 93 | tree: { 94 | emptyText: 'اطلاعاتی وجود ندارد' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/es.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'Confirmar', 8 | clear: 'Limpiar' 9 | }, 10 | datepicker: { 11 | now: 'Ahora', 12 | today: 'Hoy', 13 | cancel: 'Cancelar', 14 | clear: 'Limpiar', 15 | confirm: 'Confirmar', 16 | selectDate: 'Seleccionar fecha', 17 | selectTime: 'Seleccionar hora', 18 | startDate: 'Fecha de Inicio', 19 | startTime: 'Hora de Inicio', 20 | endDate: 'Fecha Final', 21 | endTime: 'Hora Final', 22 | year: 'Año', 23 | month1: 'Enero', 24 | month2: 'Febrero', 25 | month3: 'Marzo', 26 | month4: 'Abril', 27 | month5: 'Mayo', 28 | month6: 'Junio', 29 | month7: 'Julio', 30 | month8: 'Agosto', 31 | month9: 'Septiembre', 32 | month10: 'Octubre', 33 | month11: 'Noviembre', 34 | month12: 'Diciembre', 35 | // week: 'semana', 36 | weeks: { 37 | sun: 'Dom', 38 | mon: 'Lun', 39 | tue: 'Mar', 40 | wed: 'Mié', 41 | thu: 'Jue', 42 | fri: 'Vie', 43 | sat: 'Sáb' 44 | }, 45 | months: { 46 | jan: 'Ene', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Abr', 50 | may: 'May', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Ago', 54 | sep: 'Sep', 55 | oct: 'Oct', 56 | nov: 'Nov', 57 | dec: 'Dic' 58 | } 59 | }, 60 | select: { 61 | loading: 'Cargando', 62 | noMatch: 'No hay datos que coincidan', 63 | noData: 'Sin datos', 64 | placeholder: 'Seleccionar' 65 | }, 66 | cascader: { 67 | noMatch: 'No hay datos que coincidan', 68 | placeholder: 'Seleccionar' 69 | }, 70 | pagination: { 71 | goto: 'Ir a', 72 | pagesize: '/pagina', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | confirm: 'Aceptar', 78 | cancel: 'Cancelar', 79 | error: 'Entrada inválida' 80 | }, 81 | upload: { 82 | delete: 'Eliminar', 83 | preview: 'Vista Previa', 84 | continue: 'Continuar' 85 | }, 86 | table: { 87 | emptyText: 'Sin Datos', 88 | confirmFilter: 'Confirmar', 89 | resetFilter: 'Limpiar', 90 | clearFilter: 'Todo' 91 | }, 92 | tree: { 93 | emptyText: 'Sin Datos' 94 | } 95 | } 96 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/nl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'Bevestig', 8 | clear: 'Legen' 9 | }, 10 | datepicker: { 11 | now: 'Nu', 12 | today: 'Vandaag', 13 | cancel: 'Annuleren', 14 | clear: 'Legen', 15 | confirm: 'Bevestig', 16 | selectDate: 'Selecteer datum', 17 | selectTime: 'Selecteer tijd', 18 | startDate: 'Startdatum', 19 | startTime: 'Starttijd', 20 | endDate: 'Einddatum', 21 | endTime: 'Eindtijd', 22 | year: 'Jaar', 23 | month1: 'januari', 24 | month2: 'februari', 25 | month3: 'maart', 26 | month4: 'april', 27 | month5: 'mei', 28 | month6: 'juni', 29 | month7: 'juli', 30 | month8: 'augustus', 31 | month9: 'september', 32 | month10: 'oktober', 33 | month11: 'november', 34 | month12: 'december', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'Zo', 38 | mon: 'Ma', 39 | tue: 'Di', 40 | wed: 'Wo', 41 | thu: 'Do', 42 | fri: 'Vr', 43 | sat: 'Za' 44 | }, 45 | months: { 46 | jan: 'jan', 47 | feb: 'feb', 48 | mar: 'maa', 49 | apr: 'apr', 50 | may: 'mei', 51 | jun: 'jun', 52 | jul: 'jul', 53 | aug: 'aug', 54 | sep: 'sep', 55 | oct: 'okt', 56 | nov: 'nov', 57 | dec: 'dec' 58 | } 59 | }, 60 | select: { 61 | loading: 'Laden', 62 | noMatch: 'Geen overeenkomende resultaten', 63 | noData: 'Geen data', 64 | placeholder: 'Selecteer' 65 | }, 66 | cascader: { 67 | noMatch: 'Geen overeenkomende resultaten', 68 | placeholder: 'Selecteer' 69 | }, 70 | pagination: { 71 | goto: 'Ga naar', 72 | pagesize: '/page', 73 | total: 'Totaal {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Bericht', 78 | confirm: 'Bevestig', 79 | cancel: 'Annuleren', 80 | error: 'Ongeldige invoer' 81 | }, 82 | upload: { 83 | delete: 'Verwijder', 84 | preview: 'Voorbeeld', 85 | continue: 'Doorgaan' 86 | }, 87 | table: { 88 | emptyText: 'Geen data', 89 | confirmFilter: 'Bevestigen', 90 | resetFilter: 'Reset', 91 | clearFilter: 'Alles' 92 | }, 93 | tree: { 94 | emptyText: 'Geen data' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/pt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'Confirmar', 8 | clear: 'Limpar' 9 | }, 10 | datepicker: { 11 | now: 'Agora', 12 | today: 'Hoje', 13 | cancel: 'Cancelar', 14 | clear: 'Limpar', 15 | confirm: 'Confirmar', 16 | selectDate: 'Selecione a data', 17 | selectTime: 'Selecione a hora', 18 | startDate: 'Data de inicio', 19 | startTime: 'Hora de inicio', 20 | endDate: 'Data de fim', 21 | endTime: 'Hora de fim', 22 | year: '', 23 | month1: 'Janeiro', 24 | month2: 'Fevereiro', 25 | month3: 'Março', 26 | month4: 'Abril', 27 | month5: 'Maio', 28 | month6: 'Junho', 29 | month7: 'Julho', 30 | month8: 'Agosto', 31 | month9: 'Setembro', 32 | month10: 'Outubro', 33 | month11: 'Novembro', 34 | month12: 'Dezembro', 35 | // week: 'semana', 36 | weeks: { 37 | sun: 'Dom', 38 | mon: 'Seg', 39 | tue: 'Ter', 40 | wed: 'Qua', 41 | thu: 'Qui', 42 | fri: 'Sex', 43 | sat: 'Sab' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Fev', 48 | mar: 'Mar', 49 | apr: 'Abr', 50 | may: 'Mai', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Ago', 54 | sep: 'Set', 55 | oct: 'Out', 56 | nov: 'Nov', 57 | dec: 'Dez' 58 | } 59 | }, 60 | select: { 61 | loading: 'A carregar', 62 | noMatch: 'Sem correspondência', 63 | noData: 'Sem dados', 64 | placeholder: 'Selecione' 65 | }, 66 | cascader: { 67 | noMatch: 'Sem correspondência', 68 | placeholder: 'Selecione' 69 | }, 70 | pagination: { 71 | goto: 'Ir para', 72 | pagesize: '/pagina', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Mensagem', 78 | confirm: 'Confirmar', 79 | cancel: 'Cancelar', 80 | error: 'Erro!' 81 | }, 82 | upload: { 83 | delete: 'Apagar', 84 | preview: 'Previsualizar', 85 | continue: 'Continuar' 86 | }, 87 | table: { 88 | emptyText: 'Sem dados', 89 | confirmFilter: 'Confirmar', 90 | resetFilter: 'Limpar', 91 | clearFilter: 'Todos' 92 | }, 93 | tree: { 94 | emptyText: 'Sem dados' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/th.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'ตกลง', 8 | clear: 'ล้างข้อมูล' 9 | }, 10 | datepicker: { 11 | now: 'ตอนนี้', 12 | today: 'วันนี้', 13 | cancel: 'ยกเลิก', 14 | clear: 'ล้างข้อมูล', 15 | confirm: 'ตกลง', 16 | selectDate: 'เลือกวันที่', 17 | selectTime: 'เลือกเวลา', 18 | startDate: 'วันที่เริ่มต้น', 19 | startTime: 'เวลาเริ่มต้น', 20 | endDate: 'วันที่สิ้นสุด', 21 | endTime: 'เวลาสิ้นสุด', 22 | year: 'ปี', 23 | month1: 'มกราคม', 24 | month2: 'กุมภาพันธ์', 25 | month3: 'มีนาคม', 26 | month4: 'เมษายน', 27 | month5: 'พฤษภาคม', 28 | month6: 'มิถุนายน', 29 | month7: 'กรกฎาคม', 30 | month8: 'สิงหาคม', 31 | month9: 'กันยายน', 32 | month10: 'ตุลาคม', 33 | month11: 'พฤศจิกายน', 34 | month12: 'ธันวาคม', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'อ', 38 | mon: 'จ', 39 | tue: 'อ', 40 | wed: 'พ', 41 | thu: 'พฤ', 42 | fri: 'ศ', 43 | sat: 'ส' 44 | }, 45 | months: { 46 | jan: 'มกรา', 47 | feb: 'กุมภา', 48 | mar: 'มีนา', 49 | apr: 'เมษา', 50 | may: 'พฤษภา', 51 | jun: 'มิถุนา', 52 | jul: 'กรกฎา', 53 | aug: 'สิงหา', 54 | sep: 'กันยา', 55 | oct: 'ตุลา', 56 | nov: 'พฤศจิกา', 57 | dec: 'ธันวา' 58 | } 59 | }, 60 | select: { 61 | loading: 'กำลังโหลด', 62 | noMatch: 'ไม่พบข้อมูลที่ตรงกัน', 63 | noData: 'ไม่พบข้อมูล', 64 | placeholder: 'เลือก' 65 | }, 66 | cascader: { 67 | noMatch: 'ไม่พบข้อมูลที่ตรงกัน', 68 | placeholder: 'เลือก' 69 | }, 70 | pagination: { 71 | goto: 'ไปที่', 72 | pagesize: '/หน้า', 73 | total: 'ทั้งหมด {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'ข้อความ', 78 | confirm: 'ตกลง', 79 | cancel: 'ยกเลิก', 80 | error: 'คุณป้อนข้อมูลไม่ถูกต้อง' 81 | }, 82 | upload: { 83 | delete: 'ลบ', 84 | preview: 'ตัวอย่าง', 85 | continue: 'ทำต่อ' 86 | }, 87 | table: { 88 | emptyText: 'ไม่พบข้อมูล', 89 | confirmFilter: 'ยืนยัน', 90 | resetFilter: 'รีเซ็ต', 91 | clearFilter: 'ทั้งหมด' 92 | }, 93 | tree: { 94 | emptyText: 'ไม่พบข้อมูล' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/id.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'YA', 8 | clear: 'Kosongkan' 9 | }, 10 | datepicker: { 11 | now: 'Sekarang', 12 | today: 'Hari ini', 13 | cancel: 'Batal', 14 | clear: 'Kosongkan', 15 | confirm: 'YA', 16 | selectDate: 'Pilih tanggal', 17 | selectTime: 'Pilih waktu', 18 | startDate: 'Tanggal Mulai', 19 | startTime: 'Waktu Mulai', 20 | endDate: 'Tanggal Selesai', 21 | endTime: 'Waktu Selesai', 22 | year: 'Tahun', 23 | month1: 'Januari', 24 | month2: 'Februari', 25 | month3: 'Maret', 26 | month4: 'April', 27 | month5: 'Mei', 28 | month6: 'Juni', 29 | month7: 'Juli', 30 | month8: 'Agustus', 31 | month9: 'September', 32 | month10: 'Oktober', 33 | month11: 'November', 34 | month12: 'Desember', 35 | // week: 'minggu', 36 | weeks: { 37 | sun: 'Min', 38 | mon: 'Sen', 39 | tue: 'Sel', 40 | wed: 'Rab', 41 | thu: 'Kam', 42 | fri: 'Jum', 43 | sat: 'Sab' 44 | }, 45 | months: { 46 | jan: 'Jan', 47 | feb: 'Feb', 48 | mar: 'Mar', 49 | apr: 'Apr', 50 | may: 'Mei', 51 | jun: 'Jun', 52 | jul: 'Jul', 53 | aug: 'Agu', 54 | sep: 'Sep', 55 | oct: 'Okt', 56 | nov: 'Nov', 57 | dec: 'Des' 58 | } 59 | }, 60 | select: { 61 | loading: 'Memuat', 62 | noMatch: 'Tidak ada data yang cocok', 63 | noData: 'Tidak ada data', 64 | placeholder: 'Pilih' 65 | }, 66 | cascader: { 67 | noMatch: 'Tidak ada data yang cocok', 68 | placeholder: 'Pilih' 69 | }, 70 | pagination: { 71 | goto: 'Pergi ke', 72 | pagesize: '/page', 73 | total: 'Total {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Pesan', 78 | confirm: 'YA', 79 | cancel: 'Batal', 80 | error: 'Masukan ilegal' 81 | }, 82 | upload: { 83 | delete: 'Hapus', 84 | preview: 'Pratinjau', 85 | continue: 'Lanjutkan' 86 | }, 87 | table: { 88 | emptyText: 'Tidak Ada Data', 89 | confirmFilter: 'Konfirmasi', 90 | resetFilter: 'Atur Ulang', 91 | clearFilter: 'Semua' 92 | }, 93 | tree: { 94 | emptyText: 'Tidak Ada Data' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/vi.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Xóa' 9 | }, 10 | datepicker: { 11 | now: 'Hiện tại', 12 | today: 'Hôm nay', 13 | cancel: 'Hủy', 14 | clear: 'Xóa', 15 | confirm: 'OK', 16 | selectDate: 'Chọn ngày', 17 | selectTime: 'Chọn giờ', 18 | startDate: 'Ngày bắt đầu', 19 | startTime: 'Thời gian bắt đầu', 20 | endDate: 'Ngày kết thúc', 21 | endTime: 'Thời gian kết thúc', 22 | year: 'Năm', 23 | month1: 'Tháng 1', 24 | month2: 'Tháng 2', 25 | month3: 'Tháng 3', 26 | month4: 'Tháng 4', 27 | month5: 'Tháng 5', 28 | month6: 'Tháng 6', 29 | month7: 'Tháng 7', 30 | month8: 'Tháng 8', 31 | month9: 'Tháng 9', 32 | month10: 'Tháng 10', 33 | month11: 'Tháng 11', 34 | month12: 'Tháng 12', 35 | // week: 'week', 36 | weeks: { 37 | sun: 'CN', 38 | mon: 'T2', 39 | tue: 'T3', 40 | wed: 'T4', 41 | thu: 'T5', 42 | fri: 'T6', 43 | sat: 'T7' 44 | }, 45 | months: { 46 | jan: 'Th.1', 47 | feb: 'Th.2', 48 | mar: 'Th.3', 49 | apr: 'Th.4', 50 | may: 'Th.5', 51 | jun: 'Th.6', 52 | jul: 'Th.7', 53 | aug: 'Th.8', 54 | sep: 'Th.9', 55 | oct: 'Th.10', 56 | nov: 'Th.11', 57 | dec: 'Th.12' 58 | } 59 | }, 60 | select: { 61 | loading: 'Loading', 62 | noMatch: 'Dữ liệu không phù hợp', 63 | noData: 'Không tìm thấy dữ liệu', 64 | placeholder: 'Chọn' 65 | }, 66 | cascader: { 67 | noMatch: 'Dữ liệu không phù hợp', 68 | placeholder: 'Chọn' 69 | }, 70 | pagination: { 71 | goto: 'Nhảy tới', 72 | pagesize: '/trang', 73 | total: 'Tổng {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Thông báo', 78 | confirm: 'OK', 79 | cancel: 'Hủy', 80 | error: 'Dữ liệu không hợp lệ' 81 | }, 82 | upload: { 83 | delete: 'Xóa', 84 | preview: 'Xem trước', 85 | continue: 'Tiếp tục' 86 | }, 87 | table: { 88 | emptyText: 'Không có dữ liệu', 89 | confirmFilter: 'Xác nhận', 90 | resetFilter: 'Làm mới', 91 | clearFilter: 'Xóa hết' 92 | }, 93 | tree: { 94 | emptyText: 'Không có dữ liệu' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/locale/lang/pl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | exports.default = { 5 | el: { 6 | colorpicker: { 7 | confirm: 'OK', 8 | clear: 'Wyczyść' 9 | }, 10 | datepicker: { 11 | now: 'Teraz', 12 | today: 'Dzisiaj', 13 | cancel: 'Anuluj', 14 | clear: 'Wyczyść', 15 | confirm: 'OK', 16 | selectDate: 'Wybierz datę', 17 | selectTime: 'Wybierz godzinę', 18 | startDate: 'Data początkowa', 19 | startTime: 'Godzina początkowa', 20 | endDate: 'Data końcowa', 21 | endTime: 'Czas końcowa', 22 | year: 'rok', 23 | month1: 'styczeń', 24 | month2: 'luty', 25 | month3: 'marzec', 26 | month4: 'kwiecień', 27 | month5: 'maj', 28 | month6: 'czerwiec', 29 | month7: 'lipiec', 30 | month8: 'sierpień', 31 | month9: 'wrzesień', 32 | month10: 'październik', 33 | month11: 'listopad', 34 | month12: 'grudzień', 35 | week: 'tydzień', 36 | weeks: { 37 | sun: 'niedz.', 38 | mon: 'pon.', 39 | tue: 'wt.', 40 | wed: 'śr.', 41 | thu: 'czw.', 42 | fri: 'pt.', 43 | sat: 'sob.' 44 | }, 45 | months: { 46 | jan: 'STY', 47 | feb: 'LUT', 48 | mar: 'MAR', 49 | apr: 'KWI', 50 | may: 'MAJ', 51 | jun: 'CZE', 52 | jul: 'LIP', 53 | aug: 'SIE', 54 | sep: 'WRZ', 55 | oct: 'PAŹ', 56 | nov: 'LIS', 57 | dec: 'GRU' 58 | } 59 | }, 60 | select: { 61 | loading: 'Ładowanie', 62 | noMatch: 'Brak dopasowań', 63 | noData: 'Brak danych', 64 | placeholder: 'Wybierz' 65 | }, 66 | cascader: { 67 | noMatch: 'Brak dopasowań', 68 | placeholder: 'Wybierz' 69 | }, 70 | pagination: { 71 | goto: 'Idź do', 72 | pagesize: '/strona', 73 | total: 'Wszystkich {total}', 74 | pageClassifier: '' 75 | }, 76 | messagebox: { 77 | title: 'Wiadomość', 78 | confirm: 'OK', 79 | cancel: 'Anuluj', 80 | error: 'Wiadomość zawiera niedozwolone znaki' 81 | }, 82 | upload: { 83 | delete: 'Kasuj', 84 | preview: 'Podgląd', 85 | continue: 'Kontynuuj' 86 | }, 87 | table: { 88 | emptyText: 'Brak danych', 89 | confirmFilter: 'Potwierdź', 90 | resetFilter: 'Resetuj', 91 | clearFilter: 'Wszystko' 92 | }, 93 | tree: { 94 | emptyText: 'Brak danych' 95 | } 96 | } 97 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/date-range-picker.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b date-range-picker { 5 | min-width: 520px; 6 | 7 | &.has-sidebar.has-time { 8 | min-width: 766px; 9 | } 10 | 11 | &.has-sidebar { 12 | min-width: 620px; 13 | } 14 | 15 | &.has-time { 16 | min-width: 660px; 17 | } 18 | 19 | table { 20 | table-layout: fixed; 21 | width: 100%; 22 | } 23 | 24 | .el-picker-panel__body { 25 | min-width: 513px; 26 | } 27 | 28 | .el-picker-panel__content { 29 | margin: 0; 30 | } 31 | 32 | @e header { 33 | position: relative; 34 | text-align: center; 35 | height: 28px; 36 | 37 | button { 38 | float: left; 39 | } 40 | 41 | div { 42 | font-size: 14px; 43 | margin-right: 50px; 44 | } 45 | } 46 | 47 | @e content { 48 | float: left; 49 | width: 50%; 50 | box-sizing: border-box; 51 | margin: 0; 52 | padding: 16px; 53 | 54 | @when left { 55 | border-right: 1px solid var(--datepicker-inner-border-color); 56 | } 57 | 58 | @when right { 59 | .el-date-range-picker__header { 60 | button { 61 | float: right; 62 | } 63 | 64 | div { 65 | margin-left: 50px; 66 | margin-right: 50px; 67 | } 68 | } 69 | } 70 | } 71 | 72 | @e editors-wrap { 73 | box-sizing: border-box; 74 | display: table-cell; 75 | 76 | @when right { 77 | text-align: right; 78 | } 79 | } 80 | 81 | @e time-header { 82 | position: relative; 83 | border-bottom: 1px solid var(--datepicker-inner-border-color); 84 | font-size: 12px; 85 | padding: 8px 5px 5px 5px; 86 | display: table; 87 | width: 100%; 88 | box-sizing: border-box; 89 | 90 | > .el-icon-arrow-right { 91 | font-size: 20px; 92 | vertical-align: middle; 93 | display: table-cell; 94 | color: var(--datepicker-icon-color); 95 | } 96 | } 97 | 98 | @e time-picker-wrap { 99 | position: relative; 100 | display: table-cell; 101 | padding: 0 5px; 102 | 103 | .el-picker-panel { 104 | position: absolute; 105 | top: 13px; 106 | right: 0; 107 | z-index: 1; 108 | background: var(--color-white); 109 | } 110 | } 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | spring-boot-Demo 7 | war 8 | Spring Boot Web JSP Example 9 | Spring Boot Web JSP Example 10 | 1.0 11 | 12 | 13 | org.springframework.boot 14 | spring-boot-starter-parent 15 | 1.4.2.RELEASE 16 | 17 | 18 | 19 | 1.8 20 | 21 | 22 | 23 | 24 | 25 | 26 | org.springframework.boot 27 | spring-boot-starter-web 28 | 29 | 30 | 31 | 32 | org.springframework.boot 33 | spring-boot-starter-tomcat 34 | provided 35 | 36 | 37 | 38 | 39 | javax.servlet 40 | jstl 41 | 42 | 43 | 44 | 45 | org.apache.tomcat.embed 46 | tomcat-embed-jasper 47 | provided 48 | 49 | 50 | 51 | 52 | org.eclipse.jdt.core.compiler 53 | ecj 54 | 4.6.1 55 | provided 56 | 57 | 58 | 59 | org.mybatis.spring.boot 60 | mybatis-spring-boot-starter 61 | 1.0.0 62 | 63 | 64 | 65 | mysql 66 | mysql-connector-java 67 | 5.1.40 68 | 69 | 70 | 71 | 72 | com.github.pagehelper 73 | pagehelper-spring-boot-starter 74 | 1.1.0 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | org.springframework.boot 83 | spring-boot-maven-plugin 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/org.springframework.boot/spring-boot-Demo/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | spring-boot-Demo 7 | war 8 | Spring Boot Web JSP Example 9 | Spring Boot Web JSP Example 10 | 1.0 11 | 12 | 13 | org.springframework.boot 14 | spring-boot-starter-parent 15 | 1.4.2.RELEASE 16 | 17 | 18 | 19 | 1.8 20 | 21 | 22 | 23 | 24 | 25 | 26 | org.springframework.boot 27 | spring-boot-starter-web 28 | 29 | 30 | 31 | 32 | org.springframework.boot 33 | spring-boot-starter-tomcat 34 | provided 35 | 36 | 37 | 38 | 39 | javax.servlet 40 | jstl 41 | 42 | 43 | 44 | 45 | org.apache.tomcat.embed 46 | tomcat-embed-jasper 47 | provided 48 | 49 | 50 | 51 | 52 | org.eclipse.jdt.core.compiler 53 | ecj 54 | 4.6.1 55 | provided 56 | 57 | 58 | 59 | org.mybatis.spring.boot 60 | mybatis-spring-boot-starter 61 | 1.0.0 62 | 63 | 64 | 65 | mysql 66 | mysql-connector-java 67 | 5.1.40 68 | 69 | 70 | 71 | 72 | com.github.pagehelper 73 | pagehelper-spring-boot-starter 74 | 1.1.0 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | org.springframework.boot 83 | spring-boot-maven-plugin 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/org.springframework.boot/spring-boot-web-jsp/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | spring-boot-web-jsp 7 | war 8 | Spring Boot Web JSP Example 9 | Spring Boot Web JSP Example 10 | 1.0 11 | 12 | 13 | org.springframework.boot 14 | spring-boot-starter-parent 15 | 1.4.2.RELEASE 16 | 17 | 18 | 19 | 1.8 20 | 21 | 22 | 23 | 24 | 25 | 26 | org.springframework.boot 27 | spring-boot-starter-web 28 | 29 | 30 | 31 | 32 | org.springframework.boot 33 | spring-boot-starter-tomcat 34 | provided 35 | 36 | 37 | 38 | 39 | javax.servlet 40 | jstl 41 | 42 | 43 | 44 | 45 | org.apache.tomcat.embed 46 | tomcat-embed-jasper 47 | provided 48 | 49 | 50 | 51 | 52 | org.eclipse.jdt.core.compiler 53 | ecj 54 | 4.6.1 55 | provided 56 | 57 | 58 | 59 | org.mybatis.spring.boot 60 | mybatis-spring-boot-starter 61 | 1.0.0 62 | 63 | 64 | 65 | mysql 66 | mysql-connector-java 67 | 5.1.40 68 | 69 | 70 | 71 | 72 | com.github.pagehelper 73 | pagehelper-spring-boot-starter 74 | 1.1.0 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | org.springframework.boot 83 | spring-boot-maven-plugin 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/theme-default/date-picker/picker-panel.css: -------------------------------------------------------------------------------- 1 | @import "../common/var.css"; 2 | 3 | @component-namespace el { 4 | @b picker-panel { 5 | color: var(--datepicker-color); 6 | border: 1px solid var(--datepicker-border-color); 7 | box-shadow: 0 2px 6px #ccc; 8 | background: var(--color-white); 9 | border-radius: 2px; 10 | line-height: 20px; 11 | margin: 5px 0; 12 | 13 | @e body, body-wrapper { 14 | &::after { 15 | content: ""; 16 | display: table; 17 | clear: both; 18 | } 19 | } 20 | 21 | @e content { 22 | position: relative; 23 | margin: 15px; 24 | } 25 | 26 | @e footer { 27 | border-top: 1px solid var(--datepicker-inner-border-color); 28 | padding: 4px; 29 | text-align: right; 30 | background-color: var(--color-white); 31 | position: relative; 32 | } 33 | 34 | @e shortcut { 35 | display: block; 36 | width: 100%; 37 | border: 0; 38 | background-color: transparent; 39 | line-height: 28px; 40 | font-size: 14px; 41 | color: var(--datepicker-color); 42 | padding-left: 12px; 43 | text-align: left; 44 | outline: none; 45 | cursor: pointer; 46 | 47 | &:hover { 48 | background-color: var(--datepicker-cell-hover-color); 49 | } 50 | 51 | &.active { 52 | background-color: #e6f1fe; 53 | color: var(--datepicker-active-color); 54 | } 55 | } 56 | 57 | @e btn { 58 | border: 1px solid #dcdcdc; 59 | color: #333; 60 | line-height: 24px; 61 | border-radius: 2px; 62 | padding: 0 20px; 63 | cursor: pointer; 64 | background-color: transparent; 65 | outline: none; 66 | font-size: 12px; 67 | 68 | &[disabled] { 69 | color: #cccccc; 70 | cursor: not-allowed; 71 | } 72 | } 73 | 74 | @e icon-btn { 75 | font-size: 12px; 76 | color: var(--datepicker-icon-color); 77 | border: 0; 78 | background: transparent; 79 | cursor: pointer; 80 | outline: none; 81 | margin-top: 3px; 82 | 83 | &:hover { 84 | color: var(--datepicker-text-hover-color); 85 | } 86 | } 87 | 88 | @e link-btn { 89 | cursor: pointer; 90 | color: var(--color-primary); 91 | text-decoration: none; 92 | padding: 15px; 93 | font-size: 12px; 94 | } 95 | } 96 | 97 | .el-picker-panel *[slot=sidebar], 98 | .el-picker-panel__sidebar { 99 | position: absolute; 100 | top: 0; 101 | bottom: 0; 102 | width: 110px; 103 | border-right: 1px solid var(--datepicker-inner-border-color); 104 | box-sizing: border-box; 105 | padding-top: 6px; 106 | background-color: var(--color-dark-white); 107 | } 108 | 109 | .el-picker-panel *[slot=sidebar] + .el-picker-panel__body, 110 | .el-picker-panel__sidebar + .el-picker-panel__body { 111 | margin-left: 110px; 112 | } 113 | } 114 | -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/zh-CN.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/zh-CN', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.zhCN = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: '确定', 22 | clear: '清空' 23 | }, 24 | datepicker: { 25 | now: '此刻', 26 | today: '今天', 27 | cancel: '取消', 28 | clear: '清空', 29 | confirm: '确定', 30 | selectDate: '选择日期', 31 | selectTime: '选择时间', 32 | startDate: '开始日期', 33 | startTime: '开始时间', 34 | endDate: '结束日期', 35 | endTime: '结束时间', 36 | year: '年', 37 | month1: '1 月', 38 | month2: '2 月', 39 | month3: '3 月', 40 | month4: '4 月', 41 | month5: '5 月', 42 | month6: '6 月', 43 | month7: '7 月', 44 | month8: '8 月', 45 | month9: '9 月', 46 | month10: '10 月', 47 | month11: '11 月', 48 | month12: '12 月', 49 | // week: '周次', 50 | weeks: { 51 | sun: '日', 52 | mon: '一', 53 | tue: '二', 54 | wed: '三', 55 | thu: '四', 56 | fri: '五', 57 | sat: '六' 58 | }, 59 | months: { 60 | jan: '一月', 61 | feb: '二月', 62 | mar: '三月', 63 | apr: '四月', 64 | may: '五月', 65 | jun: '六月', 66 | jul: '七月', 67 | aug: '八月', 68 | sep: '九月', 69 | oct: '十月', 70 | nov: '十一月', 71 | dec: '十二月' 72 | } 73 | }, 74 | select: { 75 | loading: '加载中', 76 | noMatch: '无匹配数据', 77 | noData: '无数据', 78 | placeholder: '请选择' 79 | }, 80 | cascader: { 81 | noMatch: '无匹配数据', 82 | placeholder: '请选择' 83 | }, 84 | pagination: { 85 | goto: '前往', 86 | pagesize: '条/页', 87 | total: '共 {total} 条', 88 | pageClassifier: '页' 89 | }, 90 | messagebox: { 91 | title: '提示', 92 | confirm: '确定', 93 | cancel: '取消', 94 | error: '输入的数据不合法!' 95 | }, 96 | upload: { 97 | delete: '删除', 98 | preview: '查看图片', 99 | continue: '继续上传' 100 | }, 101 | table: { 102 | emptyText: '暂无数据', 103 | confirmFilter: '筛选', 104 | resetFilter: '重置', 105 | clearFilter: '全部' 106 | }, 107 | tree: { 108 | emptyText: '暂无数据' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/zh-TW.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/zh-TW', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.zhTW = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: '確認', 22 | clear: '清空' 23 | }, 24 | datepicker: { 25 | now: '現在', 26 | today: '今天', 27 | cancel: '取消', 28 | clear: '清空', 29 | confirm: '確認', 30 | selectDate: '選擇日期', 31 | selectTime: '選擇時間', 32 | startDate: '開始日期', 33 | startTime: '開始時間', 34 | endDate: '結束日期', 35 | endTime: '結束時間', 36 | year: '年', 37 | month1: '1 月', 38 | month2: '2 月', 39 | month3: '3 月', 40 | month4: '4 月', 41 | month5: '5 月', 42 | month6: '6 月', 43 | month7: '7 月', 44 | month8: '8 月', 45 | month9: '9 月', 46 | month10: '10 月', 47 | month11: '11 月', 48 | month12: '12 月', 49 | // week: '周次', 50 | weeks: { 51 | sun: '日', 52 | mon: '一', 53 | tue: '二', 54 | wed: '三', 55 | thu: '四', 56 | fri: '五', 57 | sat: '六' 58 | }, 59 | months: { 60 | jan: '一月', 61 | feb: '二月', 62 | mar: '三月', 63 | apr: '四月', 64 | may: '五月', 65 | jun: '六月', 66 | jul: '七月', 67 | aug: '八月', 68 | sep: '九月', 69 | oct: '十月', 70 | nov: '十一月', 71 | dec: '十二月' 72 | } 73 | }, 74 | select: { 75 | loading: '加載中', 76 | noMatch: '無匹配資料', 77 | noData: '無資料', 78 | placeholder: '請選擇' 79 | }, 80 | cascader: { 81 | noMatch: '無匹配資料', 82 | placeholder: '請選擇' 83 | }, 84 | pagination: { 85 | goto: '前往', 86 | pagesize: '項/頁', 87 | total: '共 {total} 項', 88 | pageClassifier: '頁' 89 | }, 90 | messagebox: { 91 | title: '提示', 92 | confirm: '確定', 93 | cancel: '取消', 94 | error: '輸入的資料不符規定!' 95 | }, 96 | upload: { 97 | delete: '刪除', 98 | preview: '查看圖片', 99 | continue: '繼續上傳' 100 | }, 101 | table: { 102 | emptyText: '暫無資料', 103 | confirmFilter: '篩選', 104 | resetFilter: '重置', 105 | clearFilter: '全部' 106 | }, 107 | tree: { 108 | emptyText: '暫無資料' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/ja.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/ja', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.ja = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'クリア' 23 | }, 24 | datepicker: { 25 | now: '現在', 26 | today: '今日', 27 | cancel: 'キャンセル', 28 | clear: 'クリア', 29 | confirm: 'はい', 30 | selectDate: '日付を選択', 31 | selectTime: '時間を選択', 32 | startDate: '開始日', 33 | startTime: '開始時間', 34 | endDate: '終了日', 35 | endTime: '終了時間', 36 | year: '年', 37 | month1: '1月', 38 | month2: '2月', 39 | month3: '3月', 40 | month4: '4月', 41 | month5: '5月', 42 | month6: '6月', 43 | month7: '7月', 44 | month8: '8月', 45 | month9: '9月', 46 | month10: '10月', 47 | month11: '11月', 48 | month12: '12月', 49 | // week: '週次', 50 | weeks: { 51 | sun: '日', 52 | mon: '月', 53 | tue: '火', 54 | wed: '水', 55 | thu: '木', 56 | fri: '金', 57 | sat: '土' 58 | }, 59 | months: { 60 | jan: '1月', 61 | feb: '2月', 62 | mar: '3月', 63 | apr: '4月', 64 | may: '5月', 65 | jun: '6月', 66 | jul: '7月', 67 | aug: '8月', 68 | sep: '9月', 69 | oct: '10月', 70 | nov: '11月', 71 | dec: '12月' 72 | } 73 | }, 74 | select: { 75 | loading: 'ロード中', 76 | noMatch: 'データなし', 77 | noData: 'データなし', 78 | placeholder: '選択してください' 79 | }, 80 | cascader: { 81 | noMatch: 'データなし', 82 | placeholder: '選択してください' 83 | }, 84 | pagination: { 85 | goto: '', 86 | pagesize: '件/ページ', 87 | total: '総計 {total} 件', 88 | pageClassifier: 'ページ目へ' 89 | }, 90 | messagebox: { 91 | title: 'メッセージ', 92 | confirm: 'はい', 93 | cancel: 'キャンセル', 94 | error: '正しくない入力' 95 | }, 96 | upload: { 97 | delete: '削除する', 98 | preview: 'プレビュー', 99 | continue: '続行する' 100 | }, 101 | table: { 102 | emptyText: 'データなし', 103 | confirmFilter: '確認', 104 | resetFilter: '初期化', 105 | clearFilter: 'すべて' 106 | }, 107 | tree: { 108 | emptyText: 'データなし' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/ko.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/ko', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.ko = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: '확인', 22 | clear: '초기화' 23 | }, 24 | datepicker: { 25 | now: '지금', 26 | today: '오늘', 27 | cancel: '취소', 28 | clear: '초기화', 29 | confirm: '확인', 30 | selectDate: '날짜 선택', 31 | selectTime: '시간 선택', 32 | startDate: '시작 날짜', 33 | startTime: '시작 시간', 34 | endDate: '종료 날짜', 35 | endTime: '종료 시간', 36 | year: '년', 37 | month1: '1월', 38 | month2: '2월', 39 | month3: '3월', 40 | month4: '4월', 41 | month5: '5월', 42 | month6: '6월', 43 | month7: '7월', 44 | month8: '8월', 45 | month9: '9월', 46 | month10: '10월', 47 | month11: '11월', 48 | month12: '12월', 49 | // week: 'week', 50 | weeks: { 51 | sun: '일', 52 | mon: '월', 53 | tue: '화', 54 | wed: '수', 55 | thu: '목', 56 | fri: '금', 57 | sat: '토' 58 | }, 59 | months: { 60 | jan: '1월', 61 | feb: '2월', 62 | mar: '3월', 63 | apr: '4월', 64 | may: '5월', 65 | jun: '6월', 66 | jul: '7월', 67 | aug: '8월', 68 | sep: '9월', 69 | oct: '10월', 70 | nov: '11월', 71 | dec: '12월' 72 | } 73 | }, 74 | select: { 75 | loading: '불러오는 중', 76 | noMatch: '맞는 데이터가 없습니다', 77 | noData: '데이터 없음', 78 | placeholder: '선택' 79 | }, 80 | cascader: { 81 | noMatch: '맞는 데이터가 없습니다', 82 | placeholder: '선택' 83 | }, 84 | pagination: { 85 | goto: '이동', 86 | pagesize: '/page', 87 | total: '총 {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: '메시지', 92 | confirm: '확인', 93 | cancel: '취소', 94 | error: '올바르지 않은 입력' 95 | }, 96 | upload: { 97 | delete: '삭제', 98 | preview: '미리보기', 99 | continue: '계속하기' 100 | }, 101 | table: { 102 | emptyText: '데이터 없음', 103 | confirmFilter: '확인', 104 | resetFilter: '초기화', 105 | clearFilter: '전체' 106 | }, 107 | tree: { 108 | emptyText: '데이터 없음' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/transitions/collapse-transition.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.__esModule = true; 4 | 5 | var _dom = require('element-ui/lib/utils/dom'); 6 | 7 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } 8 | 9 | var Transition = function () { 10 | function Transition() { 11 | _classCallCheck(this, Transition); 12 | } 13 | 14 | Transition.prototype.beforeEnter = function beforeEnter(el) { 15 | (0, _dom.addClass)(el, 'collapse-transition'); 16 | if (!el.dataset) el.dataset = {}; 17 | 18 | el.dataset.oldPaddingTop = el.style.paddingTop; 19 | el.dataset.oldPaddingBottom = el.style.paddingBottom; 20 | 21 | el.style.height = '0'; 22 | el.style.paddingTop = 0; 23 | el.style.paddingBottom = 0; 24 | }; 25 | 26 | Transition.prototype.enter = function enter(el) { 27 | el.dataset.oldOverflow = el.style.overflow; 28 | if (el.scrollHeight !== 0) { 29 | el.style.height = el.scrollHeight + 'px'; 30 | el.style.paddingTop = el.dataset.oldPaddingTop; 31 | el.style.paddingBottom = el.dataset.oldPaddingBottom; 32 | } else { 33 | el.style.height = ''; 34 | el.style.paddingTop = el.dataset.oldPaddingTop; 35 | el.style.paddingBottom = el.dataset.oldPaddingBottom; 36 | } 37 | 38 | el.style.overflow = 'hidden'; 39 | }; 40 | 41 | Transition.prototype.afterEnter = function afterEnter(el) { 42 | // for safari: remove class then reset height is necessary 43 | (0, _dom.removeClass)(el, 'collapse-transition'); 44 | el.style.height = ''; 45 | el.style.overflow = el.dataset.oldOverflow; 46 | }; 47 | 48 | Transition.prototype.beforeLeave = function beforeLeave(el) { 49 | if (!el.dataset) el.dataset = {}; 50 | el.dataset.oldPaddingTop = el.style.paddingTop; 51 | el.dataset.oldPaddingBottom = el.style.paddingBottom; 52 | el.dataset.oldOverflow = el.style.overflow; 53 | 54 | el.style.height = el.scrollHeight + 'px'; 55 | el.style.overflow = 'hidden'; 56 | }; 57 | 58 | Transition.prototype.leave = function leave(el) { 59 | if (el.scrollHeight !== 0) { 60 | // for safari: add class after set height, or it will jump to zero height suddenly, weired 61 | (0, _dom.addClass)(el, 'collapse-transition'); 62 | el.style.height = 0; 63 | el.style.paddingTop = 0; 64 | el.style.paddingBottom = 0; 65 | } 66 | }; 67 | 68 | Transition.prototype.afterLeave = function afterLeave(el) { 69 | (0, _dom.removeClass)(el, 'collapse-transition'); 70 | el.style.height = ''; 71 | el.style.overflow = el.dataset.oldOverflow; 72 | el.style.paddingTop = el.dataset.oldPaddingTop; 73 | el.style.paddingBottom = el.dataset.oldPaddingBottom; 74 | }; 75 | 76 | return Transition; 77 | }(); 78 | 79 | exports.default = { 80 | functional: true, 81 | render: function render(h, _ref) { 82 | var children = _ref.children; 83 | 84 | var data = { 85 | on: new Transition() 86 | }; 87 | 88 | return h('transition', data, children); 89 | } 90 | }; -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/sv-SE.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/sv-SE', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.svSE = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Töm' 23 | }, 24 | datepicker: { 25 | now: 'Nu', 26 | today: 'Idag', 27 | cancel: 'Avbryt', 28 | clear: 'Töm', 29 | confirm: 'OK', 30 | selectDate: 'Välj datum', 31 | selectTime: 'Välj tid', 32 | startDate: 'Startdatum', 33 | startTime: 'Starttid', 34 | endDate: 'Slutdatum', 35 | endTime: 'Sluttid', 36 | year: 'År', 37 | month1: 'Januari', 38 | month2: 'Februari', 39 | month3: 'Mars', 40 | month4: 'April', 41 | month5: 'Maj', 42 | month6: 'Juni', 43 | month7: 'Juli', 44 | month8: 'Augusti', 45 | month9: 'September', 46 | month10: 'Oktober', 47 | month11: 'November', 48 | month12: 'December', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Sön', 52 | mon: 'Mån', 53 | tue: 'Tis', 54 | wed: 'Ons', 55 | thu: 'Tor', 56 | fri: 'Fre', 57 | sat: 'Lör' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'Maj', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Aug', 68 | sep: 'Sep', 69 | oct: 'Okt', 70 | nov: 'Nov', 71 | dec: 'Dec' 72 | } 73 | }, 74 | select: { 75 | loading: 'Laddar', 76 | noMatch: 'Hittade inget', 77 | noData: 'Ingen data', 78 | placeholder: 'Välj' 79 | }, 80 | pagination: { 81 | goto: 'Gå till', 82 | pagesize: '/sida', 83 | total: 'Total {total}', 84 | pageClassifier: '' 85 | }, 86 | messagebox: { 87 | title: 'Meddelande', 88 | confirm: 'OK', 89 | cancel: 'Avbryt', 90 | error: 'Felaktig inmatning' 91 | }, 92 | upload: { 93 | delete: 'Radera', 94 | preview: 'Förhandsvisa', 95 | continue: 'Fortsätt' 96 | }, 97 | table: { 98 | emptyText: 'Inga Data', 99 | confirmFilter: 'Bekräfta', 100 | resetFilter: 'Återställ', 101 | clearFilter: 'Alla' 102 | }, 103 | tree: { 104 | emptyText: 'Inga Data' 105 | } 106 | } 107 | }; 108 | module.exports = exports['default']; 109 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/fi.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/fi', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.fi = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Tyhjennä' 23 | }, 24 | datepicker: { 25 | now: 'Nyt', 26 | today: 'Tänään', 27 | cancel: 'Peruuta', 28 | clear: 'Tyhjennä', 29 | confirm: 'OK', 30 | selectDate: 'Valitse päivä', 31 | selectTime: 'Valitse aika', 32 | startDate: 'Aloituspäivä', 33 | startTime: 'Aloitusaika', 34 | endDate: 'Lopetuspäivä', 35 | endTime: 'Lopetusaika', 36 | year: '', 37 | month1: 'tammikuu', 38 | month2: 'helmikuu', 39 | month3: 'maaliskuu', 40 | month4: 'huhtikuu', 41 | month5: 'toukokuu', 42 | month6: 'kesäkuu', 43 | month7: 'heinäkuu', 44 | month8: 'elokuu', 45 | month9: 'syyskuu', 46 | month10: 'lokakuu', 47 | month11: 'marraskuu', 48 | month12: 'joulukuu', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'su', 52 | mon: 'ma', 53 | tue: 'ti', 54 | wed: 'ke', 55 | thu: 'to', 56 | fri: 'pe', 57 | sat: 'la' 58 | }, 59 | months: { 60 | jan: 'tam', 61 | feb: 'hel', 62 | mar: 'maa', 63 | apr: 'huh', 64 | may: 'tou', 65 | jun: 'kes', 66 | jul: 'hei', 67 | aug: 'elo', 68 | sep: 'syy', 69 | oct: 'lok', 70 | nov: 'mar', 71 | dec: 'jou' 72 | } 73 | }, 74 | select: { 75 | loading: 'Lataa', 76 | noMatch: 'Ei vastaavia tietoja', 77 | noData: 'Ei tietoja', 78 | placeholder: 'Valitse' 79 | }, 80 | pagination: { 81 | goto: 'Mene', 82 | pagesize: '/sivu', 83 | total: 'Yhteensä {total}', 84 | pageClassifier: '' 85 | }, 86 | messagebox: { 87 | title: 'Viesti', 88 | confirm: 'OK', 89 | cancel: 'Peruuta', 90 | error: 'Virheellinen syöte' 91 | }, 92 | upload: { 93 | delete: 'Poista', 94 | preview: 'Esikatsele', 95 | continue: 'Jatka' 96 | }, 97 | table: { 98 | emptyText: 'Ei tietoja', 99 | confirmFilter: 'Vahvista', 100 | resetFilter: 'Tyhjennä', 101 | clearFilter: 'Kaikki' 102 | }, 103 | tree: { 104 | emptyText: 'Ei tietoja' 105 | } 106 | } 107 | }; 108 | module.exports = exports['default']; 109 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/en.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/en', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.en = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Clear' 23 | }, 24 | datepicker: { 25 | now: 'Now', 26 | today: 'Today', 27 | cancel: 'Cancel', 28 | clear: 'Clear', 29 | confirm: 'OK', 30 | selectDate: 'Select date', 31 | selectTime: 'Select time', 32 | startDate: 'Start Date', 33 | startTime: 'Start Time', 34 | endDate: 'End Date', 35 | endTime: 'End Time', 36 | year: '', 37 | month1: 'Jan', 38 | month2: 'Feb', 39 | month3: 'Mar', 40 | month4: 'Apr', 41 | month5: 'May', 42 | month6: 'Jun', 43 | month7: 'Jul', 44 | month8: 'Aug', 45 | month9: 'Sep', 46 | month10: 'Oct', 47 | month11: 'Nov', 48 | month12: 'Dec', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Sun', 52 | mon: 'Mon', 53 | tue: 'Tue', 54 | wed: 'Wed', 55 | thu: 'Thu', 56 | fri: 'Fri', 57 | sat: 'Sat' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'May', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Aug', 68 | sep: 'Sep', 69 | oct: 'Oct', 70 | nov: 'Nov', 71 | dec: 'Dec' 72 | } 73 | }, 74 | select: { 75 | loading: 'Loading', 76 | noMatch: 'No matching data', 77 | noData: 'No data', 78 | placeholder: 'Select' 79 | }, 80 | cascader: { 81 | noMatch: 'No matching data', 82 | placeholder: 'Select' 83 | }, 84 | pagination: { 85 | goto: 'Go to', 86 | pagesize: '/page', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Message', 92 | confirm: 'OK', 93 | cancel: 'Cancel', 94 | error: 'Illegal input' 95 | }, 96 | upload: { 97 | delete: 'Delete', 98 | preview: 'Preview', 99 | continue: 'Continue' 100 | }, 101 | table: { 102 | emptyText: 'No Data', 103 | confirmFilter: 'Confirm', 104 | resetFilter: 'Reset', 105 | clearFilter: 'All' 106 | }, 107 | tree: { 108 | emptyText: 'No Data' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/sk.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/sk', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.sk = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Zmazať' 23 | }, 24 | datepicker: { 25 | now: 'Teraz', 26 | today: 'Dnes', 27 | cancel: 'Zrušiť', 28 | clear: 'Zmazať', 29 | confirm: 'OK', 30 | selectDate: 'Vybrať dátum', 31 | selectTime: 'Vybrať čas', 32 | startDate: 'Dátum začiatku', 33 | startTime: 'Čas začiatku', 34 | endDate: 'Dátum konca', 35 | endTime: 'Čas konca', 36 | day: 'Deň', 37 | week: 'Týždeň', 38 | month: 'Mesiac', 39 | year: 'Rok', 40 | month1: 'Január', 41 | month2: 'Február', 42 | month3: 'Marec', 43 | month4: 'Apríl', 44 | month5: 'Máj', 45 | month6: 'Jún', 46 | month7: 'Júl', 47 | month8: 'August', 48 | month9: 'September', 49 | month10: 'Október', 50 | month11: 'November', 51 | month12: 'December', 52 | weeks: { 53 | sun: 'Ne', 54 | mon: 'Po', 55 | tue: 'Ut', 56 | wed: 'St', 57 | thu: 'Št', 58 | fri: 'Pi', 59 | sat: 'So' 60 | }, 61 | months: { 62 | jan: 'Jan', 63 | feb: 'Feb', 64 | mar: 'Mar', 65 | apr: 'Apr', 66 | may: 'Máj', 67 | jun: 'Jún', 68 | jul: 'Júl', 69 | aug: 'Aug', 70 | sep: 'Sep', 71 | oct: 'Okt', 72 | nov: 'Nov', 73 | dec: 'Dec' 74 | } 75 | }, 76 | select: { 77 | loading: 'Načítavanie', 78 | noMatch: 'Žiadna zhoda', 79 | noData: 'Žiadne dáta', 80 | placeholder: 'Vybrať' 81 | }, 82 | pagination: { 83 | goto: 'Choď na', 84 | pagesize: 'na stranu', 85 | total: 'Všetko {total}', 86 | pageClassifier: '' 87 | }, 88 | messagebox: { 89 | title: 'Správa', 90 | confirm: 'OK', 91 | cancel: 'Zrušiť', 92 | error: 'Neplatný vstup' 93 | }, 94 | upload: { 95 | delete: 'Vymazať', 96 | preview: 'Prehliadať', 97 | continue: 'Pokračovať' 98 | }, 99 | table: { 100 | emptyText: 'Žiadne dáta', 101 | confirmFilter: 'Potvrdiť', 102 | resetFilter: 'Zresetovať', 103 | clearFilter: 'Všetko' 104 | }, 105 | tree: { 106 | emptyText: 'Žiadne dáta' 107 | } 108 | } 109 | }; 110 | module.exports = exports['default']; 111 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/da.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/da', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.da = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Ryd' 23 | }, 24 | datepicker: { 25 | now: 'Nu', 26 | today: 'I dag', 27 | cancel: 'Annuller', 28 | clear: 'Ryd', 29 | confirm: 'OK', 30 | selectDate: 'Vælg dato', 31 | selectTime: 'Vælg tidspunkt', 32 | startDate: 'Startdato', 33 | startTime: 'Starttidspunkt', 34 | endDate: 'Slutdato', 35 | endTime: 'Sluttidspunkt', 36 | year: 'År', 37 | month1: 'Januar', 38 | month2: 'Februar', 39 | month3: 'Marts', 40 | month4: 'April', 41 | month5: 'Maj', 42 | month6: 'Juni', 43 | month7: 'Juli', 44 | month8: 'August', 45 | month9: 'September', 46 | month10: 'Oktober', 47 | month11: 'November', 48 | month12: 'December', 49 | week: 'uge', 50 | weeks: { 51 | sun: 'Søn', 52 | mon: 'Man', 53 | tue: 'Tir', 54 | wed: 'Ons', 55 | thu: 'Tor', 56 | fri: 'Fre', 57 | sat: 'Lør' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'Maj', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Aug', 68 | sep: 'Sep', 69 | oct: 'Okt', 70 | nov: 'Nov', 71 | dec: 'Dec' 72 | } 73 | }, 74 | select: { 75 | loading: 'Henter', 76 | noMatch: 'Ingen matchende data', 77 | noData: 'Ingen data', 78 | placeholder: 'Vælg' 79 | }, 80 | cascader: { 81 | noMatch: 'Ingen matchende data', 82 | placeholder: 'Vælg' 83 | }, 84 | pagination: { 85 | goto: 'Gå til', 86 | pagesize: '/side', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | confirm: 'OK', 92 | cancel: 'Annuller', 93 | error: 'Ugyldig input' 94 | }, 95 | upload: { 96 | delete: 'Slet', 97 | preview: 'Forhåndsvisning', 98 | continue: 'Fortsæt' 99 | }, 100 | table: { 101 | emptyText: 'Ingen data', 102 | confirmFilter: 'Bekræft', 103 | resetFilter: 'Nulstil', 104 | clearFilter: 'Alle' 105 | }, 106 | tree: { 107 | emptyText: 'Ingen data' 108 | } 109 | } 110 | }; 111 | module.exports = exports['default']; 112 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/el.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/el', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.el = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Καθαρισμός' 23 | }, 24 | datepicker: { 25 | now: 'Τώρα', 26 | today: 'Σήμερα', 27 | cancel: 'Ακύρωση', 28 | clear: 'Καθαρισμός', 29 | confirm: 'OK', 30 | selectDate: 'Επιλέξτε ημέρα', 31 | selectTime: 'Επιλέξτε ώρα', 32 | startDate: 'Ημερομηνία Έναρξης', 33 | startTime: 'Ωρα Έναρξης', 34 | endDate: 'Ημερομηνία Λήξης', 35 | endTime: 'Ωρα Λήξης', 36 | year: 'Έτος', 37 | month1: 'Ιανουάριος', 38 | month2: 'Φεβρουάριος', 39 | month3: 'Μάρτιος', 40 | month4: 'Απρίλιος', 41 | month5: 'Μάιος', 42 | month6: 'Ιούνιος', 43 | month7: 'Ιούλιος', 44 | month8: 'Αύγουστος', 45 | month9: 'Σεπτέμβριος', 46 | month10: 'Οκτώβριος', 47 | month11: 'Νοέμβριος', 48 | month12: 'Δεκέμβριος', 49 | // week: 'εβδομάδα', 50 | weeks: { 51 | sun: 'Κυρ', 52 | mon: 'Δευ', 53 | tue: 'Τρι', 54 | wed: 'Τετ', 55 | thu: 'Πεμ', 56 | fri: 'Παρ', 57 | sat: 'Σαβ' 58 | }, 59 | months: { 60 | jan: 'Ιαν', 61 | feb: 'Φεβ', 62 | mar: 'Μαρ', 63 | apr: 'Απρ', 64 | may: 'Μαϊ', 65 | jun: 'Ιουν', 66 | jul: 'Ιουλ', 67 | aug: 'Αυγ', 68 | sep: 'Σεπ', 69 | oct: 'Οκτ', 70 | nov: 'Νοε', 71 | dec: 'Δεκ' 72 | } 73 | }, 74 | select: { 75 | loading: 'Φόρτωση', 76 | noMatch: 'Δεν βρέθηκαν αποτελέσματα', 77 | noData: 'Χωρίς δεδομένα', 78 | placeholder: 'Επιλογή' 79 | }, 80 | pagination: { 81 | goto: 'Μετάβαση σε', 82 | pagesize: '/σελίδα', 83 | total: 'Σύνολο {total}', 84 | pageClassifier: '' 85 | }, 86 | messagebox: { 87 | title: 'Μήνυμα', 88 | confirm: 'OK', 89 | cancel: 'Ακύρωση', 90 | error: 'Άκυρη εισαγωγή' 91 | }, 92 | upload: { 93 | delete: 'Διαγραφή', 94 | preview: 'Προεπισκόπηση', 95 | continue: 'Συνέχεια' 96 | }, 97 | table: { 98 | emptyText: 'Χωρίς Δεδομένα', 99 | confirmFilter: 'Επιβεβαίωση', 100 | resetFilter: 'Επαναφορά', 101 | clearFilter: 'Όλα' 102 | }, 103 | tree: { 104 | emptyText: 'Χωρίς Δεδομένα' 105 | } 106 | } 107 | }; 108 | module.exports = exports['default']; 109 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/nb-NO.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/nb-NO', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.nbNO = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Tøm' 23 | }, 24 | datepicker: { 25 | now: 'Nå', 26 | today: 'I dag', 27 | cancel: 'Avbryt', 28 | clear: 'Tøm', 29 | confirm: 'OK', 30 | selectDate: 'Velg dato', 31 | selectTime: 'Velg tidspunkt', 32 | startDate: 'Start Dato', 33 | startTime: 'Start Tidspunkt', 34 | endDate: 'Sluttdato', 35 | endTime: 'Sluttidspunkt', 36 | year: '', 37 | month1: 'Januar', 38 | month2: 'Februar', 39 | month3: 'Mars', 40 | month4: 'April', 41 | month5: 'Mai', 42 | month6: 'Juni', 43 | month7: 'Juli', 44 | month8: 'August', 45 | month9: 'September', 46 | month10: 'Oktober', 47 | month11: 'November', 48 | month12: 'Desember', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Søn', 52 | mon: 'Man', 53 | tue: 'Tir', 54 | wed: 'Ons', 55 | thu: 'Tor', 56 | fri: 'Fre', 57 | sat: 'Lør' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'Mai', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Aug', 68 | sep: 'Sep', 69 | oct: 'Okt', 70 | nov: 'Nov', 71 | dec: 'Des' 72 | } 73 | }, 74 | select: { 75 | loading: 'Laster', 76 | noMatch: 'Ingen samsvarende data', 77 | noData: 'Ingen data', 78 | placeholder: 'Velg' 79 | }, 80 | cascader: { 81 | noMatch: 'Ingen samsvarende data', 82 | placeholder: 'Velg' 83 | }, 84 | pagination: { 85 | goto: 'Gå til', 86 | pagesize: '/side', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | confirm: 'OK', 92 | cancel: 'Avbryt', 93 | error: 'Ugyldig input' 94 | }, 95 | upload: { 96 | delete: 'Slett', 97 | preview: 'Forhåndsvisning', 98 | continue: 'Fortsett' 99 | }, 100 | table: { 101 | emptyText: 'Ingen Data', 102 | confirmFilter: 'Bekreft', 103 | resetFilter: 'Tilbakestill', 104 | clearFilter: 'Alle' 105 | }, 106 | tree: { 107 | emptyText: 'Ingen Data' 108 | } 109 | } 110 | }; 111 | module.exports = exports['default']; 112 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/tr-TR.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/tr-TR', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.trTR = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Temizle' 23 | }, 24 | datepicker: { 25 | now: 'Şimdi', 26 | today: 'Bugün', 27 | cancel: 'İptal', 28 | clear: 'Temizle', 29 | confirm: 'OK', 30 | selectDate: 'Tarih seç', 31 | selectTime: 'Saat seç', 32 | startDate: 'Başlangıç Tarihi', 33 | startTime: 'Başlangıç Saati', 34 | endDate: 'Bitiş Tarihi', 35 | endTime: 'Bitiş Saati', 36 | year: '', 37 | month1: 'Ocak', 38 | month2: 'Şubat', 39 | month3: 'Mart', 40 | month4: 'Nisan', 41 | month5: 'Mayıs', 42 | month6: 'Haziran', 43 | month7: 'Temmuz', 44 | month8: 'Ağustos', 45 | month9: 'Eylül', 46 | month10: 'Ekim', 47 | month11: 'Kasım', 48 | month12: 'Aralık', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Paz', 52 | mon: 'Pzt', 53 | tue: 'Sal', 54 | wed: 'Çar', 55 | thu: 'Per', 56 | fri: 'Cum', 57 | sat: 'Cmt' 58 | }, 59 | months: { 60 | jan: 'Oca', 61 | feb: 'Şub', 62 | mar: 'Mar', 63 | apr: 'Nis', 64 | may: 'May', 65 | jun: 'Haz', 66 | jul: 'Tem', 67 | aug: 'Ağu', 68 | sep: 'Eyl', 69 | oct: 'Eki', 70 | nov: 'Kas', 71 | dec: 'Ara' 72 | } 73 | }, 74 | select: { 75 | loading: 'Yükleniyor', 76 | noMatch: 'Eşleşen veri bulunamadı', 77 | noData: 'Veri yok', 78 | placeholder: 'Seç' 79 | }, 80 | cascader: { 81 | noMatch: 'Eşleşen veri bulunamadı', 82 | placeholder: 'Seç' 83 | }, 84 | pagination: { 85 | goto: 'Git', 86 | pagesize: '/page', 87 | total: 'Toplam {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Mesaj', 92 | confirm: 'OK', 93 | cancel: 'İptal', 94 | error: 'İllegal giriş' 95 | }, 96 | upload: { 97 | delete: 'Sil', 98 | preview: 'Görüntüle', 99 | continue: 'Devam' 100 | }, 101 | table: { 102 | emptyText: 'Veri yok', 103 | confirmFilter: 'Onayla', 104 | resetFilter: 'Reset', 105 | clearFilter: 'Hepsi' 106 | }, 107 | tree: { 108 | emptyText: 'Veri yok' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/bg.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/bg', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.bg = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Изчисти' 23 | }, 24 | datepicker: { 25 | now: 'Сега', 26 | today: 'Днес', 27 | cancel: 'Откажи', 28 | clear: 'Изчисти', 29 | confirm: 'ОК', 30 | selectDate: 'Избери дата', 31 | selectTime: 'Избери час', 32 | startDate: 'Начална дата', 33 | startTime: 'Начален час', 34 | endDate: 'Крайна дата', 35 | endTime: 'Краен час', 36 | year: '', 37 | month1: 'Януари', 38 | month2: 'Февруари', 39 | month3: 'Март', 40 | month4: 'Април', 41 | month5: 'Май', 42 | month6: 'Юни', 43 | month7: 'Юли', 44 | month8: 'Август', 45 | month9: 'Септември', 46 | month10: 'Октомври', 47 | month11: 'Ноември', 48 | month12: 'Декември', 49 | // week: 'Седмица', 50 | weeks: { 51 | sun: 'Нед', 52 | mon: 'Пон', 53 | tue: 'Вто', 54 | wed: 'Сря', 55 | thu: 'Чет', 56 | fri: 'Пет', 57 | sat: 'Съб' 58 | }, 59 | months: { 60 | jan: 'Яну', 61 | feb: 'Фев', 62 | mar: 'Мар', 63 | apr: 'Апр', 64 | may: 'Май', 65 | jun: 'Юни', 66 | jul: 'Юли', 67 | aug: 'Авг', 68 | sep: 'Сеп', 69 | oct: 'Окт', 70 | nov: 'Ное', 71 | dec: 'Дек' 72 | } 73 | }, 74 | select: { 75 | loading: 'Зареждане', 76 | noMatch: 'Няма намерени', 77 | noData: 'Няма данни', 78 | placeholder: 'Избери' 79 | }, 80 | cascader: { 81 | noMatch: 'Няма намерени', 82 | placeholder: 'Избери' 83 | }, 84 | pagination: { 85 | goto: 'Иди на', 86 | pagesize: '/страница', 87 | total: 'Общо {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Съобщение', 92 | confirm: 'ОК', 93 | cancel: 'Откажи', 94 | error: 'Невалидни данни' 95 | }, 96 | upload: { 97 | delete: 'Изтрий', 98 | preview: 'Прегледай', 99 | continue: 'Продължи' 100 | }, 101 | table: { 102 | emptyText: 'Няма данни', 103 | confirmFilter: 'Потвърди', 104 | resetFilter: 'Изчисти', 105 | clearFilter: 'Всички' 106 | }, 107 | tree: { 108 | emptyText: 'Няма данни' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/fr.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/fr', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.fr = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Effacer' 23 | }, 24 | datepicker: { 25 | now: 'Maintenant', 26 | today: 'Auj.', 27 | cancel: 'Annuler', 28 | clear: 'Effacer', 29 | confirm: 'OK', 30 | selectDate: 'Choisir date', 31 | selectTime: 'Choisir horaire', 32 | startDate: 'Date début', 33 | startTime: 'Horaire début', 34 | endDate: 'Date fin', 35 | endTime: 'Horaire fin', 36 | year: '', 37 | month1: 'Janvier', 38 | month2: 'Février', 39 | month3: 'Mars', 40 | month4: 'Avril', 41 | month5: 'Mai', 42 | month6: 'Juin', 43 | month7: 'Juillet', 44 | month8: 'Août', 45 | month9: 'Septembre', 46 | month10: 'Octobre', 47 | month11: 'Novembre', 48 | month12: 'Décembre', 49 | // week: 'Semaine', 50 | weeks: { 51 | sun: 'Dim', 52 | mon: 'Lun', 53 | tue: 'Mar', 54 | wed: 'Mer', 55 | thu: 'Jeu', 56 | fri: 'Ven', 57 | sat: 'Sam' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Fév', 62 | mar: 'Mar', 63 | apr: 'Avr', 64 | may: 'Mai', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Aoû', 68 | sep: 'Sep', 69 | oct: 'Oct', 70 | nov: 'Nov', 71 | dec: 'Déc' 72 | } 73 | }, 74 | select: { 75 | loading: 'Chargement', 76 | noMatch: 'Aucune correspondance', 77 | noData: 'Aucun résultat', 78 | placeholder: 'Choisir' 79 | }, 80 | cascader: { 81 | noMatch: 'Aucune correspondance', 82 | placeholder: 'Choisir' 83 | }, 84 | pagination: { 85 | goto: 'Aller à', 86 | pagesize: '/page', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | confirm: 'Confirmer', 92 | cancel: 'Annuler', 93 | error: 'Erreur' 94 | }, 95 | upload: { 96 | delete: 'Supprimer', 97 | preview: 'Aperçu', 98 | continue: 'Continuer' 99 | }, 100 | table: { 101 | emptyText: 'Aucune donnée', 102 | confirmFilter: 'Confirmer', 103 | resetFilter: 'Réinitialiser', 104 | clearFilter: 'Tous' 105 | }, 106 | tree: { 107 | emptyText: 'Aucune donnée' 108 | } 109 | } 110 | }; 111 | module.exports = exports['default']; 112 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/it.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/it', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.it = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Pulisci' 23 | }, 24 | datepicker: { 25 | now: 'Ora', 26 | today: 'Oggi', 27 | cancel: 'Cancella', 28 | clear: 'Pulisci', 29 | confirm: 'OK', 30 | selectDate: 'Seleziona data', 31 | selectTime: 'Seleziona ora', 32 | startDate: 'Data inizio', 33 | startTime: 'Ora inizio', 34 | endDate: 'Data fine', 35 | endTime: 'Ora fine', 36 | year: 'Anno', 37 | month1: 'Gennaio', 38 | month2: 'Febbraio', 39 | month3: 'Marzo', 40 | month4: 'Aprile', 41 | month5: 'Maggio', 42 | month6: 'Giugno', 43 | month7: 'Luglio', 44 | month8: 'Agosto', 45 | month9: 'Settembre', 46 | month10: 'Ottobre', 47 | month11: 'Novembre', 48 | month12: 'Dicembre', 49 | // week: 'settimana', 50 | weeks: { 51 | sun: 'Dom', 52 | mon: 'Lun', 53 | tue: 'Mar', 54 | wed: 'Mer', 55 | thu: 'Gio', 56 | fri: 'Ven', 57 | sat: 'Sab' 58 | }, 59 | months: { 60 | jan: 'Gen', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'Mag', 65 | jun: 'Giu', 66 | jul: 'Lug', 67 | aug: 'Ago', 68 | sep: 'Set', 69 | oct: 'Ott', 70 | nov: 'Nov', 71 | dec: 'Dic' 72 | } 73 | }, 74 | select: { 75 | loading: 'Caricamento', 76 | noMatch: 'Nessuna corrispondenza', 77 | noData: 'Nessun risultato', 78 | placeholder: 'Seleziona' 79 | }, 80 | cascader: { 81 | noMatch: 'Nessuna corrispondenza', 82 | placeholder: 'Seleziona' 83 | }, 84 | pagination: { 85 | goto: 'Vai a', 86 | pagesize: '/page', 87 | total: 'Totale {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | confirm: 'OK', 92 | cancel: 'Cancella', 93 | error: 'Input non valido' 94 | }, 95 | upload: { 96 | delete: 'Cancella', 97 | preview: 'Anteprima', 98 | continue: 'Continua' 99 | }, 100 | table: { 101 | emptyText: 'Nessun dato', 102 | confirmFilter: 'Conferma', 103 | resetFilter: 'Reset', 104 | clearFilter: 'Tutti' 105 | }, 106 | tree: { 107 | emptyText: 'Nessun dato' 108 | } 109 | } 110 | }; 111 | module.exports = exports['default']; 112 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/de.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/de', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.de = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Leeren' 23 | }, 24 | datepicker: { 25 | now: 'Jetzt', 26 | today: 'Heute', 27 | cancel: 'Abbrechen', 28 | clear: 'Leeren', 29 | confirm: 'OK', 30 | selectDate: 'Datum wählen', 31 | selectTime: 'Uhrzeit wählen', 32 | startDate: 'Startdatum', 33 | startTime: 'Startzeit', 34 | endDate: 'Enddatum', 35 | endTime: 'Endzeit', 36 | day: 'Tag', 37 | week: 'Woche', 38 | month: 'Monat', 39 | year: 'Jahr', 40 | month1: 'Januar', 41 | month2: 'Februar', 42 | month3: 'März', 43 | month4: 'April', 44 | month5: 'Mai', 45 | month6: 'Juni', 46 | month7: 'Juli', 47 | month8: 'August', 48 | month9: 'September', 49 | month10: 'Oktober', 50 | month11: 'November', 51 | month12: 'Dezember', 52 | weeks: { 53 | sun: 'So', 54 | mon: 'Mo', 55 | tue: 'Di', 56 | wed: 'Mi', 57 | thu: 'Do', 58 | fri: 'Fr', 59 | sat: 'Sa' 60 | }, 61 | months: { 62 | jan: 'Jan', 63 | feb: 'Feb', 64 | mar: 'Mär', 65 | apr: 'Apr', 66 | may: 'Mai', 67 | jun: 'Jun', 68 | jul: 'Jul', 69 | aug: 'Aug', 70 | sep: 'Sep', 71 | oct: 'Okt', 72 | nov: 'Nov', 73 | dec: 'Dez' 74 | } 75 | }, 76 | select: { 77 | loading: 'Lädt.', 78 | noMatch: 'Nichts gefunden.', 79 | noData: 'Keine Datei', 80 | placeholder: 'Datei wählen' 81 | }, 82 | cascader: { 83 | noMatch: 'Nichts gefunden.', 84 | placeholder: 'Datei wählen' 85 | }, 86 | pagination: { 87 | goto: 'Gehe zu', 88 | pagesize: 'pro Seite', 89 | total: 'Gesamt {total}', 90 | pageClassifier: '' 91 | }, 92 | messagebox: { 93 | confirm: 'OK', 94 | cancel: 'Abbrechen', 95 | error: 'Fehler' 96 | }, 97 | upload: { 98 | delete: 'Löschen', 99 | preview: 'Vorschau', 100 | continue: 'Fortsetzen' 101 | }, 102 | table: { 103 | emptyText: 'Keine Daten', 104 | confirmFilter: 'Anwenden', 105 | resetFilter: 'Zurücksetzen', 106 | clearFilter: 'Alles ' 107 | }, 108 | tree: { 109 | emptyText: 'Keine Daten' 110 | } 111 | } 112 | }; 113 | module.exports = exports['default']; 114 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/fa.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/fa', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.fa = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'باشد', 22 | clear: 'خذف' 23 | }, 24 | datepicker: { 25 | now: 'اکنون', 26 | today: 'امروز', 27 | cancel: 'لغو', 28 | clear: 'خذف', 29 | confirm: 'باشد', 30 | selectDate: 'انتخاب تاریخ', 31 | selectTime: 'انتخاب زمان', 32 | startDate: 'تاریخ شروع', 33 | startTime: 'زمان شروع', 34 | endDate: 'تاریخ پایان', 35 | endTime: 'زمان پایان', 36 | year: 'سال', 37 | month1: 'ژانویه', 38 | month2: 'فوریه', 39 | month3: 'مارس', 40 | month4: 'آوریل', 41 | month5: 'مه', 42 | month6: 'ژوئن', 43 | month7: 'جولای', 44 | month8: 'اوت', 45 | month9: 'سپتامبر', 46 | month10: 'اکتبر', 47 | month11: 'نوامبر', 48 | month12: 'دسامبر', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'یکشنبه', 52 | mon: 'دوشنبه', 53 | tue: 'سه​شنبه', 54 | wed: 'چهارشنبه', 55 | thu: 'پنج​شنبه', 56 | fri: 'جمعه', 57 | sat: 'شنبه' 58 | }, 59 | months: { 60 | jan: 'ژانویه', 61 | feb: 'فوریه', 62 | mar: 'مارس', 63 | apr: 'آوریل', 64 | may: 'مه', 65 | jun: 'ژوئن', 66 | jul: 'جولای', 67 | aug: 'اوت', 68 | sep: 'سپتامبر', 69 | oct: 'اکتبر', 70 | nov: 'نوامبر', 71 | dec: 'دسامبر' 72 | } 73 | }, 74 | select: { 75 | loading: 'بارگیری', 76 | noMatch: 'هیچ داده‌ای پیدا نشد', 77 | noData: 'اطلاعاتی وجود ندارد', 78 | placeholder: 'انتخاب کنید' 79 | }, 80 | cascader: { 81 | noMatch: 'هیچ داده‌ای پیدا نشد', 82 | placeholder: 'انتخاب کنید' 83 | }, 84 | pagination: { 85 | goto: 'برو به', 86 | pagesize: '/صفحه', 87 | total: 'مجموع {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'پیام', 92 | confirm: 'باشد', 93 | cancel: 'لغو', 94 | error: 'ورودی غیر مجاز' 95 | }, 96 | upload: { 97 | delete: 'حذف', 98 | preview: 'پیش‌نمایش', 99 | continue: 'ادهمه' 100 | }, 101 | table: { 102 | emptyText: 'اطلاعاتی وجود ندارد', 103 | confirmFilter: 'تایید', 104 | resetFilter: 'حذف', 105 | clearFilter: 'همه' 106 | }, 107 | tree: { 108 | emptyText: 'اطلاعاتی وجود ندارد' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/pt-br.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/pt-br', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.ptBr = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'Confirmar', 22 | clear: 'Limpar' 23 | }, 24 | datepicker: { 25 | now: 'Agora', 26 | today: 'Hoje', 27 | cancel: 'Cancelar', 28 | clear: 'Limpar', 29 | confirm: 'Confirmar', 30 | selectDate: 'Selecione a data', 31 | selectTime: 'Selecione a hora', 32 | startDate: 'Data inicial', 33 | startTime: 'Hora inicial', 34 | endDate: 'Data final', 35 | endTime: 'Hora final', 36 | year: '', 37 | month1: 'Janeiro', 38 | month2: 'Fevereiro', 39 | month3: 'Março', 40 | month4: 'Abril', 41 | month5: 'Maio', 42 | month6: 'Junho', 43 | month7: 'Julho', 44 | month8: 'Agosto', 45 | month9: 'Setembro', 46 | month10: 'Outubro', 47 | month11: 'Novembro', 48 | month12: 'Dezembro', 49 | // week: 'semana', 50 | weeks: { 51 | sun: 'Dom', 52 | mon: 'Seg', 53 | tue: 'Ter', 54 | wed: 'Qua', 55 | thu: 'Qui', 56 | fri: 'Sex', 57 | sat: 'Sab' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Fev', 62 | mar: 'Mar', 63 | apr: 'Abr', 64 | may: 'Mai', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Ago', 68 | sep: 'Set', 69 | oct: 'Out', 70 | nov: 'Nov', 71 | dec: 'Dez' 72 | } 73 | }, 74 | select: { 75 | loading: 'Carregando', 76 | noMatch: 'Sem resultados', 77 | noData: 'Sem dados', 78 | placeholder: 'Selecione' 79 | }, 80 | cascader: { 81 | noMatch: 'Sem resultados', 82 | placeholder: 'Selecione' 83 | }, 84 | pagination: { 85 | goto: 'Ir para', 86 | pagesize: '/pagina', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Mensagem', 92 | confirm: 'Confirmar', 93 | cancel: 'Cancelar', 94 | error: 'Erro!' 95 | }, 96 | upload: { 97 | delete: 'Apagar', 98 | preview: 'Pré-visualizar', 99 | continue: 'Continuar' 100 | }, 101 | table: { 102 | emptyText: 'Sem dados', 103 | confirmFilter: 'Confirmar', 104 | resetFilter: 'Limpar', 105 | clearFilter: 'Todos' 106 | }, 107 | tree: { 108 | emptyText: 'Sem dados' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/ru-RU.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/ru-RU', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.ruRU = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Очистить' 23 | }, 24 | datepicker: { 25 | now: 'Сейчас', 26 | today: 'Сегодня', 27 | cancel: 'Отмена', 28 | clear: 'Очистить', 29 | confirm: 'OK', 30 | selectDate: 'Выбрать дату', 31 | selectTime: 'Выбрать время', 32 | startDate: 'Дата начала', 33 | startTime: 'Время начала', 34 | endDate: 'Дата окончания', 35 | endTime: 'Время окончания', 36 | year: '', 37 | month1: 'Январь', 38 | month2: 'Февраль', 39 | month3: 'Март', 40 | month4: 'Апрель', 41 | month5: 'Май', 42 | month6: 'Июнь', 43 | month7: 'Июль', 44 | month8: 'Август', 45 | month9: 'Сентябрь', 46 | month10: 'Октябрь', 47 | month11: 'Ноябрь', 48 | month12: 'Декабрь', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Вс', 52 | mon: 'Пн', 53 | tue: 'Вт', 54 | wed: 'Ср', 55 | thu: 'Чт', 56 | fri: 'Пт', 57 | sat: 'Сб' 58 | }, 59 | months: { 60 | jan: 'Янв', 61 | feb: 'Фев', 62 | mar: 'Мар', 63 | apr: 'Апр', 64 | may: 'Май', 65 | jun: 'Июн', 66 | jul: 'Июл', 67 | aug: 'Авг', 68 | sep: 'Сен', 69 | oct: 'Окт', 70 | nov: 'Ноя', 71 | dec: 'Дек' 72 | } 73 | }, 74 | select: { 75 | loading: 'Загрузка', 76 | noMatch: 'Совпадений не найдено', 77 | noData: 'Нет данных', 78 | placeholder: 'Выбрать' 79 | }, 80 | cascader: { 81 | noMatch: 'Совпадений не найдено', 82 | placeholder: 'Выбрать' 83 | }, 84 | pagination: { 85 | goto: 'Перейти', 86 | pagesize: 'на странице', 87 | total: 'Всего {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Сообщение', 92 | confirm: 'OK', 93 | cancel: 'Отмена', 94 | error: 'Недопустимый ввод данных' 95 | }, 96 | upload: { 97 | delete: 'Удалить', 98 | preview: 'Превью', 99 | continue: 'Продолжить' 100 | }, 101 | table: { 102 | emptyText: 'Нет данных', 103 | confirmFilter: 'Подтвердить', 104 | resetFilter: 'Сбросить', 105 | clearFilter: 'Все' 106 | }, 107 | tree: { 108 | emptyText: 'Нет данных' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/es.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/es', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.es = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'Confirmar', 22 | clear: 'Limpiar' 23 | }, 24 | datepicker: { 25 | now: 'Ahora', 26 | today: 'Hoy', 27 | cancel: 'Cancelar', 28 | clear: 'Limpiar', 29 | confirm: 'Confirmar', 30 | selectDate: 'Seleccionar fecha', 31 | selectTime: 'Seleccionar hora', 32 | startDate: 'Fecha de Inicio', 33 | startTime: 'Hora de Inicio', 34 | endDate: 'Fecha Final', 35 | endTime: 'Hora Final', 36 | year: 'Año', 37 | month1: 'Enero', 38 | month2: 'Febrero', 39 | month3: 'Marzo', 40 | month4: 'Abril', 41 | month5: 'Mayo', 42 | month6: 'Junio', 43 | month7: 'Julio', 44 | month8: 'Agosto', 45 | month9: 'Septiembre', 46 | month10: 'Octubre', 47 | month11: 'Noviembre', 48 | month12: 'Diciembre', 49 | // week: 'semana', 50 | weeks: { 51 | sun: 'Dom', 52 | mon: 'Lun', 53 | tue: 'Mar', 54 | wed: 'Mié', 55 | thu: 'Jue', 56 | fri: 'Vie', 57 | sat: 'Sáb' 58 | }, 59 | months: { 60 | jan: 'Ene', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Abr', 64 | may: 'May', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Ago', 68 | sep: 'Sep', 69 | oct: 'Oct', 70 | nov: 'Nov', 71 | dec: 'Dic' 72 | } 73 | }, 74 | select: { 75 | loading: 'Cargando', 76 | noMatch: 'No hay datos que coincidan', 77 | noData: 'Sin datos', 78 | placeholder: 'Seleccionar' 79 | }, 80 | cascader: { 81 | noMatch: 'No hay datos que coincidan', 82 | placeholder: 'Seleccionar' 83 | }, 84 | pagination: { 85 | goto: 'Ir a', 86 | pagesize: '/pagina', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | confirm: 'Aceptar', 92 | cancel: 'Cancelar', 93 | error: 'Entrada inválida' 94 | }, 95 | upload: { 96 | delete: 'Eliminar', 97 | preview: 'Vista Previa', 98 | continue: 'Continuar' 99 | }, 100 | table: { 101 | emptyText: 'Sin Datos', 102 | confirmFilter: 'Confirmar', 103 | resetFilter: 'Limpiar', 104 | clearFilter: 'Todo' 105 | }, 106 | tree: { 107 | emptyText: 'Sin Datos' 108 | } 109 | } 110 | }; 111 | module.exports = exports['default']; 112 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/nl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/nl', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.nl = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'Bevestig', 22 | clear: 'Legen' 23 | }, 24 | datepicker: { 25 | now: 'Nu', 26 | today: 'Vandaag', 27 | cancel: 'Annuleren', 28 | clear: 'Legen', 29 | confirm: 'Bevestig', 30 | selectDate: 'Selecteer datum', 31 | selectTime: 'Selecteer tijd', 32 | startDate: 'Startdatum', 33 | startTime: 'Starttijd', 34 | endDate: 'Einddatum', 35 | endTime: 'Eindtijd', 36 | year: 'Jaar', 37 | month1: 'januari', 38 | month2: 'februari', 39 | month3: 'maart', 40 | month4: 'april', 41 | month5: 'mei', 42 | month6: 'juni', 43 | month7: 'juli', 44 | month8: 'augustus', 45 | month9: 'september', 46 | month10: 'oktober', 47 | month11: 'november', 48 | month12: 'december', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'Zo', 52 | mon: 'Ma', 53 | tue: 'Di', 54 | wed: 'Wo', 55 | thu: 'Do', 56 | fri: 'Vr', 57 | sat: 'Za' 58 | }, 59 | months: { 60 | jan: 'jan', 61 | feb: 'feb', 62 | mar: 'maa', 63 | apr: 'apr', 64 | may: 'mei', 65 | jun: 'jun', 66 | jul: 'jul', 67 | aug: 'aug', 68 | sep: 'sep', 69 | oct: 'okt', 70 | nov: 'nov', 71 | dec: 'dec' 72 | } 73 | }, 74 | select: { 75 | loading: 'Laden', 76 | noMatch: 'Geen overeenkomende resultaten', 77 | noData: 'Geen data', 78 | placeholder: 'Selecteer' 79 | }, 80 | cascader: { 81 | noMatch: 'Geen overeenkomende resultaten', 82 | placeholder: 'Selecteer' 83 | }, 84 | pagination: { 85 | goto: 'Ga naar', 86 | pagesize: '/page', 87 | total: 'Totaal {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Bericht', 92 | confirm: 'Bevestig', 93 | cancel: 'Annuleren', 94 | error: 'Ongeldige invoer' 95 | }, 96 | upload: { 97 | delete: 'Verwijder', 98 | preview: 'Voorbeeld', 99 | continue: 'Doorgaan' 100 | }, 101 | table: { 102 | emptyText: 'Geen data', 103 | confirmFilter: 'Bevestigen', 104 | resetFilter: 'Reset', 105 | clearFilter: 'Alles' 106 | }, 107 | tree: { 108 | emptyText: 'Geen data' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/id.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/id', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.id = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'YA', 22 | clear: 'Kosongkan' 23 | }, 24 | datepicker: { 25 | now: 'Sekarang', 26 | today: 'Hari ini', 27 | cancel: 'Batal', 28 | clear: 'Kosongkan', 29 | confirm: 'YA', 30 | selectDate: 'Pilih tanggal', 31 | selectTime: 'Pilih waktu', 32 | startDate: 'Tanggal Mulai', 33 | startTime: 'Waktu Mulai', 34 | endDate: 'Tanggal Selesai', 35 | endTime: 'Waktu Selesai', 36 | year: 'Tahun', 37 | month1: 'Januari', 38 | month2: 'Februari', 39 | month3: 'Maret', 40 | month4: 'April', 41 | month5: 'Mei', 42 | month6: 'Juni', 43 | month7: 'Juli', 44 | month8: 'Agustus', 45 | month9: 'September', 46 | month10: 'Oktober', 47 | month11: 'November', 48 | month12: 'Desember', 49 | // week: 'minggu', 50 | weeks: { 51 | sun: 'Min', 52 | mon: 'Sen', 53 | tue: 'Sel', 54 | wed: 'Rab', 55 | thu: 'Kam', 56 | fri: 'Jum', 57 | sat: 'Sab' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Feb', 62 | mar: 'Mar', 63 | apr: 'Apr', 64 | may: 'Mei', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Agu', 68 | sep: 'Sep', 69 | oct: 'Okt', 70 | nov: 'Nov', 71 | dec: 'Des' 72 | } 73 | }, 74 | select: { 75 | loading: 'Memuat', 76 | noMatch: 'Tidak ada data yang cocok', 77 | noData: 'Tidak ada data', 78 | placeholder: 'Pilih' 79 | }, 80 | cascader: { 81 | noMatch: 'Tidak ada data yang cocok', 82 | placeholder: 'Pilih' 83 | }, 84 | pagination: { 85 | goto: 'Pergi ke', 86 | pagesize: '/page', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Pesan', 92 | confirm: 'YA', 93 | cancel: 'Batal', 94 | error: 'Masukan ilegal' 95 | }, 96 | upload: { 97 | delete: 'Hapus', 98 | preview: 'Pratinjau', 99 | continue: 'Lanjutkan' 100 | }, 101 | table: { 102 | emptyText: 'Tidak Ada Data', 103 | confirmFilter: 'Konfirmasi', 104 | resetFilter: 'Atur Ulang', 105 | clearFilter: 'Semua' 106 | }, 107 | tree: { 108 | emptyText: 'Tidak Ada Data' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/pt.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/pt', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.pt = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'Confirmar', 22 | clear: 'Limpar' 23 | }, 24 | datepicker: { 25 | now: 'Agora', 26 | today: 'Hoje', 27 | cancel: 'Cancelar', 28 | clear: 'Limpar', 29 | confirm: 'Confirmar', 30 | selectDate: 'Selecione a data', 31 | selectTime: 'Selecione a hora', 32 | startDate: 'Data de inicio', 33 | startTime: 'Hora de inicio', 34 | endDate: 'Data de fim', 35 | endTime: 'Hora de fim', 36 | year: '', 37 | month1: 'Janeiro', 38 | month2: 'Fevereiro', 39 | month3: 'Março', 40 | month4: 'Abril', 41 | month5: 'Maio', 42 | month6: 'Junho', 43 | month7: 'Julho', 44 | month8: 'Agosto', 45 | month9: 'Setembro', 46 | month10: 'Outubro', 47 | month11: 'Novembro', 48 | month12: 'Dezembro', 49 | // week: 'semana', 50 | weeks: { 51 | sun: 'Dom', 52 | mon: 'Seg', 53 | tue: 'Ter', 54 | wed: 'Qua', 55 | thu: 'Qui', 56 | fri: 'Sex', 57 | sat: 'Sab' 58 | }, 59 | months: { 60 | jan: 'Jan', 61 | feb: 'Fev', 62 | mar: 'Mar', 63 | apr: 'Abr', 64 | may: 'Mai', 65 | jun: 'Jun', 66 | jul: 'Jul', 67 | aug: 'Ago', 68 | sep: 'Set', 69 | oct: 'Out', 70 | nov: 'Nov', 71 | dec: 'Dez' 72 | } 73 | }, 74 | select: { 75 | loading: 'A carregar', 76 | noMatch: 'Sem correspondência', 77 | noData: 'Sem dados', 78 | placeholder: 'Selecione' 79 | }, 80 | cascader: { 81 | noMatch: 'Sem correspondência', 82 | placeholder: 'Selecione' 83 | }, 84 | pagination: { 85 | goto: 'Ir para', 86 | pagesize: '/pagina', 87 | total: 'Total {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Mensagem', 92 | confirm: 'Confirmar', 93 | cancel: 'Cancelar', 94 | error: 'Erro!' 95 | }, 96 | upload: { 97 | delete: 'Apagar', 98 | preview: 'Previsualizar', 99 | continue: 'Continuar' 100 | }, 101 | table: { 102 | emptyText: 'Sem dados', 103 | confirmFilter: 'Confirmar', 104 | resetFilter: 'Limpar', 105 | clearFilter: 'Todos' 106 | }, 107 | tree: { 108 | emptyText: 'Sem dados' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/th.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/th', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.th = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'ตกลง', 22 | clear: 'ล้างข้อมูล' 23 | }, 24 | datepicker: { 25 | now: 'ตอนนี้', 26 | today: 'วันนี้', 27 | cancel: 'ยกเลิก', 28 | clear: 'ล้างข้อมูล', 29 | confirm: 'ตกลง', 30 | selectDate: 'เลือกวันที่', 31 | selectTime: 'เลือกเวลา', 32 | startDate: 'วันที่เริ่มต้น', 33 | startTime: 'เวลาเริ่มต้น', 34 | endDate: 'วันที่สิ้นสุด', 35 | endTime: 'เวลาสิ้นสุด', 36 | year: 'ปี', 37 | month1: 'มกราคม', 38 | month2: 'กุมภาพันธ์', 39 | month3: 'มีนาคม', 40 | month4: 'เมษายน', 41 | month5: 'พฤษภาคม', 42 | month6: 'มิถุนายน', 43 | month7: 'กรกฎาคม', 44 | month8: 'สิงหาคม', 45 | month9: 'กันยายน', 46 | month10: 'ตุลาคม', 47 | month11: 'พฤศจิกายน', 48 | month12: 'ธันวาคม', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'อ', 52 | mon: 'จ', 53 | tue: 'อ', 54 | wed: 'พ', 55 | thu: 'พฤ', 56 | fri: 'ศ', 57 | sat: 'ส' 58 | }, 59 | months: { 60 | jan: 'มกรา', 61 | feb: 'กุมภา', 62 | mar: 'มีนา', 63 | apr: 'เมษา', 64 | may: 'พฤษภา', 65 | jun: 'มิถุนา', 66 | jul: 'กรกฎา', 67 | aug: 'สิงหา', 68 | sep: 'กันยา', 69 | oct: 'ตุลา', 70 | nov: 'พฤศจิกา', 71 | dec: 'ธันวา' 72 | } 73 | }, 74 | select: { 75 | loading: 'กำลังโหลด', 76 | noMatch: 'ไม่พบข้อมูลที่ตรงกัน', 77 | noData: 'ไม่พบข้อมูล', 78 | placeholder: 'เลือก' 79 | }, 80 | cascader: { 81 | noMatch: 'ไม่พบข้อมูลที่ตรงกัน', 82 | placeholder: 'เลือก' 83 | }, 84 | pagination: { 85 | goto: 'ไปที่', 86 | pagesize: '/หน้า', 87 | total: 'ทั้งหมด {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'ข้อความ', 92 | confirm: 'ตกลง', 93 | cancel: 'ยกเลิก', 94 | error: 'คุณป้อนข้อมูลไม่ถูกต้อง' 95 | }, 96 | upload: { 97 | delete: 'ลบ', 98 | preview: 'ตัวอย่าง', 99 | continue: 'ทำต่อ' 100 | }, 101 | table: { 102 | emptyText: 'ไม่พบข้อมูล', 103 | confirmFilter: 'ยืนยัน', 104 | resetFilter: 'รีเซ็ต', 105 | clearFilter: 'ทั้งหมด' 106 | }, 107 | tree: { 108 | emptyText: 'ไม่พบข้อมูล' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/vi.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/vi', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.vi = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Xóa' 23 | }, 24 | datepicker: { 25 | now: 'Hiện tại', 26 | today: 'Hôm nay', 27 | cancel: 'Hủy', 28 | clear: 'Xóa', 29 | confirm: 'OK', 30 | selectDate: 'Chọn ngày', 31 | selectTime: 'Chọn giờ', 32 | startDate: 'Ngày bắt đầu', 33 | startTime: 'Thời gian bắt đầu', 34 | endDate: 'Ngày kết thúc', 35 | endTime: 'Thời gian kết thúc', 36 | year: 'Năm', 37 | month1: 'Tháng 1', 38 | month2: 'Tháng 2', 39 | month3: 'Tháng 3', 40 | month4: 'Tháng 4', 41 | month5: 'Tháng 5', 42 | month6: 'Tháng 6', 43 | month7: 'Tháng 7', 44 | month8: 'Tháng 8', 45 | month9: 'Tháng 9', 46 | month10: 'Tháng 10', 47 | month11: 'Tháng 11', 48 | month12: 'Tháng 12', 49 | // week: 'week', 50 | weeks: { 51 | sun: 'CN', 52 | mon: 'T2', 53 | tue: 'T3', 54 | wed: 'T4', 55 | thu: 'T5', 56 | fri: 'T6', 57 | sat: 'T7' 58 | }, 59 | months: { 60 | jan: 'Th.1', 61 | feb: 'Th.2', 62 | mar: 'Th.3', 63 | apr: 'Th.4', 64 | may: 'Th.5', 65 | jun: 'Th.6', 66 | jul: 'Th.7', 67 | aug: 'Th.8', 68 | sep: 'Th.9', 69 | oct: 'Th.10', 70 | nov: 'Th.11', 71 | dec: 'Th.12' 72 | } 73 | }, 74 | select: { 75 | loading: 'Loading', 76 | noMatch: 'Dữ liệu không phù hợp', 77 | noData: 'Không tìm thấy dữ liệu', 78 | placeholder: 'Chọn' 79 | }, 80 | cascader: { 81 | noMatch: 'Dữ liệu không phù hợp', 82 | placeholder: 'Chọn' 83 | }, 84 | pagination: { 85 | goto: 'Nhảy tới', 86 | pagesize: '/trang', 87 | total: 'Tổng {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Thông báo', 92 | confirm: 'OK', 93 | cancel: 'Hủy', 94 | error: 'Dữ liệu không hợp lệ' 95 | }, 96 | upload: { 97 | delete: 'Xóa', 98 | preview: 'Xem trước', 99 | continue: 'Tiếp tục' 100 | }, 101 | table: { 102 | emptyText: 'Không có dữ liệu', 103 | confirmFilter: 'Xác nhận', 104 | resetFilter: 'Làm mới', 105 | clearFilter: 'Xóa hết' 106 | }, 107 | tree: { 108 | emptyText: 'Không có dữ liệu' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); -------------------------------------------------------------------------------- /src/main/webapp/element-ui/lib/umd/locale/pl.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | if (typeof define === "function" && define.amd) { 3 | define('element/locale/pl', ['module', 'exports'], factory); 4 | } else if (typeof exports !== "undefined") { 5 | factory(module, exports); 6 | } else { 7 | var mod = { 8 | exports: {} 9 | }; 10 | factory(mod, mod.exports); 11 | global.ELEMENT.lang = global.ELEMENT.lang || {}; 12 | global.ELEMENT.lang.pl = mod.exports; 13 | } 14 | })(this, function (module, exports) { 15 | 'use strict'; 16 | 17 | exports.__esModule = true; 18 | exports.default = { 19 | el: { 20 | colorpicker: { 21 | confirm: 'OK', 22 | clear: 'Wyczyść' 23 | }, 24 | datepicker: { 25 | now: 'Teraz', 26 | today: 'Dzisiaj', 27 | cancel: 'Anuluj', 28 | clear: 'Wyczyść', 29 | confirm: 'OK', 30 | selectDate: 'Wybierz datę', 31 | selectTime: 'Wybierz godzinę', 32 | startDate: 'Data początkowa', 33 | startTime: 'Godzina początkowa', 34 | endDate: 'Data końcowa', 35 | endTime: 'Czas końcowa', 36 | year: 'rok', 37 | month1: 'styczeń', 38 | month2: 'luty', 39 | month3: 'marzec', 40 | month4: 'kwiecień', 41 | month5: 'maj', 42 | month6: 'czerwiec', 43 | month7: 'lipiec', 44 | month8: 'sierpień', 45 | month9: 'wrzesień', 46 | month10: 'październik', 47 | month11: 'listopad', 48 | month12: 'grudzień', 49 | week: 'tydzień', 50 | weeks: { 51 | sun: 'niedz.', 52 | mon: 'pon.', 53 | tue: 'wt.', 54 | wed: 'śr.', 55 | thu: 'czw.', 56 | fri: 'pt.', 57 | sat: 'sob.' 58 | }, 59 | months: { 60 | jan: 'STY', 61 | feb: 'LUT', 62 | mar: 'MAR', 63 | apr: 'KWI', 64 | may: 'MAJ', 65 | jun: 'CZE', 66 | jul: 'LIP', 67 | aug: 'SIE', 68 | sep: 'WRZ', 69 | oct: 'PAŹ', 70 | nov: 'LIS', 71 | dec: 'GRU' 72 | } 73 | }, 74 | select: { 75 | loading: 'Ładowanie', 76 | noMatch: 'Brak dopasowań', 77 | noData: 'Brak danych', 78 | placeholder: 'Wybierz' 79 | }, 80 | cascader: { 81 | noMatch: 'Brak dopasowań', 82 | placeholder: 'Wybierz' 83 | }, 84 | pagination: { 85 | goto: 'Idź do', 86 | pagesize: '/strona', 87 | total: 'Wszystkich {total}', 88 | pageClassifier: '' 89 | }, 90 | messagebox: { 91 | title: 'Wiadomość', 92 | confirm: 'OK', 93 | cancel: 'Anuluj', 94 | error: 'Wiadomość zawiera niedozwolone znaki' 95 | }, 96 | upload: { 97 | delete: 'Kasuj', 98 | preview: 'Podgląd', 99 | continue: 'Kontynuuj' 100 | }, 101 | table: { 102 | emptyText: 'Brak danych', 103 | confirmFilter: 'Potwierdź', 104 | resetFilter: 'Resetuj', 105 | clearFilter: 'Wszystko' 106 | }, 107 | tree: { 108 | emptyText: 'Brak danych' 109 | } 110 | } 111 | }; 112 | module.exports = exports['default']; 113 | }); --------------------------------------------------------------------------------