Qt: Expert info → Expert information.

Change-Id: I6cf87a1c63a4b34678667396d836d15766155b1a
Reviewed-on: https://code.wireshark.org/review/8420
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2015-05-11 17:14:38 -07:00
parent 0970872a4c
commit a0046c344d
3 changed files with 5 additions and 5 deletions

View File

@ -194,7 +194,7 @@ void MainStatusBar::expertUpdate() {
// <img> won't load @2x versions in Qt versions earlier than 5.4. // <img> won't load @2x versions in Qt versions earlier than 5.4.
// We might have to switch to a QPushButton. // We might have to switch to a QPushButton.
QString img_text = "<a href><img src=\":/expert/expert_"; QString img_text = "<a href><img src=\":/expert/expert_";
QString tt_text = tr(" is the highest expert info level"); QString tt_text = tr(" is the highest expert information level");
switch(expert_get_highest_severity()) { switch(expert_get_highest_severity()) {
case(PI_ERROR): case(PI_ERROR):
@ -218,7 +218,7 @@ void MainStatusBar::expertUpdate() {
// break; // break;
default: default:
img_text.append("none"); img_text.append("none");
tt_text = tr("No expert info"); tt_text = tr("No expert information");
break; break;
} }

View File

@ -2323,7 +2323,7 @@
</action> </action>
<action name="actionAnalyzeExpertInfo"> <action name="actionAnalyzeExpertInfo">
<property name="text"> <property name="text">
<string>Expert Info</string> <string>Expert Information</string>
</property> </property>
<property name="toolTip"> <property name="toolTip">
<string>Show expert notifications</string> <string>Show expert notifications</string>

View File

@ -666,7 +666,7 @@ void MainWindow::captureFileClosing() {
setMenusForSelectedPacket(); setMenusForSelectedPacket();
setForCaptureInProgress(false); setForCaptureInProgress(false);
// Reset expert info indicator // Reset expert information indicator
main_ui_->statusBar->hideExpert(); main_ui_->statusBar->hideExpert();
main_ui_->searchFrame->animatedHide(); main_ui_->searchFrame->animatedHide();
// gtk_widget_show(expert_info_none); // gtk_widget_show(expert_info_none);
@ -680,7 +680,7 @@ void MainWindow::captureFileClosed() {
file_set_dialog_.fileClosed(); file_set_dialog_.fileClosed();
setMenusForFileSet(false); setMenusForFileSet(false);
// Reset expert info indicator // Reset expert information indicator
main_ui_->statusBar->hideExpert(); main_ui_->statusBar->hideExpert();
main_ui_->statusBar->popFileStatus(); main_ui_->statusBar->popFileStatus();