Reading
http://docs.gimp.org/2.6/en/gimp-fire-up.html#gimp-concepts-running-languageAnother GIMP instance
Use -n to run multiple instances GIMP. For example, use gimp-2.6 to start GIMP in the default system language, and LANGUAGE=en gimp-2.6 -n to start another instance of GIMP in English; this is very useful for translators. ShellOut (0.7) is also a way to simultaneously run multiple versions of the GIMP (XP 32bit)- the transfer of image and language selection (to 2.6 - in the 2.7 range in the preferences).
Edit the path and choose the LANGUAGE:
for example :multigimp-2.6.bat
Code:
@echo off
echo *** Do Not Close this Window ***
echo Temp File: %1
set LANGUAGE=en
"C:\Program Files\GIMP-2.0\bin\gimp-2.6.exe" -n %1
for example multigimp-2.7.bat
Code:
@echo off
echo *** Do Not Close this Window ***
echo Temp File: %1
set LANGUAGE=pl
"C:\Program Files\GIMP 2.7\bin\gimp-2.7.exe" -n %1
ShellOut programlist = [
Code:
["GIMP 2.6", "\"C:\\Bat\\multigimp-2.6.bat\"", "png"],
["GIMP 2.7", "\"C:\\Bat\\multigimp-2.7.bat\"", "png"],