Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
translation string fixes
  • Loading branch information
jef-n committed Jan 25, 2017
1 parent f389069 commit 89b58d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/ProcessingConfig.py
Expand Up @@ -155,7 +155,7 @@ def initialize():
ProcessingConfig.tr('Scripts and models repository'),
'https://raw.githubusercontent.com/qgis/QGIS-Processing/master'))

invalidFeaturesOptions = [ProcessingConfig.tr('Do not filter (better performance'),
invalidFeaturesOptions = [ProcessingConfig.tr('Do not filter (better performance)'),
ProcessingConfig.tr('Ignore features with invalid geometries'),
ProcessingConfig.tr('Stop algorithm execution when a geometry is invalid')]
ProcessingConfig.addSetting(Setting(
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/modeler/ModelerDialog.py
Expand Up @@ -364,7 +364,7 @@ def exportAsPdf(self):
self.repaintModel(controls=False)
filename, fileFilter = QFileDialog.getSaveFileName(self,
self.tr('Save Model As PDF'), '',
self.tr('SVG files (*.pdf *.PDF)'))
self.tr('PDF files (*.pdf *.PDF)'))
if not filename:
return

Expand Down

0 comments on commit 89b58d7

Please sign in to comment.