diff options
author | 2020-09-28 22:43:16 +0200 | |
---|---|---|
committer | 2020-09-28 23:28:23 +0200 | |
commit | a8794f72fc5e0108c0d076feb397b25c8c51bed9 (patch) | |
tree | 41d51e75f9a286f2c7df54351f2f174e64b30955 /app-office/kraft/files | |
parent | kde-apps/ark: Try unrestrict tests again, but disable failing (diff) | |
download | gentoo-a8794f72fc5e0108c0d076feb397b25c8c51bed9.tar.gz gentoo-a8794f72fc5e0108c0d076feb397b25c8c51bed9.tar.bz2 gentoo-a8794f72fc5e0108c0d076feb397b25c8c51bed9.zip |
app-office/kraft: 0.95 version bump
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office/kraft/files')
-rw-r--r-- | app-office/kraft/files/kraft-0.95-i18n-warning.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-office/kraft/files/kraft-0.95-i18n-warning.patch b/app-office/kraft/files/kraft-0.95-i18n-warning.patch new file mode 100644 index 000000000000..2e189a233caf --- /dev/null +++ b/app-office/kraft/files/kraft-0.95-i18n-warning.patch @@ -0,0 +1,35 @@ +From 1e8f15a6c54c0c29cb463deacefd1fe8b32ad41d Mon Sep 17 00:00:00 2001 +From: Klaas Freitag <kraft@freisturz.de> +Date: Wed, 2 Sep 2020 18:32:14 +0200 +Subject: [PATCH] Fix call to i18n - same problem as before.... + +Fixes #85 +--- + src/prefsdialog.cpp | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/src/prefsdialog.cpp b/src/prefsdialog.cpp +index 13b4bcb..ddce27d 100644 +--- a/src/prefsdialog.cpp ++++ b/src/prefsdialog.cpp +@@ -335,15 +335,15 @@ QWidget* PrefsDialog::docTab() + const QDate d = QDate::currentDate(); + mCbDateFormats->setToolTip( i18n( "The default date format for documents." ) ); + QString formattedDate = d.toString(Qt::ISODate); +- mCbDateFormats->insertItem( 0, i18n("ISO-Format: %1").arg(formattedDate)); ++ mCbDateFormats->insertItem( 0, i18n("ISO-Format: %1", formattedDate)); + formattedDate = d.toString(Qt::DefaultLocaleShortDate); +- mCbDateFormats->insertItem( 1, i18n("Short-Date: %1").arg(formattedDate)); ++ mCbDateFormats->insertItem( 1, i18n("Short-Date: %1", formattedDate)); + formattedDate = d.toString(Qt::DefaultLocaleLongDate); +- mCbDateFormats->insertItem( 2, i18n("Long-Date: %1").arg(formattedDate)); ++ mCbDateFormats->insertItem( 2, i18n("Long-Date: %1", formattedDate)); + formattedDate = d.toString(Qt::RFC2822Date); +- mCbDateFormats->insertItem( 3, i18n("RFC 2822-Format: %1").arg(formattedDate)); ++ mCbDateFormats->insertItem( 3, i18n("RFC 2822-Format: %1", formattedDate)); + formattedDate = d.toString("dd.MM.yyyy"); +- mCbDateFormats->insertItem( 4, i18n("\"German Format\": %1").arg(formattedDate)); ++ mCbDateFormats->insertItem( 4, i18n("\"German Format\": %1", formattedDate)); + mCbDateFormats->insertItem( 5, i18n("Custom Setting in Settingsfile")); + vboxLay->addLayout( butLay ); + |