Author |
Message
|
sebastia |
Posted: Mon Aug 28, 2006 12:40 am Post subject: MQ Explorer language |
|
|
Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
We use Windows XP "pro",
all in Spanish language, settings, and keyboard ...
and MQ version 6.0
Is there any way to get the MQ Explorer to come up in English
( fixed language, not depending on LOCALE et al ) ?????????????
There are few realy ugly translations and I prefer the original always !
Sebastian. |
|
Back to top |
|
|
fjb_saper |
Posted: Mon Aug 28, 2006 3:00 am Post subject: |
|
|
Grand High Poobah
Joined: 18 Nov 2003 Posts: 20729 Location: LI,NY
|
Try setting the language as environment variable before calling the MQ Explorer. _________________ MQ & Broker admin |
|
Back to top |
|
|
sebastia |
Posted: Mon Aug 28, 2006 7:16 am Post subject: |
|
|
Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
Yes, I would try this ... BUT ... but ..
>>> how is it done ????
( guindous XP, please ) |
|
Back to top |
|
|
tleichen |
Posted: Mon Aug 28, 2006 10:53 am Post subject: |
|
|
Yatiri
Joined: 11 Apr 2005 Posts: 663 Location: Center of the USA
|
sebastia wrote: |
Yes, I would try this ... BUT ... but ..
>>> how is it done ????
( guindous XP, please ) |
Talk to someone who knows Windows. |
|
Back to top |
|
|
rowles |
Posted: Mon Aug 28, 2006 11:32 pm Post subject: |
|
|
Acolyte
Joined: 12 Oct 2005 Posts: 51
|
|
Back to top |
|
|
sebastia |
Posted: Tue Aug 29, 2006 9:40 am Post subject: |
|
|
Grand Master
Joined: 07 Oct 2004 Posts: 1003
|
Thanks a lot mr Rowles !
Can you provide some DOCUMENTATION ( or a pointer or URL )
about this info ?
>>> runmqcfg.cmd
Cheers ! |
|
Back to top |
|
|
jwt007 |
Posted: Sun Jul 15, 2007 10:46 pm Post subject: |
|
|
Newbie
Joined: 15 Jul 2007 Posts: 1
|
Add the following text to the runmqcfg.cmd file (it must follow the -vmargs switch)
complete runmqcfg.cmd file:
Code: |
@echo off
REM ---------------------------------------------------------------------------
REM File Name : runmqcfg.cmd
REM Descriptive File Name : Run the WebSphere MQ Explorer Application
REM ---------------------------------------------------------------------------
REM 5724-B41
REM (c) Copyright IBM Corp. 2004. All rights reserved.
REM ---------------------------------------------------------------------------
REM @(#) eclipse/cmd/pc/winnt/runmqcfg.cmd, install_windows, p000, p000-L050401 1.14 05/04/01 09:34:11
REM ---------------------------------------------------------------------------
REM File Description :
REM
REM This script is used to launch the WebSphere MQ Explorer Application
REM using the J9 JVM installed with Eclipse.
REM ---------------------------------------------------------------------------
setlocal
set AMQ_EXPLORER="%AMQECLIPSE%\eclipse"
set AMQ_EXPLORER=%AMQ_EXPLORER% -perspective com.ibm.mq.explorer.ui.internal.perspective.mqperspective
set AMQ_EXPLORER=%AMQ_EXPLORER% -data "%APPDATA%\IBM\MQ Explorer"
set AMQ_EXPLORER=%AMQ_EXPLORER% %*
set AMQ_EXPLORER=%AMQ_EXPLORER% -vmargs -Xj9 -Xmx512M -noverify -Duser.language=en
set AMQ_EXPLORER=%AMQ_EXPLORER% "-DMQCHLLIB=%MQCHLLIB%"
set AMQ_EXPLORER=%AMQ_EXPLORER% "-DMQCHLTAB=%MQCHLTAB%"
set AMQ_EXPLORER=%AMQ_EXPLORER% "-DSystemDrive=%SystemDrive%"
start "WebSphere MQ Explorer" %AMQ_EXPLORER%
endlocal
|
thanks for the hint on the runmqcfg.cmd file =) was exactly what I was looking for. |
|
Back to top |
|
|
banjar1 |
Posted: Wed Oct 09, 2013 3:40 am Post subject: |
|
|
Acolyte
Joined: 29 Nov 2006 Posts: 54 Location: FRA
|
MQExplorer 7.5 doesn't use this cmd files anymore. How can I make it running in English regardless of my Win7 settings? |
|
Back to top |
|
|
t603 |
Posted: Thu Nov 21, 2013 6:56 am Post subject: |
|
|
Voyager
Joined: 16 Oct 2012 Posts: 88 Location: Prague, the Czech Republic, Europe
|
I edited following file on my MS Windows 2008 R2 with "IBM WebSphere MQ Explorer, version 7.5.0.2" on it
Code: |
C:\Program Files (x86)\IBM\WebSphere MQ Explorer\MQExplorer.ini |
so, that I added "-Duser.language=en" line at the end of this file and now this file looks like:
Code: |
-vm
jre/jre/bin
-vmargs
-Xmx512M
-Duser.language=en |
After closing and opening MQ Explorer again, it helps me. Stepan |
|
Back to top |
|
|
|