summaryrefslogtreecommitdiff
path: root/app-office
diff options
context:
space:
mode:
Diffstat (limited to 'app-office')
-rw-r--r--app-office/Manifest.gzbin7914 -> 7910 bytes
-rw-r--r--app-office/kraft/Manifest1
-rw-r--r--app-office/kraft/files/kraft-0.95-i18n-warning.patch35
3 files changed, 0 insertions, 36 deletions
diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz
index 46aef9f50ef4..749ad69f1511 100644
--- a/app-office/Manifest.gz
+++ b/app-office/Manifest.gz
Binary files differ
diff --git a/app-office/kraft/Manifest b/app-office/kraft/Manifest
index fbd0789732a8..085b48215804 100644
--- a/app-office/kraft/Manifest
+++ b/app-office/kraft/Manifest
@@ -1,4 +1,3 @@
-AUX kraft-0.95-i18n-warning.patch 1782 BLAKE2B ab0264bc3d07642d6e4b9bff6f3c23dc9726f959d279bf5f6ddf6b672d11c02583c5b75a2412292665e6722eac7af38a8afec13aa4811620cac687de96f3addb SHA512 52741ce146df9c577e3397acda94acac470eb1e3d36b74617148a5890d3aad27416f8c9e3bdc4afcce9af5b5947c0d6d19f529d2c416bb7609ce17f5a106065e
DIST kraft-0.98.tar.gz 968081 BLAKE2B 01221ea11e3d4793b2158f1742a2629759405aed22cc4e2c33e0c2d54862c34eb51f435af11738b383671b254e984a92a3362e9465ebb899054401156f535cba SHA512 f8241ac00d80d45224fdc1d4847724d08ac138ea4c6a95a598b001c977002b2c3e8a9f054a1ac2ac4e86de6de8eff304b11b653a3dc3225ad757c5f5ca501850
EBUILD kraft-0.98.ebuild 1093 BLAKE2B a5ab376f8add697ab5f5b4d14053c64812370cd7e09b7ee729c7949914d3bc9ed08ce5319f5ace72ae8c2ea828ef333abeb566f3f652f8bfc8b89ee94a8f7432 SHA512 2c8a39fc0d9fcbffcaa28f6dfe9838d28adbd89e768c86ae60003155bba438c01fb88b28ffe3c22bbaefd65e31c1927935388ea21d57759eb64ace4c211c919b
MISC metadata.xml 419 BLAKE2B a83ba460958da64af5f23a396d9d8b164c79e12b38c110f8090b6863a66f602420b1c81e4565a50cc2bd4f415efed5054c7248421e73b4c01df202073ff36f53 SHA512 e76650515ec1782b8108f5923a661f028e951e2fb8b745ac6714107c6601dc0050e9e18812b1a9a29f3fc14aba6e81a4bfc4a27f4738ea8060c2296aced3040a
diff --git a/app-office/kraft/files/kraft-0.95-i18n-warning.patch b/app-office/kraft/files/kraft-0.95-i18n-warning.patch
deleted file mode 100644
index 2e189a233caf..000000000000
--- a/app-office/kraft/files/kraft-0.95-i18n-warning.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-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 );
-