Fix open/send text in handler
This commit is contained in:
parent
9fd81e11cb
commit
79b42ff80c
1 changed files with 2 additions and 2 deletions
|
@ -102,10 +102,10 @@ int main(int argc, char** argv)
|
|||
uidialog.label->setText(i18n("Device to call %1 with:", displayUrl));
|
||||
} else if (urlToShare.isLocalFile() && open) {
|
||||
displayUrl = urlToShare.toDisplayString(QUrl::PreferLocalFile);
|
||||
uidialog.label->setText(i18n("Device to send %1 to:", displayUrl));
|
||||
uidialog.label->setText(i18n("Device to open %1 on:", displayUrl));
|
||||
} else {
|
||||
displayUrl = urlToShare.toDisplayString(QUrl::PreferLocalFile);
|
||||
uidialog.label->setText(i18n("Device to open %1 on:", displayUrl));
|
||||
uidialog.label->setText(i18n("Device to send %1 to:", displayUrl));
|
||||
}
|
||||
|
||||
dialog.setWindowTitle(displayUrl);
|
||||
|
|
Loading…
Reference in a new issue