diff options
author | Slávek Banko <[email protected]> | 2019-01-13 20:38:05 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-01-13 20:38:05 +0100 |
commit | 2c64136fbe745913a66eb10efac6d2cbf53fe46d (patch) | |
tree | 4bb4895f8c5494b32101347e142d66888a6c7ddc | |
parent | 31086d995f07d58479455e9bf2969f5673ba0deb (diff) | |
download | koffice-2c64136fbe745913a66eb10efac6d2cbf53fe46d.tar.gz koffice-2c64136fbe745913a66eb10efac6d2cbf53fe46d.zip |
Fix empty translation.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | kplato/kptprojectdialog.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kplato/kptprojectdialog.cc b/kplato/kptprojectdialog.cc index cef545da..1b547629 100644 --- a/kplato/kptprojectdialog.cc +++ b/kplato/kptprojectdialog.cc @@ -100,15 +100,15 @@ void ProjectDialog::slotSchedulingChanged(int activated) { break; case 2: // Start not earlier then label = label.arg(i18n("Start not Earlier then")); - label = label.arg(i18n("")); + label = label.arg(""); break; case 3: // Finish not later then label = label.arg(i18n("Finish not Later then")); - label = label.arg(i18n("")); + label = label.arg(""); break; case 4: // Must start on label = label.arg(i18n("Must Start on")); - label = label.arg(i18n("")); + label = label.arg(""); break; default: // error ... dia->lSchedulingExplain->setText(""); |