By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 860
Collapse All | Expand All

(-)tdelibs/tdecore/klocale.cpp (-1 / +1 lines)
Lines 156-162 Link Here
156
  TQStringList languageList;
156
  TQStringList languageList;
157
  if ( useEnv )
157
  if ( useEnv )
158
    languageList += TQStringList::split
158
    languageList += TQStringList::split
159
      (':', TQFile::decodeName( ::getenv("KDE_LANG") ));
159
      (':', TQFile::decodeName( ::getenv("TDE_LANG") ));
160
  languageList += config->readListEntry("Language", ':');
160
  languageList += config->readListEntry("Language", ':');
(-)tdelibs/tdecore/klocale.h (-1 / +1 lines)
Lines 130-136 Link Here
130
   * The constructor looks for an entry Locale/Language in the
130
   * The constructor looks for an entry Locale/Language in the
131
   * configuration file.
131
   * configuration file.
132
   * If no config file is specified, it will also look for languages
132
   * If no config file is specified, it will also look for languages
133
   * using the environment variables (KDE_LANG, LC_MESSAGES, LC_ALL, LANG),
133
   * using the environment variables (TDE_LANG, LC_MESSAGES, LC_ALL, LANG),
134
   * as well as the global configuration file. If KLocale is not able to use
134
   * as well as the global configuration file. If KLocale is not able to use
135
   * any of the specified languages, the default language (en_US) will be
135
   * any of the specified languages, the default language (en_US) will be
136
   * used.
136
   * used.
(-)tdeutils/superkaramba/src/themelocale.cpp (-1 / +1 lines)
Lines 175-181 Link Here
175
  // Reset the list and add the new languages
175
  // Reset the list and add the new languages
176
  TQStringList languageList;
176
  TQStringList languageList;
177
  languageList +=
177
  languageList +=
178
      TQStringList::split(':', TQFile::decodeName(::getenv("KDE_LANG")));
178
      TQStringList::split(':', TQFile::decodeName(::getenv("TDE_LANG")));
179
  languageList += config->readListEntry("Language", ':');
179
  languageList += config->readListEntry("Language", ':');
(-)tdesdk/scheck/README (-1 / +1 lines)
Lines 1-6 Link Here
1
Scheck - An interface style to highlight accel and style guide conflicts
1
Scheck - An interface style to highlight accel and style guide conflicts
2
When starting an application with "KDE_LANG=xx application --style check"
2
When starting an application with "TDE_LANG=xx application --style check"
3
scheck will, for text parts it checks, strip the "xx"s and display the ones
3
scheck will, for text parts it checks, strip the "xx"s and display the ones
4
missing them (missing i18n() calls/.desktop entries) with violet background.
4
missing them (missing i18n() calls/.desktop entries) with violet background.
(-)tdesdk/scheck/scheck.cpp (-1 / +1 lines)
Lines 882-888 Link Here
882
	topLevelAccelManageTimer = new TQTimer(this);
882
	topLevelAccelManageTimer = new TQTimer(this);
883
	connect(topLevelAccelManageTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotAccelManage()));
883
	connect(topLevelAccelManageTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotAccelManage()));
884
	watcher = new StyleCheckTitleWatcher;
884
	watcher = new StyleCheckTitleWatcher;
885
	xxMode = (TQString(getenv("KDE_LANG"))=="xx");
885
	xxMode = (TQString(getenv("TDE_LANG"))=="xx");
886
}
886
}

Return to bug 860