From 2a630eabd114c43e0ef79ddcafec2ba8a6152b06 Mon Sep 17 00:00:00 2001
From: Darrell Anderson
Date: Wed, 27 Jun 2012 14:45:09 -0500
Subject: Branding and text string cleanup.
---
kpf/src/PropertiesDialogPlugin.cpp | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
(limited to 'kpf')
diff --git a/kpf/src/PropertiesDialogPlugin.cpp b/kpf/src/PropertiesDialogPlugin.cpp
index 75a52dde..8cf14a7c 100644
--- a/kpf/src/PropertiesDialogPlugin.cpp
+++ b/kpf/src/PropertiesDialogPlugin.cpp
@@ -283,10 +283,9 @@ namespace KPF
i18n
(
"To share files via the web, you need to be"
- " running an 'applet' in your KDE panel. This"
- " 'applet' is a small program which provides"
- " file sharing capabilities."
- "
"
+ " running an 'applet' in your TDE panel named"
+ " kpf. This 'applet' is a small program that"
+ " provides public file sharing capabilities.
"
),
w
);
@@ -299,7 +298,7 @@ namespace KPF
l->addWidget(about);
d->l_kpfStatus =
- new TQLabel(i18n("Applet status: not running"), w);
+ new TQLabel(i18n("kpf applet status: not running"), w);
l->addWidget(d->l_kpfStatus);
@@ -508,7 +507,7 @@ namespace KPF
PropertiesDialogPlugin::slotStartKPF()
{
d->l_kpfStatus
- ->setText(i18n("Applet status: starting..."));
+ ->setText(i18n("kpf applet status: starting..."));
kapp->dcopClient()
->send("kicker", "default", "addApplet(TQString)", TQString("kpfapplet.desktop"));
@@ -520,7 +519,7 @@ namespace KPF
PropertiesDialogPlugin::slotStartKPFFailed()
{
d->l_kpfStatus
- ->setText(i18n("Applet status: failed to start"));
+ ->setText(i18n("kpf applet status: failed to start"));
d->pb_startKPF->setEnabled(true);
}
@@ -533,7 +532,7 @@ namespace KPF
d->kpfRunning = true;
d->l_kpfStatus
- ->setText(i18n("Applet status: running"));
+ ->setText(i18n("kpf applet status: running"));
d->pb_startKPF->setEnabled(false);
@@ -555,7 +554,7 @@ namespace KPF
d->pb_startKPF->setEnabled(true);
d->l_kpfStatus
- ->setText(i18n("Applet status: not running"));
+ ->setText(i18n("kpf applet status: not running"));
d->stack->raiseWidget(d->initWidget);
}
--
cgit v1.2.1