forked from qt-creator/qt-creator
Nicer tool chain names, also make them translatable just in case.
This commit is contained in:
@@ -109,15 +109,15 @@ QString ToolChain::toolChainName(ToolChainType tc)
|
|||||||
{
|
{
|
||||||
switch (tc) {
|
switch (tc) {
|
||||||
case GCC:
|
case GCC:
|
||||||
return QLatin1String("gcc");
|
return QCoreApplication::translate("ToolChain", "GCC");
|
||||||
case LinuxICC:
|
case LinuxICC:
|
||||||
return QLatin1String("Linux icc");
|
return QCoreApplication::translate("ToolChain", "Linux ICC");
|
||||||
case MinGW:
|
case MinGW:
|
||||||
return QLatin1String("MinGW");
|
return QCoreApplication::translate("ToolChain", "MinGW");
|
||||||
case MSVC:
|
case MSVC:
|
||||||
return QLatin1String("MS VC");
|
return QCoreApplication::translate("ToolChain", "Microsoft Visual Studio");
|
||||||
case WINCE:
|
case WINCE:
|
||||||
return QLatin1String("Windows CE");
|
return QCoreApplication::translate("ToolChain", "Windows CE");
|
||||||
case OTHER:
|
case OTHER:
|
||||||
return QCoreApplication::translate("ToolChain", "Other");
|
return QCoreApplication::translate("ToolChain", "Other");
|
||||||
case INVALID:
|
case INVALID:
|
||||||
|
|||||||
Reference in New Issue
Block a user