# HG changeset patch # User Rik # Date 1523311154 25200 # Node ID d2558ba799d8956e2b797392b53545b815458008 # Parent ecc37eef11ccfa910bf961510d5a5407392d9c56 Change the GUI Import/Export Shortcuts strings to end with ellipsis. * shortcut-manager.cc (do_import_export): Change GUI strings to end with "file...". diff -r ecc37eef11cc -r d2558ba799d8 libgui/src/shortcut-manager.cc --- a/libgui/src/shortcut-manager.cc Mon Apr 09 17:20:07 2018 -0400 +++ b/libgui/src/shortcut-manager.cc Mon Apr 09 14:59:14 2018 -0700 @@ -627,12 +627,12 @@ if (action == OSC_IMPORT) file = QFileDialog::getOpenFileName (this, - tr ("Import shortcuts from file"), QString (), + tr ("Import shortcuts from file..."), QString (), tr ("Octave Shortcut Files (*.osc);;All Files (*)"), nullptr, QFileDialog::DontUseNativeDialog); else if (action == OSC_EXPORT) file = QFileDialog::getSaveFileName (this, - tr ("Export shortcuts to file"), QString (), + tr ("Export shortcuts to file..."), QString (), tr ("Octave Shortcut Files (*.osc);;All Files (*)"), nullptr, QFileDialog::DontUseNativeDialog);