Skip to content

Commit

Permalink
Improve wording
Browse files Browse the repository at this point in the history
Fix #15456
  • Loading branch information
m-kuhn committed Aug 19, 2016
1 parent 9c4761c commit e30ff62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions i18n/qgis_de.ts
Expand Up @@ -20740,8 +20740,8 @@ Nur %1 von %2 Objekten geschrieben.</translation>
</message>
<message>
<location filename="../src/gui/editorwidgets/core/qgssearchwidgetwrapper.cpp" line="73"/>
<source>Is not missing (null)</source>
<translation>Nicht belegt (NULL)</translation>
<source>Is not missing (not null)</source>
<translation>Nicht belegt (NOT NULL)</translation>
</message>
<message>
<location filename="../src/gui/editorwidgets/core/qgssearchwidgetwrapper.cpp" line="75"/>
Expand Down
2 changes: 1 addition & 1 deletion src/gui/editorwidgets/core/qgssearchwidgetwrapper.cpp
Expand Up @@ -70,7 +70,7 @@ QString QgsSearchWidgetWrapper::toString( QgsSearchWidgetWrapper::FilterFlag fla
case IsNull:
return QObject::tr( "Is missing (null)" );
case IsNotNull:
return QObject::tr( "Is not missing (null)" );
return QObject::tr( "Is not missing (not null)" );
case IsNotBetween:
return QObject::tr( "Is not between (inclusive)" );

Expand Down

0 comments on commit e30ff62

Please sign in to comment.