|
|
|
@ -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);
|
|
|
|
|
}
|
|
|
|
|