Skip to content

Commit

Permalink
Make strings translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 1, 2015
1 parent ef68ae2 commit 1d55e9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/symbology-ng/qgssymbolv2selectordialog.cpp
Expand Up @@ -185,9 +185,9 @@ class SymbolLayerItem : public QStandardItem
{
switch ( mSymbol->type() )
{
case QgsSymbolV2::Marker : return tr( "Marker" );
case QgsSymbolV2::Fill : return tr( "Fill" );
case QgsSymbolV2::Line : return tr( "Line" );
case QgsSymbolV2::Marker : return QCoreApplication::translate( "SymbolLayerItem", "Marker", 0, QCoreApplication::UnicodeUTF8 );
case QgsSymbolV2::Fill : return QCoreApplication::translate( "SymbolLayerItem", "Fill", 0, QCoreApplication::UnicodeUTF8 );
case QgsSymbolV2::Line : return QCoreApplication::translate( "SymbolLayerItem", "Line", 0, QCoreApplication::UnicodeUTF8 );
default: return "Symbol";
}
}
Expand Down

0 comments on commit 1d55e9d

Please sign in to comment.