﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
15298	Use rpm return value instead of localized message	jirislaby@…	team	"From src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java:
{{{
    // rpm returns translated string ""package %s is not installed\n"", can't find a way to force english output
    // translations from https://github.com/rpm-software-management/rpm
    private static final String[] NOT_INSTALLED = {
            ""not installed"",          // en
            ""no s'ha instal·lat"",     // ca
            ""尚未安裝"",                // cmn
...
}}}

rpm respects locales:
{{{
$ rpm -q test
balíček test není nainstalován
$ LANG=en rpm -q test
package test is not installed
$ LANG=POSIX rpm -q test
package test is not installed
}}}

So just set the environment variable to POSIX (or to en) and you are done."	enhancement	closed	normal	17.09	Core		fixed		
