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:17 +0100 |
commit | 673ce3669f8a8558593fbce52c8eb422dc40d580 (patch) | |
tree | b4ab66de8778c73c6152f32462ccceb5eef6fa42 | |
parent | 986041281eb8c127cfe16883dd8369979876e571 (diff) | |
download | koffice-673ce3669f8a8558593fbce52c8eb422dc40d580.tar.gz koffice-673ce3669f8a8558593fbce52c8eb422dc40d580.zip |
Fix empty translation.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 2c64136fbe745913a66eb10efac6d2cbf53fe46d)
-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(""); |