Author |
Message
|
sebastia |
Posted: Fri Oct 19, 2012 3:23 am Post subject: explorer language in v 7.5 |
|
|
 Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
Hi.
Until now, to set MQ explorer language (back to english)
I changed c:\mq\bin\runmqcfg.cmd
adding a line like
Code: |
set AMQ_EXPLORER=%AMQ_EXPLORER% -nl en_US
|
Unfortunately, inversion 7.5 this CMD file is not present,
and the language change not documented ...
( I cant change LOCALE, sorry )
Any hints ?
Sebastian. |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Oct 19, 2012 3:56 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
You should be able to add "-nl en_US" to MQExplorer.ini in <MQ75_Install>/bin |
|
Back to top |
|
 |
sebastia |
Posted: Fri Oct 19, 2012 4:27 am Post subject: |
|
|
 Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
sorry to say that this file (added 1 line to end) :
Code: |
. -startup
../mqexplorer/eclipse/plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar
--launcher.library
../mqexplorer/eclipse/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222
-vm
../java/jre/bin
-vmargs
-Xmx512M
-nl en_US
|
produces
"Failed to create the JVM" ... |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Oct 19, 2012 5:20 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
add it before -vmargs
edit: let me try it locally first.
2nd edit: this works for me, although I'm already on American so I can't say that it 'works'.
Code: |
-startup
../mqexplorer/eclipse/plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar
--launcher.library
../mqexplorer/eclipse/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222
-nl en_US
-vm
../java/jre/bin
-vmargs
-Xmx512M |
Last edited by mqjeff on Fri Oct 19, 2012 5:23 am; edited 2 times in total |
|
Back to top |
|
 |
ramires |
Posted: Fri Oct 19, 2012 5:20 am Post subject: |
|
|
Knight
Joined: 24 Jun 2001 Posts: 523 Location: Portugal - Lisboa
|
this is just a suggestion, I didn't try v7.5 yet. You can test one of this options.
passing this option to the .exe file that starts MQ Explorer:
"-nl en_US"
or the option:
"-Duser.language=en" as a Java argument _________________ Obrigado / Thanks you |
|
Back to top |
|
 |
sebastia |
Posted: Fri Oct 19, 2012 5:31 am Post subject: |
|
|
 Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
Jeff : if placed before "-vm" .. it does nothing : explorer starts in Spanish ... jejeje
...
... but ...
...
Code: |
-vmargs
-Xmx512M
-Duser.language=en
|
... does the trick !
Thanks to all, mr Ramires & mqJeff ...
Have a nice weekend ! |
|
Back to top |
|
 |
|