Changing the language used for labels [new]
The most recent version of gnuplot provides several new internationalization features. If you are plotting date/time data and set the format to display the month abbreviation rather than the number of the month, gnuplot can use the abbreviations appropriate to any language installed on your system. The following figure repeats the previous plot using month abbreviations and the Spanish language:
Note that the month names are not capitalized, which is the convention in Spanish.
How to do it…
In the following script, the addition of one line translates our plot to Spanish:
set xdata time
set locale "es_ES.utf8"
set timefmt "%d/%m/%y %H:%M"
set format x "%b %Y"
plot 'timedat.dat' using 1:3 with linespoints
How it works…
In order to use the new internationalization features, you must have the locale
program installed on your system; how this is handled is highly system dependent. In Linux, you install the desired language packages, and get a list of the...