mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Replace the ellipses (...) on certain control labels.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@4213 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
1efa6e063e
commit
8b92cbb287
@ -750,7 +750,7 @@ Configuration::impl::impl (Configuration * self, QString const& instance_key, QS
|
||||
ui_->frequencies_table_view->insertAction (nullptr, frequency_delete_action_);
|
||||
connect (frequency_delete_action_, &QAction::triggered, this, &Configuration::impl::delete_frequencies);
|
||||
|
||||
frequency_insert_action_ = new QAction {tr ("&Insert"), ui_->frequencies_table_view};
|
||||
frequency_insert_action_ = new QAction {tr ("&Insert ..."), ui_->frequencies_table_view};
|
||||
ui_->frequencies_table_view->insertAction (nullptr, frequency_insert_action_);
|
||||
connect (frequency_insert_action_, &QAction::triggered, this, &Configuration::impl::insert_frequency);
|
||||
|
||||
@ -770,7 +770,7 @@ Configuration::impl::impl (Configuration * self, QString const& instance_key, QS
|
||||
ui_->stations_table_view->insertAction (nullptr, station_delete_action_);
|
||||
connect (station_delete_action_, &QAction::triggered, this, &Configuration::impl::delete_stations);
|
||||
|
||||
station_insert_action_ = new QAction {tr ("&Insert"), ui_->stations_table_view};
|
||||
station_insert_action_ = new QAction {tr ("&Insert ..."), ui_->stations_table_view};
|
||||
ui_->stations_table_view->insertAction (nullptr, station_insert_action_);
|
||||
connect (station_insert_action_, &QAction::triggered, this, &Configuration::impl::insert_station);
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<string>Select tab to change configuration parameters.</string>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>1</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="general_tab">
|
||||
<attribute name="title">
|
||||
@ -136,7 +136,7 @@
|
||||
<string>Set the font characteristics for the application.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Font</string>
|
||||
<string>Font ...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -146,7 +146,7 @@
|
||||
<string>Set the font characteristics for the Band Activity and Rx Frequency areas.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Decoded text font</string>
|
||||
<string>Decoded text font ...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -129,10 +129,10 @@ namespace
|
||||
ui_.setupUi (this);
|
||||
|
||||
// context menu actions
|
||||
auto import_button = ui_.button_box->addButton ("&Import", QDialogButtonBox::ActionRole);
|
||||
auto import_button = ui_.button_box->addButton ("&Import...", QDialogButtonBox::ActionRole);
|
||||
connect (import_button, &QPushButton::clicked, this, &Designer::import_palette);
|
||||
|
||||
auto export_button = ui_.button_box->addButton ("&Export", QDialogButtonBox::ActionRole);
|
||||
auto export_button = ui_.button_box->addButton ("&Export...", QDialogButtonBox::ActionRole);
|
||||
connect (export_button, &QPushButton::clicked, this, &Designer::export_palette);
|
||||
|
||||
// hookup the context menu handler
|
||||
@ -203,7 +203,7 @@ namespace
|
||||
});
|
||||
}
|
||||
|
||||
auto insert_action = context_menu_.addAction (tr ("&Insert"));
|
||||
auto insert_action = context_menu_.addAction (tr ("&Insert ..."));
|
||||
connect (insert_action, &QAction::triggered, [this] ()
|
||||
{
|
||||
auto item = ui_.colour_table_widget->itemAt (menu_pos_);
|
||||
@ -211,7 +211,7 @@ namespace
|
||||
insert_new_item (row, QColor {0, 0, 0});
|
||||
});
|
||||
|
||||
auto insert_after_action = context_menu_.addAction (tr ("Insert &after"));
|
||||
auto insert_after_action = context_menu_.addAction (tr ("Insert &after ..."));
|
||||
connect (insert_after_action, &QAction::triggered, [this] ()
|
||||
{
|
||||
auto item = ui_.colour_table_widget->itemAt (menu_pos_);
|
||||
|
@ -2681,7 +2681,7 @@ list. The list can be maintained in Settings (F2).</string>
|
||||
</action>
|
||||
<action name="actionSettings">
|
||||
<property name="text">
|
||||
<string>Configuration</string>
|
||||
<string>Configuration ...</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>F2</string>
|
||||
|
@ -363,7 +363,7 @@
|
||||
<item>
|
||||
<widget class="QPushButton" name="adjust_palette_push_button">
|
||||
<property name="text">
|
||||
<string>Adjust</string>
|
||||
<string>Adjust ...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user