diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-27 14:45:09 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-27 14:45:09 -0500 |
commit | 2a630eabd114c43e0ef79ddcafec2ba8a6152b06 (patch) | |
tree | e21b3c64458a372576bd06c494c257be13a767bf | |
parent | cea632d42e5e31ea71bdd850a0e93fda381ba21a (diff) | |
download | tdenetwork-2a630eabd114c43e0ef79ddcafec2ba8a6152b06.tar.gz tdenetwork-2a630eabd114c43e0ef79ddcafec2ba8a6152b06.zip |
Branding and text string cleanup.
-rw-r--r-- | kpf/src/PropertiesDialogPlugin.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
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 ( "<p>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." - "</p>" + " running an 'applet' in your TDE panel named" + " kpf. This 'applet' is a small program that" + " provides public file sharing capabilities.</p>" ), w ); @@ -299,7 +298,7 @@ namespace KPF l->addWidget(about); d->l_kpfStatus = - new TQLabel(i18n("Applet status: <strong>not running</strong>"), w); + new TQLabel(i18n("kpf applet status: <strong>not running</strong>"), w); l->addWidget(d->l_kpfStatus); @@ -508,7 +507,7 @@ namespace KPF PropertiesDialogPlugin::slotStartKPF() { d->l_kpfStatus - ->setText(i18n("Applet status: <strong>starting...</strong>")); + ->setText(i18n("kpf applet status: <strong>starting...</strong>")); 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: <strong>failed to start</strong>")); + ->setText(i18n("kpf applet status: <strong>failed to start</strong>")); d->pb_startKPF->setEnabled(true); } @@ -533,7 +532,7 @@ namespace KPF d->kpfRunning = true; d->l_kpfStatus - ->setText(i18n("Applet status: <strong>running</strong>")); + ->setText(i18n("kpf applet status: <strong>running</strong>")); d->pb_startKPF->setEnabled(false); @@ -555,7 +554,7 @@ namespace KPF d->pb_startKPF->setEnabled(true); d->l_kpfStatus - ->setText(i18n("Applet status: <strong>not running</strong>")); + ->setText(i18n("kpf applet status: <strong>not running</strong>")); d->stack->raiseWidget(d->initWidget); } |