Branding and text string cleanup.

pull/1/head
Darrell Anderson 12 years ago
parent cea632d42e
commit 2a630eabd1

@ -283,10 +283,9 @@ namespace KPF
i18n i18n
( (
"<p>To share files via the web, you need to be" "<p>To share files via the web, you need to be"
" running an 'applet' in your KDE panel. This" " running an 'applet' in your TDE panel named"
" 'applet' is a small program which provides" " kpf. This 'applet' is a small program that"
" file sharing capabilities." " provides public file sharing capabilities.</p>"
"</p>"
), ),
w w
); );
@ -299,7 +298,7 @@ namespace KPF
l->addWidget(about); l->addWidget(about);
d->l_kpfStatus = 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); l->addWidget(d->l_kpfStatus);
@ -508,7 +507,7 @@ namespace KPF
PropertiesDialogPlugin::slotStartKPF() PropertiesDialogPlugin::slotStartKPF()
{ {
d->l_kpfStatus d->l_kpfStatus
->setText(i18n("Applet status: <strong>starting...</strong>")); ->setText(i18n("kpf applet status: <strong>starting...</strong>"));
kapp->dcopClient() kapp->dcopClient()
->send("kicker", "default", "addApplet(TQString)", TQString("kpfapplet.desktop")); ->send("kicker", "default", "addApplet(TQString)", TQString("kpfapplet.desktop"));
@ -520,7 +519,7 @@ namespace KPF
PropertiesDialogPlugin::slotStartKPFFailed() PropertiesDialogPlugin::slotStartKPFFailed()
{ {
d->l_kpfStatus 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); d->pb_startKPF->setEnabled(true);
} }
@ -533,7 +532,7 @@ namespace KPF
d->kpfRunning = true; d->kpfRunning = true;
d->l_kpfStatus d->l_kpfStatus
->setText(i18n("Applet status: <strong>running</strong>")); ->setText(i18n("kpf applet status: <strong>running</strong>"));
d->pb_startKPF->setEnabled(false); d->pb_startKPF->setEnabled(false);
@ -555,7 +554,7 @@ namespace KPF
d->pb_startKPF->setEnabled(true); d->pb_startKPF->setEnabled(true);
d->l_kpfStatus 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); d->stack->raiseWidget(d->initWidget);
} }

Loading…
Cancel
Save