├── gitbook ├── GLOSSARY.md ├── README.md ├── ch1 │ └── README.md ├── _book │ ├── ch1 │ │ └── README.md │ ├── gitbook │ │ ├── images │ │ │ ├── favicon.ico │ │ │ └── apple-touch-icon-precomposed-152.png │ │ ├── fonts │ │ │ └── fontawesome │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── gitbook-plugin-livereload │ │ │ └── plugin.js │ │ ├── gitbook-plugin-search │ │ │ ├── search.css │ │ │ └── search-engine.js │ │ ├── gitbook-plugin-lunr │ │ │ └── search-lunr.js │ │ ├── gitbook-plugin-sharing │ │ │ └── buttons.js │ │ └── gitbook-plugin-highlight │ │ │ └── ebook.css │ └── search_index.json ├── SUMMARY.md └── book.json ├── ES6 ├── README.md ├── common.js ├── demo2.html └── demo1.html ├── css-center ├── menhera.jpg ├── 水平 │ ├── text-align2.html │ ├── margin.html │ └── text-align1.html └── 水平垂直居中 │ ├── transform.html │ ├── position.html │ ├── position-auto.1.html │ ├── position-auto.html │ ├── flex.html │ ├── table-cell.html │ ├── grid.html │ └── vertical.html ├── loading ├── img │ └── loading.gif ├── readme.md ├── demo1.html ├── demo2.html ├── demo3.html ├── demo4.html └── demo5.html ├── snow └── 3D雪花效果 │ ├── images │ ├── bg.jpg │ └── ParticleSmoke.png │ ├── js │ └── Snow.js │ └── index.html ├── radio ├── README.md └── demo.html ├── download └── a_href │ ├── download │ ├── bg5.zip │ └── bg5.jpeg │ └── download.html ├── upload └── demo1 │ ├── bootstrap-fileinput │ ├── .gitignore │ ├── img │ │ ├── loading.gif │ │ └── loading-sm.gif │ ├── composer.json │ ├── nuget │ │ ├── Package.nuspec │ │ └── build.bat │ ├── bower.json │ ├── package.json │ ├── LICENSE.md │ ├── themes │ │ ├── fa │ │ │ ├── theme.min.js │ │ │ └── theme.js │ │ ├── gly │ │ │ ├── theme.min.js │ │ │ └── theme.js │ │ ├── explorer │ │ │ ├── theme.min.js │ │ │ ├── theme.min.css │ │ │ ├── theme.js │ │ │ └── theme.css │ │ └── explorer-fa │ │ │ ├── theme.min.css │ │ │ ├── theme.min.js │ │ │ ├── theme.css │ │ │ └── theme.js │ ├── css │ │ ├── fileinput-rtl.min.css │ │ └── fileinput-rtl.css │ ├── scss │ │ └── fileinput-rtl.scss │ └── js │ │ └── locales │ │ ├── zh.js │ │ ├── kz.js │ │ ├── zh-TW.js │ │ ├── fi.js │ │ ├── kr.js │ │ ├── et.js │ │ ├── sl.js │ │ ├── pl.js │ │ ├── ar.js │ │ ├── sv.js │ │ ├── no.js │ │ ├── th.js │ │ ├── ja.js │ │ ├── LANG.js │ │ ├── vi.js │ │ ├── da.js │ │ ├── fa.js │ │ ├── bg.js │ │ ├── uk.js │ │ └── cs.js │ └── demo.html ├── README.md ├── rules └── css-rules │ └── rules.md ├── .gitattributes ├── algorithm ├── index.html └── reverseString.js ├── .gitignore ├── city ├── index.html └── citychange.js ├── click └── clicklove.js ├── json ├── demo1.html └── demo2.html └── form └── demo1.html /gitbook/GLOSSARY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ES6/README.md: -------------------------------------------------------------------------------- 1 | # ES6 学习笔记 2 | -------------------------------------------------------------------------------- /gitbook/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | -------------------------------------------------------------------------------- /gitbook/ch1/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | -------------------------------------------------------------------------------- /gitbook/_book/ch1/README.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | -------------------------------------------------------------------------------- /css-center/menhera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/css-center/menhera.jpg -------------------------------------------------------------------------------- /loading/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/loading/img/loading.gif -------------------------------------------------------------------------------- /snow/3D雪花效果/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/snow/3D雪花效果/images/bg.jpg -------------------------------------------------------------------------------- /radio/README.md: -------------------------------------------------------------------------------- 1 | # jquery prop 和 attr 用法的区别展示 2 | [预览](https://calamus0427.github.io/commonJS/radio/demo.html) 3 | -------------------------------------------------------------------------------- /download/a_href/download/bg5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/download/a_href/download/bg5.zip -------------------------------------------------------------------------------- /upload/demo1/bootstrap-fileinput/.gitignore: -------------------------------------------------------------------------------- 1 | nuget/content/ 2 | nuget/bootstrap-fileinput.*.nupkg 3 | .DS_Store 4 | .idea -------------------------------------------------------------------------------- /download/a_href/download/bg5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/download/a_href/download/bg5.jpeg -------------------------------------------------------------------------------- /snow/3D雪花效果/images/ParticleSmoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/snow/3D雪花效果/images/ParticleSmoke.png -------------------------------------------------------------------------------- /gitbook/_book/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /upload/demo1/bootstrap-fileinput/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/upload/demo1/bootstrap-fileinput/img/loading.gif -------------------------------------------------------------------------------- /upload/demo1/bootstrap-fileinput/img/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/upload/demo1/bootstrap-fileinput/img/loading-sm.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 常用JS代码 2 | - 代码规范 3 | - css 规范 4 | - 上传 5 | - 下载 6 | - 一些特效 7 | - 3D雪花特效 8 | - 特效点击事件 9 | - 鼠标点击爱心特效 10 | - 一些算法 11 | - 城市联动 city 12 | 13 | -------------------------------------------------------------------------------- /gitbook/_book/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /gitbook/_book/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calamus0427/commonJS/master/gitbook/_book/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /rules/css-rules/rules.md: -------------------------------------------------------------------------------- 1 | css规范 2 | 网易的NEC规范 3 | http://nec.netease.com/standard/css-name.html 4 | 其他: 5 | https://github.com/fex-team/styleguide/blob/master/css.md#21-%E6%96%87%E4%BB%B6 6 | http://alloyteam.github.io/CodeGuide/ 7 | 8 | -------------------------------------------------------------------------------- /gitbook/SUMMARY.md: -------------------------------------------------------------------------------- 1 | # Summary 2 | 3 | * [Part I](README.md) 4 | * [Writing is nice](part1/writing.md) 5 | * [GitBook is nice](part1/gitbook.md) 6 | 7 | ---- 8 | 9 | * [Part II](part2/README.md) 10 | * [We love feedback](part2/feedback_please.md) 11 | * [Better tools for authors](part2/better_tools.md) -------------------------------------------------------------------------------- /ES6/common.js: -------------------------------------------------------------------------------- 1 | //正则表达式是否支持u修饰符 2 | function hasRegExpU() { 3 | try { 4 | var pattern = new RegExp(".", "u"); 5 | return true; 6 | } catch (ex) { 7 | return false 8 | } 9 | } 10 | //正则表达式是否支持y修饰符 11 | function hasRegExpY() { 12 | try { 13 | var pattern = new RegExp(".", "y"); 14 | return true; 15 | } catch (ex) { 16 | return false 17 | } 18 | } -------------------------------------------------------------------------------- /gitbook/_book/gitbook/gitbook-plugin-livereload/plugin.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var newEl = document.createElement('script'), 3 | firstScriptTag = document.getElementsByTagName('script')[0]; 4 | 5 | if (firstScriptTag) { 6 | newEl.async = 1; 7 | newEl.src = '//' + window.location.hostname + ':35729/livereload.js'; 8 | firstScriptTag.parentNode.insertBefore(newEl, firstScriptTag); 9 | } 10 | 11 | })(); 12 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /algorithm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/css-center/水平垂直居中/position.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/css-center/水平垂直居中/position-auto.1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/css-center/水平垂直居中/position-auto.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/upload/demo1/bootstrap-fileinput/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "kartik-v/bootstrap-fileinput",
3 | "description": "An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.",
4 | "keywords": ["bootstrap", "jquery", "file", "input", "preview", "upload", "image", "multiple", "ajax", "delete", "progress"],
5 | "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
6 | "license": "BSD-3-Clause",
7 | "authors": [
8 | {
9 | "name": "Kartik Visweswaran",
10 | "email": "kartikv2@gmail.com",
11 | "homepage": "http://www.krajee.com/"
12 | }
13 | ],
14 | "autoload": {
15 | "psr-4": {
16 | "kartik\\plugins\\fileinput\\": ""
17 | }
18 | },
19 | "extra": {
20 | "branch-alias": {
21 | "dev-master": "4.4.x-dev"
22 | }
23 | }
24 | }
--------------------------------------------------------------------------------
/loading/demo1.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
37 |
38 | 9 | 10 | aaaaaaaaaaa 11 |
12 |13 | 14 | bbbbbbbbbbbb 15 |
16 |17 | 18 | cccccccccccc 19 |
20 | 21 | 22 | 23 | 24 | 25 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /upload/demo1/bootstrap-fileinput/themes/gly/theme.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * bootstrap-fileinput v4.4.7 3 | * http://plugins.krajee.com/file-input 4 | * 5 | * Glyphicon (default) theme configuration for bootstrap-fileinput. 6 | * 7 | * Author: Kartik Visweswaran 8 | * Copyright: 2014 - 2017, Kartik Visweswaran, Krajee.com 9 | * 10 | * Licensed under the BSD 3-Clause 11 | * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md 12 | */!function(i){"use strict";i.fn.fileinputThemes.gly={fileActionSettings:{removeIcon:'',uploadIcon:'',zoomIcon:'',dragIcon:'',indicatorNew:'',indicatorSuccess:'',indicatorError:'',indicatorLoading:''},layoutTemplates:{fileIcon:''},previewZoomButtonIcons:{prev:'',next:'',toggleheader:'',fullscreen:'',borderless:'',close:''},previewFileIcon:'',browseIcon:' ',removeIcon:'',cancelIcon:'',uploadIcon:'',msgValidationErrorIcon:' '}}(window.jQuery); -------------------------------------------------------------------------------- /gitbook/_book/gitbook/gitbook-plugin-lunr/search-lunr.js: -------------------------------------------------------------------------------- 1 | require([ 2 | 'gitbook', 3 | 'jquery' 4 | ], function(gitbook, $) { 5 | // Define global search engine 6 | function LunrSearchEngine() { 7 | this.index = null; 8 | this.store = {}; 9 | this.name = 'LunrSearchEngine'; 10 | } 11 | 12 | // Initialize lunr by fetching the search index 13 | LunrSearchEngine.prototype.init = function() { 14 | var that = this; 15 | var d = $.Deferred(); 16 | 17 | $.getJSON(gitbook.state.basePath+'/search_index.json') 18 | .then(function(data) { 19 | // eslint-disable-next-line no-undef 20 | that.index = lunr.Index.load(data.index); 21 | that.store = data.store; 22 | d.resolve(); 23 | }); 24 | 25 | return d.promise(); 26 | }; 27 | 28 | // Search for a term and return results 29 | LunrSearchEngine.prototype.search = function(q, offset, length) { 30 | var that = this; 31 | var results = []; 32 | 33 | if (this.index) { 34 | results = $.map(this.index.search(q), function(result) { 35 | var doc = that.store[result.ref]; 36 | 37 | return { 38 | title: doc.title, 39 | url: doc.url, 40 | body: doc.summary || doc.body 41 | }; 42 | }); 43 | } 44 | 45 | return $.Deferred().resolve({ 46 | query: q, 47 | results: results.slice(0, length), 48 | count: results.length 49 | }).promise(); 50 | }; 51 | 52 | // Set gitbook research 53 | gitbook.events.bind('start', function(e, config) { 54 | var engine = gitbook.search.getEngine(); 55 | if (!engine) { 56 | gitbook.search.setEngine(LunrSearchEngine, config); 57 | } 58 | }); 59 | }); 60 | -------------------------------------------------------------------------------- /upload/demo1/bootstrap-fileinput/themes/explorer/theme.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * bootstrap-fileinput v4.4.7 3 | * http://plugins.krajee.com/file-input 4 | * 5 | * Krajee Explorer theme configuration for bootstrap-fileinput. Load this theme file after loading `fileinput.js`. 6 | * 7 | * Author: Kartik Visweswaran 8 | * Copyright: 2014 - 2017, Kartik Visweswaran, Krajee.com 9 | * 10 | * Licensed under the BSD 3-Clause 11 | * https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md 12 | */!function(e){"use strict";var t='
17 | $("#checkPropDemo1").click(function(){$("#prop1").prop("checked",true);});
18 |
19 | demo1
20 | demo2
21 | demo3
22 | demo4
23 | demo5
24 |
31 | $("#checkAttrDemo1").click(function(){$("#attr1").attr("checked",true);});
32 |
33 | demo1
34 | demo2
35 | demo3
36 | demo4
37 | demo5
38 | {errors}',
70 | msgAjaxError: '{operation} 发生错误. 请重试!',
71 | msgAjaxProgressError: '{operation} 失败',
72 | ajaxOperations: {
73 | deleteThumb: '删除文件',
74 | uploadThumb: '上传文件',
75 | uploadBatch: '批量上传',
76 | uploadExtra: '表单数据上传'
77 | },
78 | dropZoneTitle: '拖拽文件到这里 …适用浏览器:360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗. 不支持IE8及以下浏览器。
145 |{errors}',
57 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
58 | msgAjaxProgressError: '{operation} failed',
59 | ajaxOperations: {
60 | deleteThumb: 'file delete',
61 | uploadThumb: 'file upload',
62 | uploadBatch: 'batch file upload',
63 | uploadExtra: 'form data upload'
64 | },
65 | dropZoneTitle: 'Файлдарды осында сүйреу …',
66 | dropZoneClickTitle: '{errors}',
71 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
72 | msgAjaxProgressError: '{operation} failed',
73 | ajaxOperations: {
74 | deleteThumb: 'file delete',
75 | uploadThumb: 'file upload',
76 | uploadBatch: 'batch file upload',
77 | uploadExtra: 'form data upload'
78 | },
79 | dropZoneTitle: '拖曳檔案至此 …',
80 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: '파일을 여기에 드래그인 드랍을 하십시요 …',
78 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Lohista failid siia …',
78 | dropZoneClickTitle: '{errors}',
67 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
68 | msgAjaxProgressError: '{operation} failed',
69 | ajaxOperations: {
70 | deleteThumb: 'file delete',
71 | uploadThumb: 'file upload',
72 | uploadBatch: 'batch file upload',
73 | uploadExtra: 'form data upload'
74 | },
75 | dropZoneTitle: 'Povlecite in spustite datoteke sem …',
76 | dropZoneClickTitle: '{errors}',
59 | msgAjaxError: 'Coś poczło nie tak podczas {operation}. Spróbuj ponownie!',
60 | msgAjaxProgressError: '{operation} nie powiodło się',
61 | ajaxOperations: {
62 | deleteThumb: 'usuwanie pliku',
63 | uploadThumb: 'przesyłanie pliku',
64 | uploadBatch: 'masowe przesyłanie plików',
65 | uploadExtra: 'przesyłanie danych formularza'
66 | },
67 | dropZoneTitle: 'Przeciągnij i upuść pliki tutaj …',
68 | dropZoneClickTitle: '{errors}',
70 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
71 | msgAjaxProgressError: '{operation} failed',
72 | ajaxOperations: {
73 | deleteThumb: 'file delete',
74 | uploadThumb: 'file upload',
75 | uploadBatch: 'batch file upload',
76 | uploadExtra: 'form data upload'
77 | },
78 | dropZoneTitle: 'اسحب وأفلت الملفات هنا …',
79 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Något gick fel med {operation} operationen. Försök igen senare!',
70 | msgAjaxProgressError: '{operation} misslyckades',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Drag & släpp filer här …',
78 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Noe gikk galt med {operation} operasjonen. Vennligst prøv igjen senere!',
70 | msgAjaxProgressError: '{operation} feilet',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Dra & slipp filer her …',
78 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Drag & drop ไฟล์ตรงนี้ …',
78 | dropZoneClickTitle: '{errors}',
76 | msgAjaxError: '{operation}実行中にエラーが発生しました。時間をおいてもう一度お試しください。',
77 | msgAjaxProgressError: '{operation} failed',
78 | ajaxOperations: {
79 | deleteThumb: 'ファイル削除',
80 | uploadThumb: 'ファイルアップロード',
81 | uploadBatch: '一括ファイルアップロード',
82 | uploadExtra: 'フォームデータアップロード'
83 | },
84 | dropZoneTitle: 'ファイルをドラッグ&ドロップ…',
85 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Drag & drop files here …',
78 | dropZoneClickTitle: '{errors}',
70 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
71 | msgAjaxProgressError: '{operation} failed',
72 | ajaxOperations: {
73 | deleteThumb: 'file delete',
74 | uploadThumb: 'file upload',
75 | uploadBatch: 'batch file upload',
76 | uploadExtra: 'form data upload'
77 | },
78 | dropZoneTitle: 'Kéo thả tập tin vào đây …',
79 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Drag & drop filer her …',
78 | dropZoneClickTitle: '{errors}',
70 | msgAjaxError: 'به نظر مشکلی در حین {operation} روی داده است. لطفا دوباره تلاش کنید!',
71 | msgAjaxProgressError: '{operation} لغو شد',
72 | ajaxOperations: {
73 | deleteThumb: 'حذف فایل',
74 | uploadThumb: 'بارگذاری فایل',
75 | uploadBatch: 'بارگذاری جمعی فایلها',
76 | uploadExtra: 'بارگذاری با کمک فُرم'
77 | },
78 | dropZoneTitle: 'فایلها را بکشید و در اینجا رها کنید …',
79 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
70 | msgAjaxProgressError: '{operation} failed',
71 | ajaxOperations: {
72 | deleteThumb: 'file delete',
73 | uploadThumb: 'file upload',
74 | uploadBatch: 'batch file upload',
75 | uploadExtra: 'form data upload'
76 | },
77 | dropZoneTitle: 'Пуснете файловете тук …',
78 | dropZoneClickTitle: '{errors}',
70 | msgAjaxError: 'Something went wrong with the {operation} operation. Please try again later!',
71 | msgAjaxProgressError: '{operation} failed',
72 | ajaxOperations: {
73 | deleteThumb: 'file delete',
74 | uploadThumb: 'file upload',
75 | uploadBatch: 'batch file upload',
76 | uploadExtra: 'form data upload'
77 | },
78 | dropZoneTitle: 'Перетягніть файли сюди …',
79 | dropZoneClickTitle: '{errors}',
69 | msgAjaxError: 'Došlo k chybě v {operation}. Prosím zkuste to znovu později!',
70 | msgAjaxProgressError: '{operation} - neúspěšné',
71 | ajaxOperations: {
72 | deleteThumb: 'odstranit soubor',
73 | uploadThumb: 'nahrát soubor',
74 | uploadBatch: 'nahrát várku souborů',
75 | uploadExtra: 'odesílání dat formuláře'
76 | },
77 | dropZoneTitle: 'Přetáhni soubory sem …',
78 | dropZoneClickTitle: '