Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

English to Italian translation

I've used Month(Assign_date) in the loading script to assign to each record in my table the month. Now my client insists to put the month names in Italian. Is there any function that can do this or I have to do it myself, in a loading script?

1 Solution

Accepted Solutions
Or
MVP
MVP

There will likely be a line at the top of your script along the lines of:

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

Simply change the month names to those you want.

Alternatively, you can create a new QVW on a computer localized to Italy, and the script should automatically generate Italian month names.

View solution in original post

3 Replies
karthikoffi27se
Creator III
Creator III

Hi Mihai,

You have to do it yourself in the load script.

Many Thanks

Karthik

Or
MVP
MVP

There will likely be a line at the top of your script along the lines of:

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

Simply change the month names to those you want.

Alternatively, you can create a new QVW on a computer localized to Italy, and the script should automatically generate Italian month names.

Anonymous
Not applicable
Author

changing the SET MonthNames did the job, thanks