Add missing i18n

svn path=/trunk/KDE/kdebase/workspace/; revision=1014980
This commit is contained in:
Laurent Montel 2009-08-24 11:21:45 +00:00
parent 9305bd33a7
commit bfd8da0fd3

View file

@ -29,7 +29,7 @@
#include <QPalette>
#include "nitrogenexceptionmodel.h"
#include <KLocale>
namespace Nitrogen
{
@ -37,8 +37,8 @@ namespace Nitrogen
const QString NitrogenExceptionModel::column_titles_[ NitrogenExceptionModel::n_columns ] =
{
"",
"Exception Type",
"Regular Expression"
i18n("Exception Type"),
i18n("Regular Expression")
};
//__________________________________________________________________
@ -69,7 +69,7 @@ namespace Nitrogen
} else if( role == Qt::ToolTipRole && index.column() == ENABLED ) {
return "Enable/disable this exception";
return i18n("Enable/disable this exception");
}