File style-guide-fixes.diff of Package kde4-plasmoid-quicklauncher
--- src/quicklauncherAdd.ui 2008/10/28 15:41:27 1.1
+++ src/quicklauncherAdd.ui 2008/10/28 15:41:40
@@ -19,7 +19,7 @@
<item row="0" column="0" >
<widget class="QLabel" name="lblIcon1" >
<property name="text" >
- <string>New Icon</string>
+ <string>New icon:</string>
</property>
</widget>
</item>
--- src/quicklauncherConfig.ui 2008/10/28 15:42:27 1.1
+++ src/quicklauncherConfig.ui 2008/10/28 15:45:02
@@ -2,10 +2,10 @@
<class>quicklauncherConfig</class>
<widget class="QWidget" name="quicklauncherConfig" >
<property name="windowTitle" >
- <string>Configure QuickLauncher</string>
+ <string>QuickLauncher Configuration</string>
</property>
<property name="accessibleName" >
- <string>Configure QuickLauncher</string>
+ <string>QuickLauncher Configuration</string>
</property>
<widget class="QWidget" name="layoutWidget" >
<layout class="QGridLayout" >
--- src/quicklauncher.cpp 2008/10/28 15:42:47 1.1
+++ src/quicklauncher.cpp 2008/10/28 15:43:20
@@ -299,7 +299,7 @@
if(rightClickedIcon > -1) {
if(removeAction == NULL) {
- removeAction = new QAction(KIcon("list-remove"), i18n("Remove Icon..."), this);
+ removeAction = new QAction(KIcon("list-remove"), i18n("Remove Icon"), this);
connect(removeAction, SIGNAL(triggered(bool)), this, SLOT(removeIcon()));
}
tempActions << removeAction;
@@ -312,7 +312,7 @@
{
if (conf_dialog == 0) {
conf_dialog = new KDialog;
- conf_dialog->setCaption(i18n("Configure QuickLauncher"));
+ conf_dialog->setCaption(i18n("QuickLauncher Configuration"));
QWidget *widget = new QWidget;
uiConfig.setupUi(widget);
@@ -333,7 +333,7 @@
{
if (add_dialog == 0) {
add_dialog = new KDialog;
- add_dialog->setCaption(i18n("Add shortcut"));
+ add_dialog->setCaption(i18n("Add Shortcut"));
QWidget *widget = new QWidget;
uiAdd.setupUi(widget);