From f56a86f377b0653c82515c94e0ead559cc39ab7a Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 26 Oct 2016 19:02:57 +0100 Subject: [PATCH] Fix titles --- openlp/plugins/songs/reporting.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/songs/reporting.py b/openlp/plugins/songs/reporting.py index 94619014d..98b6713fe 100644 --- a/openlp/plugins/songs/reporting.py +++ b/openlp/plugins/songs/reporting.py @@ -43,7 +43,11 @@ def report_song_list(): main_window = Registry().get('main_window') plugin = Registry().get('songs').plugin report_file_name, filter_used = QtWidgets.QFileDialog.getSaveFileName( - main_window, translate('SongPlugin.ReportSongList', 'Output File Location')) + main_window, + translate('SongPlugin.ReportSongList', 'Save File'), + translate('SongPlugin.ReportSongList', 'song_extract.csv'), + translate('SongPlugin.ReportSongList', 'CSV format (*.csv)')) + if not report_file_name: main_window.error_message( translate('SongPlugin.ReportSongList', 'Output Path Not Selected'),