Merge pull request #4894 from amirfrd/add-fa-locale-to-js-validation

Add fa locale to js validation
This commit is contained in:
Glenn Hermans 2021-05-25 14:28:33 +02:00 committed by GitHub
commit aace152a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 47 additions and 22 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,12 +1,12 @@
/*!
* Sizzle CSS Selector Engine v2.3.5
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2020-03-14
* Date: 2021-02-16
*/
/*!
@ -16,17 +16,17 @@
*/
/*!
* jQuery JavaScript Library v3.5.1
* jQuery JavaScript Library v3.6.0
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2020-05-04T22:49Z
* Date: 2021-03-02T17:08Z
*/
/**

View File

@ -1,4 +1,4 @@
{
"/js/admin.js": "/js/admin.js?id=f3d20a6568f3b4473dcc",
"/css/admin.css": "/css/admin.css?id=9f04992b0f1ac9f91e6c"
"/js/admin.js": "/js/admin.js?id=717001a94fc784c09d87",
"/css/admin.css": "/css/admin.css?id=b24aa6544b82f674840f"
}

View File

@ -2,6 +2,11 @@ import Vue from 'vue';
import VeeValidate, { Validator } from 'vee-validate';
import de from 'vee-validate/dist/locale/de';
import ar from 'vee-validate/dist/locale/ar';
import fa from 'vee-validate/dist/locale/fa';
import fr from 'vee-validate/dist/locale/fr';
import nl from 'vee-validate/dist/locale/nl';
import tr from 'vee-validate/dist/locale/tr';
import './bootstrap';
@ -12,6 +17,10 @@ Vue.use(VeeValidate, {
dictionary: {
ar: ar,
de: de,
fa: fa,
fr: fr,
nl: nl,
tr: tr,
},
events: 'input|change|blur',
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,17 +1,17 @@
/*!
* Sizzle CSS Selector Engine v2.3.4
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2019-04-08
* Date: 2021-02-16
*/
/*!
* Vue.js v2.6.11
* (c) 2014-2019 Evan You
* Vue.js v2.6.12
* (c) 2014-2020 Evan You
* Released under the MIT License.
*/
@ -27,17 +27,17 @@
*/
/*!
* jQuery JavaScript Library v3.4.1
* jQuery JavaScript Library v3.6.0
* https://jquery.com/
*
* Includes Sizzle.js
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license
* https://jquery.org/license
*
* Date: 2019-05-01T21:04Z
* Date: 2021-03-02T17:08Z
*/
/**

View File

@ -1,4 +1,4 @@
{
"/js/shop.js": "/js/shop.js?id=f1380c0210d5af3612b5",
"/css/shop.css": "/css/shop.css?id=e97c8bb25f0e691bfa17"
"/js/shop.js": "/js/shop.js?id=186c73a72905a863847e",
"/css/shop.css": "/css/shop.css?id=84f6189d560662d5c4b3"
}

View File

@ -3,6 +3,10 @@ import Vue from 'vue';
import VeeValidate, { Validator } from 'vee-validate';
import de from 'vee-validate/dist/locale/de';
import ar from 'vee-validate/dist/locale/ar';
import fa from 'vee-validate/dist/locale/fa';
import fr from 'vee-validate/dist/locale/fr';
import nl from 'vee-validate/dist/locale/nl';
import tr from 'vee-validate/dist/locale/tr';
import axios from 'axios';
import VueSlider from 'vue-slider-component';
import accounting from 'accounting';
@ -21,6 +25,10 @@ Vue.use(VeeValidate, {
dictionary: {
ar: ar,
de: de,
fa: fa,
fr: fr,
nl: nl,
tr: tr,
},
events: 'input|change|blur',
});

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
{
"/js/velocity.js": "/js/velocity.js?id=f4dcc51b765ad0cf788d",
"/js/velocity.js": "/js/velocity.js?id=b67028b7df87d1260e90",
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
"/css/velocity.css": "/css/velocity.css?id=15d6426e21921c345c7b"
}

View File

@ -5,6 +5,10 @@ import VueToast from 'vue-toast-notification';
import 'vue-toast-notification/dist/index.css';
import de from 'vee-validate/dist/locale/de';
import ar from 'vee-validate/dist/locale/ar';
import fa from 'vee-validate/dist/locale/fa';
import fr from 'vee-validate/dist/locale/fr';
import nl from 'vee-validate/dist/locale/nl';
import tr from 'vee-validate/dist/locale/tr';
import VeeValidate, { Validator } from 'vee-validate';
import axios from 'axios';
import 'lazysizes';
@ -23,6 +27,10 @@ Vue.use(VeeValidate, {
dictionary: {
ar: ar,
de: de,
fa: fa,
fr: fr,
nl: nl,
tr: tr,
}
});