aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar un1versal2016-02-01 02:23:13 +0000
committerGravatar un1versal2016-02-02 16:25:13 +0000
commit75de89690f7a2f48d152dfa293d0ea37aa7b8b57 (patch)
tree2da6df0a7ec9b39c0734dfca8241a6a871f37e0b
parentOptionsWidget_windowList: remove tooltip center formatting (diff)
downloadKVIrc-75de89690f7a2f48d152dfa293d0ea37aa7b8b57.tar.gz
KVIrc-75de89690f7a2f48d152dfa293d0ea37aa7b8b57.tar.bz2
KVIrc-75de89690f7a2f48d152dfa293d0ea37aa7b8b57.zip
PopupEditorWindow: remove tootip center formatting
-rw-r--r--src/modules/popupeditor/PopupEditorWindow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/popupeditor/PopupEditorWindow.cpp b/src/modules/popupeditor/PopupEditorWindow.cpp
index eb87c8f61..d2b89a7a2 100644
--- a/src/modules/popupeditor/PopupEditorWindow.cpp
+++ b/src/modules/popupeditor/PopupEditorWindow.cpp
@@ -231,7 +231,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pTextEditor = new QLineEdit(this);
m_pTextEditor->setToolTip(
- __tr2qs_ctx("<center><b>Visible text</b><br>May contain identifiers that will be evaluated at popup call time.<br>For labels, this text can contain also limited HTML tags.</center>","editor"));
+ __tr2qs_ctx("<b>Visible text</b><br>May contain identifiers that will be evaluated at popup call time.<br>For labels, this text can contain also limited HTML tags.","editor"));
g->addWidget(m_pTextEditor,2,1,1,2);
l = new QLabel(__tr2qs_ctx("Condition:","editor"),this);
@@ -240,7 +240,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pConditionEditor = new QLineEdit(this);
m_pConditionEditor->setToolTip(
- __tr2qs_ctx("<center><b>Boolean condition</b><br>Will be evaluated at popup call time in order to decide if this entry has to be shown.<br>An empty condition evaluates to true.</center>","editor"));
+ __tr2qs_ctx("<b>Boolean condition</b><br>Will be evaluated at popup call time in order to decide if this entry has to be shown.<br>An empty condition evaluates to true.","editor"));
g->addWidget(m_pConditionEditor,3,1,1,2);
l = new QLabel(__tr2qs_ctx("Icon:","editor"),this);
@@ -249,7 +249,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pIconEditor = new QLineEdit(this);
m_pIconEditor->setToolTip(
- __tr2qs_ctx("<center><b>Icon identifier</b><br>May be an internal icon ID, an absolute path or a relative path.<br>Portable scripts should never use absolute paths.</center>","editor"));
+ __tr2qs_ctx("<b>Icon identifier</b><br>May be an internal icon ID, an absolute path or a relative path.<br>Portable scripts should never use absolute paths.","editor"));
g->addWidget(m_pIconEditor,4,1,1,2);
l = new QLabel(__tr2qs_ctx("External menu:","editor"),this);
@@ -258,7 +258,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pExtNameEditor = new QLineEdit(this);
m_pExtNameEditor->setToolTip(
- __tr2qs_ctx("<center><b>External menu name</b><br>This allows one to nest externally defined popup menus. The popup menu with the specified name will be looked up at menu setup time.</center>","editor"));
+ __tr2qs_ctx("<b>External menu name</b><br>This allows one to nest externally defined popup menus. The popup menu with the specified name will be looked up at menu setup time.","editor"));
g->addWidget(m_pExtNameEditor,5,1,1,2);
l = new QLabel(__tr2qs_ctx("Item ID:","editor"),this);
@@ -268,7 +268,7 @@ SinglePopupEditor::SinglePopupEditor(QWidget * par)
m_pIdEditor = new QLineEdit(this);
m_pIdEditor->setToolTip(
- __tr2qs_ctx("<center><b>Item id</b><br>This will allow you to use delpopupitem later.</center>","editor"));
+ __tr2qs_ctx("<b>Item ID</b><br>This will allow you to use delpopupitem later.","editor"));
g->addWidget(m_pIdEditor,6,1,1,2);
g->setColumnStretch(1,1);
g->setRowStretch(1,1);