Error messages not in local language.
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear skiptheb,
Can you please show us what you mean by error messages? Some of them should already be localized.
A screenshot or two might help, just to be sure we are on the same page.
Can you please show us what you mean by error messages? Some of them should already be localized.
A screenshot or two might help, just to be sure we are on the same page.
Cheers
- Nikita Kurguzov
- Posts: 889
- Joined: Mon Jul 03, 2017
Dear skiptheb,
I see. The easiest solution here would be to add the following code to the JS editor in the desinger:
If there are any errors like I see on the screenshot, it will find them and replace the English text with the German one.
I see. The easiest solution here would be to add the following code to the JS editor in the desinger:
Code: Select all
var errors = $('.ms-formvalidation');
if (!errors){
errors = [];
}
errors.each(function(i, error){
if($(error).text() == 'You must specify a value for this required field.'){
$(error).text('Dieser Wert darf nicht leer sein.');
}
});
Cheers
-
- Information
-
Who is online
Users browsing this forum: No registered users and 4 guests