Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added fa locale #102

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions dist/pristine.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
pattern: "Please match the requested format",
equals: "The two fields do not match",
default: "Please enter a correct value"
},
fa: {
required: "این فیلد اجباری است",
email: "این فیلد باید یک آدرس ایمیل معتبر باشد",
number: "این فیلد باید یک عدد باشد",
integer: "این فیلد باید یک عدد صحیح باشد",
url: "این فیلد باید یک آدرس اینترنتی معتبر باشد",
tel: "این فیلد باید یک شماره تلفن معتبر باشد",
maxlength: "طول این فیلد باید کمتر از ${1} باشد",
minlength: "طول این فیلد باید بیشتر از ${1} باشد",
min: "حداقل مقدار برای این فیلد ${1} است",
max: "حداکثر مقدار برای این فیلد ${1} است",
pattern: "لطفاً با الگوی درخواست شده مطابقت داشته باشید",
equals: "مقادیر دو فیلد مطابقت ندارند",
default: "لطفاً یک مقدار صحیح وارد کنید"
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/pristine.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions src/lang.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,20 @@ export const lang = {
pattern: "Please match the requested format",
equals: "The two fields do not match",
default: "Please enter a correct value"
},
fa: {
required: "این فیلد اجباری است",
email: "این فیلد باید یک آدرس ایمیل معتبر باشد",
number: "این فیلد باید یک عدد باشد",
integer: "این فیلد باید یک عدد صحیح باشد",
url: "این فیلد باید یک آدرس اینترنتی معتبر باشد",
tel: "این فیلد باید یک شماره تلفن معتبر باشد",
maxlength: "طول این فیلد باید کمتر از ${1} باشد",
minlength: "طول این فیلد باید بیشتر از ${1} باشد",
min: "حداقل مقدار برای این فیلد ${1} است",
max: "حداکثر مقدار برای این فیلد ${1} است",
pattern: "لطفاً با الگوی درخواست شده مطابقت داشته باشید",
equals: "مقادیر دو فیلد مطابقت ندارند",
default: "لطفاً یک مقدار صحیح وارد کنید"
}
};
13 changes: 13 additions & 0 deletions test/locale.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ describe('Locale', function() {

});

it(`should show fa error message`, () => {
Pristine.setLocale("fa");
let form = document.getElementById("fixture")
let input = document.getElementById("input")
let pristine = new Pristine(form);

expect(pristine.validate(input)).toBe(false);

expect(pristine.getErrors(input).length).toBe(1);
expect(pristine.getErrors(input)[0]).toBe("این فیلد اجباری است");

});

it(`should show custom error message`, () => {

let form = document.getElementById("fixture")
Expand Down