diff -Nru kiconthemes-5.18.0/.arcconfig kiconthemes-5.44.0/.arcconfig --- kiconthemes-5.18.0/.arcconfig 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/.arcconfig 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,3 @@ +{ + "phabricator.uri" : "https://phabricator.kde.org/" +} diff -Nru kiconthemes-5.18.0/autotests/breeze.theme kiconthemes-5.44.0/autotests/breeze.theme --- kiconthemes-5.18.0/autotests/breeze.theme 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/autotests/breeze.theme 2018-03-03 10:04:07.000000000 +0000 @@ -4,6 +4,7 @@ Hidden=false Directories=22x22/actions,22x22/animations,22x22/apps,22x22/mimetypes,22x22/appsNoContext,22x22/appsNoType,22x22/appsNoContextOrType Inherits=oxygen +FollowsColorScheme=true [22x22/actions] Size=22 diff -Nru kiconthemes-5.18.0/autotests/CMakeLists.txt kiconthemes-5.44.0/autotests/CMakeLists.txt --- kiconthemes-5.18.0/autotests/CMakeLists.txt 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/autotests/CMakeLists.txt 2018-03-03 10:04:07.000000000 +0000 @@ -7,11 +7,27 @@ foreach(_testname ${ARGN}) set(_srcs ${_testname}.cpp) qt5_add_resources(_srcs resources.qrc) - ecm_add_test(${_srcs} TEST_NAME kiconthemes-${_testname} LINK_LIBRARIES Qt5::Test KF5::IconThemes KF5::WidgetsAddons KF5::ConfigCore) + ecm_add_test(${_srcs} TEST_NAME ${_testname} LINK_LIBRARIES Qt5::Test KF5::IconThemes KF5::WidgetsAddons KF5::ConfigCore) endforeach(_testname) endmacro() kiconthemes_tests( kiconloader_unittest kiconloader_resourcethemetest + kiconloader_benchmark + kicontheme_unittest + kiconengine_unittest + kicondialog_unittest ) + +### Test for RCC loading + +get_target_property(QT_RCC_EXECUTABLE Qt5::rcc LOCATION) +add_custom_command(OUTPUT icontheme.rcc + COMMAND ${QT_RCC_EXECUTABLE} --binary -o icontheme.rcc ${CMAKE_CURRENT_SOURCE_DIR}/icontheme.qrc + DEPENDS icontheme.qrc +) +ecm_add_test(kiconloader_rcctest.cpp LINK_LIBRARIES Qt5::Test KF5::IconThemes KF5::WidgetsAddons KF5::ConfigCore) +add_custom_target(rcctest-rcc ALL DEPENDS icontheme.rcc) # a custom target that is always built + +set_tests_properties(kiconloader_unittest PROPERTIES RUN_SERIAL TRUE) diff -Nru kiconthemes-5.18.0/autotests/coloredsvgicon.svg kiconthemes-5.44.0/autotests/coloredsvgicon.svg --- kiconthemes-5.18.0/autotests/coloredsvgicon.svg 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/coloredsvgicon.svg 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,72 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + + diff -Nru kiconthemes-5.18.0/autotests/icontheme.qrc kiconthemes-5.44.0/autotests/icontheme.qrc --- kiconthemes-5.18.0/autotests/icontheme.qrc 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/icontheme.qrc 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,6 @@ + + + tiny.theme + test-22x22.png + + diff -Nru kiconthemes-5.18.0/autotests/kicondialog_unittest.cpp kiconthemes-5.44.0/autotests/kicondialog_unittest.cpp --- kiconthemes-5.18.0/autotests/kicondialog_unittest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kicondialog_unittest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,53 @@ +/* This file is part of the KDE libraries + Copyright 2016 David Faure + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include + +#include +#include +#include + +#include +#include + +class KIconDialogTest : public QObject +{ + Q_OBJECT + +private Q_SLOTS: + void initTestCase() + { + QStandardPaths::setTestModeEnabled(true); + + // set our test theme only present in :/icons + KConfigGroup cg(KSharedConfig::openConfig(), "Icons"); + cg.writeEntry("Theme", "themeinresource"); + cg.sync(); + } + + void testConstructor() + { + // At least we test that we don't hit any assert + KIconDialog iconDialog; + } +}; + +QTEST_MAIN(KIconDialogTest) + +#include "kicondialog_unittest.moc" diff -Nru kiconthemes-5.18.0/autotests/kiconengine_unittest.cpp kiconthemes-5.44.0/autotests/kiconengine_unittest.cpp --- kiconthemes-5.18.0/autotests/kiconengine_unittest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kiconengine_unittest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,145 @@ +/* + Copyright (C) 2016 David Rosca + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include +#include + +#include +#include +#include +#include + +extern KICONTHEMES_EXPORT int kiconloader_ms_between_checks; + +class KIconEngine_UnitTest : public QObject +{ + Q_OBJECT + +private Q_SLOTS: + void initTestCase() + { + QStandardPaths::setTestModeEnabled(true); + + // Remove icon cache + const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/icon-cache.kcache"; + QFile::remove(cacheFile); + + KConfigGroup cg(KSharedConfig::openConfig(), "Icons"); + cg.writeEntry("Theme", "oxygen"); + cg.sync(); + + QDir testDataDir(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation)); + testIconsDir = QDir(testDataDir.absoluteFilePath(QStringLiteral("icons"))); + + // we will be recursively deleting these, so a sanity check is in order + QVERIFY(testIconsDir.absolutePath().contains(QStringLiteral("qttest"))); + + testIconsDir.removeRecursively(); + + // set up a minimal Oxygen icon theme, in case it is not installed + QVERIFY(testIconsDir.mkpath(QStringLiteral("oxygen/22x22/apps"))); + QVERIFY(QFile::copy(QStringLiteral(":/oxygen.theme"), testIconsDir.filePath(QStringLiteral("oxygen/index.theme")))); + QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("oxygen/22x22/apps/kde.png")))); + QVERIFY(testIconsDir.mkpath(QStringLiteral("oxygen/22x22/actions"))); // we need the dir to exist since KIconThemes caches mDirs + + // Clear SHM cache + KIconLoader::global()->reconfigure(QString()); + } + + void testValidIconName() + { + QIcon icon(new KIconEngine(QStringLiteral("kde"), KIconLoader::global())); + QVERIFY(!icon.isNull()); + QVERIFY(!icon.name().isEmpty()); + } + + void testInvalidIconName() + { + QIcon icon(new KIconEngine(QStringLiteral("invalid-icon-name"), KIconLoader::global())); + QVERIFY(icon.isNull()); + QVERIFY2(icon.name().isEmpty(), qPrintable(icon.name())); + } + + void testUnknownIconNotCached() // QIcon version of the test in kiconloader_unittest.cpp + { + // This is a test to ensure that "unknown" icons are cached as unknown + // for performance reasons, but after a while they'll be looked up again + // so that newly installed icons can be used without a reboot. + + kiconloader_ms_between_checks = 500000; + + QString actionIconsSubdir = QStringLiteral("oxygen/22x22/actions"); + QVERIFY(testIconsDir.mkpath(actionIconsSubdir)); + QString actionIconsDir = testIconsDir.filePath(actionIconsSubdir); + + QString nonExistingIconName = QStringLiteral("asvdfg_fhqwhgds"); + QString newIconPath = actionIconsDir + QLatin1String("/") + + nonExistingIconName + QLatin1String(".png"); + QFile::remove(newIconPath); + + // Find a non-existent icon + QIcon icon(new KIconEngine(nonExistingIconName, KIconLoader::global())); + QVERIFY(icon.isNull()); + QVERIFY(icon.name().isEmpty()); + + // Install the existing icon by copying. + QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), newIconPath)); + + // Attempt to find the icon again, the cache will still be used for now. + QIcon icon2(new KIconEngine(nonExistingIconName, KIconLoader::global())); + QVERIFY(icon2.isNull()); + QVERIFY(icon2.name().isEmpty()); + + // Force a recheck to happen on next lookup + kiconloader_ms_between_checks = 0; + + // Verify the icon can now be found. + QIcon nowExistingIcon(new KIconEngine(nonExistingIconName, KIconLoader::global())); + QVERIFY(!nowExistingIcon.isNull()); + QCOMPARE(nowExistingIcon.name(), nonExistingIconName); + + // And verify again, this time with the cache + kiconloader_ms_between_checks = 50000; + QIcon icon3(new KIconEngine(nonExistingIconName, KIconLoader::global())); + QVERIFY(!icon3.isNull()); + QCOMPARE(icon3.name(), nonExistingIconName); + + } + + void testCenterIcon() + { + QIcon icon(new KIconEngine(QStringLiteral("kde"), KIconLoader::global())); + QVERIFY(!icon.isNull()); + + // "kde" icon is actually "test-22x22.png", so this is original icon image + const QImage image = icon.pixmap(22, 22).toImage(); + + // center vertically + QVERIFY(icon.pixmap(22, 26).toImage().copy(0, 2, 22, 22) == image); + + // center horizontally + QVERIFY(icon.pixmap(26, 22).toImage().copy(2, 0, 22, 22) == image); + } +private: + QDir testIconsDir; +}; + +QTEST_MAIN(KIconEngine_UnitTest) + +#include "kiconengine_unittest.moc" diff -Nru kiconthemes-5.18.0/autotests/kiconloader_benchmark.cpp kiconthemes-5.44.0/autotests/kiconloader_benchmark.cpp --- kiconthemes-5.18.0/autotests/kiconloader_benchmark.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kiconloader_benchmark.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,132 @@ +/* This file is part of the KDE libraries + Copyright 2016 Aleix Pol Gonzalez + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include +#include + +#include +#include + +class KIconLoader_Benchmark : public QObject +{ + Q_OBJECT +private Q_SLOTS: + + void init() { +#if 0 // Enable this code to benchmark very first startup. + // Starting the application again uses the on-disk cache, so actually benchmarking -with- a cache is more relevant. + // Remove icon cache + const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/icon-cache.kcache"; + QFile::remove(cacheFile); + + // Clear SHM cache + KIconLoader::global()->reconfigure(QString()); +#endif + } + + void benchmarkExistingIcons() { + //icon list I get to load kwrite + static QStringList icons = { + QStringLiteral("accessories-text-editor"), + QStringLiteral("bookmarks"), + QStringLiteral("dialog-close"), + QStringLiteral("edit-cut"), + QStringLiteral("edit-paste"), + QStringLiteral("edit-copy"), + QStringLiteral("document-save"), + QStringLiteral("edit-undo"), + QStringLiteral("edit-redo"), + QStringLiteral("code-context"), + QStringLiteral("document-print"), + QStringLiteral("document-print-preview"), + QStringLiteral("view-refresh"), + QStringLiteral("document-save-as"), + QStringLiteral("preferences-other"), + QStringLiteral("edit-select-all"), + QStringLiteral("zoom-in"), + QStringLiteral("zoom-out"), + QStringLiteral("edit-find"), + QStringLiteral("go-down-search"), + QStringLiteral("go-up-search"), + QStringLiteral("tools-check-spelling"), + QStringLiteral("bookmark-new"), + QStringLiteral("format-indent-more"), + QStringLiteral("format-indent-less"), + QStringLiteral("text-plain"), + QStringLiteral("go-up"), + QStringLiteral("go-down"), + QStringLiteral("dialog-ok"), + QStringLiteral("dialog-cancel"), + QStringLiteral("window-close"), + QStringLiteral("document-new"), + QStringLiteral("document-open"), + QStringLiteral("document-open-recent"), + QStringLiteral("window-new"), + QStringLiteral("application-exit"), + QStringLiteral("show-menu"), + QStringLiteral("configure-shortcuts"), + QStringLiteral("configure-toolbars"), + QStringLiteral("help-contents"), + QStringLiteral("help-contextual"), + QStringLiteral("tools-report-bug"), + QStringLiteral("preferences-desktop-locale"), + QStringLiteral("kde") + }; + + QBENCHMARK { + foreach (const QString &iconName, icons) { + const QIcon icon = QIcon::fromTheme(iconName); + if(icon.isNull()) + QSKIP("missing icons"); + QVERIFY(!icon.pixmap(24, 24).isNull()); + //QVERIFY(!icon.pixmap(512, 512).isNull()); + } + } + } + + void benchmarkNonExistingIcon_notCached() + { + QBENCHMARK { + // Remove icon cache + const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/icon-cache.kcache"; + QFile::remove(cacheFile); + // Clear SHM cache + KIconLoader::global()->reconfigure(QString()); + + QIcon icon(new KIconEngine(QStringLiteral("invalid-icon-name"), KIconLoader::global())); + QVERIFY(icon.isNull()); + QVERIFY2(icon.name().isEmpty(), qPrintable(icon.name())); + QVERIFY(!icon.pixmap(QSize(16, 16), QIcon::Normal).isNull()); + } + } + + void benchmarkNonExistingIcon_cached() + { + QBENCHMARK { + QIcon icon(new KIconEngine(QStringLiteral("invalid-icon-name"), KIconLoader::global())); + QVERIFY(icon.isNull()); + QVERIFY2(icon.name().isEmpty(), qPrintable(icon.name())); + QVERIFY(!icon.pixmap(QSize(16, 16), QIcon::Normal).isNull()); + } + } +}; + +QTEST_MAIN(KIconLoader_Benchmark) + +#include "kiconloader_benchmark.moc" diff -Nru kiconthemes-5.18.0/autotests/kiconloader_rcctest.cpp kiconthemes-5.44.0/autotests/kiconloader_rcctest.cpp --- kiconthemes-5.18.0/autotests/kiconloader_rcctest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kiconloader_rcctest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,97 @@ +/* This file is part of the KDE libraries + Copyright 2015 Christoph Cullmann + Copyright 2016 David Faure + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include +#include + +#include +#include +#include +#include + +#include +#include + +// Install icontheme.rcc where KIconThemes will find it. +// This must be done before QCoreApplication is even created, given the Q_COREAPP_STARTUP_FUNCTION in kiconthemes +void earlyInit() +{ + QStandardPaths::enableTestMode(true); + qputenv("XDG_DATA_DIRS", "/doesnotexist"); // ensure hicolor/oxygen/breeze are not found + QFile rcc(QStringLiteral("icontheme.rcc")); + Q_ASSERT(rcc.exists()); + QCoreApplication::setApplicationName(QStringLiteral("myappname")); // for a fixed location on Unix (appname is empty here otherwise) + const QString destDir = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); + QDir().mkpath(destDir); + const QString dest = destDir + "/icontheme.rcc"; + QFile::remove(dest); + if (!rcc.copy(dest)) { + qWarning() << "Error copying to" << dest; + } +} +Q_CONSTRUCTOR_FUNCTION(earlyInit) + +class KIconLoader_RCCThemeTest : public QObject +{ + Q_OBJECT + +private Q_SLOTS: + void initTestCase() + { + // Remove icon cache + const QString cacheFile = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + "/icon-cache.kcache"; + QFile::remove(cacheFile); + + // Clear SHM cache + KIconLoader::global()->reconfigure(QString()); + } + + void testThemeName() + { + QCOMPARE(QIcon::themeName(), m_internalThemeName); + } + + void testQIconFromTheme() + { + // load icon with Qt API + QVERIFY(!QIcon::fromTheme(QStringLiteral("someiconintheme")).isNull()); + } + + void testKIconLoader() + { + // Check that direct usage of KIconLoader (e.g. from KToolBar) works + QVERIFY(KIconLoader::global()->theme()); + QCOMPARE(KIconLoader::global()->theme()->internalName(), m_internalThemeName); + + // load icon with KIconLoader API (unlikely to happen in reality) + QString path; + KIconLoader::global()->loadIcon(QStringLiteral("someiconintheme"), KIconLoader::Desktop, 22, + KIconLoader::DefaultState, QStringList(), + &path); + QCOMPARE(path, QString(QStringLiteral(":/icons/") + m_internalThemeName + QStringLiteral("/22x22/appsNoContext/someiconintheme.png"))); + + } +private: + const QString m_internalThemeName = QStringLiteral("kf5_rcc_theme"); +}; + +QTEST_MAIN(KIconLoader_RCCThemeTest) + +#include "kiconloader_rcctest.moc" diff -Nru kiconthemes-5.18.0/autotests/kiconloader_unittest.cpp kiconthemes-5.44.0/autotests/kiconloader_unittest.cpp --- kiconthemes-5.18.0/autotests/kiconloader_unittest.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kiconloader_unittest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -21,22 +21,31 @@ #include #include +#include #include +#include #include #include #include +extern KICONTHEMES_EXPORT void uintToHex(uint32_t colorData, QChar *buffer); + class KIconLoader_UnitTest : public QObject { Q_OBJECT +public: + KIconLoader_UnitTest() + : testSizes({ 12, 22, 32, 42, 82, 132, 243 }) + {} private: QDir testDataDir; QDir testIconsDir; QString appName; QDir appDataDir; + const QVector testSizes; private Q_SLOTS: void initTestCase() @@ -93,7 +102,9 @@ QVERIFY(testIconsDir.mkpath(QStringLiteral("breeze/22x22/appsNoContext"))); QVERIFY(testIconsDir.mkpath(QStringLiteral("breeze/22x22/appsNoType"))); QVERIFY(testIconsDir.mkpath(QStringLiteral("breeze/22x22/appsNoContextOrType"))); - QVERIFY(QFile::copy(QStringLiteral(":/breeze.theme"), testIconsDir.filePath(QStringLiteral("breeze/index.theme")))); + + const QString breezeThemeFile = testIconsDir.filePath(QStringLiteral("breeze/index.theme")); + QVERIFY(QFile::copy(QStringLiteral(":/breeze.theme"), breezeThemeFile)); //kde.png is missing, it should fallback to oxygen //QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("breeze/22x22/apps/kde.png")))); QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("breeze/22x22/appsNoContext/iconindirectorywithoutcontext.png")))); @@ -107,12 +118,40 @@ QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("breeze/22x22/mimetypes/x-office-document.png")))); QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("breeze/22x22/mimetypes/audio-x-generic.png")))); QVERIFY(QFile::copy(QStringLiteral(":/test-22x22.png"), testIconsDir.filePath(QStringLiteral("breeze/22x22/mimetypes/unknown.png")))); + QVERIFY(QFile::copy(QStringLiteral(":/coloredsvgicon.svg"), testIconsDir.filePath(QStringLiteral("breeze/22x22/apps/coloredsvgicon.svg")))); + + QVERIFY(QFile::setPermissions(breezeThemeFile, QFileDevice::ReadOwner|QFileDevice::WriteOwner)); + KConfig configFile(breezeThemeFile); + KConfigGroup iconThemeGroup = configFile.group("Icon Theme"); + QVERIFY(iconThemeGroup.isValid()); + QStringList dirs = iconThemeGroup.readEntry("Directories", QStringList()); + Q_FOREACH(int i, testSizes) { + const QString relDir = QStringLiteral("%1x%1/emblems").arg(i); + const QString dir = testIconsDir.filePath(QStringLiteral("breeze/") + relDir); + QVERIFY(QDir().mkpath(dir)); + + QPixmap img(i, i); + img.fill(Qt::red); + QVERIFY(img.save(dir + "/red.png")); + + dirs += relDir; + KConfigGroup dirGroup = configFile.group(relDir); + dirGroup.writeEntry("Size", i); + dirGroup.writeEntry("Context", "Emblems"); + dirGroup.writeEntry("Type", "Fixed"); + } + iconThemeGroup.writeEntry("Directories", dirs); + QVERIFY(configFile.sync()); } void cleanupTestCase() { - testIconsDir.removeRecursively(); - appDataDir.removeRecursively(); + if (testIconsDir != QDir()) { + testIconsDir.removeRecursively(); + } + if (appDataDir != QDir()) { + appDataDir.removeRecursively(); + } } void init() @@ -177,7 +216,7 @@ QCOMPARE(pix.size(), QSize(16, 16)); // And now set canReturnNull to true pix = iconLoader.loadIcon(QStringLiteral("this-icon-does-not-exist"), KIconLoader::Desktop, 16, KIconLoader::DefaultState, - QStringList(), 0, true); + QStringList(), nullptr, true); QVERIFY(pix.isNull()); // Try getting the "unknown" icon again, to see if the above call didn't put a null icon into the cache... pix = iconLoader.loadIcon(QStringLiteral("this-icon-does-not-exist"), KIconLoader::Desktop, 16); @@ -427,6 +466,63 @@ KPixmapSequence seq = KIconLoader::global()->loadPixmapSequence(QStringLiteral("process-working"), 22); QVERIFY(seq.isValid()); } + + void testAppropriateSizes() { + const KIconLoader iconLoader; + const QRegularExpression rx(QStringLiteral("/(\\d+)x\\d+/")); + for(int i=1; i= i) { + ts = curr; + break; + } + } + QVERIFY(ts == foundSize); + } + } + + void testColoredSvgIcon() + { + QPalette pal = qApp->palette(); + pal.setColor(QPalette::WindowText, QColor(255, 0, 0)); + qApp->setPalette(pal); + QImage img = KIconLoader::global()->loadIcon(QStringLiteral("coloredsvgicon"), KIconLoader::NoGroup).toImage(); + QVERIFY(!img.isNull()); + //Has the image been recolored to red, + //that is the color we wrote in kdeglobals as text color? + QCOMPARE(img.pixel(0,0), (uint)4294901760); + } + + void testUintToHex() + { + // HEX (ARGB format without the #): ff6496c8 + QColor testColorNoAlpha(100, 150, 200); + + // The ARGB string in which the composed hex value is stored. + QString argbHex(8, Qt::Uninitialized); + + // Verify the ARGB hex (ff6496c8) + uintToHex(testColorNoAlpha.rgba(), argbHex.data()); + QCOMPARE(argbHex, QString("ff6496c8")); + + // HEX (ARGB format without the #): 7b6496c8 + QColor testColorWithAlpha(100, 150, 200, 123); + + // Test uintToHex to verify its ARGB output. + uintToHex(testColorWithAlpha.rgba(), argbHex.data()); + QCOMPARE(argbHex, QString("7b6496c8")); + } }; QTEST_MAIN(KIconLoader_UnitTest) diff -Nru kiconthemes-5.18.0/autotests/kicontheme_unittest.cpp kiconthemes-5.44.0/autotests/kicontheme_unittest.cpp --- kiconthemes-5.18.0/autotests/kicontheme_unittest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/kicontheme_unittest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,60 @@ +/* + Copyright (C) 2016 Harald Sitter + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include +#include + +#include + +class KIconTheme_UnitTest : public QObject +{ + Q_OBJECT + +private Q_SLOTS: + void initTestCase() + { + QStandardPaths::setTestModeEnabled(true); + } + + void init() + { + KIconTheme::forceThemeForTests(QString()); // Reset override. + } + + void testForceThemeForTests() + { + auto forcedName = QStringLiteral("kitten"); + auto resolvedCurrent = KIconTheme::current(); + QVERIFY2(KIconTheme::current() != forcedName, + "current theme initially expected to not be mangled"); + // Force a specific theme. + KIconTheme::forceThemeForTests(forcedName); + QCOMPARE(KIconTheme::current(), forcedName); + // Reset override. + KIconTheme::forceThemeForTests(QString()); + QCOMPARE(KIconTheme::current(), resolvedCurrent); + // And then override again to make sure we still can. + KIconTheme::forceThemeForTests(forcedName); + QCOMPARE(KIconTheme::current(), forcedName); + } +}; + +QTEST_MAIN(KIconTheme_UnitTest) + +#include "kicontheme_unittest.moc" diff -Nru kiconthemes-5.18.0/autotests/resources.qrc kiconthemes-5.44.0/autotests/resources.qrc --- kiconthemes-5.18.0/autotests/resources.qrc 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/autotests/resources.qrc 2018-03-03 10:04:07.000000000 +0000 @@ -6,6 +6,7 @@ anim-22x22.png oxygen.theme breeze.theme + coloredsvgicon.svg breeze.theme test-22x22.png diff -Nru kiconthemes-5.18.0/autotests/tiny.theme kiconthemes-5.44.0/autotests/tiny.theme --- kiconthemes-5.18.0/autotests/tiny.theme 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/autotests/tiny.theme 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,38 @@ +[Icon Theme] +Name=Tiny +Comment=Tiny icon theme +Hidden=false +Directories=22x22/actions,22x22/animations,22x22/apps,22x22/mimetypes,22x22/appsNoContext,22x22/appsNoType,22x22/appsNoContextOrType +Inherits=hicolor +FollowsColorScheme=true + +[22x22/actions] +Size=22 +Context=Actions +Type=Threshold + +[22x22/animations] +Size=22 +Context=Animations +Type=Threshold + +[22x22/apps] +Size=22 +Context=Applications +Type=Threshold + +[22x22/mimetypes] +Size=22 +Context=MimeTypes +Type=Threshold + +[22x22/appsNoContext] +Size=22 +Type=Threshold + +[22x22/appsNoType] +Size=22 +Context=MimeTypes + +[22x22/appsNoContextOrType] +Size=22 diff -Nru kiconthemes-5.18.0/CMakeLists.txt kiconthemes-5.44.0/CMakeLists.txt --- kiconthemes-5.18.0/CMakeLists.txt 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/CMakeLists.txt 2018-03-03 10:04:07.000000000 +0000 @@ -1,39 +1,44 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0) -project(KIconThemes) +set(KF5_VERSION "5.44.0") # handled by release scripts +set(KF5_DEP_VERSION "5.44.0") # handled by release scripts +project(KIconThemes VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.18.0 NO_MODULE) +find_package(ECM 5.44.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) include(KDEInstallDirs) -include(KDEFrameworkCompilerSettings) +include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) include(GenerateExportHeader) include(ECMSetupVersion) include(ECMGenerateHeaders) include(ECMMarkNonGuiExecutable) +include(ECMQtDeclareLoggingCategory) +include(ECMAddQch) -set(KF5_VERSION "5.18.0") # handled by release scripts -set(KF5_DEP_VERSION "5.18.0") # handled by release scripts +option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) +add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") -ecm_setup_version(${KF5_VERSION} +ecm_setup_version(PROJECT VARIABLE_PREFIX KICONTHEMES VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kiconthemes_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5IconThemesConfigVersion.cmake" SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.3.0) +set(REQUIRED_QT_VERSION 5.7.0) find_package(Qt5Widgets ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) find_package(Qt5Svg ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) find_package(Qt5DBus ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE) +find_package(KF5Archive ${KF5_DEP_VERSION} REQUIRED) find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED) find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) find_package(KF5ConfigWidgets ${KF5_DEP_VERSION} REQUIRED) @@ -55,9 +60,19 @@ # create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5IconThemes") -include(ECMPackageConfigHelpers) +if (BUILD_QCH) + ecm_install_qch_export( + TARGETS KF5IconThemes_QCH + FILE KF5IconThemesQchTargets.cmake + DESTINATION "${CMAKECONFIG_INSTALL_DIR}" + COMPONENT Devel + ) + set(PACKAGE_INCLUDE_QCHTARGETS "include(\"\${CMAKE_CURRENT_LIST_DIR}/KF5IconThemesQchTargets.cmake\")") +endif() + +include(CMakePackageConfigHelpers) -ecm_configure_package_config_file( +configure_package_config_file( "${CMAKE_CURRENT_SOURCE_DIR}/KF5IconThemesConfig.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/KF5IconThemesConfig.cmake" INSTALL_DESTINATION ${CMAKECONFIG_INSTALL_DIR} diff -Nru kiconthemes-5.18.0/debian/changelog kiconthemes-5.44.0/debian/changelog --- kiconthemes-5.18.0/debian/changelog 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/changelog 2019-11-29 20:21:22.000000000 +0000 @@ -1,3 +1,215 @@ +kiconthemes (5.44.0-0ubuntu1~16.04.sav0) xenial; urgency=medium + + * Backport to Xenial + + -- Rob Savoury Fri, 29 Nov 2019 12:21:22 -0800 + +kiconthemes (5.43.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.43.0) + + -- Rik Mills Sun, 11 Feb 2018 11:15:20 +0000 + +kiconthemes (5.42.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.42.0) + + -- Rik Mills Fri, 26 Jan 2018 22:21:28 +0000 + +kiconthemes (5.41.0-0ubuntu1) bionic; urgency=low + + * New upstream release (5.41.0) + + -- Walter Lapchynski Sun, 10 Dec 2017 22:05:32 -0600 + +kiconthemes (5.40.0-0ubuntu1) bionic; urgency=medium + + * New upstream release (5.39.0) + * Update symbols from build logs + * New upstream release (5.40.0) + + -- Rik Mills Fri, 24 Nov 2017 17:16:27 +0000 + +kiconthemes (5.38.0-0ubuntu1) artful; urgency=medium + + * Update sybmols from build logs. Remove private symbols now upstream + changes ensure these are no longer leaked + * New upstream release (5.38.0) + + -- Rik Mills Mon, 11 Sep 2017 13:15:35 +0100 + +kiconthemes (5.37.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.37.0) + + -- Rik Mills Sat, 12 Aug 2017 18:49:19 +0100 + +kiconthemes (5.36.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.36.0) + + -- José Manuel Santamaría Lema Tue, 11 Jul 2017 23:53:56 +0100 + +kiconthemes (5.35.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.35.0) + + -- José Manuel Santamaría Lema Mon, 12 Jun 2017 22:59:18 +0100 + +kiconthemes (5.34.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.34.0) + + -- José Manuel Santamaría Lema Mon, 15 May 2017 21:27:12 +0100 + +kiconthemes (5.33.0-0ubuntu1) artful; urgency=low + + * New upstream release (5.33.0) + + -- José Manuel Santamaría Lema Sat, 29 Apr 2017 18:06:50 +0100 + +kiconthemes (5.31.0-0ubuntu1) zesty; urgency=medium + + * Pass '-fno-keep-inline-functions' to gcc in the acc test in order to + avoid possible spurious test failures. + * Use the build-needed restriction instead of rebuilding the package + instead of rebuilding the package in debian/tests/testuite. + * New upstream release (5.31.0) + + -- José Manuel Santamaría Lema Tue, 14 Feb 2017 22:52:06 +0000 + +kiconthemes (5.30.0-0ubuntu1) zesty; urgency=low + + * New upstream release (5.30.0) + + -- Rik Mills Wed, 01 Feb 2017 18:35:54 +0000 + +kiconthemes (5.28.0-0ubuntu1) zesty; urgency=low + + [ Rik Mills ] + * New upstream release (5.27.0) + * Merge with debian/master + + [ José Manuel Santamaría Lema ] + * Update Vcs-Git field to use https:// instead of git:// + * New upstream release (5.28.0) + + -- José Manuel Santamaría Lema Mon, 05 Dec 2016 20:18:10 +0000 + +kiconthemes (5.27.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + [ Maximiliano Curia ] + * New upstream release (5.27) + * Bump group breaks (5.27) + + -- Maximiliano Curia Sat, 15 Oct 2016 17:03:16 +0200 + +kiconthemes (5.26.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + + [ Maximiliano Curia ] + * Bump group breaks (5.26) + * Replace dbus-launch with dbus-run-session in tests + + -- Maximiliano Curia Thu, 29 Sep 2016 12:01:04 +0200 + +kiconthemes (5.26.0-0ubuntu1) yakkety; urgency=low + + * New upstream release (5.26.0) + * Refresh symbols from build logs + + -- Rik Mills Thu, 22 Sep 2016 13:45:28 +0100 + +kiconthemes (5.25.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Update symbols files. + + [ Maximiliano Curia ] + * Bump group breaks (5.25) + + -- Maximiliano Curia Sat, 20 Aug 2016 09:58:31 +0200 + +kiconthemes (5.24.0-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.24.0) + + -- Philip Muškovac Tue, 26 Jul 2016 08:41:39 +0000 + +kiconthemes (5.23.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Update symbols files. + + -- Maximiliano Curia Sun, 19 Jun 2016 18:43:55 +0200 + +kiconthemes (5.23.0-0ubuntu1) yakkety; urgency=medium + + * New upstream release (5.23.0) + + -- Clive Johnston Mon, 11 Jul 2016 22:12:56 +0200 + +kiconthemes (5.22.0-1) unstable; urgency=medium + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Update symbols files. + + -- Maximiliano Curia Thu, 19 May 2016 17:21:15 +0200 + +kiconthemes (5.22.0-0ubuntu1) yakkety; urgency=medium + + [ Scarlett Clark ] + * New upstream release. + * Debian merge: No remaining changes. + + [ Philip Muškovac ] + * Update the Vcs URLs now that the repositories are hosted on + Launchpad + + [ Clive Johnston ] + * New upstream release + * Refresh symbols + * Adding new build dep libkf5archive-dev + * Refreshing symbols again + + -- Clive Johnston Tue, 17 May 2016 16:25:22 -0700 + +kiconthemes (5.21.0-1) experimental; urgency=medium + + [ Maximiliano Curia ] + * Replace the "Historical name" ddeb-migration by its "Modern, clearer" replacement dbgsym-migration. + * Add upstream metadata (DEP-12) + * debian/control: Update Vcs-Browser and Vcs-Git fields + * Update acc test script + * uscan no longer supports more than one main upstream tarball being listed + + [ Automatic packaging ] + * Update build-deps and deps with the info from cmake + * Bump Standards-Version to 3.9.8 + + -- Maximiliano Curia Tue, 10 May 2016 15:31:20 +0200 + +kiconthemes (5.19.0-1) experimental; urgency=medium + + * New upstream release (5.19.0). + + -- Maximiliano Curia Sat, 13 Feb 2016 15:16:02 +0100 + +kiconthemes (5.18.0-1) experimental; urgency=medium + + * New upstream release (5.17.0). + * New upstream release (5.18.0). + + -- Maximiliano Curia Wed, 27 Jan 2016 13:33:39 +0100 + kiconthemes (5.18.0-0ubuntu1) xenial; urgency=medium [ Scarlett Clark ] @@ -6,7 +218,7 @@ [ Philip Muškovac ] * New upstream release - -- Philip Muškovac Mon, 07 Mar 2016 23:21:44 +0100 + -- Philip Muškovac Wed, 06 Jan 2016 15:02:38 +0100 kiconthemes (5.16.0-1) unstable; urgency=medium diff -Nru kiconthemes-5.18.0/debian/control kiconthemes-5.44.0/debian/control --- kiconthemes-5.18.0/debian/control 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/control 2018-03-12 19:57:44.000000000 +0000 @@ -5,19 +5,20 @@ Uploaders: Maximiliano Curia Build-Depends: cmake (>= 2.8.12), debhelper (>= 9), - extra-cmake-modules (>= 5.18.0~), - libkf5configwidgets-dev (>= 5.18.0~), - libkf5coreaddons-dev (>= 5.18.0~), - libkf5i18n-dev (>= 5.18.0~), - libkf5itemviews-dev (>= 5.18.0~), - libkf5widgetsaddons-dev (>= 5.18.0~), - libqt5svg5-dev (>= 5.4), + extra-cmake-modules (>= 5.44.0~), + libkf5archive-dev (>= 5.44.0~), + libkf5configwidgets-dev (>= 5.44.0~), + libkf5coreaddons-dev (>= 5.44.0~), + libkf5i18n-dev (>= 5.44.0~), + libkf5itemviews-dev (>= 5.44.0~), + libkf5widgetsaddons-dev (>= 5.44.0~), + libqt5svg5-dev (>= 5.6.1~), pkg-kde-tools (>= 0.15.15ubuntu1~), - qtbase5-dev (>= 5.4) -Standards-Version: 3.9.6 + qtbase5-dev (>= 5.6.1~) +Standards-Version: 3.9.8 Homepage: https://projects.kde.org/projects/frameworks/kiconthemes -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-kde/frameworks/kiconthemes.git -Vcs-Git: git://anonscm.debian.org/pkg-kde/frameworks/kiconthemes.git +Vcs-Browser: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kiconthemes +Vcs-Git: https://git.launchpad.net/~kubuntu-packagers/kubuntu-packaging/+git/kiconthemes Package: libkf5iconthemes-bin Architecture: any @@ -28,15 +29,25 @@ . This package contains runtime binaries. +Package: libkf5iconthemes-data +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Support for icon themes. + Library to use/access icon themes in Qt. These classes + are used by the iconloader but can be used by others too. + . + This package contains the data files. + Package: libkf5iconthemes-dev -Section: libdevel Architecture: any -Depends: libkf5configwidgets-dev (>= 5.16.0~), - libkf5i18n-dev (>= 5.16.0~), +Section: libdevel +Depends: libkf5configwidgets-dev (>= 5.44.0~), + libkf5i18n-dev (>= 5.44.0~), libkf5iconthemes5 (= ${binary:Version}), - libkf5itemviews-dev (>= 5.16.0~), - libkf5widgetsaddons-dev (>= 5.16.0~), - qtbase5-dev (>= 5.4), + libkf5itemviews-dev (>= 5.44.0~), + libkf5widgetsaddons-dev (>= 5.44.0~), + qtbase5-dev (>= 5.6.1~), ${misc:Depends} Description: development files for kiconthemes Library to use/access icon themes in Qt. These classes @@ -49,30 +60,8 @@ Multi-Arch: same Depends: libkf5iconthemes-data (= ${source:Version}), ${misc:Depends}, - ${shlibs:Depends} + ${shlibs:Depends}, Recommends: libkf5iconthemes-bin (= ${binary:Version}) Description: Support for icon themes. Library to use/access icon themes in Qt. These classes are used by the iconloader but can be used by others too. - -Package: libkf5iconthemes-data -Architecture: all -Depends: ${misc:Depends}, ${shlibs:Depends} -Multi-Arch: foreign -Description: Support for icon themes. - Library to use/access icon themes in Qt. These classes - are used by the iconloader but can be used by others too. - . - This package contains the data files. - -Package: libkf5iconthemes5-dbg -Priority: extra -Section: debug -Architecture: any -Multi-Arch: same -Depends: libkf5iconthemes5 (= ${binary:Version}), ${misc:Depends} -Description: debug symbols for kiconthemes - Library to use/access icon themes in Qt. These classes - are used by the iconloader but can be used by others too. - . - Contains debug symbols for kiconthemes. diff -Nru kiconthemes-5.18.0/debian/libkf5iconthemes5.symbols kiconthemes-5.44.0/debian/libkf5iconthemes5.symbols --- kiconthemes-5.18.0/debian/libkf5iconthemes5.symbols 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/libkf5iconthemes5.symbols 2018-03-12 19:57:44.000000000 +0000 @@ -1,4 +1,4 @@ -# SymbolsHelper-Confirmed: 5.11.0 amd64 +# SymbolsHelper-Confirmed: 5.39.0 amd64 arm64 armhf i386 ppc64el libKF5IconThemes.so.5 libkf5iconthemes5 #MINVER# _Z10BarIconSetRK7QStringi@Base 4.96.0 _Z11DesktopIconRK7QStringiiRK11QStringList@Base 4.96.0 @@ -11,8 +11,10 @@ _Z8IconSizeN11KIconLoader5GroupE@Base 4.96.0 _Z8UserIconRK7QStringiRK11QStringList@Base 4.96.0 _Z9SmallIconRK7QStringiiRK11QStringList@Base 4.96.0 + _Z9uintToHexjP5QChar@Base 5.25.0 _ZN10KIconTheme11reconfigureEv@Base 4.96.0 _ZN10KIconTheme16defaultThemeNameEv@Base 4.96.0 + _ZN10KIconTheme18forceThemeForTestsERK7QString@Base 5.23.0 _ZN10KIconTheme24assignIconsToContextMenuENS_12ContextMenusE5QListIP7QActionE@Base 4.96.0 _ZN10KIconTheme4listEv@Base 4.96.0 _ZN10KIconTheme7currentEv@Base 4.96.0 @@ -28,12 +30,6 @@ _ZN11KIconButton16staticMetaObjectE@Base 4.96.0 _ZN11KIconButton17setButtonIconSizeEi@Base 4.96.0 _ZN11KIconButton17setStrictIconSizeEb@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivate14_k_newIconNameERK7QString@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivate17_k_slotChangeIconEv@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivateC1EPS_P11KIconLoader@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivateC2EPS_P11KIconLoader@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivateD1Ev@Base 4.96.0 - _ZN11KIconButton18KIconButtonPrivateD2Ev@Base 4.96.0 _ZN11KIconButton7setIconERK5QIcon@Base 4.96.0 _ZN11KIconButton7setIconERK7QString@Base 4.96.0 _ZN11KIconButton9resetIconEv@Base 4.96.0 @@ -53,18 +49,6 @@ _ZN11KIconDialog16staticMetaObjectE@Base 4.96.0 _ZN11KIconDialog17setCustomLocationERK7QString@Base 4.96.0 _ZN11KIconDialog17setStrictIconSizeEb@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate10setContextEN11KIconLoader7ContextE@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate13_k_slotBrowseEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate14_k_slotContextEi@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate15_k_slotFinishedEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate15_k_slotProgressEi@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate18_k_slotAcceptIconsEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate19_k_slotStartLoadingEi@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate21_k_customFileSelectedERK7QString@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate23_k_slotOtherIconClickedEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate24_k_slotSystemIconClickedEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate4initEv@Base 4.96.0 - _ZN11KIconDialog18KIconDialogPrivate9showIconsEv@Base 4.96.0 _ZN11KIconDialog5setupEN11KIconLoader5GroupENS0_7ContextEbibbb@Base 4.96.0 _ZN11KIconDialog6slotOkEv@Base 4.96.0 _ZN11KIconDialog7getIconEN11KIconLoader5GroupENS0_7ContextEbibP7QWidgetRK7QString@Base 4.96.0 @@ -89,6 +73,7 @@ _ZN11KIconEffectD1Ev@Base 4.96.0 _ZN11KIconEffectD2Ev@Base 4.96.0 _ZN11KIconEngine10actualSizeERK5QSizeN5QIcon4ModeENS3_5StateE@Base 4.96.0 + _ZN11KIconEngine12virtual_hookEiPv@Base 5.25.0 _ZN11KIconEngine4readER11QDataStream@Base 4.96.0 _ZN11KIconEngine5paintEP8QPainterRK5QRectN5QIcon4ModeENS5_5StateE@Base 4.96.0 _ZN11KIconEngine6pixmapERK5QSizeN5QIcon4ModeENS3_5StateE@Base 4.96.0 @@ -105,7 +90,9 @@ _ZN11KIconLoader11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.96.0 _ZN11KIconLoader11qt_metacastEPKc@Base 4.96.0 _ZN11KIconLoader11reconfigureERK7QStringRK11QStringList@Base 4.96.0 + _ZN11KIconLoader12resetPaletteEv@Base 5.39.0 _ZN11KIconLoader13newIconLoaderEv@Base 4.96.0 + _ZN11KIconLoader16setCustomPaletteERK8QPalette@Base 5.39.0 _ZN11KIconLoader16staticMetaObjectE@Base 4.96.0 _ZN11KIconLoader25iconLoaderSettingsChangedEv@Base 4.96.0 _ZN11KIconLoader6globalEv@Base 4.96.0 @@ -125,6 +112,8 @@ _ZNK10KIconTheme11defaultSizeEN11KIconLoader5GroupE@Base 4.96.0 _ZNK10KIconTheme11descriptionEv@Base 4.96.0 _ZNK10KIconTheme12internalNameEv@Base 4.96.0 + _ZNK10KIconTheme14iconPathByNameERK7QStringiN11KIconLoader9MatchTypeE@Base 5.22.0 + _ZNK10KIconTheme18followsColorSchemeEv@Base 5.23.0 _ZNK10KIconTheme19queryIconsByContextEiN11KIconLoader7ContextE@Base 4.96.0 _ZNK10KIconTheme3dirEv@Base 4.96.0 _ZNK10KIconTheme4nameEv@Base 4.96.0 @@ -165,6 +154,7 @@ _ZNK11KIconLoader12drawOverlaysERK11QStringListR7QPixmapNS_5GroupEi@Base 4.96.0 _ZNK11KIconLoader12loadAnimatedERK7QStringNS_5GroupEi@Base 4.96.0 _ZNK11KIconLoader13alphaBlendingENS_5GroupE@Base 4.96.0 + _ZNK11KIconLoader13customPaletteEv@Base 5.39.0 _ZNK11KIconLoader15queryIconsByDirERK7QString@Base 4.96.0 _ZNK11KIconLoader16loadMimeTypeIconERK7QStringNS_5GroupEiiRK11QStringListPS0_@Base 4.96.0 _ZNK11KIconLoader18loadPixmapSequenceERK7QStringi@Base 4.96.0 @@ -175,9 +165,10 @@ _ZNK11KIconLoader8loadIconERK7QStringNS_5GroupEiiRK11QStringListPS0_b@Base 4.96.0 _ZNK11KIconLoader9loadMovieERK7QStringNS_5GroupEiP7QObject@Base 4.96.0 _ZNK11KIconLoader9moviePathERK7QStringNS_5GroupEi@Base 4.96.0 - (optional=templinst)_ZNK12KConfigGroup9readEntryI6QColorEET_PKcRKS2_@Base 4.100.0 + (optional=templinst|arch=!ppc64el)_ZNK12KConfigGroup9readEntryI6QColorEET_PKcRKS2_@Base 4.100.0 + (optional=templinst|arch=!ppc64el)_ZNK12KConfigGroup9readEntryIbEET_PKcRKS1_@Base 5.23.0 (optional=templinst)_ZNK12KConfigGroup9readEntryIiEE5QListIT_EPKcRKS3_@Base 4.100.0 - (optional=templinst)_ZNK12KConfigGroup9readEntryIiEET_PKcRKS1_@Base 4.100.0 + (optional=templinst|arch=!ppc64el)_ZNK12KConfigGroup9readEntryIiEET_PKcRKS1_@Base 4.100.0 _ZTI11KIconButton@Base 4.96.0 _ZTI11KIconDialog@Base 4.96.0 _ZTI11KIconEngine@Base 4.96.0 @@ -190,5 +181,6 @@ _ZTV11KIconDialog@Base 4.96.0 _ZTV11KIconEngine@Base 4.96.0 _ZTV11KIconLoader@Base 4.96.0 + kiconloader_ms_between_checks@Base 5.25.0 (c++)"non-virtual thunk to KIconButton::~KIconButton()@Base" 4.96.0 (c++)"non-virtual thunk to KIconDialog::~KIconDialog()@Base" 4.96.0 diff -Nru kiconthemes-5.18.0/debian/libkf5iconthemes-dev.acc.in kiconthemes-5.44.0/debian/libkf5iconthemes-dev.acc.in --- kiconthemes-5.18.0/debian/libkf5iconthemes-dev.acc.in 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/libkf5iconthemes-dev.acc.in 2018-03-12 19:57:44.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -15,6 +15,7 @@ -fPIC + -fno-keep-inline-functions - + \ No newline at end of file diff -Nru kiconthemes-5.18.0/debian/rules kiconthemes-5.44.0/debian/rules --- kiconthemes-5.18.0/debian/rules 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/rules 2018-03-12 19:57:44.000000000 +0000 @@ -4,7 +4,7 @@ include /usr/share/pkg-kde-tools/qt-kde-team/3/debian-qt-kde.mk override_dh_strip: - $(overridden_command) --dbg-package=libkf5iconthemes5-dbg + $(overridden_command) --dbgsym-migration='libkf5iconthemes5-dbg (<= 5.19.0-1~~)' override_dh_auto_test: # Disable dh_auto_test on build time diff -Nru kiconthemes-5.18.0/debian/tests/acc kiconthemes-5.44.0/debian/tests/acc --- kiconthemes-5.18.0/debian/tests/acc 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/tests/acc 2018-03-12 19:57:44.000000000 +0000 @@ -8,4 +8,11 @@ "${in_file}" > "${out_file}" done +DH_VERBOSE=1 + dh_acc +ret=$? +if [ 0 -ne $ret ]; then + cp -r logs "${ADT_ARTIFACTS}"/acc.logs +fi +exit $ret diff -Nru kiconthemes-5.18.0/debian/tests/control kiconthemes-5.44.0/debian/tests/control --- kiconthemes-5.18.0/debian/tests/control 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/tests/control 2018-03-12 19:57:44.000000000 +0000 @@ -1,8 +1,8 @@ Tests: testsuite Depends: @builddeps@, build-essential, - xvfb, xauth, dbus-x11, openbox, + xvfb, xauth, dbus (>= 1.8), openbox, oxygen-icon-theme -Restrictions: rw-build-tree +Restrictions: build-needed Tests: acc Depends: @, dh-acc, exuberant-ctags diff -Nru kiconthemes-5.18.0/debian/tests/testsuite kiconthemes-5.44.0/debian/tests/testsuite --- kiconthemes-5.18.0/debian/tests/testsuite 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/tests/testsuite 2018-03-12 19:57:44.000000000 +0000 @@ -1,10 +1,4 @@ #!/bin/sh -if [ -d /usr/lib/ccache ]; then - export PATH="/usr/lib/ccache:$PATH" -fi -debian/rules clean 2>&1 -dpkg-source --before-build . -debian/rules build 2>&1 xvfb-run -a --server-args="-screen 0 1024x768x24+32" \ - dbus-launch --exit-with-session debian/tests/testsuite.xsession + dbus-run-session -- debian/tests/testsuite.xsession diff -Nru kiconthemes-5.18.0/debian/upstream/metadata kiconthemes-5.44.0/debian/upstream/metadata --- kiconthemes-5.18.0/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/debian/upstream/metadata 2018-03-12 19:57:44.000000000 +0000 @@ -0,0 +1,7 @@ +Name: kiconthemes +Changelog: https://quickgit.kde.org/?p=kiconthemes.git&a=log +Contact: kde-frameworks-devel@kde.org +Donation: https://www.kde.org/community/donations/index.php +Repository: https://anongit.kde.org/kiconthemes.git +Repository-Browse: https://quickgit.kde.org/?p=kiconthemes.git +Security-Contact: security@kde.org diff -Nru kiconthemes-5.18.0/debian/watch kiconthemes-5.44.0/debian/watch --- kiconthemes-5.18.0/debian/watch 2016-03-07 22:21:44.000000000 +0000 +++ kiconthemes-5.44.0/debian/watch 2018-03-12 19:57:44.000000000 +0000 @@ -1,3 +1,2 @@ version=3 -http://download.kde.org/unstable/frameworks/([\d.]+)/kiconthemes-([\d.]+)\.tar\.xz http://download.kde.org/stable/frameworks/([\d.]+)/kiconthemes-([\d.]+)\.tar\.xz diff -Nru kiconthemes-5.18.0/KF5IconThemesConfig.cmake.in kiconthemes-5.44.0/KF5IconThemesConfig.cmake.in --- kiconthemes-5.18.0/KF5IconThemesConfig.cmake.in 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/KF5IconThemesConfig.cmake.in 2018-03-03 10:04:07.000000000 +0000 @@ -1,7 +1,8 @@ @PACKAGE_INIT@ +include(CMakeFindDependencyMacro) find_dependency(Qt5Widgets "@REQUIRED_QT_VERSION@") include("${CMAKE_CURRENT_LIST_DIR}/KF5IconThemesTargets.cmake") - +@PACKAGE_INCLUDE_QCHTARGETS@ diff -Nru kiconthemes-5.18.0/metainfo.yaml kiconthemes-5.44.0/metainfo.yaml --- kiconthemes-5.18.0/metainfo.yaml 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/metainfo.yaml 2018-03-03 10:04:07.000000000 +0000 @@ -3,7 +3,10 @@ tier: 3 type: integration platforms: - - name: All + - name: Linux + - name: FreeBSD + - name: Windows + - name: MacOSX portingAid: false deprecated: false release: true @@ -11,3 +14,7 @@ - qmake: KIconThemes cmake: "KF5::IconThemes" cmakename: KF5IconThemes + +public_lib: true +group: Frameworks +subgroup: Tier 3 diff -Nru kiconthemes-5.18.0/po/af/kiconthemes5.po kiconthemes-5.44.0/po/af/kiconthemes5.po --- kiconthemes-5.18.0/po/af/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/af/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -6,95 +6,102 @@ msgstr "" "Project-Id-Version: kio4 stable\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2005-11-25 05:33+0200\n" "Last-Translator: Juanita Franz \n" "Language-Team: AFRIKAANS \n" -"Language: \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Kies Ikoon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikoon Bron" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Stelsel ikoone:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ander ikoone:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Blaai..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Soek:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Soek interaktief vir ikoon name (bv gids)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aksies" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Programme" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programme" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Toestelle" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Lêerstelsels" - -#: kicondialog.cpp:364 -#, fuzzy -msgid "International" -msgstr "Inleiding" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-tipes" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "Opstart" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikoon Lêers (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ar/kiconthemes5.po kiconthemes-5.44.0/po/ar/kiconthemes5.po --- kiconthemes-5.18.0/po/ar/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ar/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-12-19 21:59+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: Arabic \n" @@ -30,82 +30,92 @@ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Lokalize 1.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "اختر الأيقونة" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "مصدر الأيقونة" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "أيقونات الن&ظام:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "أيقونات أ&خرى:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "است&عراض" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "ا&بحث:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "بحث تفاعلي عن أسماء أيقونات ( مجلد )." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "إجراءات" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "الصور المتحركة" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "التطبيقات" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "التصنيفات" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "الأجهزة" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "الأوسمة" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "الرموز التعبيرية" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "أنظمة الملفات" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "عالمي" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "أنواع Mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "الأماكن" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "الحالة" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|ملفات أيقونات (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ast/kiconthemes5.po kiconthemes-5.44.0/po/ast/kiconthemes5.po --- kiconthemes-5.18.0/po/ast/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ast/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,100 +1,108 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# enolp , 2015. +# enolp , 2016. msgid "" msgstr "" -"Project-Id-Version: kio4-v1\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2015-07-11 16:25+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-20 23:17+0100\n" "Last-Translator: enolp \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-Language: asturian\n" "X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" -msgstr "" +msgstr "Esbillar iconu" #: kicondialog.cpp:289 -#, fuzzy +#, kde-format msgid "Icon Source" -msgstr "Fonte d'iconu" +msgstr "Fonte d'iconos" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Iconos del s&istema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" -msgstr "O&tros iconos:" +msgstr "&Otros iconos:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Restolar..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Guetar:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "" +msgstr "Gueta de mou interautivu nome d'iconos (exem: carpeta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aiciones" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaciones" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicaciones" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Estayes" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Preseos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" -msgstr "Emblemes" +msgstr "Insinies" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" -msgstr "" - -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemes de ficheros" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" +msgstr "Fustaxes" -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tribes MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Llugares" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" -msgstr "Estáu" +msgstr "Estaos" + +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Too" -#: kicondialog.cpp:608 +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ficheros d'iconu (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/be/kiconthemes5.po kiconthemes-5.44.0/po/be/kiconthemes5.po --- kiconthemes-5.18.0/po/be/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/be/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,11 +11,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-05-02 14:14+0200\n" "Last-Translator: Siarhei Liantsevich \n" "Language-Team: Belarusian\n" -"Language: \n" +"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,90 +27,93 @@ "\n" "\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Выбраць значку" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Крыніца значак" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Сістэмныя значкі:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "І&ншыя значкі:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Прагляд..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Пошук:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Інтэрактыўна шукаць па назвах значак (напр. folder)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Дзеянні" -#: kicondialog.cpp:357 -#, fuzzy -#| msgid "Applications" -msgid "Animations" -msgstr "Праграмы" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Праграмы" -#: kicondialog.cpp:359 -#, fuzzy +#: kicondialog.cpp:357 +#, fuzzy, kde-format msgid "Categories" msgstr "Катэгорыі" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Прылады" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файлавыя сістэмы" - -#: kicondialog.cpp:364 -#, fuzzy -#| msgid "Introduction" -msgid "International" -msgstr "Міжнародны" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Тыпы MIME" -#: kicondialog.cpp:366 -#, fuzzy +#: kicondialog.cpp:362 +#, fuzzy, kde-format msgid "Places" msgstr "Месцы" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format #| msgid "Startup" msgid "Status" msgstr "Статус" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Файлы значак (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/be@latin/kiconthemes5.po kiconthemes-5.44.0/po/be@latin/kiconthemes5.po --- kiconthemes-5.18.0/po/be@latin/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/be@latin/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,11 +7,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-09-05 20:23+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" -"Language: \n" +"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,82 +19,92 @@ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Abiary ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Krynica ikony" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Systemnyja ikony:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Inšyja ikony:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Prahladaj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Šukaj:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Dziejny pošuk nazvaŭ ikonaŭ (naprykład, „kataloh”)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aperacyi" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacyja" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikacyi" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Katehoryi" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Pryłady" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Znaki" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Smajliki" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Fajłavaja systema" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Mižnarodnaje" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Typy MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Miescy" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stanovišča" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fajły ikonaŭ (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/bg/kiconthemes5.po kiconthemes-5.44.0/po/bg/kiconthemes5.po --- kiconthemes-5.18.0/po/bg/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/bg/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,8 +1,5 @@ -# translation of kio4.po to Bulgarian -# Bulgarian translation of KDE. -# This file is licensed under the GPL. -# -# $Id: kio4.po 685075 2007-07-08 04:11:12Z scripty $ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. # # Zlatko Popov , 2006, 2007, 2008, 2009. # Yasen Pramatarov , 2010. @@ -10,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2010-12-05 00:53+0200\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -21,82 +18,92 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Избор на икона" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Източник на икони" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Системни икони:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Други икони:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Избор..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Търсене:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Търсене за имена на икони (напр. директории)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Действия" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анимации" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Програми" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Категории" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Устройства" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Емблеми" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Емоции" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файлови системи" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Международни" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Типове MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Места" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Състояние" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Файлове за икони (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/bn/kiconthemes5.po kiconthemes-5.44.0/po/bn/kiconthemes5.po --- kiconthemes-5.18.0/po/bn/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/bn/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kio\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2006-01-06 23:37-0600\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: Bengali \n" @@ -17,85 +17,92 @@ "X-Generator: KBabel 1.9.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "আইকন বেছে নাও" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "আইকন উত্‍স" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "সিস্টেম &আইকন:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&অন্যান্য আইকন:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ব্রাউ&জ..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "কাজ" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "অ্যাপলিকেশন" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "অ্যাপলিকেশন" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "ডিভাইস" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ফাইল-সিস্টেম" - -#: kicondialog.cpp:364 -#, fuzzy -msgid "International" -msgstr "ভূমিকা" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "মাইম-টাইপ" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "আরম্ভ" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|আইকন ফাইল (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/br/kiconthemes5.po kiconthemes-5.44.0/po/br/kiconthemes5.po --- kiconthemes-5.18.0/po/br/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/br/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,96 +8,102 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2004-09-28 03:02+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" -"Language: \n" +"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Diuzit un arlun" #: kicondialog.cpp:289 -#, fuzzy +#, fuzzy, kde-format msgid "Icon Source" msgstr "Diskouez mod berr" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Arlunioù ar r&eizhiad :" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Arlunoù &all :" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Furchañ ..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Klask :" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Oberoù" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Arloadoù" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Arloadoù" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Rummoù" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Trobarzhelloù" -#: kicondialog.cpp:361 -#, fuzzy +#: kicondialog.cpp:359 +#, fuzzy, kde-format msgid "Emblems" msgstr "Lemel" -#: kicondialog.cpp:362 -#, fuzzy +#: kicondialog.cpp:360 +#, fuzzy, kde-format msgid "Emotes" msgstr "&Lemel" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Reizhiadoù restroù" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Etrebroadel" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "RizhioùMime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Lec'hiadurioù" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stad" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Restroù an arlunoù (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/bs/kiconthemes5.po kiconthemes-5.44.0/po/bs/kiconthemes5.po --- kiconthemes-5.18.0/po/bs/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/bs/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-12-30 16:55+0000\n" "Last-Translator: memsud \n" "Language-Team: bosanski \n" @@ -26,84 +26,94 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Odaberi Ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Izvor ikone" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Sistemske ikone:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Druge ikone:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Pregledaj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Traži:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktivno traži imena ikona (npr. direktorij)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Akcije" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacije" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programi" # >> @item:inlistbox System icons -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "kategorije" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Uređaji" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Amblemi" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikoni" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Datotečni sistemi" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacionalno" - # >> @item:inlistbox System icons -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME tipovi" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Mjesta" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|datoteke ikona (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ca/kiconthemes5.po kiconthemes-5.44.0/po/ca/kiconthemes5.po --- kiconthemes-5.18.0/po/ca/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ca/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,10 +1,10 @@ # Translation of kiconthemes5.po to Catalan -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2014-2016 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006. -# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016. # Albert Astals Cid , 2007. # Robert Millan , 2009. # Antoni Bella Pérez , 2011, 2013, 2014. @@ -12,9 +12,9 @@ msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-06-25 17:59+0200\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 15:00+0100\n" +"Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -24,82 +24,92 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Trieu una icona" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Origen de la icona" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Icones del &sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Al&tres icones:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Navega..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Cerca:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Cerca noms d'icona interactivament (p. ex. carpeta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Accions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacions" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicacions" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categories" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositius" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemes" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoticones" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemes de fitxers" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipus MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Llocs" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estat" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Tot" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fitxers d'icona (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ca@valencia/kiconthemes5.po kiconthemes-5.44.0/po/ca@valencia/kiconthemes5.po --- kiconthemes-5.18.0/po/ca@valencia/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ca@valencia/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,10 +1,10 @@ # Translation of kiconthemes5.po to Catalan (Valencian) -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2014-2016 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006. -# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2016. # Albert Astals Cid , 2007. # Robert Millan , 2009. # Antoni Bella Pérez , 2011, 2013, 2014. @@ -12,9 +12,9 @@ msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-06-25 17:59+0200\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 15:00+0100\n" +"Last-Translator: Josep Ma. Ferrer \n" "Language-Team: Catalan \n" "Language: ca@valencia\n" "MIME-Version: 1.0\n" @@ -24,82 +24,92 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Trieu una icona" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Origen de la icona" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Icones del &sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Al&tres icones:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Navega..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Cerca:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Cerca noms d'icona interactivament (p. ex. carpeta)." +msgstr "Busca noms d'icona interactivament (p. ex. carpeta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Accions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacions" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicacions" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categories" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositius" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemes" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoticones" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemes de fitxers" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipus MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Llocs" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estat" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Tot" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fitxers d'icona (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/cs/kiconthemes5.po kiconthemes-5.44.0/po/cs/kiconthemes5.po --- kiconthemes-5.18.0/po/cs/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/cs/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-05-30 14:07+0200\n" -"Last-Translator: Vit Pelcak \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2015-01-19 12:39+0100\n" +"Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" @@ -19,82 +19,92 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Vybrat ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Zdroj ikon" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ystémové ikony:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Osta&tní ikony:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Listovat..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Hledat:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Hledat interaktivně názvy ikon (např. složka)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Činnosti" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animace" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikace" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorie" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Zařízení" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblémy" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikony" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Souborové systémy" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Mezinárodní" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime typy" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Místa" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stav" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Vše" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikony (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/csb/kiconthemes5.po kiconthemes-5.44.0/po/csb/kiconthemes5.po --- kiconthemes-5.18.0/po/csb/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/csb/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-06-29 20:35+0200\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -20,82 +20,92 @@ "|| n%100>=20) ? 1 : 2)\n" "X-Generator: Lokalize 0.3\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" diff -Nru kiconthemes-5.18.0/po/cy/kiconthemes5.po kiconthemes-5.44.0/po/cy/kiconthemes5.po --- kiconthemes-5.18.0/po/cy/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/cy/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -15,11 +15,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2004-01-16 09:20+0000\n" "Last-Translator: KD at KGyfieithu \n" "Language-Team: Cymraeg \n" -"Language: \n" +"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -27,87 +27,92 @@ "\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Dewis Eicon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ffynhonell Eicon" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "E&iconau cysawd:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ei&conau eraill:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Pori..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Chwilio:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Gweithrediadau" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Stopio Animeiddiadau" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Cymhwysiannau" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categoriau" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dyfeisiau" -#: kicondialog.cpp:361 -#, fuzzy +#: kicondialog.cpp:359 +#, fuzzy, kde-format msgid "Emblems" msgstr "symudol" -#: kicondialog.cpp:362 -#, fuzzy +#: kicondialog.cpp:360 +#, fuzzy, kde-format msgid "Emotes" msgstr "Cynnwys Gwag" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Cysodau ffeil" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Rhyngwladol" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mathau MIME" -#: kicondialog.cpp:366 -#, fuzzy +#: kicondialog.cpp:362 +#, fuzzy, kde-format msgid "Places" msgstr "Tudalennau" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "Ymgychwyn" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ffeiliau eicon (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/da/kiconthemes5.po kiconthemes-5.44.0/po/da/kiconthemes5.po --- kiconthemes-5.18.0/po/da/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/da/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,98 +7,108 @@ # Birger Langkjer , 1999. # Erik Kjær Pedersen , 1999-2001,2002,2003, 2004, 2005, 2006. # Lars K. Schunk , 2001-2002. -# Martin Schlander , 2008, 2009, 2010, 2011, 2012. +# Martin Schlander , 2008, 2009, 2010, 2011, 2012, 2017. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-13 20:31+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-02-25 18:33+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.4\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Vælg ikon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonkilde" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ystemikoner:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "A&ndre ikoner:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Gennemse..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Søg:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Søg interaktivt efter ikonnavne (f.eks. mappe)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Handlinger" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animationer" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programmer" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorier" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Enheder" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemer" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Smiletegn" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filsystemer" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internationalt" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mimetyper" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Steder" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Alle" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikon-filer (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/de/kiconthemes5.po kiconthemes-5.44.0/po/de/kiconthemes5.po --- kiconthemes-5.18.0/po/de/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/de/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,7 +1,7 @@ # Thomas Diehl , 2002, 2003, 2004, 2005. # Stephan Johach , 2004, 2005, 2006, 2007. # Thomas Reitelbach , 2005, 2006, 2007, 2008, 2009. -# Frederik Schwarzer , 2007, 2008, 2009, 2010, 2011, 2012, 2013. +# Frederik Schwarzer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2016. # Burkhard Lück , 2008, 2009, 2011, 2012, 2013, 2014. # Rolf Eike Beer , 2009, 2010. # Johannes Obermayr , 2010. @@ -11,93 +11,103 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-02-15 10:48+0100\n" -"Last-Translator: Burkhard Lück \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-22 20:52+0100\n" +"Last-Translator: Frederik Schwarzer \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Symbol auswählen" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Quelle für Symbol" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&System-Symbole:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "S&onstige Symbole:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Auswählen ..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Suchen:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktiv nach Symbolnamen suchen (z. B. Ordner)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aktionen" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animationen" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programme" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorien" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Geräte" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Logos" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoticons" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Dateisysteme" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "International" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-Typen" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Orte" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Alle" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Symbol-Dateien (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/el/kiconthemes5.po kiconthemes-5.44.0/po/el/kiconthemes5.po --- kiconthemes-5.18.0/po/el/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/el/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -15,97 +15,108 @@ # Nikos Pantazis , 2011. # Stelios , 2012. # Antonis Geralis , 2013, 2014. +# Dimitris Kardarakos , 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-02-03 03:22+0200\n" -"Last-Translator: Antonis Geralis \n" -"Language-Team: Greek \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-08 10:24+0200\n" +"Last-Translator: Dimitris Kardarakos \n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Επιλογή εικονιδίου" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Πηγή εικονιδίων" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Εικονίδια &συστήματος:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ά&λλα εικονίδια:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Ε&ξερεύνηση..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Αναζήτηση:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Διαδραστική αναζήτηση για ονόματα εικονιδίων (π.χ. φάκελο)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Ενέργειες" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Εφέ κίνησης" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Εφαρμογές" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Κατηγορίες" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Συσκευές" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Εμβλήματα" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotes" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Συστήματα αρχείων" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Διεθνή" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Τύποι mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Τοποθεσίες" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Κατάσταση" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Όλα" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Αρχεία εικονιδίων (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/en_GB/kiconthemes5.po kiconthemes-5.44.0/po/en_GB/kiconthemes5.po --- kiconthemes-5.18.0/po/en_GB/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/en_GB/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -2,97 +2,108 @@ # Malcolm Hunter , 2002,2003,2004, 2005, 2007, 2008. # Andrew Coles , 2004, 2005, 2009, 2010. # Brendan Osborne , 2007. -# Steve Allewell , 2014. +# Steve Allewell , 2014, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2010-12-05 11:28+0000\n" -"Last-Translator: Andrew Coles \n" -"Language-Team: British English \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-02 21:31+0000\n" +"Last-Translator: Steve Allewell \n" +"Language-Team: English \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Select Icon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Icon Source" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ystem icons:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "O&ther icons:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Browse..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Search:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Search interactively for icon names (e.g. folder)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Actions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animations" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Applications" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categories" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Devices" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblems" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotes" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filesystems" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "International" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mimetypes" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Places" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "All" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/eo/kiconthemes5.po kiconthemes-5.44.0/po/eo/kiconthemes5.po --- kiconthemes-5.18.0/po/eo/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/eo/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-05-14 13:25-0500\n" "Last-Translator: Cindy McKee \n" "Language-Team: Esperanto \n" @@ -21,82 +21,92 @@ "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Elekti piktogramon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Piktogramfonto" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&istempiktogramoj:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Aliaj pik&togramoj:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Foliumi..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Serĉi:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interage serĉi nomojn de piktogramoj (ekz. dosierujo)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Agoj" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaciaĵoj" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikaĵoj" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorioj" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Aparatoj" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemoj" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Miensimboloj" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Dosiertipoj" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacia" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-tipoj" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Ejoj" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stato" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|piktogramdosieroj (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/es/kiconthemes5.po kiconthemes-5.44.0/po/es/kiconthemes5.po --- kiconthemes-5.18.0/po/es/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/es/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,101 +8,111 @@ # Pablo de Vicente , 2004, 2005. # Pablo de Vicente , 2005, 2006, 2007. # Enrique Matias Sanchez (aka Quique) , 2007. -# Eloy Cuadra , 2007, 2008, 2009, 2010, 2011, 2012. +# Eloy Cuadra , 2007, 2008, 2009, 2010, 2011, 2012, 2016. # Jaime Robles , 2007. # Javier Viñal , 2013. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-07-25 17:02+0200\n" -"Last-Translator: Javier Viñal \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 22:57+0100\n" +"Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "First-Translator: Boris Wesslowski \n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Seleccionar icono" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Origen de los iconos" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Iconos del &sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "O&tros iconos:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "E&xaminar..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Bu&scar:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Buscar interactivamente nombres de iconos (p. ej. carpeta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Acciones" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaciones" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicaciones" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorías" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotextos" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemas de archivos" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipos MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Lugares" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estado" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Todo" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Archivos de iconos (*.png *.xpm *svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/et/kiconthemes5.po kiconthemes-5.44.0/po/et/kiconthemes5.po --- kiconthemes-5.18.0/po/et/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/et/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-12-17 15:51+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -23,82 +23,92 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Ikooni valimine" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikooni allikas" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Süsteemsed ikoonid:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Muud i&koonid:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Lehitse..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Ot&simine:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktiivne ikooninimede (nt. kataloogi) otsimine." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Tegevused" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animatsioonid" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Rakendused" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategooriad" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Seadmed" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Embleemid" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikonid" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Failisüsteemid" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Rahvusvaheline" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME tüübid" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Kohad" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Staatus" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikoonide failid (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/eu/kiconthemes5.po kiconthemes-5.44.0/po/eu/kiconthemes5.po --- kiconthemes-5.18.0/po/eu/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/eu/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,103 +1,115 @@ -# translation of kio4.po to Euskara/Basque (eu). -# Copyright (C) 1999,2002,2003,2004,2005,2006,2008,2009,2010,2011,2012, Free Software Foundation, Inc. +# Translation of kiconthemes5.po to Euskara/Basque (eu). +# Copyright (C) 1999-2017, Free Software Foundation, Inc. +# This file is distributed under the same license as the frameworks package. +# KDE Euskaratzeko proiektuaren arduraduna . # -# Marcos , 2002,2003, 2004, 2005, 2006, 2010. +# Translators: +# Marcos , 2002,2003, 2004, 2005, 2006, 2009, 2010. # Juan Irigoien , 2004, 2006. -# marcos , 2006, 2009, 2010. # Asier Urio Larrea , 2008. # Iñaki Larrañaga Murgoitio , 2009. -# Iñigo Salvador Azurmendi , 2010, 2011, 2012. +# Iñigo Salvador Azurmendi , 2010, 2011, 2012, 2017. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-09-08 23:39+0200\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-08-29 23:55+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.4\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Hautatu ikonoa" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonoaren iturburua" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Sistemaren ikonoak:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Beste ikonoak:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Arakatu..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Bilatu:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Bilatu ikonoen izenak interaktiboki (adib. karpeta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Ekintzak" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animazioak:" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikazioak" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategoriak" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Gailuak" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Ikurrak" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Aurpegierak" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Fitxategi-sistemak" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Nazioartekoa" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-motak" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Lekuak" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Egoera" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Guztiak" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikono-fitxategiak (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/fa/kiconthemes5.po kiconthemes-5.44.0/po/fa/kiconthemes5.po --- kiconthemes-5.18.0/po/fa/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/fa/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-01-10 22:50+0330\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" @@ -21,82 +21,92 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "برگزیدن شمایل" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "متن شمایل" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "شمایلهای &سیستم:‌" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "شمایلهای &دیگر:‌" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&مرور...‌" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&جستجو:‌" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "نام شمایلها را به طور تعاملی جستجو کنید ) برای مثال: پوشه(." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "کنشها" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "پویانماییها" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "کاربردها" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "دسته‌ها" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "دستگاهها" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "نشانها" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "احساسات" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "سیستمهای پرونده" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "بین‌المللی" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "انواع مایم" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "جاها" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "وضعیت" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz| پرونده‌های شمایل (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/fi/kiconthemes5.po kiconthemes-5.44.0/po/fi/kiconthemes5.po --- kiconthemes-5.18.0/po/fi/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/fi/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -13,15 +13,15 @@ # Teemu Rytilahti , 2008. # Teemu Rytilahti , 2008. # Tommi Nieminen , 2009, 2010, 2011. -# Lasse Liehu , 2010, 2011, 2012, 2013, 2014, 2015. +# Lasse Liehu , 2010, 2011, 2012, 2013, 2014, 2015, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-02-27 23:44+0200\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-21 03:32+0200\n" "Last-Translator: Lasse Liehu \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,82 +30,92 @@ "X-Generator: Lokalize 2.0\n" "X-POT-Import-Date: 2013-01-13 20:43:21+0000\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Valitse kuvake" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Kuvakkeen sijainti" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Järjestelmän kuvakkeet:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Muut kuvakkeet:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Selaa…" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Etsi:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Hae kuvakkeiden nimiä (esim. kansio) vuorovaikutteisesti." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Toiminnot" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaatiot" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Sovellukset" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Luokat" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Laitteet" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Tunnuskuva" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Hymiöt" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Tiedostojärjestelmät" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Kansainvälinen" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-tyypit" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Sijainnit" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Tila" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Kaikki" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Kuvaketiedostot (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/fr/kiconthemes5.po kiconthemes-5.44.0/po/fr/kiconthemes5.po --- kiconthemes-5.18.0/po/fr/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/fr/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -13,100 +13,111 @@ # Sébastien Renard , 2007, 2008, 2009. # Sebastien Renard , 2009, 2010, 2012, 2013. # Sébastien Renard , 2010, 2011, 2012, 2014. +# Vincent Pinon , 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-02-09 12:10+0100\n" -"Last-Translator: Sebastien Renard \n" -"Language-Team: French \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-27 23:32+0100\n" +"Last-Translator: Vincent Pinon \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Choisir une icône" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Source de l'icône" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Icônes du &système :" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Autres ic&ônes :" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Parcourir..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Re&chercher :" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Rechercher interactivement pour des noms d'icônes (dossier)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Actions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animations" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Applications" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Catégories" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Périphériques" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblèmes" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Émoticônes" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Systèmes de fichiers" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "International" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Types MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Emplacements" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "État" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Tous" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fichiers d'icônes (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/fy/kiconthemes5.po kiconthemes-5.44.0/po/fy/kiconthemes5.po --- kiconthemes-5.18.0/po/fy/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/fy/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -6,94 +6,104 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-05-19 10:52+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: \n" -"Language: \n" +"Language: fy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Byldkaike selektearje" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Byldkaikeboarne" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ysteem byldkaikes" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Oare byldkaikes:" # i18n: file ./kfile/kpropertiesdesktopbase.ui line 213 -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "S&neupe..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Sykje:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Ynteraktyf sykje nei nammen fan byldkaikes (b.g. map)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aksjes" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaasjes" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Applikaasjes" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategoriën" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Apparaten" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblems" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotes" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Triemsystemen" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Ynternasjonaal" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime triemtypen" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Places" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Tastân" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Byldkaike-triemen (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ga/kiconthemes5.po kiconthemes-5.44.0/po/ga/kiconthemes5.po --- kiconthemes-5.18.0/po/ga/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ga/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs/kio4.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -19,82 +19,92 @@ "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Roghnaigh Deilbhín" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Foinse Deilbhíní" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "D&eilbhíní an chórais:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Deilbhíní &eile:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Brabhsáil..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Cuardach:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Cuardach idirghníomhach ar ainmneacha deilbhíní (m.sh. fillteán)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Gníomhartha" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Íomhánna Beo" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Feidhmchláir" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Catagóirí" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Gléasanna" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Feathail" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Straoiseoga" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Comhadchórais" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Idirnáisiúnta" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Cineálacha MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Áiteanna" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stádas" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Comhaid Deilbhíní (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/gd/kiconthemes5.po kiconthemes-5.44.0/po/gd/kiconthemes5.po --- kiconthemes-5.18.0/po/gd/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/gd/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2015-11-04 15:14+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: Fòram na Gàidhlig\n" @@ -19,84 +19,94 @@ "X-Generator: Poedit 1.8.4\n" "X-Project-Style: kde\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Tagh ìomhaigheag" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Tùs na h-ìomhaigheige" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ìomhaigheagan an t-&siostaim:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ìomhaigheagan &eile:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Rùraich..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Lorg:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" "Lorg gu h-eadar-ghnìomhach airson ainmean ìomhaigheagan (pasgan, m.e.)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Gnìomhan" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Beòthachaidhean" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplacaidean" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Roinnean-seòrsa" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Uidheaman" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Suaicheantasan" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Samhlaidhean-gnùis" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Siostaman fhaidhlichean" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Eadar-nàiseanta" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Seòrsaichean MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Àiteachan" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Staid" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" "*.png *.xpm *.svg *.svgz|Faidhlichean ìomhaigheige (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/gl/kiconthemes5.po kiconthemes-5.44.0/po/gl/kiconthemes5.po --- kiconthemes-5.18.0/po/gl/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/gl/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,100 +9,111 @@ # Marce Villarino , 2009, 2010, 2011, 2012. # Xosé , 2010. # Marce Villarino , 2011, 2012, 2013, 2014. +# Adrián Chaves Fernández (Gallaecio) , 2017. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-01-04 23:20+0100\n" -"Last-Translator: Marce Villarino \n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-07-24 17:17+0100\n" +"Last-Translator: Adrián Chaves \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Seleccionar a icona" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Orixe das iconas" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Iconas do sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ou&tras iconas:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." -msgstr "&Examinar..." +msgstr "&Examinar…" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Buscar:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Buscar interactivamente os nomes das iconas (p.ex. cartafol)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Accións" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacións" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" -msgstr "Aplicacións" +msgstr "Aplicativos" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorías" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emocións" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemas de ficheiros" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipos mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Lugares" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estado" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Todas" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ficheiros de icona (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/gu/kiconthemes5.po kiconthemes-5.44.0/po/gu/kiconthemes5.po --- kiconthemes-5.18.0/po/gu/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/gu/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-05-13 18:57+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -17,82 +17,92 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "ચિહ્ન પસંદ કરો" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "ચિહ્ન સ્ત્રોત" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "સિસ્ટમ ચિહ્નો (&y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "બીજાં ચિહ્નો (&t):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "શોધખોળ (&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "શોધો (&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "ચિહ્ન નામો માટે શોધ કરો (દા.ત. ફોલ્ડર)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "ક્રિયાઓ" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "એનિમેશન" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "કાર્યક્રમો" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "વર્ગો" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "ઉપકરણો" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "નિશાનીઓ" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "લાગણીચિહ્નો" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ફાઇલસિસ્ટમો" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "આંતરરાષ્ટ્રિય" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "માઇમપ્રકારો" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "જગ્યાઓ" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "સ્થિતિ" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|ચિહ્ન ફાઇલો (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/he/kiconthemes5.po kiconthemes-5.44.0/po/he/kiconthemes5.po --- kiconthemes-5.18.0/po/he/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/he/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -17,97 +17,108 @@ # דיאגו יסטרובני , 2005, 2012, 2013. # Meni Livne , 2007. # tahmar1900 , 2008. +# Elkana Bardugo , 2017. #zanata msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-11-29 23:45+0200\n" -"Last-Translator: Diego Iastrubni \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-05-16 06:50-0400\n" +"Last-Translator: Copied by Zanata \n" "Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Zanata 3.9.6\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "בחירת סמל" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "מקור הסמלים" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&סמלי מערכת:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "ס&מלים אחרים:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ע&יון..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&חפש:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "חיפוש שמות סמלים (לדוגמה \"folder\")." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "פעולות" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "אנימציות" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "תוכניות" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "קטגוריות" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "התקנים" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "סמלים" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "מערכות קבצים" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "בינלאומי" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "סוגי קבצים" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "מיקומים" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "מצב" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|קבצי סמלים (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/hi/kiconthemes5.po kiconthemes-5.44.0/po/hi/kiconthemes5.po --- kiconthemes-5.18.0/po/hi/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/hi/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2007-11-17 17:50+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -18,82 +18,92 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "प्रतीक चुनें" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "प्रतीक स्रोत" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "तंत्र प्रतीकः (&y)" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "अन्य प्रतीकः (&t)" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ब्राउज... (&B)" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "ढूंढें: (&S)" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "प्रतीक नामों के लिए इंटरेक्टिव ढूंढें (उदा. फ़ोल्डर)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "क्रियाएं" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "एनिमेशन" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "अनुप्रयोग" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "श्रेणियाँ" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "औज़ार" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "एम्ब्लेम" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "इमोट्स" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "फ़ाइलसिस्टम" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "अंतर्राष्ट्रीय" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "माइमटाइप्स" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "स्थान" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "स्थिति" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|प्रतीक फ़ाइलें (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/hr/kiconthemes5.po kiconthemes-5.44.0/po/hr/kiconthemes5.po --- kiconthemes-5.18.0/po/hr/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/hr/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kio4 0\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2011-07-22 16:13+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -25,82 +25,92 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Odaberi ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Izvor ikone" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ikone susta&va:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "D&ruge ikone:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Po&traži…" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Traži:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktivno traženje naziva ikona (npr. direktorija)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Akcije" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacije" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikacije" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorije" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Uređaji" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Ikonica" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Smajlići" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Datotečni sustavi" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Međunarodni" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mimetipovi" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Mjesta" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stanje" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikonske datoteke (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/hsb/kiconthemes5.po kiconthemes-5.44.0/po/hsb/kiconthemes5.po --- kiconthemes-5.18.0/po/hsb/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/hsb/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,11 +9,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-11-17 23:54+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" -"Language: \n" +"Language: hsb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,83 +21,93 @@ "%100==4 ? 2 : 3;\n" "X-Generator: KAider 0.1\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Wubjerće piktogram" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Žórło piktograma" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Systemowe piktogramy:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Hewaše piktogramy:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Přelistuj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Pytać:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Pyta interaktiwnje za mjenami piktogramow (na př. zapisk)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Akcije" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacije" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programy" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorije" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Graty" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemy" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikony" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Datajowe systemy" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Mjezynarodny" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-družiny" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Městna" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" "*.png *.xpm *.svg *.svgz|piktogramowe dataje (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/hu/kiconthemes5.po kiconthemes-5.44.0/po/hu/kiconthemes5.po --- kiconthemes-5.18.0/po/hu/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/hu/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: KDE 4.4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-12-12 22:37+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -15,82 +15,92 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Ikonválasztás" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonforrás" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Rendszerikonok:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "E&gyéb ikonok:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Tallózás..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Keresés:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktív keresés ikonnevekre (pl.: mappa)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Események" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animációk" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Alkalmazások" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategóriák" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Eszközök" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblémák" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Hangulatjelek" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Fájlrendszerek" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Nemzetközi" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-típusok" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Helyek" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Állapot" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikonfájlok (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ia/kiconthemes5.po kiconthemes-5.44.0/po/ia/kiconthemes5.po --- kiconthemes-5.18.0/po/ia/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ia/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,98 +1,108 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# g.sora , 2010, 2011, 2012, 2013. +# g.sora , 2010, 2011, 2012, 2013, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-07-11 23:25+0200\n" -"Last-Translator: Giovanni Sora \n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-01-15 19:48+0100\n" +"Last-Translator: giovanni \n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Selige icone" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Fonte de icone" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Icones de s&ystema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Al&tere icones:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Naviga..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Cerca:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Cerca inter-activemente pro nomine de icones (p.ex. dossier)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Actiones" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animationes" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Applicationes" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorias" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotes" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Systemas de files" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "International" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Typos mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Placias" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stato" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Omne" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Files de icone (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/id/kiconthemes5.po kiconthemes-5.44.0/po/id/kiconthemes5.po --- kiconthemes-5.18.0/po/id/kiconthemes5.po 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/po/id/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,108 @@ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. +# Wantoyo , 2018. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2018-03-02 21:29+0700\n" +"Last-Translator: Wantoyo \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Lokalize 2.0\n" + +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format +msgid "Select Icon" +msgstr "Pilih Ikon" + +#: kicondialog.cpp:289 +#, kde-format +msgid "Icon Source" +msgstr "Sumber Ikon" + +#: kicondialog.cpp:298 +#, kde-format +msgid "S&ystem icons:" +msgstr "Ikon &sistem:" + +#: kicondialog.cpp:304 +#, kde-format +msgid "O&ther icons:" +msgstr "Ikon &lainnya:" + +#: kicondialog.cpp:307 +#, kde-format +msgid "&Browse..." +msgstr "&Telusuri..." + +#: kicondialog.cpp:318 +#, kde-format +msgid "&Search:" +msgstr "&Pencarian:" + +#: kicondialog.cpp:325 +#, kde-format +msgid "Search interactively for icon names (e.g. folder)." +msgstr "Cari secara interaktif untuk nama-nama ikon (misalnya folder)." + +#: kicondialog.cpp:355 +#, kde-format +msgid "Actions" +msgstr "Tindakan" + +#: kicondialog.cpp:356 +#, kde-format +msgid "Applications" +msgstr "Aplikasi" + +#: kicondialog.cpp:357 +#, kde-format +msgid "Categories" +msgstr "Kategori" + +#: kicondialog.cpp:358 +#, kde-format +msgid "Devices" +msgstr "Peranti" + +#: kicondialog.cpp:359 +#, kde-format +msgid "Emblems" +msgstr "Emblem" + +#: kicondialog.cpp:360 +#, kde-format +msgid "Emotes" +msgstr "Emos" + +#: kicondialog.cpp:361 +#, kde-format +msgid "Mimetypes" +msgstr "Mimetypes" + +#: kicondialog.cpp:362 +#, kde-format +msgid "Places" +msgstr "Tempat" + +#: kicondialog.cpp:363 +#, kde-format +msgid "Status" +msgstr "Status" + +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Semua" + +#: kicondialog.cpp:602 +#, kde-format +msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" +msgstr "*.png *.xpm *.svg *.svgz|Fail Ikon (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/is/kiconthemes5.po kiconthemes-5.44.0/po/is/kiconthemes5.po --- kiconthemes-5.18.0/po/is/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/is/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-09-07 08:43+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -31,82 +31,92 @@ "\n" "\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Veldu táknmynd" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Táknmyndir teknar úr" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Kerfistáknmyndir:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Aðrar táknmyndir:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Velja..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Leita:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Leita gagnvirkt að heiti táknmynda (t.d. möppu)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aðgerðir" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Hreyfimyndir" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Forrit" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Flokkar" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Tæki" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Táknmyndir" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Broskallar" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Skráakerfi" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Alþjóðlegt" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-tög" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Staðir" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Staða" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|táknmyndaskrár (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/it/kiconthemes5.po kiconthemes-5.44.0/po/it/kiconthemes5.po --- kiconthemes-5.18.0/po/it/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/it/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,93 +11,103 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-03-10 17:36+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-22 20:21+0100\n" "Last-Translator: Luigi Toscano \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Scegli l'icona" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Sorgente icone" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Icone di &sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Altre icone:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Sfoglia..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Trova:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Cerca interattivamente i nomi delle icone (es. cartella)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Azioni" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animazioni" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Applicazioni" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorie" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivi" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemi" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Faccine" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filesystem" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internazionale" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipi MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Risorse" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stato" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Tutte" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|File icone (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ja/kiconthemes5.po kiconthemes-5.44.0/po/ja/kiconthemes5.po --- kiconthemes-5.18.0/po/ja/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ja/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2011-08-27 14:06-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -25,82 +25,92 @@ "X-Text-Markup: kde4\n" "X-Generator: Lokalize 1.1\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "アイコンの選択" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "アイコンソース" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "システムアイコン(&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "その他のアイコン(&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ブラウズ(&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "検索(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "アイコン名 (例: フォルダ) を対話的に検索" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "アクション" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "アニメーション" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "アプリケーション" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "カテゴリ" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "デバイス" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "エンブレム" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "感情アイコン" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ファイルシステム" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "国際的" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME タイプ" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "場所" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "状態" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|アイコンファイル (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/kk/kiconthemes5.po kiconthemes-5.44.0/po/kk/kiconthemes5.po --- kiconthemes-5.18.0/po/kk/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/kk/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-04-19 06:26+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -22,83 +22,93 @@ "\n" "\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Таңбашаны таңдау" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Таңбашаның көзі" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Жүй&елік таңбашалар:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Басқа таңбашалар:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Шолу..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Іздеу:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Таңбашалар атауы бойынша (мысалы, қапшық) интерактивті іздеу." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Әрекеттер" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анимациялар" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Қолданбалар" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Санаттар" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Құрлығылар" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Эмблемалар" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Көңіл-күй белгілері" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файл жүйелері" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Халықаралық" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME түрлері" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Орындар" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Күй-жайлар" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" "*.png *.xpm *.svg *.svgz|Таңбашалар файлдары (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/km/kiconthemes5.po kiconthemes-5.44.0/po/km/kiconthemes5.po --- kiconthemes-5.18.0/po/km/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/km/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -5,11 +5,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-06-27 10:04+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" -"Language: \n" +"Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,82 +17,92 @@ "X-Generator: KBabel 1.11.4\n" "X-Language: km-KH\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "ជ្រើស​រូបតំណាង" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "ប្រភព​រូបតំណាង" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "រូបតំណាង​ប្រព័ន្ធ ៖ " -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "រូបតំណាង​ផ្សេងៗ ៖ " -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "រកមើល... " -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "ស្វែងរក ៖ " -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "ស្វែង​រក​ឈ្មោះ​របស់​រូបតំណាង​យ៉ាង​រស់​រវើក (ឧ. ថត) ។" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "អំពើ" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "ចលនា" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "កម្មវិធី" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "ប្រភេទ" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "ឧបករណ៍" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "បដិរូប" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "សញ្ញា​អារម្មណ៍" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ប្រព័ន្ធ​ឯកសារ" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "អន្តរជាតិ" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "ប្រភេទ Mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "ទីកន្លែង" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "ស្ថាន​ភាព" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|ឯកសារ​រូបតំណាង (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ko/kiconthemes5.po kiconthemes-5.44.0/po/ko/kiconthemes5.po --- kiconthemes-5.18.0/po/ko/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ko/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -2,14 +2,14 @@ # Copyright (c) 2003, 2004, 2007-2008 Free Software Foundation, Inc. # KIM KyungHeon , 2003, 2004. # Shinjo Park , 2007, 2008, 2009, 2010. -# Shinjo Park , 2011, 2012, 2013, 2014, 2015. +# Shinjo Park , 2011, 2012, 2013, 2014, 2015, 2016. # msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2015-01-18 17:07+0900\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-11 21:44+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -17,84 +17,94 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "아이콘 선택" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "아이콘 원본" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "시스템 아이콘(&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "다른 아이콘(&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "찾아보기(&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "찾기(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "아이콘 이름에서 찾습니다. (예: 폴더)" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "동작" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "애니메이션" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "프로그램" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "분류" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "장치" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "엠블렘" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "이모티콘" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "파일 시스템" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "국제화" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME 형식" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "위치" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "상태" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "모두" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|아이콘 파일 (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ku/kiconthemes5.po kiconthemes-5.44.0/po/ku/kiconthemes5.po --- kiconthemes-5.18.0/po/ku/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ku/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,94 +7,104 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2007-12-21 21:45+0100\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: Kurdish \n" -"Language: \n" +"Language: ku\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" diff -Nru kiconthemes-5.18.0/po/lt/kiconthemes5.po kiconthemes-5.44.0/po/lt/kiconthemes5.po --- kiconthemes-5.18.0/po/lt/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/lt/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-06-17 13:36+0300\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian \n" @@ -20,82 +20,92 @@ "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" "X-Generator: Lokalize 1.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Parinkti ženkliuką" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ženkliuko šaltinis" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Sis&temos ženkliukai:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Kiti ženkliukai:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Naršyti..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Ieškoti:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktyviai ieškoti ženkliukų pavadinimų (pvz., aplankas)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Veiksmai" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacijos" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programos" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorijos" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Įrenginiai" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemos" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emocijų ženkleliai" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Failų sistemos" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Tarptautinė" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime tipai" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Vietos" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Būsena" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ženkliukų failai (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/lv/kiconthemes5.po kiconthemes-5.44.0/po/lv/kiconthemes5.po --- kiconthemes-5.18.0/po/lv/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/lv/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -12,11 +12,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2011-07-06 12:49+0300\n" "Last-Translator: Maris Nartiss \n" "Language-Team: Latvian\n" -"Language: \n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,82 +24,92 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Izvēlēties ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonu avots" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Sistēmas ikonas:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ci&tas ikonas:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Pārlūkot..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Meklēt:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktīvi meklēt ikonu nosaukumos (piem., mape)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Darbības" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animācijas" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programmas" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorijas" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Ierīces" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblēmas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emocijas" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Failu sistēmas" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacionāli" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME tipi" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Vietas" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Statuss" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikonu faili (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/mai/kiconthemes5.po kiconthemes-5.44.0/po/mai/kiconthemes5.po --- kiconthemes-5.18.0/po/mai/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/mai/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-12-03 15:07+0530\n" "Last-Translator: Sangeeta Kumari \n" "Language-Team: Maithili \n" @@ -18,82 +18,92 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "प्रतीक चुनू" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "प्रतीक स्रोत" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "तंत्र प्रतीकः (&y)" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "अन्य प्रतीकः (&t)" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ब्राउज... (&B)" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "खोजू (&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "प्रतीक नाम क' लेल इंटरेक्टिव ढूँढू (उदा. फोल्डर)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "क्रियासभ" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "संजीवन" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "अनुप्रयोग" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "श्रेणीसभ" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "डिवाइस" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "प्रतीक" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "इमोट्स" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "फाइलसिस्टम" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "अंतर्राष्ट्रीय" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "माइमटाइप्स" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "स्थान" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "स्थिति" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|प्रतीक फाइलसभ (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/mk/kiconthemes5.po kiconthemes-5.44.0/po/mk/kiconthemes5.po --- kiconthemes-5.18.0/po/mk/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/mk/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2010-01-21 13:58+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -26,82 +26,92 @@ "Plural-Forms: Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : " "2;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Изберете икона" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Извор на икони" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Системски икони:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Д&руги икони:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Разгледај..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Барај:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Бара интерактивно за имиња на икони (пр. папка)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Дејства" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анимации" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Апликации" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Категории" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Уреди" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Амблеми" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Емотикони" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Датотечни системи" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Меѓународни" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-типови" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Места" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Статус" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|датотеки со икони (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ml/kiconthemes5.po kiconthemes-5.44.0/po/ml/kiconthemes5.po --- kiconthemes-5.18.0/po/ml/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ml/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,94 +7,104 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2010-06-25 20:40+0530\n" "Last-Translator: Divya.k \n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ് \n" -"Language: \n" +"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/mr/kiconthemes5.po kiconthemes-5.44.0/po/mr/kiconthemes5.po --- kiconthemes-5.18.0/po/mr/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/mr/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-03-30 14:45+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: American English \n" @@ -17,82 +17,92 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 1.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "चिन्ह निवडा" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "चिन्ह स्रोत" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "प्रणाली चिन्हे (&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "इतर चिन्हे (&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "संचार करा (&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "शोध (&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "क्रिया" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "ऍनीमेशन्स" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "अनुप्रयोग" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "विभाग" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "साधने" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "एम्ब्लेम्स" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "एमोटस" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "फाईल प्रणाली" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "आंतर्राष्ट्रीय" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime प्रकार" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "जागा" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "स्थिती" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" diff -Nru kiconthemes-5.18.0/po/ms/kiconthemes5.po kiconthemes-5.44.0/po/ms/kiconthemes5.po --- kiconthemes-5.18.0/po/ms/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ms/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-03-09 22:58+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -20,86 +20,92 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Pilih Ikon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Sumber Ikon" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ikon &sistem:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ikon &Lain-lain:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Lun&gsur." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Cari:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Cari nama ikon secara interaktif (misalnya folder)" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Aksi" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Aplikasi" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikasi" -#: kicondialog.cpp:359 -#, fuzzy +#: kicondialog.cpp:357 +#, fuzzy, kde-format msgid "Categories" msgstr "Kategori" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Peranti" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistem Fail" - -#: kicondialog.cpp:364 -#, fuzzy -msgid "International" -msgstr "Antarabangsa" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Jenis Mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/nb/kiconthemes5.po kiconthemes-5.44.0/po/nb/kiconthemes5.po --- kiconthemes-5.18.0/po/nb/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/nb/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ # Sven Harald Klein Bakke , 2004. # Eskild Hustvedt , 2005. # Jørgen Grønlund , 2005. -# Axel Bojer , 2005, 2006. +# Axel Bojer , 2005, 2006. # Nils Kristian Tomren , 2005, 2007. # Alexander Nicolaysen Sørnes , 2006. # Øyvind A. Holm , 2009. @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-12-30 20:55+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -29,82 +29,92 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Velg ikon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonkilde" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Systemikoner:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "A&ndre ikoner:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Bla gjennom …" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Søk:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Søk interaktivt etter ikon-navn (f.eks. mapper)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Handlinger" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animasjoner" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programmer" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorier" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Enheter" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemer" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikoner" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filsystemer" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internasjonalt" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-typer" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Steder" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikonfiler (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/nds/kiconthemes5.po kiconthemes-5.44.0/po/nds/kiconthemes5.po --- kiconthemes-5.18.0/po/nds/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/nds/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2014-02-09 03:39+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -20,82 +20,92 @@ "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Lüttbild utsöken" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Born vun't Lüttbild" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ysteem-Lüttbiller:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Anner Lüttbiller:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Utsöken..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Söken:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Mit Nafragen na Lüttbildnaams söken (a.B. Orner)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Akschonen" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animatschonen" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programmen" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorien" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Reedschappen" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Symbolen" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Snuten" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Dateisystemen" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internatschonaal" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-Typen" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Öörd" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Lüttbild-Dateien (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ne/kiconthemes5.po kiconthemes-5.44.0/po/ne/kiconthemes5.po --- kiconthemes-5.18.0/po/ne/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ne/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2007-08-22 16:04+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -22,82 +22,92 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=n !=1\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "प्रतिमा चयन गर्नुहोस्" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "प्रतिमा स्रोत" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "प्रणाली प्रतिमा:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "अन्य प्रतिमा:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ब्राउज गर्नुहोस्..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "खोज्नुहोस्:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "प्रतिमा नामहरू अनुरुप पारस्परिक रुपले खोज्नुहोस् (जस्तै: फोल्डर) ।" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "कार्य" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "एनिमेसन" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "अनुप्रयोग" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "कोटि" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "यन्त्र" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "चिन्ह लगाउँछ" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "व्यक्त गर्दछ" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "फाइल प्रणाली" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "अन्तराष्ट्रिय" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "माइम प्रकार" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "राख्दछ" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "वस्तुस्थिति" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|प्रतिमा फाइल (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/nl/kiconthemes5.po kiconthemes-5.44.0/po/nl/kiconthemes5.po --- kiconthemes-5.18.0/po/nl/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/nl/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -14,13 +14,13 @@ # Kristof Bal , 2008. # Freek de Kruijf , 2008, 2009, 2010. # Freek de Kruijf , 2010, 2011, 2012. -# Freek de Kruijf , 2011, 2013, 2014. +# Freek de Kruijf , 2011, 2013, 2014, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-01-25 19:41+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 11:56+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -32,82 +32,92 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Pictogram selecteren" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Pictogrambron" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ysteempictogrammen:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Overige pictogrammen:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "B&laderen..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Zoeken:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interactief zoeken naar pictogramnamen (zoals map)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Acties" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animaties" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Toepassingen" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorieën" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Apparaten" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemen" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoticons" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Bestandssystemen" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internationaal" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-bestandstypen" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Locaties" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Alles" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Pictogrambestanden (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/nn/kiconthemes5.po kiconthemes-5.44.0/po/nn/kiconthemes5.po --- kiconthemes-5.18.0/po/nn/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/nn/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2011-07-07 17:32+0200\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -22,82 +22,92 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Vel ikon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonkjelde" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Systemikon:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "A&ndre ikon:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Bla gjennom …" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Søk:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Søk interaktivt etter ikonnamn (for eksempel mapper)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Handlingar" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animasjonar" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Program" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategoriar" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Einingar" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblem" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Fjesingar" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filsystem" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internasjonalt" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-typar" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Stader" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Alle" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikonfiler (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/oc/kiconthemes5.po kiconthemes-5.44.0/po/oc/kiconthemes5.po --- kiconthemes-5.18.0/po/oc/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/oc/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-08-06 00:08+0200\n" "Last-Translator: \n" "Language-Team: Occitan \n" @@ -18,82 +18,92 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: KBabel 1.11.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Seleccionatz una icòna" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Examinar..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Recercar :" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Accions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacions" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicacions" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorias" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Periferics" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblèmas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Acorchis" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estatut" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" diff -Nru kiconthemes-5.18.0/po/pa/kiconthemes5.po kiconthemes-5.44.0/po/pa/kiconthemes5.po --- kiconthemes-5.18.0/po/pa/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/pa/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-12-16 12:57+0530\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -26,82 +26,92 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "ਆਈਕਾਨ ਚੁਣੋ" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "ਆਈਕਾਨ ਸਰੋਤ" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "ਸਿਸਟਮ ਆਈਕਾਨ(&y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "ਹੋਰ ਆਈਕਾਨ(&t):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "ਝਲਕ(&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "ਖੋਜ(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "ਆਈਕਾਨ ਨਾਂ ਲਈ ਪ੍ਰਭਾਵੀ ਖੋਜ (ਜਿਵੇਂ ਕਿ ਫੋਲਡਰ)।" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "ਐਕਸ਼ਨ" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "ਐਨੀਮੇਸ਼ਨ" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "ਐਪਲੀਕੇਸ਼ਨ" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "ਕੈਟਾਗਰੀਆਂ" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "ਜੰਤਰ" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "ਨਿਸ਼ਾਨ" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "ਈਮੋਟਿਸ" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ਫਾਈਲ-ਸਿਸਟਮ" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "ਅੰਤਰਰਾਸ਼ਟਰੀ" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "ਮਾਈਮ-ਕਿਸਮ" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "ਥਾਵਾਂ" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "ਹਾਲਤ" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|ਆਈਕਾਨ ਫਾਇਲ਼ਾਂ (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/pl/kiconthemes5.po kiconthemes-5.44.0/po/pl/kiconthemes5.po --- kiconthemes-5.18.0/po/pl/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/pl/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -15,99 +15,109 @@ # Robert Gomulka , 2007, 2008. # Marta Rybczyńska , 2007, 2008, 2009, 2010, 2011. # Artur Chłond , 2010. -# Łukasz Wojniłowicz , 2011, 2012, 2014. +# Łukasz Wojniłowicz , 2011, 2012, 2014, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-01-26 09:05+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-20 09:05+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Wybierz ikonę" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Źródło ikony" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ikony &systemowe:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Inne ikony:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Przeglądaj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Znajdź:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Szukaj interaktywnie nazw ikon (np. folderu)." +msgstr "Szukaj interaktywnie nazw ikon (np. katalogu)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Działania" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacje" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programy" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorie" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Urządzenia" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Symbole" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikony" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "System plików" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Międzynarodowe" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Typy MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Szybki dostęp" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stan" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Wszystkie" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Pliki ikon (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/pt/kiconthemes5.po kiconthemes-5.44.0/po/pt/kiconthemes5.po --- kiconthemes-5.18.0/po/pt/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/pt/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -2,11 +2,11 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-12-12 11:38+0000\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -39,83 +39,93 @@ "X-POFile-SpellExtra: FindProxyForURLEx canResume Co\n" "X-POFile-IgnoreConsistency: Status\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Escolha o Ícone" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Origem dos Ícones" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ícones de &sistema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ou&tros ícones:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Es&colher..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Procurar:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Procurar interactivamente por nomes de ícones (por exemplo pasta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Acções" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animações" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicações" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorias" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoções" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemas de Ficheiros" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipos MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Locais" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estado" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Tudo" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" "*.png *.xpm *.svg *.svgz|Ficheiros de Ícones (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/pt_BR/kiconthemes5.po kiconthemes-5.44.0/po/pt_BR/kiconthemes5.po --- kiconthemes-5.18.0/po/pt_BR/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/pt_BR/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,98 +10,108 @@ # doutor.zero , 2007. # Diniz Bortolotto , 2007, 2008. # André Marcelo Alvarenga , 2008, 2009, 2010, 2011, 2012, 2013, 2014. -# Luiz Fernando Ranghetti , 2009, 2010, 2012. +# Luiz Fernando Ranghetti , 2009, 2010, 2012, 2017. msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-03-04 21:08-0300\n" -"Last-Translator: André Marcelo Alvarenga \n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-12-12 15:52-0300\n" +"Last-Translator: Luiz Fernando Ranghetti \n" +"Language-Team: Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Selecionar ícone" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Origem dos ícones" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Ícones do s&istema:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ou&tros ícones:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Navegar..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Pesqui&sar:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Pesquisar interativamente por nomes de ícones (p. ex., pasta)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Ações" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animações" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicativos" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorias" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispositivos" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemas" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoções" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistemas de arquivos" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internacional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipos MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Locais" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estado" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Todos" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Arquivos de ícone (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ro/kiconthemes5.po kiconthemes-5.44.0/po/ro/kiconthemes5.po --- kiconthemes-5.18.0/po/ro/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ro/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-10-13 12:54+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -23,82 +23,92 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Selectare pictogramă" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Sursă pictogramă" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Pictograme de &sistem:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Alte pictograme:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Răsfoiește..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "C&aută:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Caută interactiv nume de pictograme (de ex.: dosar)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Acțiuni" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animații" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplicații" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categorii" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Dispozitive" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Embleme" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emoticoni" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sisteme de fișiere" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internațional" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Tipuri MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Locuri" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stare" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fișiere pictogramă (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ru/kiconthemes5.po kiconthemes-5.44.0/po/ru/kiconthemes5.po --- kiconthemes-5.18.0/po/ru/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ru/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ # Evgeniy Ivanov , 2008. # Андрей Черепанов , 2009. # Andrey Cherepanov , 2009, 2011. -# Alexander Potashev , 2009, 2010, 2011. +# Alexander Potashev , 2009, 2010, 2011, 2016. # Yuri Efremov , 2011, 2012. # Inga Barinova , 2012. # Julia Dronova , 2012. @@ -19,97 +19,107 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-04-27 18:37+0400\n" -"Last-Translator: Alexander Lakhin \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-03 22:10+0300\n" +"Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Environment: kde\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Выберите значок" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Источник значков" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Системные значки:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Прочие значки:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Просмотр..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Искать:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Интерактивный поиск для имён значков (например, папка)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Действия" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анимация" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Приложения" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Категории" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Устройства" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Эмблемы" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Смайлики" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файловые системы" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Флаги" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Типы MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Точки входа" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Состояние" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Все" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Файлы значков (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/se/kiconthemes5.po kiconthemes-5.44.0/po/se/kiconthemes5.po --- kiconthemes-5.18.0/po/se/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/se/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-06-03 01:00+0200\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" @@ -19,82 +19,92 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Vállje govaža" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Govašgáldu" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Vuogádatgovažat:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ea&rá govažat:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Bláđđe …" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Oza:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Oza govašnamaid interaktiivalaččat (omd. máhpa)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Doaimmat" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animašuvnnat" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Prográmmat" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Lágit" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Ovttadagat" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblemat" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Mojánat" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Fiilavuogádagat" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Riikkaidgaskasaš" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME-šlájat" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Báikkit" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stáhtus" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Buot" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Govašfiillat (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sk/kiconthemes5.po kiconthemes-5.44.0/po/sk/kiconthemes5.po --- kiconthemes-5.18.0/po/sk/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sk/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,98 +8,108 @@ # Jozef Riha , 2006. # Michal Sulek , 2009, 2010, 2011. # Richard Frič , 2012. -# Roman Paholík , 2012. +# Roman Paholík , 2012, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-12 09:55+0100\n" -"Last-Translator: Roman Paholík \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-12-27 12:57+0100\n" +"Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Vyberte ikonu" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Zdroj ikony" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Systémové ikony:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Iné ikony:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Prechádzať..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Hľadať:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Hľadať interaktívne názvy ikon (napr. priečinok)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Akcie" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animácie" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Aplikácie" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategórie" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Zariadenia" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblémy" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Emotikony" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Súborové systémy" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Medzinárodné" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Typy MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Miesta" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stav" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Všetko" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Ikony (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sl/kiconthemes5.po kiconthemes-5.44.0/po/sl/kiconthemes5.po --- kiconthemes-5.18.0/po/sl/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sl/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,13 +11,13 @@ # Andrej Vernekar , 2005, 2007, 2008, 2009. # Jure Repinc , 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Andrej Vernekar , 2008, 2012. -# Andrej Mernik , 2013. +# Andrej Mernik , 2013, 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-11-26 18:39+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-22 21:44+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -28,82 +28,92 @@ "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Izberite ikono" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Vir ikone" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Sistemske ikone:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Druge ikone:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "Pre&brskaj ..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Po&išči:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Interaktivno poiščite imena ikon (npr. mapa)" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Dejanja" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animacije" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programi" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorije" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Naprave" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Simboli" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Čustva" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Datotečni sistemi" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Mednarodno" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Vrste MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Mesta" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Stanje" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Vse" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Datoteke z ikonami (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sq/kiconthemes5.po kiconthemes-5.44.0/po/sq/kiconthemes5.po --- kiconthemes-5.18.0/po/sq/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sq/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kde4libs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-04-29 17:53+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -19,82 +19,92 @@ "X-Launchpad-Export-Date: 2011-04-22 16:31+0000\n" "X-Generator: Launchpad (build 12883)\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Shfleto..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "" diff -Nru kiconthemes-5.18.0/po/sr/kiconthemes5.po kiconthemes-5.44.0/po/sr/kiconthemes5.po --- kiconthemes-5.18.0/po/sr/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sr/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,14 +1,14 @@ -# Translation of kio4.po into Serbian. +# Translation of kiconthemes5.po into Serbian. # Toplica Tanaskovic , 2003, 2004, 2005. # Marko Rosic , 2003. -# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015. +# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2016. # Dalibor Djuric , 2009, 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-15 16:52+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -25,94 +25,102 @@ "X-Wrapping: fine\n" # >> @title:window -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" -msgstr "Избор иконе" +msgstr "Избор иконице" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" -msgstr "Извор иконе" +msgstr "Извор иконице" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" -msgstr "&Системске иконе:" +msgstr "&Системске иконице:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" -msgstr "&Друге иконе:" +msgstr "&Друге иконице:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Прегледај..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Тражи:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Интерактивно тражи имена икона (нпр. фасцикла)." +msgstr "Интерактивно тражи имена иконица (нпр. фасцикла)." # >> @item:inlistbox System icons -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "радње" # >> @item:inlistbox System icons -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "анимације" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "програми" # >> @item:inlistbox System icons -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "категорије" # >> @item:inlistbox System icons -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "уређаји" # >> @item:inlistbox System icons -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "амблеми" # >> @item:inlistbox System icons -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "емотикони" # >> @item:inlistbox System icons -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "фајл системи" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:364 -msgid "International" -msgstr "међународно" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "МИМЕ типови" # >> @item:inlistbox System icons -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "места" # >> @item:inlistbox System icons -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "стање" -#: kicondialog.cpp:608 +# >> @item:inlistbox System icons +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "све" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|фајлови икона (*.png *.xpm *.svg *.svgz)" +msgstr "*.png *.xpm *.svg *.svgz|фајлови иконица (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sr@ijekavian/kiconthemes5.po kiconthemes-5.44.0/po/sr@ijekavian/kiconthemes5.po --- kiconthemes-5.18.0/po/sr@ijekavian/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sr@ijekavian/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,14 +1,14 @@ -# Translation of kio4.po into Serbian. +# Translation of kiconthemes5.po into Serbian. # Toplica Tanaskovic , 2003, 2004, 2005. # Marko Rosic , 2003. -# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015. +# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2016. # Dalibor Djuric , 2009, 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-15 16:52+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" "Language: sr@ijekavian\n" @@ -24,94 +24,102 @@ "X-Environment: kde\n" # >> @title:window -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" -msgstr "Избор иконе" +msgstr "Избор иконице" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" -msgstr "Извор иконе" +msgstr "Извор иконице" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" -msgstr "&Системске иконе:" +msgstr "&Системске иконице:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" -msgstr "&Друге иконе:" +msgstr "&Друге иконице:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Прегледај..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Тражи:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Интерактивно тражи имена икона (нпр. фасцикла)." +msgstr "Интерактивно тражи имена иконица (нпр. фасцикла)." # >> @item:inlistbox System icons -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "радње" # >> @item:inlistbox System icons -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "анимације" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "програми" # >> @item:inlistbox System icons -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "категорије" # >> @item:inlistbox System icons -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "уређаји" # >> @item:inlistbox System icons -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "амблеми" # >> @item:inlistbox System icons -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "емотикони" # >> @item:inlistbox System icons -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "фајл системи" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:364 -msgid "International" -msgstr "међународно" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "МИМЕ типови" # >> @item:inlistbox System icons -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "мјеста" # >> @item:inlistbox System icons -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "стање" -#: kicondialog.cpp:608 +# >> @item:inlistbox System icons +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "све" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|фајлови икона (*.png *.xpm *.svg *.svgz)" +msgstr "*.png *.xpm *.svg *.svgz|фајлови иконица (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sr@ijekavianlatin/kiconthemes5.po kiconthemes-5.44.0/po/sr@ijekavianlatin/kiconthemes5.po --- kiconthemes-5.18.0/po/sr@ijekavianlatin/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sr@ijekavianlatin/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,14 +1,14 @@ -# Translation of kio4.po into Serbian. +# Translation of kiconthemes5.po into Serbian. # Toplica Tanaskovic , 2003, 2004, 2005. # Marko Rosic , 2003. -# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015. +# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2016. # Dalibor Djuric , 2009, 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-15 16:52+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" "Language: sr@ijekavianlatin\n" @@ -24,94 +24,102 @@ "X-Environment: kde\n" # >> @title:window -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" -msgstr "Izbor ikone" +msgstr "Izbor ikonice" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" -msgstr "Izvor ikone" +msgstr "Izvor ikonice" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" -msgstr "&Sistemske ikone:" +msgstr "&Sistemske ikonice:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" -msgstr "&Druge ikone:" +msgstr "&Druge ikonice:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Pregledaj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Traži:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Interaktivno traži imena ikona (npr. fascikla)." +msgstr "Interaktivno traži imena ikonica (npr. fascikla)." # >> @item:inlistbox System icons -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "radnje" # >> @item:inlistbox System icons -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "animacije" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "programi" # >> @item:inlistbox System icons -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "kategorije" # >> @item:inlistbox System icons -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "uređaji" # >> @item:inlistbox System icons -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "amblemi" # >> @item:inlistbox System icons -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "emotikoni" # >> @item:inlistbox System icons -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "fajl sistemi" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:364 -msgid "International" -msgstr "međunarodno" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME tipovi" # >> @item:inlistbox System icons -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "mjesta" # >> @item:inlistbox System icons -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "stanje" -#: kicondialog.cpp:608 +# >> @item:inlistbox System icons +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "sve" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|fajlovi ikona (*.png *.xpm *.svg *.svgz)" +msgstr "*.png *.xpm *.svg *.svgz|fajlovi ikonica (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sr@latin/kiconthemes5.po kiconthemes-5.44.0/po/sr@latin/kiconthemes5.po --- kiconthemes-5.18.0/po/sr@latin/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sr@latin/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,14 +1,14 @@ -# Translation of kio4.po into Serbian. +# Translation of kiconthemes5.po into Serbian. # Toplica Tanaskovic , 2003, 2004, 2005. # Marko Rosic , 2003. -# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015. +# Chusslove Illich , 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2016. # Dalibor Djuric , 2009, 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-15 16:52+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-28 01:32+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" "Language: sr@latin\n" @@ -24,94 +24,102 @@ "X-Environment: kde\n" # >> @title:window -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" -msgstr "Izbor ikone" +msgstr "Izbor ikonice" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" -msgstr "Izvor ikone" +msgstr "Izvor ikonice" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" -msgstr "&Sistemske ikone:" +msgstr "&Sistemske ikonice:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" -msgstr "&Druge ikone:" +msgstr "&Druge ikonice:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Pregledaj..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Traži:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." -msgstr "Interaktivno traži imena ikona (npr. fascikla)." +msgstr "Interaktivno traži imena ikonica (npr. fascikla)." # >> @item:inlistbox System icons -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "radnje" # >> @item:inlistbox System icons -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "animacije" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "programi" # >> @item:inlistbox System icons -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "kategorije" # >> @item:inlistbox System icons -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "uređaji" # >> @item:inlistbox System icons -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "amblemi" # >> @item:inlistbox System icons -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "emotikoni" # >> @item:inlistbox System icons -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "fajl sistemi" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:364 -msgid "International" -msgstr "međunarodno" - -# >> @item:inlistbox System icons -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME tipovi" # >> @item:inlistbox System icons -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "mesta" # >> @item:inlistbox System icons -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "stanje" -#: kicondialog.cpp:608 +# >> @item:inlistbox System icons +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "sve" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" -msgstr "*.png *.xpm *.svg *.svgz|fajlovi ikona (*.png *.xpm *.svg *.svgz)" +msgstr "*.png *.xpm *.svg *.svgz|fajlovi ikonica (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/sv/kiconthemes5.po kiconthemes-5.44.0/po/sv/kiconthemes5.po --- kiconthemes-5.18.0/po/sv/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/sv/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,99 +8,109 @@ # Mattias Newzella , 2000, 2001, 2002,2003, 2004, 2005. # Stefan Asserhäll , 2002. # Stefan Asserhäll , 2004, 2005, 2006, 2007, 2008, 2009, 2010. -# Stefan Asserhall , 2010, 2011, 2012. +# Stefan Asserhall , 2010, 2011, 2012, 2016. # Arve Eriksson <031299870@telia.com>, 2011. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-28 10:41+0100\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 09:17+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.4\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Välj ikon" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Ikonkälla" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "S&ystemikoner:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Övriga ikoner:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "B&läddra..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Sök:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Sök interaktivt efter ikonnamn (t.ex. folder)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Åtgärder" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animeringar" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Program" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategorier" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Enheter" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Emblem" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Smilisar" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filsystem" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Internationella" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime-typer" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Platser" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Status" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Alla" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Icon-filer (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ta/kiconthemes5.po kiconthemes-5.44.0/po/ta/kiconthemes5.po --- kiconthemes-5.18.0/po/ta/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ta/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2012-03-28 00:36+0530\n" "Last-Translator: ramadas \n" "Language-Team: American English \n" @@ -27,82 +27,92 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "சின்னத்தை தேர்வு செய்" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "சின்னத்தின் மூலம்" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "அமைப்பு குறும்படங்கள்:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "மற்ற சின்னங்கள்:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "உலாவு..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&தேடு:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "சின்ன பெயர்களுக்கு உள்ளமைப்புகளில் தேடு (உதாரணம் அடைவு)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "செயல்கள்" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "அசைவூட்டம்" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "நிரல்கள்" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "வகைகள்" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "சாதனங்கள்" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "சின்னங்கள்" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "உணர்வுகள்" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "கோப்பமைவுகள்" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "சர்வதேச" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "மைம்வகைகள்" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "இடங்கள்" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "நிலைமை" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm|சின்னக் கோப்புகள் (*.png *.xpm)" diff -Nru kiconthemes-5.18.0/po/tg/kiconthemes5.po kiconthemes-5.44.0/po/tg/kiconthemes5.po --- kiconthemes-5.18.0/po/tg/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/tg/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -14,97 +14,103 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2005-09-17 13:14+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik\n" -"Language: \n" +"Language: tg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Ишорае интихоб кунед" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Манбаъи нишона" #: kicondialog.cpp:298 -#, fuzzy +#, fuzzy, kde-format msgid "S&ystem icons:" msgstr "&Нишонаҳои система:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Нишонаҳои &Дигар:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Тафсир..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Амалиётҳо" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Барномаҳо" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Барномаҳо" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Сохтмонҳо" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Системаи файл" - -#: kicondialog.cpp:364 -#, fuzzy -msgid "International" -msgstr "Сарсухан" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Намуди Mime" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "Оғоз" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/th/kiconthemes5.po kiconthemes-5.44.0/po/th/kiconthemes5.po --- kiconthemes-5.18.0/po/th/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/th/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2010-12-31 00:33+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" @@ -21,82 +21,92 @@ "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "เลือกไอคอน" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "ตำแหน่งไอคอน" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "ไอคอนของ&ระบบ:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "ไ&อคอนอื่น ๆ :" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "เลือ&ก..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&ค้นหา:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "ค้นหาแบบโต้ตอบสำหรับชื่อไอคอน (เช่น โฟลเดอร์)" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "การกระทำ" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "การเคลื่อนไหว" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "โปรแกรม" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "หมวดหมู่" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "อุปกรณ์" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "ป้ายสัญลักษณ์" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "ไอคอนสื่ออารมณ์" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ระบบแฟ้ม" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "สากล" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "ประเภท Mime ของแฟ้ม" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "ที่หลัก ๆ" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "สถานะ" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|แฟ้มไอคอน (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/tr/kiconthemes5.po kiconthemes-5.44.0/po/tr/kiconthemes5.po --- kiconthemes-5.18.0/po/tr/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/tr/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -21,9 +21,9 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2014-11-12 00:32+0200\n" -"Last-Translator: Kaan Ozdincer \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2017-05-08 14:43+0000\n" +"Last-Translator: Kaan \n" "Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" @@ -32,82 +32,92 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.4\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Simge Seç" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Simge Kaynağı" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Sistem simgeleri:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Diğer simgeler:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Gözat..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Ara:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Simge isimleri için (örn: dizin) etkileşimli arama." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Eylemler" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Canlandırmalar" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Uygulamalar" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Kategoriler" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Aygıtlar" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Amblemler" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Duygu Simgeleri" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Dosya sistemleri" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Uluslararası" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime türü" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Konumlar" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Durum" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Hepsi" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Simge Dosyaları (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/ug/kiconthemes5.po kiconthemes-5.44.0/po/ug/kiconthemes5.po --- kiconthemes-5.18.0/po/ug/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/ug/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,93 +7,103 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" -"Language: \n" +"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 1.5.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "سىنبەلگە تاللا" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "سىنبەلگە مەنبەسى" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "سىستېما سىنبەلگىلىرى(&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "باشقا سىنبەلگىلەر(&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "كۆز يۈگۈرت(&B)…" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "ئىزدە(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "ئۆز ئارا تەسىرلىشىشچان سىنبەلگە ئاتىنى ئىزدە(مەسىلەن قىسقۇچ)" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "مەشغۇلاتلار" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "جانلاندۇرۇملار" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "پروگراممىلار" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "كاتېگورىيە" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "ئۈسكۈنىلەر" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "كاكارلار" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "تۇيغۇلار" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "ھۆججەت سىستېمىسى" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "خەلقئارا" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mime تىپلىرى" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "ئورۇنلار" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "ھالىتى" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|سىنبەلگە ھۆججەتلەر (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/uk/kiconthemes5.po kiconthemes-5.44.0/po/uk/kiconthemes5.po --- kiconthemes-5.18.0/po/uk/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/uk/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -1,18 +1,18 @@ # Translation of kiconthemes5.po to Ukrainian -# Copyright (C) 2014 This_file_is_part_of_KDE +# Copyright (C) 2014-2016 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Andriy Rysin , 2000, 2002, 2003, 2006, 2007. # Eugene Onischenko , 2002, 2003, 2004, 2005. # Ivan Petrouchtchak , 2005, 2006, 2007, 2008. -# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013. +# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2016. msgid "" msgstr "" "Project-Id-Version: kiconthemes5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-11-19 19:40+0200\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-19 10:52+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -23,82 +23,92 @@ "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Вибрати піктограму" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Джерело піктограми" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "С&истемні піктограми:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Інші піктограми:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Навігація..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "&Пошук:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Інтерактивний пошук назв піктограм (напр. тека)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Дії" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анімації" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Програми" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Категорії" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Пристрої" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Емблеми" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Емоції" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файлові системи" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Міжнародне" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Типи MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Місця" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Стан" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "Усі" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Файли піктограм (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/uz/kiconthemes5.po kiconthemes-5.44.0/po/uz/kiconthemes5.po --- kiconthemes-5.18.0/po/uz/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/uz/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2008-06-04 01:21+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -18,82 +18,92 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Nishonchani tanlash" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Nishonchalar manbasi" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Tizimning nishonchalari:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Boshqa nishonchalar:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Tanlash" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Q&idirish:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Amallar" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animatsiya" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Dasturlar" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Turkumlar" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Uskunalar" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Fayl tizimlari" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Xalqaro" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME turlari" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Joylar" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Holat" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Nishoncha fayllari (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/uz@cyrillic/kiconthemes5.po kiconthemes-5.44.0/po/uz@cyrillic/kiconthemes5.po --- kiconthemes-5.18.0/po/uz@cyrillic/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/uz@cyrillic/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2009-10-14 00:15+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -18,82 +18,92 @@ "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Нишончани танлаш" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Нишончалар манбаси" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "&Тизимнинг нишончалари:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "&Бошқа нишончалар:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Танлаш" -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Қ&идириш:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Амаллар" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Анимация" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Дастурлар" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Туркумлар" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Ускуналар" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Файл тизимлари" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Халқаро" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME турлари" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Жойлар" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Ҳолат" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Нишонча файллари (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/vi/kiconthemes5.po kiconthemes-5.44.0/po/vi/kiconthemes5.po --- kiconthemes-5.18.0/po/vi/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/vi/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2013-08-27 21:21+0800\n" "Last-Translator: herop-kde\n" "Language-Team: American English \n" @@ -19,82 +19,92 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Chọn biểu tượng" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Nguồn biểu tượng" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Biểu tượng &hệ thống:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Biểu tượng &khác:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Duyệt..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "Tìm &kiếm:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "Tìm kiếm tương tác tên biểu tượng (v.d. thư mục)." -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Hành động" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Hoạt ảnh" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Ứng dụng" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Loại" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Thiết bị" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "Hình tượng" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Xúc cảm" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Hệ thống tập tin" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Quốc tế" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Kiểu MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Nơi" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Trạng thái" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Tập tin biểu tượng (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/wa/kiconthemes5.po kiconthemes-5.44.0/po/wa/kiconthemes5.po --- kiconthemes-5.18.0/po/wa/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/wa/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -8,93 +8,103 @@ msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2011-01-17 21:58+0100\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" -"Language: \n" +"Language: wa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Tchoezi ene imådjete" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Sourdant di l' imådjete" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "Imådjetes do &sistinme:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "Ô&tès imådjetes:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Foyter..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "C&weri:" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Accions" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "Animåcions" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Programes" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Categoreyes" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Usteyes" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "Xhinåds" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Sistinmes di fitchîs:" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Foû payis" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Sôres MIME" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "Plaeces" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "Estat" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|Fitchîs imådjetes (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/xh/kiconthemes5.po kiconthemes-5.44.0/po/xh/kiconthemes5.po --- kiconthemes-5.18.0/po/xh/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/xh/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kdelibs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" "PO-Revision-Date: 2002-12-13 17:20SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -23,90 +23,92 @@ "X-Generator: KBabel 1.0beta2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "Khetha Uphawu lomfanekiso" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "Imvelaphi Yophawu lomfanekiso" #: kicondialog.cpp:298 -#, fuzzy +#, fuzzy, kde-format msgid "S&ystem icons:" msgstr "&Iimpawu zomfanekiso wendlela yokusebenza:" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "E&zinye Iimpawu zomfanekiso:" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "&Khangela incwadi..." -#: kicondialog.cpp:319 -#, fuzzy +#: kicondialog.cpp:318 +#, fuzzy, kde-format msgid "&Search:" msgstr "(phendla)" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "Iintshukumo" -#: kicondialog.cpp:357 -#, fuzzy -msgid "Animations" -msgstr "Misa Iimpiliso" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "Izicelo" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "Iintlobo" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "Amacebo" -#: kicondialog.cpp:361 -#, fuzzy +#: kicondialog.cpp:359 +#, fuzzy, kde-format msgid "Emblems" msgstr "iyahamba" -#: kicondialog.cpp:362 -#, fuzzy +#: kicondialog.cpp:360 +#, fuzzy, kde-format msgid "Emotes" msgstr "Imixholo Engenanto" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "Filesystems" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "Okwezwe lonke" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "Mimetypes" -#: kicondialog.cpp:366 -#, fuzzy +#: kicondialog.cpp:362 +#, fuzzy, kde-format msgid "Places" msgstr "Iphepha" -#: kicondialog.cpp:367 -#, fuzzy +#: kicondialog.cpp:363 +#, fuzzy, kde-format msgid "Status" msgstr "&Qala" -#: kicondialog.cpp:608 -#, fuzzy +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "" + +#: kicondialog.cpp:602 +#, fuzzy, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm|Uphawu lomfanekiso lwefayile (*.png *.xpm)" diff -Nru kiconthemes-5.18.0/po/zh_CN/kiconthemes5.po kiconthemes-5.44.0/po/zh_CN/kiconthemes5.po --- kiconthemes-5.18.0/po/zh_CN/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/zh_CN/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -11,97 +11,111 @@ # Feng Chao , 2010, 2012, 2013. # Lie Ex , 2007-2010. # Weng Xuetian , 2011, 2012. +# Guo Yunhe , 2016. msgid "" msgstr "" -"Project-Id-Version: kio4\n" +"Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2013-11-10 12:06+0800\n" -"Last-Translator: Feng Chao \n" -"Language-Team: Chinese Simplified \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2018-02-28 02:23-0500\n" +"Last-Translator: guoyunhebrave \n" +"Language-Team: Chinese Simplified\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: crowdin.com\n" +"X-Crowdin-Project: kdeorg\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /kf5-trunk/messages/frameworks/kiconthemes5.pot\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "选择图标" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "图标来源" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "系统图标(&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "其它图标(&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "浏览(&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "搜索(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "交互式搜索图标名称(如文件夹)。" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "动作" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "动画" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "程序" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "类别" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "设备" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "徽标" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "表情" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "文件系统" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "国际" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME 类型" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "位置" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "状态" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "全部" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|图标文件(*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/po/zh_TW/kiconthemes5.po kiconthemes-5.44.0/po/zh_TW/kiconthemes5.po --- kiconthemes-5.18.0/po/zh_TW/kiconthemes5.po 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/po/zh_TW/kiconthemes5.po 2018-03-03 10:04:07.000000000 +0000 @@ -9,97 +9,108 @@ # Frank Weng (a.k.a. Franklin) , 2009. # Franklin Weng , 2010, 2011, 2012. # Franklin Weng , 2010, 2011, 2012. +# Jeff Huang , 2016. msgid "" msgstr "" "Project-Id-Version: kio4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-03-15 08:31+0000\n" -"PO-Revision-Date: 2012-12-12 15:49+0800\n" -"Last-Translator: Franklin Weng \n" -"Language-Team: Chinese Traditional \n" +"POT-Creation-Date: 2016-11-19 20:11+0100\n" +"PO-Revision-Date: 2016-11-22 12:49+0800\n" +"Last-Translator: Jeff Huang \n" +"Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:608 +#: kicondialog.cpp:260 kicondialog.cpp:272 kicondialog.cpp:602 +#, kde-format msgid "Select Icon" msgstr "選擇圖示" #: kicondialog.cpp:289 +#, kde-format msgid "Icon Source" msgstr "圖示來源" #: kicondialog.cpp:298 +#, kde-format msgid "S&ystem icons:" msgstr "系統圖示(&Y):" -#: kicondialog.cpp:305 +#: kicondialog.cpp:304 +#, kde-format msgid "O&ther icons:" msgstr "其他圖示(&T):" -#: kicondialog.cpp:308 +#: kicondialog.cpp:307 +#, kde-format msgid "&Browse..." msgstr "瀏覽(&B)..." -#: kicondialog.cpp:319 +#: kicondialog.cpp:318 +#, kde-format msgid "&Search:" msgstr "搜尋(&S):" -#: kicondialog.cpp:326 +#: kicondialog.cpp:325 +#, kde-format msgid "Search interactively for icon names (e.g. folder)." msgstr "互動式搜尋圖示名稱(例如資料夾)。" -#: kicondialog.cpp:356 +#: kicondialog.cpp:355 +#, kde-format msgid "Actions" msgstr "動作" -#: kicondialog.cpp:357 -msgid "Animations" -msgstr "動畫" - -#: kicondialog.cpp:358 +#: kicondialog.cpp:356 +#, kde-format msgid "Applications" msgstr "應用程式" -#: kicondialog.cpp:359 +#: kicondialog.cpp:357 +#, kde-format msgid "Categories" msgstr "類別" -#: kicondialog.cpp:360 +#: kicondialog.cpp:358 +#, kde-format msgid "Devices" msgstr "裝置" -#: kicondialog.cpp:361 +#: kicondialog.cpp:359 +#, kde-format msgid "Emblems" msgstr "符號" -#: kicondialog.cpp:362 +#: kicondialog.cpp:360 +#, kde-format msgid "Emotes" msgstr "表情" -#: kicondialog.cpp:363 -msgid "Filesystems" -msgstr "檔案系統" - -#: kicondialog.cpp:364 -msgid "International" -msgstr "國際" - -#: kicondialog.cpp:365 +#: kicondialog.cpp:361 +#, kde-format msgid "Mimetypes" msgstr "MIME 類型" -#: kicondialog.cpp:366 +#: kicondialog.cpp:362 +#, kde-format msgid "Places" msgstr "書籤" -#: kicondialog.cpp:367 +#: kicondialog.cpp:363 +#, kde-format msgid "Status" msgstr "狀態" -#: kicondialog.cpp:608 +#: kicondialog.cpp:364 +#, kde-format +msgid "All" +msgstr "全部" + +#: kicondialog.cpp:602 +#, kde-format msgid "*.png *.xpm *.svg *.svgz|Icon Files (*.png *.xpm *.svg *.svgz)" msgstr "*.png *.xpm *.svg *.svgz|圖示檔案 (*.png *.xpm *.svg *.svgz)" diff -Nru kiconthemes-5.18.0/README.md kiconthemes-5.44.0/README.md --- kiconthemes-5.18.0/README.md 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/README.md 2018-03-03 10:04:07.000000000 +0000 @@ -17,3 +17,35 @@ Other classes in this repository are used internally by the icon theme configuration dialogs, and should not be used by applications. +## Icon Theme Deployment + +On Linux/BSD, it is expected that the main icon themes (hicolor, oxygen, breeze) +are installed by the distribution. The platform theme plugin reads the icon +theme name from KConfig, and redirects QIcon::fromTheme calls to KIconEngine/KIconLoader, +which brings some benefits over Qt's internal icon loading, such as a cache shared +between processes. + +On other platforms such as MS Windows and Mac OS, icon themes are not a regular part of the system, +though they are available through package management systems (like MacPorts, Fink and Cygwin). + +When icon themes are installed in a suitable (system) location, applications can be built and +deployed as on Linux/BSD provided that the location is registered by calling QIcon::setThemeSearchPath(). +This can be done early in the main() function, or in a plugin that Qt loads automatically when +the application starts up (a platform theme plugin, for instance). +The more usual deployment strategy on those platforms consists of creating standalone applications +where each has its own copy of all dependencies and required resources. + +Icon theme resources for standalone applications can be created and deployed as follows: +- breeze-icons and other icon themes, when configured with -DBINARY\_ICONS\_RESOURCE=ON, install .rcc files (binary resources, loadable by Qt) +- the installation process should copy one of these under the name "icontheme.rcc", in + a directory found by [QStandardPaths::AppDataLocation](http://doc.qt.io/qt-5/qstandardpaths.html#StandardLocation-enum). + For instance on Windows, icontheme.rcc is usually installed in APPROOT/data/, + while on Mac OS it is installed in the Resources directory inside the application bundle. +- as long as the application links to KIconThemes (even if it doesn't use any of its API), + the icontheme.rcc file will be found on startup, loaded, and set as the default icon theme. + +A related note of caution: These systems use embedded application icons regardless +of how icon themes are provided, and allow users to change that icon. Software should +thus ideally refrain from calling QGuiApplication::setWindowIcon() or at least pass +QGuiApplication::windowIcon() as the fallback argument when using QIcon::fromTheme(). + diff -Nru kiconthemes-5.18.0/.reviewboardrc kiconthemes-5.44.0/.reviewboardrc --- kiconthemes-5.18.0/.reviewboardrc 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/.reviewboardrc 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -REVIEWBOARD_URL = "https://git.reviewboard.kde.org" -REPOSITORY = 'git://anongit.kde.org/kiconthemes' -BRANCH = 'master' -TARGET_GROUPS = 'kdeframeworks' -TARGET_PEOPLE = 'cfeck' diff -Nru kiconthemes-5.18.0/src/CMakeLists.txt kiconthemes-5.44.0/src/CMakeLists.txt --- kiconthemes-5.18.0/src/CMakeLists.txt 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/CMakeLists.txt 2018-03-03 10:04:07.000000000 +0000 @@ -10,8 +10,11 @@ kiconengine.cpp kiconloader.cpp kicontheme.cpp - debug.cpp ) +qt5_add_resources(kiconthemes_SRCS + hicolor.qrc +) +ecm_qt_declare_logging_category(kiconthemes_SRCS HEADER debug.h IDENTIFIER KICONTHEMES CATEGORY_NAME kf5.kiconthemes) add_library(KF5IconThemes ${kiconthemes_SRCS}) generate_export_header(KF5IconThemes BASE_NAME KIconThemes) @@ -25,6 +28,7 @@ PRIVATE Qt5::DBus Qt5::Svg + KF5::Archive # for KCompressionDevice KF5::I18n # for i18n in KIconDialog KF5::WidgetsAddons # for KPixmapSequence family KF5::ItemViews # for KListWidgetSearchLine @@ -57,6 +61,29 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KIconThemes COMPONENT Devel ) +if(BUILD_QCH) + ecm_add_qch( + KF5IconThemes_QCH + NAME KIconThemes + BASE_NAME KF5IconThemes + VERSION ${KF5_VERSION} + ORG_DOMAIN org.kde + SOURCES # using only public headers, to cover only public API + ${KIconThemes_HEADERS} + MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md" + IMAGE_DIRS "${CMAKE_SOURCE_DIR}/docs/pics" + LINK_QCHS + Qt5Widgets_QCH + BLANK_MACROS + KICONTHEMES_EXPORT + KICONTHEMES_DEPRECATED + KICONTHEMES_DEPRECATED_EXPORT + TAGFILE_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} + QCH_INSTALL_DESTINATION ${KDE_INSTALL_QTQCHDIR} + COMPONENT Devel + ) +endif() + include(ECMGeneratePriFile) ecm_generate_pri_file(BASE_NAME KIconThemes LIB_NAME KF5IconThemes DEPS "widgets" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KIconThemes) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) diff -Nru kiconthemes-5.18.0/src/debug.cpp kiconthemes-5.44.0/src/debug.cpp --- kiconthemes-5.18.0/src/debug.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/debug.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -/* - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see . -*/ - -#include "debug.h" - -#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) -// logging category for this framework, default: log stuff >= warning -Q_LOGGING_CATEGORY(KICONTHEMES, "kf5.kiconthemes", QtWarningMsg) -#else -Q_LOGGING_CATEGORY(KICONTHEMES, "kf5.kiconthemes") -#endif diff -Nru kiconthemes-5.18.0/src/debug.h kiconthemes-5.44.0/src/debug.h --- kiconthemes-5.18.0/src/debug.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/debug.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -/* - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library. If not, see . -*/ - -#ifndef KICONTHEMES_DEBUG_H -#define KICONTHEMES_DEBUG_H - -#include -Q_DECLARE_LOGGING_CATEGORY(KICONTHEMES) - -#endif - diff -Nru kiconthemes-5.18.0/src/hicolor.qrc kiconthemes-5.44.0/src/hicolor.qrc --- kiconthemes-5.18.0/src/hicolor.qrc 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/src/hicolor.qrc 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,5 @@ + + + hicolor.theme + + diff -Nru kiconthemes-5.18.0/src/hicolor.theme kiconthemes-5.44.0/src/hicolor.theme --- kiconthemes-5.18.0/src/hicolor.theme 1970-01-01 00:00:00.000000000 +0000 +++ kiconthemes-5.44.0/src/hicolor.theme 2018-03-03 10:04:07.000000000 +0000 @@ -0,0 +1,1836 @@ +[Icon Theme] +Name=Hicolor +Comment=Fallback icon theme +Hidden=true +Directories=16x16/actions,16x16/animations,16x16/apps,16x16/categories,16x16/devices,16x16/emblems,16x16/emotes,16x16/filesystems,16x16/intl,16x16/mimetypes,16x16/places,16x16/status,16x16/stock/chart,16x16/stock/code,16x16/stock/data,16x16/stock/form,16x16/stock/image,16x16/stock/io,16x16/stock/media,16x16/stock/navigation,16x16/stock/net,16x16/stock/object,16x16/stock/table,16x16/stock/text,22x22/actions,22x22/animations,22x22/apps,22x22/categories,22x22/devices,22x22/emblems,22x22/emotes,22x22/filesystems,22x22/intl,22x22/mimetypes,22x22/places,22x22/status,22x22/stock/chart,22x22/stock/code,22x22/stock/data,22x22/stock/form,22x22/stock/image,22x22/stock/io,22x22/stock/media,22x22/stock/navigation,22x22/stock/net,22x22/stock/object,22x22/stock/table,22x22/stock/text,24x24/actions,24x24/animations,24x24/apps,24x24/categories,24x24/devices,24x24/emblems,24x24/emotes,24x24/filesystems,24x24/intl,24x24/mimetypes,24x24/places,24x24/status,24x24/stock/chart,24x24/stock/code,24x24/stock/data,24x24/stock/form,24x24/stock/image,24x24/stock/io,24x24/stock/media,24x24/stock/navigation,24x24/stock/net,24x24/stock/object,24x24/stock/table,24x24/stock/text,32x32/actions,32x32/animations,32x32/apps,32x32/categories,32x32/devices,32x32/emblems,32x32/emotes,32x32/filesystems,32x32/intl,32x32/mimetypes,32x32/places,32x32/status,32x32/stock/chart,32x32/stock/code,32x32/stock/data,32x32/stock/form,32x32/stock/image,32x32/stock/io,32x32/stock/media,32x32/stock/navigation,32x32/stock/net,32x32/stock/object,32x32/stock/table,32x32/stock/text,36x36/actions,36x36/animations,36x36/apps,36x36/categories,36x36/devices,36x36/emblems,36x36/emotes,36x36/filesystems,36x36/intl,36x36/mimetypes,36x36/places,36x36/status,36x36/stock/chart,36x36/stock/code,36x36/stock/data,36x36/stock/form,36x36/stock/image,36x36/stock/io,36x36/stock/media,36x36/stock/navigation,36x36/stock/net,36x36/stock/object,36x36/stock/table,36x36/stock/text,48x48/actions,48x48/animations,48x48/apps,48x48/categories,48x48/devices,48x48/emblems,48x48/emotes,48x48/filesystems,48x48/intl,48x48/mimetypes,48x48/places,48x48/status,48x48/stock/chart,48x48/stock/code,48x48/stock/data,48x48/stock/form,48x48/stock/image,48x48/stock/io,48x48/stock/media,48x48/stock/navigation,48x48/stock/net,48x48/stock/object,48x48/stock/table,48x48/stock/text,64x64/actions,64x64/animations,64x64/apps,64x64/categories,64x64/devices,64x64/emblems,64x64/emotes,64x64/filesystems,64x64/intl,64x64/mimetypes,64x64/places,64x64/status,64x64/stock/chart,64x64/stock/code,64x64/stock/data,64x64/stock/form,64x64/stock/image,64x64/stock/io,64x64/stock/media,64x64/stock/navigation,64x64/stock/net,64x64/stock/object,64x64/stock/table,64x64/stock/text,72x72/actions,72x72/animations,72x72/apps,72x72/categories,72x72/devices,72x72/emblems,72x72/emotes,72x72/filesystems,72x72/intl,72x72/mimetypes,72x72/places,72x72/status,72x72/stock/chart,72x72/stock/code,72x72/stock/data,72x72/stock/form,72x72/stock/image,72x72/stock/io,72x72/stock/media,72x72/stock/navigation,72x72/stock/net,72x72/stock/object,72x72/stock/table,72x72/stock/text,96x96/actions,96x96/animations,96x96/apps,96x96/categories,96x96/devices,96x96/emblems,96x96/emotes,96x96/filesystems,96x96/intl,96x96/mimetypes,96x96/places,96x96/status,96x96/stock/chart,96x96/stock/code,96x96/stock/data,96x96/stock/form,96x96/stock/image,96x96/stock/io,96x96/stock/media,96x96/stock/navigation,96x96/stock/net,96x96/stock/object,96x96/stock/table,96x96/stock/text,128x128/actions,128x128/animations,128x128/apps,128x128/categories,128x128/devices,128x128/emblems,128x128/emotes,128x128/filesystems,128x128/intl,128x128/mimetypes,128x128/places,128x128/status,128x128/stock/chart,128x128/stock/code,128x128/stock/data,128x128/stock/form,128x128/stock/image,128x128/stock/io,128x128/stock/media,128x128/stock/navigation,128x128/stock/net,128x128/stock/object,128x128/stock/table,128x128/stock/text,192x192/actions,192x192/animations,192x192/apps,192x192/categories,192x192/devices,192x192/emblems,192x192/emotes,192x192/filesystems,192x192/intl,192x192/mimetypes,192x192/places,192x192/status,192x192/stock/chart,192x192/stock/code,192x192/stock/data,192x192/stock/form,192x192/stock/image,192x192/stock/io,192x192/stock/media,192x192/stock/navigation,192x192/stock/net,192x192/stock/object,192x192/stock/table,192x192/stock/text,256x256/actions,256x256/animations,256x256/apps,256x256/categories,256x256/devices,256x256/emblems,256x256/emotes,256x256/filesystems,256x256/intl,256x256/mimetypes,256x256/places,256x256/status,256x256/stock/chart,256x256/stock/code,256x256/stock/data,256x256/stock/form,256x256/stock/image,256x256/stock/io,256x256/stock/media,256x256/stock/navigation,256x256/stock/net,256x256/stock/object,256x256/stock/table,256x256/stock/text,512x512/actions,512x512/animations,512x512/apps,512x512/categories,512x512/devices,512x512/emblems,512x512/emotes,512x512/filesystems,512x512/intl,512x512/mimetypes,512x512/places,512x512/status,512x512/stock/chart,512x512/stock/code,512x512/stock/data,512x512/stock/form,512x512/stock/image,512x512/stock/io,512x512/stock/media,512x512/stock/navigation,512x512/stock/net,512x512/stock/object,512x512/stock/table,512x512/stock/text,scalable/actions,scalable/animations,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/filesystems,scalable/intl,scalable/mimetypes,scalable/places,scalable/status,scalable/stock/chart,scalable/stock/code,scalable/stock/data,scalable/stock/form,scalable/stock/image,scalable/stock/io,scalable/stock/media,scalable/stock/navigation,scalable/stock/net,scalable/stock/object,scalable/stock/table,scalable/stock/text,symbolic/apps + + +[16x16/actions] +Size=16 +Context=Actions +Type=Threshold + +[16x16/animations] +Size=16 +Context=Animations +Type=Threshold + +[16x16/apps] +Size=16 +Context=Applications +Type=Threshold + +[16x16/categories] +Size=16 +Context=Categories +Type=Threshold + +[16x16/devices] +Size=16 +Context=Devices +Type=Threshold + +[16x16/emblems] +Size=16 +Context=Emblems +Type=Threshold + +[16x16/emotes] +Size=16 +Context=Emotes +Type=Threshold + +[16x16/filesystems] +Size=16 +Context=FileSystems +Type=Threshold + +[16x16/intl] +Size=16 +Context=International +Type=Threshold + +[16x16/mimetypes] +Size=16 +Context=MimeTypes +Type=Threshold + +[16x16/places] +Size=16 +Context=Places +Type=Threshold + +[16x16/status] +Size=16 +Context=Status +Type=Threshold + +[16x16/stock/chart] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/code] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/data] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/form] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/image] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/io] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/media] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/navigation] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/net] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/object] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/table] +Size=16 +Context=Stock +Type=Threshold + +[16x16/stock/text] +Size=16 +Context=Stock +Type=Threshold + +[22x22/actions] +Size=22 +Context=Actions +Type=Threshold + +[22x22/animations] +Size=22 +Context=Animations +Type=Threshold + +[22x22/apps] +Size=22 +Context=Applications +Type=Threshold + +[22x22/categories] +Size=22 +Context=Categories +Type=Threshold + +[22x22/devices] +Size=22 +Context=Devices +Type=Threshold + +[22x22/emblems] +Size=22 +Context=Emblems +Type=Threshold + +[22x22/emotes] +Size=22 +Context=Emotes +Type=Threshold + +[22x22/filesystems] +Size=22 +Context=FileSystems +Type=Threshold + +[22x22/intl] +Size=22 +Context=International +Type=Threshold + +[22x22/mimetypes] +Size=22 +Context=MimeTypes +Type=Threshold + +[22x22/places] +Size=22 +Context=Places +Type=Threshold + +[22x22/status] +Size=22 +Context=Status +Type=Threshold + +[22x22/stock/chart] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/code] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/data] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/form] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/image] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/io] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/media] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/navigation] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/net] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/object] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/table] +Size=22 +Context=Stock +Type=Threshold + +[22x22/stock/text] +Size=22 +Context=Stock +Type=Threshold + +[24x24/actions] +Size=24 +Context=Actions +Type=Threshold + +[24x24/animations] +Size=24 +Context=Animations +Type=Threshold + +[24x24/apps] +Size=24 +Context=Applications +Type=Threshold + +[24x24/categories] +Size=24 +Context=Categories +Type=Threshold + +[24x24/devices] +Size=24 +Context=Devices +Type=Threshold + +[24x24/emblems] +Size=24 +Context=Emblems +Type=Threshold + +[24x24/emotes] +Size=24 +Context=Emotes +Type=Threshold + +[24x24/filesystems] +Size=24 +Context=FileSystems +Type=Threshold + +[24x24/intl] +Size=24 +Context=International +Type=Threshold + +[24x24/mimetypes] +Size=24 +Context=MimeTypes +Type=Threshold + +[24x24/places] +Size=24 +Context=Places +Type=Threshold + +[24x24/status] +Size=24 +Context=Status +Type=Threshold + +[24x24/stock/chart] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/code] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/data] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/form] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/image] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/io] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/media] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/navigation] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/net] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/object] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/table] +Size=24 +Context=Stock +Type=Threshold + +[24x24/stock/text] +Size=24 +Context=Stock +Type=Threshold + +[32x32/actions] +Size=32 +Context=Actions +Type=Threshold + +[32x32/animations] +Size=32 +Context=Animations +Type=Threshold + +[32x32/apps] +Size=32 +Context=Applications +Type=Threshold + +[32x32/categories] +Size=32 +Context=Categories +Type=Threshold + +[32x32/devices] +Size=32 +Context=Devices +Type=Threshold + +[32x32/emblems] +Size=32 +Context=Emblems +Type=Threshold + +[32x32/emotes] +Size=32 +Context=Emotes +Type=Threshold + +[32x32/filesystems] +Size=32 +Context=FileSystems +Type=Threshold + +[32x32/intl] +Size=32 +Context=International +Type=Threshold + +[32x32/mimetypes] +Size=32 +Context=MimeTypes +Type=Threshold + +[32x32/places] +Size=32 +Context=Places +Type=Threshold + +[32x32/status] +Size=32 +Context=Status +Type=Threshold + +[32x32/stock/chart] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/code] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/data] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/form] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/image] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/io] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/media] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/navigation] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/net] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/object] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/table] +Size=32 +Context=Stock +Type=Threshold + +[32x32/stock/text] +Size=32 +Context=Stock +Type=Threshold + +[36x36/actions] +Size=36 +Context=Actions +Type=Threshold + +[36x36/animations] +Size=36 +Context=Animations +Type=Threshold + +[36x36/apps] +Size=36 +Context=Applications +Type=Threshold + +[36x36/categories] +Size=36 +Context=Categories +Type=Threshold + +[36x36/devices] +Size=36 +Context=Devices +Type=Threshold + +[36x36/emblems] +Size=36 +Context=Emblems +Type=Threshold + +[36x36/emotes] +Size=36 +Context=Emotes +Type=Threshold + +[36x36/filesystems] +Size=36 +Context=FileSystems +Type=Threshold + +[36x36/intl] +Size=36 +Context=International +Type=Threshold + +[36x36/mimetypes] +Size=36 +Context=MimeTypes +Type=Threshold + +[36x36/places] +Size=36 +Context=Places +Type=Threshold + +[36x36/status] +Size=36 +Context=Status +Type=Threshold + +[36x36/stock/chart] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/code] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/data] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/form] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/image] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/io] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/media] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/navigation] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/net] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/object] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/table] +Size=36 +Context=Stock +Type=Threshold + +[36x36/stock/text] +Size=36 +Context=Stock +Type=Threshold + +[48x48/actions] +Size=48 +Context=Actions +Type=Threshold + +[48x48/animations] +Size=48 +Context=Animations +Type=Threshold + +[48x48/apps] +Size=48 +Context=Applications +Type=Threshold + +[48x48/categories] +Size=48 +Context=Categories +Type=Threshold + +[48x48/devices] +Size=48 +Context=Devices +Type=Threshold + +[48x48/emblems] +Size=48 +Context=Emblems +Type=Threshold + +[48x48/emotes] +Size=48 +Context=Emotes +Type=Threshold + +[48x48/filesystems] +Size=48 +Context=FileSystems +Type=Threshold + +[48x48/intl] +Size=48 +Context=International +Type=Threshold + +[48x48/mimetypes] +Size=48 +Context=MimeTypes +Type=Threshold + +[48x48/places] +Size=48 +Context=Places +Type=Threshold + +[48x48/status] +Size=48 +Context=Status +Type=Threshold + +[48x48/stock/chart] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/code] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/data] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/form] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/image] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/io] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/media] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/navigation] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/net] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/object] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/table] +Size=48 +Context=Stock +Type=Threshold + +[48x48/stock/text] +Size=48 +Context=Stock +Type=Threshold + +[64x64/actions] +Size=64 +Context=Actions +Type=Threshold + +[64x64/animations] +Size=64 +Context=Animations +Type=Threshold + +[64x64/apps] +Size=64 +Context=Applications +Type=Threshold + +[64x64/categories] +Size=64 +Context=Categories +Type=Threshold + +[64x64/devices] +Size=64 +Context=Devices +Type=Threshold + +[64x64/emblems] +Size=64 +Context=Emblems +Type=Threshold + +[64x64/emotes] +Size=64 +Context=Emotes +Type=Threshold + +[64x64/filesystems] +Size=64 +Context=FileSystems +Type=Threshold + +[64x64/intl] +Size=64 +Context=International +Type=Threshold + +[64x64/mimetypes] +Size=64 +Context=MimeTypes +Type=Threshold + +[64x64/places] +Size=64 +Context=Places +Type=Threshold + +[64x64/status] +Size=64 +Context=Status +Type=Threshold + +[64x64/stock/chart] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/code] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/data] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/form] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/image] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/io] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/media] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/navigation] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/net] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/object] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/table] +Size=64 +Context=Stock +Type=Threshold + +[64x64/stock/text] +Size=64 +Context=Stock +Type=Threshold +[72x72/actions] +Size=72 +Context=Actions +Type=Threshold + +[72x72/animations] +Size=72 +Context=Animations +Type=Threshold + +[72x72/apps] +Size=72 +Context=Applications +Type=Threshold + +[72x72/categories] +Size=72 +Context=Categories +Type=Threshold + +[72x72/devices] +Size=72 +Context=Devices +Type=Threshold + +[72x72/emblems] +Size=72 +Context=Emblems +Type=Threshold + +[72x72/emotes] +Size=72 +Context=Emotes +Type=Threshold + +[72x72/filesystems] +Size=72 +Context=FileSystems +Type=Threshold + +[72x72/intl] +Size=72 +Context=International +Type=Threshold + +[72x72/mimetypes] +Size=72 +Context=MimeTypes +Type=Threshold + +[72x72/places] +Size=72 +Context=Places +Type=Threshold + +[72x72/status] +Size=72 +Context=Status +Type=Threshold + +[72x72/stock/chart] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/code] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/data] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/form] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/image] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/io] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/media] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/navigation] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/net] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/object] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/table] +Size=72 +Context=Stock +Type=Threshold + +[72x72/stock/text] +Size=72 +Context=Stock +Type=Threshold + +[96x96/actions] +Size=96 +Context=Actions +Type=Threshold + +[96x96/animations] +Size=96 +Context=Animations +Type=Threshold + +[96x96/apps] +Size=96 +Context=Applications +Type=Threshold + +[96x96/categories] +Size=96 +Context=Categories +Type=Threshold + +[96x96/devices] +Size=96 +Context=Devices +Type=Threshold + +[96x96/emblems] +Size=96 +Context=Emblems +Type=Threshold + +[96x96/emotes] +Size=96 +Context=Emotes +Type=Threshold + +[96x96/filesystems] +Size=96 +Context=FileSystems +Type=Threshold + +[96x96/intl] +Size=96 +Context=International +Type=Threshold + +[96x96/mimetypes] +Size=96 +Context=MimeTypes +Type=Threshold + +[96x96/places] +Size=96 +Context=Places +Type=Threshold + +[96x96/status] +Size=96 +Context=Status +Type=Threshold + +[96x96/stock/chart] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/code] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/data] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/form] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/image] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/io] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/media] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/navigation] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/net] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/object] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/table] +Size=96 +Context=Stock +Type=Threshold + +[96x96/stock/text] +Size=96 +Context=Stock +Type=Threshold + +[128x128/actions] +Size=128 +Context=Actions +Type=Threshold + +[128x128/animations] +Size=128 +Context=Animations +Type=Threshold + +[128x128/apps] +Size=128 +Context=Applications +Type=Threshold + +[128x128/categories] +Size=128 +Context=Categories +Type=Threshold + +[128x128/devices] +Size=128 +Context=Devices +Type=Threshold + +[128x128/emblems] +Size=128 +Context=Emblems +Type=Threshold + +[128x128/emotes] +Size=128 +Context=Emotes +Type=Threshold + +[128x128/filesystems] +Size=128 +Context=FileSystems +Type=Threshold + +[128x128/intl] +Size=128 +Context=International +Type=Threshold + +[128x128/mimetypes] +Size=128 +Context=MimeTypes +Type=Threshold + +[128x128/places] +Size=128 +Context=Places +Type=Threshold + +[128x128/status] +Size=128 +Context=Status +Type=Threshold + +[128x128/stock/chart] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/code] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/data] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/form] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/image] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/io] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/media] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/navigation] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/net] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/object] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/table] +Size=128 +Context=Stock +Type=Threshold + +[128x128/stock/text] +Size=128 +Context=Stock +Type=Threshold + +[192x192/actions] +Size=192 +Context=Actions +Type=Threshold + +[192x192/animations] +Size=192 +Context=Animations +Type=Threshold + +[192x192/apps] +Size=192 +Context=Applications +Type=Threshold + +[192x192/categories] +Size=192 +Context=Categories +Type=Threshold + +[192x192/devices] +Size=192 +Context=Devices +Type=Threshold + +[192x192/emblems] +Size=192 +Context=Emblems +Type=Threshold + +[192x192/emotes] +Size=192 +Context=Emotes +Type=Threshold + +[192x192/filesystems] +Size=192 +Context=FileSystems +Type=Threshold + +[192x192/intl] +Size=192 +Context=International +Type=Threshold + +[192x192/mimetypes] +Size=192 +Context=MimeTypes +Type=Threshold + +[192x192/places] +Size=192 +Context=Places +Type=Threshold + +[192x192/status] +Size=192 +Context=Status +Type=Threshold + +[192x192/stock/chart] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/code] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/data] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/form] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/image] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/io] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/media] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/navigation] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/net] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/object] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/table] +Size=192 +Context=Stock +Type=Threshold + +[192x192/stock/text] +Size=192 +Context=Stock +Type=Threshold + +[256x256/actions] +MinSize=64 +Size=256 +MaxSize=256 +Context=Actions +Type=Scalable + +[256x256/animations] +MinSize=64 +Size=256 +MaxSize=256 +Context=Animations +Type=Scalable + +[256x256/apps] +MinSize=64 +Size=256 +MaxSize=256 +Context=Applications +Type=Scalable + +[256x256/categories] +MinSize=64 +Size=256 +MaxSize=256 +Context=Categories +Type=Scalable + +[256x256/devices] +MinSize=64 +Size=256 +MaxSize=256 +Context=Devices +Type=Scalable + +[256x256/emblems] +MinSize=64 +Size=256 +MaxSize=256 +Context=Emblems +Type=Scalable + +[256x256/emotes] +MinSize=64 +Size=256 +MaxSize=256 +Context=Emotes +Type=Scalable + +[256x256/filesystems] +MinSize=64 +Size=256 +MaxSize=256 +Context=FileSystems +Type=Scalable + +[256x256/intl] +MinSize=64 +Size=256 +MaxSize=256 +Context=International +Type=Scalable + +[256x256/mimetypes] +MinSize=64 +Size=256 +MaxSize=256 +Context=MimeTypes +Type=Scalable + +[256x256/places] +MinSize=64 +Size=256 +MaxSize=256 +Context=Places +Type=Scalable + +[256x256/status] +MinSize=64 +Size=256 +MaxSize=256 +Context=Status +Type=Scalable + +[256x256/stock/chart] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/code] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/data] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/form] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/image] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/io] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/media] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/navigation] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/net] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/object] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/table] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[256x256/stock/text] +MinSize=64 +Size=256 +MaxSize=256 +Context=Stock +Type=Scalable + +[512x512/actions] +MinSize=64 +Size=512 +MaxSize=512 +Context=Actions +Type=Scalable + +[512x512/animations] +MinSize=64 +Size=512 +MaxSize=512 +Context=Animations +Type=Scalable + +[512x512/apps] +MinSize=64 +Size=512 +MaxSize=512 +Context=Applications +Type=Scalable + +[512x512/categories] +MinSize=64 +Size=512 +MaxSize=512 +Context=Categories +Type=Scalable + +[512x512/devices] +MinSize=64 +Size=512 +MaxSize=512 +Context=Devices +Type=Scalable + +[512x512/emblems] +MinSize=64 +Size=512 +MaxSize=512 +Context=Emblems +Type=Scalable + +[512x512/emotes] +MinSize=64 +Size=512 +MaxSize=512 +Context=Emotes +Type=Scalable + +[512x512/filesystems] +MinSize=64 +Size=512 +MaxSize=512 +Context=FileSystems +Type=Scalable + +[512x512/intl] +MinSize=64 +Size=512 +MaxSize=512 +Context=International +Type=Scalable + +[512x512/mimetypes] +MinSize=64 +Size=512 +MaxSize=512 +Context=MimeTypes +Type=Scalable + +[512x512/places] +MinSize=64 +Size=512 +MaxSize=512 +Context=Places +Type=Scalable + +[512x512/status] +MinSize=64 +Size=512 +MaxSize=512 +Context=Status +Type=Scalable + +[512x512/stock/chart] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/code] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/data] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/form] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/image] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/io] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/media] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/navigation] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/net] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/object] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/table] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[512x512/stock/text] +MinSize=64 +Size=512 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/actions] +MinSize=1 +Size=128 +MaxSize=256 +Context=Actions +Type=Scalable + +[scalable/animations] +MinSize=1 +Size=128 +MaxSize=256 +Context=Animations +Type=Scalable + +[scalable/apps] +MinSize=1 +Size=128 +MaxSize=256 +Context=Applications +Type=Scalable + +[scalable/categories] +MinSize=1 +Size=128 +MaxSize=256 +Context=Categories +Type=Scalable + +[scalable/devices] +MinSize=1 +Size=128 +MaxSize=512 +Context=Devices +Type=Scalable + +[scalable/emblems] +MinSize=1 +Size=128 +MaxSize=256 +Context=Emblems +Type=Scalable + +[scalable/emotes] +MinSize=1 +Size=128 +MaxSize=512 +Context=Emotes +Type=Scalable + +[scalable/filesystems] +MinSize=1 +Size=128 +MaxSize=256 +Context=FileSystems +Type=Scalable + +[scalable/intl] +MinSize=1 +Size=128 +MaxSize=512 +Context=International +Type=Scalable + +[scalable/mimetypes] +MinSize=1 +Size=128 +MaxSize=256 +Context=MimeTypes +Type=Scalable + +[scalable/places] +MinSize=1 +Size=128 +MaxSize=512 +Context=Places +Type=Scalable + +[scalable/status] +MinSize=1 +Size=128 +MaxSize=256 +Context=Status +Type=Scalable + +[scalable/stock/chart] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/code] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[scalable/stock/data] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/form] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[scalable/stock/image] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/io] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[scalable/stock/media] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/navigation] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[scalable/stock/net] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/object] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[scalable/stock/table] +MinSize=1 +Size=128 +MaxSize=512 +Context=Stock +Type=Scalable + +[scalable/stock/text] +MinSize=1 +Size=128 +MaxSize=256 +Context=Stock +Type=Scalable + +[symbolic/apps] +MinSize=8 +Size=16 +MaxSize=512 +Context=Applications +Type=Scalable diff -Nru kiconthemes-5.18.0/src/kiconbutton.cpp kiconthemes-5.44.0/src/kiconbutton.cpp --- kiconthemes-5.18.0/src/kiconbutton.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconbutton.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -17,7 +17,7 @@ #include "kicondialog.h" -class KIconButton::KIconButtonPrivate +class Q_DECL_HIDDEN KIconButton::KIconButtonPrivate { public: KIconButtonPrivate(KIconButton *qq, KIconLoader *loader); @@ -70,8 +70,8 @@ mbUser = false; mpLoader = loader; - mpDialog = 0L; - connect(q, SIGNAL(clicked()), q, SLOT(_k_slotChangeIcon())); + mpDialog = nullptr; + connect(q, &KIconButton::clicked, q, [this]() {_k_slotChangeIcon();}); } KIconButton::KIconButtonPrivate::~KIconButtonPrivate() @@ -133,7 +133,7 @@ if (!d->mpDialog) { d->mpDialog = new KIconDialog(d->mpLoader, this); - connect(d->mpDialog, SIGNAL(newIconName(QString)), this, SLOT(_k_newIconName(QString))); + connect(d->mpDialog, &KIconDialog::newIconName, this, [this](const QString &iconName) { d->_k_newIconName(iconName); }); } if (d->mbUser) { @@ -161,7 +161,7 @@ { if (!mpDialog) { mpDialog = new KIconDialog(mpLoader, q); - connect(mpDialog, SIGNAL(newIconName(QString)), q, SLOT(_k_newIconName(QString))); + connect(mpDialog, &KIconDialog::newIconName, q, [this](const QString &iconName) { _k_newIconName(iconName); }); } mpDialog->setup(mGroup, mContext, m_bStrictIconSize, iconSize, mbUser); diff -Nru kiconthemes-5.18.0/src/kiconbutton.h kiconthemes-5.44.0/src/kiconbutton.h --- kiconthemes-5.18.0/src/kiconbutton.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconbutton.h 2018-03-03 10:04:07.000000000 +0000 @@ -21,6 +21,8 @@ #include /** + * @class KIconButton kiconbutton.h KIconButton + * * A pushbutton for choosing an icon. Pressing on the button will open a * KIconDialog for the user to select an icon. The current icon will be * displayed on the button. @@ -41,7 +43,7 @@ * * @param parent The parent widget. */ - explicit KIconButton(QWidget *parent = 0L); + explicit KIconButton(QWidget *parent = nullptr); /** * Constructs a KIconButton using a specific icon loader. @@ -126,9 +128,6 @@ KIconButtonPrivate *const d; Q_DISABLE_COPY(KIconButton) - - Q_PRIVATE_SLOT(d, void _k_slotChangeIcon()) - Q_PRIVATE_SLOT(d, void _k_newIconName(const QString &)) }; #endif // KICONBUTTON_H diff -Nru kiconthemes-5.18.0/src/kicondialog.cpp kiconthemes-5.44.0/src/kicondialog.cpp --- kiconthemes-5.18.0/src/kicondialog.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kicondialog.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -44,12 +44,12 @@ { public: KIconCanvasDelegate(KIconCanvas *parent, QAbstractItemDelegate *defaultDelegate); - ~KIconCanvasDelegate() {}; + ~KIconCanvasDelegate() {} void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const Q_DECL_OVERRIDE; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const Q_DECL_OVERRIDE; private: - KIconCanvas *m_iconCanvas; - QAbstractItemDelegate *m_defaultDelegate; + KIconCanvas *m_iconCanvas = nullptr; + QAbstractItemDelegate *m_defaultDelegate = nullptr; static const int HORIZONTAL_EDGE_PAD = 3; }; @@ -225,18 +225,18 @@ void KIconCanvas::currentListItemChanged(QListWidgetItem *item) { - emit nameChanged((item != 0L) ? item->text() : QString()); + emit nameChanged((item != nullptr) ? item->text() : QString()); } // TODO KF6 remove and override KIconDialog::showEvent() class ShowEventFilter : public QObject { public: - explicit ShowEventFilter(QObject *parent) : QObject(parent) {}; - virtual ~ShowEventFilter() {}; + explicit ShowEventFilter(QObject *parent) : QObject(parent) {} + virtual ~ShowEventFilter() {} private: - bool eventFilter(QObject *watched, QEvent *event) + bool eventFilter(QObject *watched, QEvent *event) Q_DECL_OVERRIDE { if (event->type() == QEvent::Show) { KIconDialog *q = static_cast(parent()); @@ -299,7 +299,6 @@ connect(mpSystemIcons, SIGNAL(clicked()), q, SLOT(_k_slotSystemIconClicked())); grid->addWidget(mpSystemIcons, 1, 0); mpCombo = new QComboBox(bgroup); - mpCombo->setMaxVisibleItems(12); connect(mpCombo, SIGNAL(activated(int)), q, SLOT(_k_slotContext(int))); grid->addWidget(mpCombo, 1, 1); mpOtherIcons = new QRadioButton(i18n("O&ther icons:"), bgroup); @@ -354,31 +353,27 @@ static const char *const context_text[] = { I18N_NOOP("Actions"), - I18N_NOOP("Animations"), I18N_NOOP("Applications"), I18N_NOOP("Categories"), I18N_NOOP("Devices"), I18N_NOOP("Emblems"), I18N_NOOP("Emotes"), - I18N_NOOP("Filesystems"), - I18N_NOOP("International"), I18N_NOOP("Mimetypes"), I18N_NOOP("Places"), - I18N_NOOP("Status") + I18N_NOOP("Status"), + I18N_NOOP("All") }; static const KIconLoader::Context context_id[] = { KIconLoader::Action, - KIconLoader::Animation, KIconLoader::Application, KIconLoader::Category, KIconLoader::Device, KIconLoader::Emblem, KIconLoader::Emote, - KIconLoader::FileSystem, - KIconLoader::International, KIconLoader::MimeType, KIconLoader::Place, - KIconLoader::StatusIcon + KIconLoader::StatusIcon, + KIconLoader::Any }; mNumContext = 0; int cnt = sizeof(context_text) / sizeof(context_text[ 0 ]); @@ -391,6 +386,7 @@ mContextMap[ mNumContext++ ] = context_id[ i ]; } } + mpCombo->setMaxVisibleItems(cnt); mpCombo->setFixedSize(mpCombo->sizeHint()); mpBrowseBut->setFixedWidth(mpCombo->width()); @@ -419,8 +415,8 @@ static bool sortByFileName(const QString &path1, const QString &path2) { - const QString fileName1 = path1.mid(path1.lastIndexOf('/') + 1); - const QString fileName2 = path2.mid(path1.lastIndexOf('/') + 1); + const QString fileName1 = path1.mid(path1.lastIndexOf(QLatin1Char('/')) + 1); + const QString fileName2 = path2.mid(path1.lastIndexOf(QLatin1Char('/')) + 1); return QString::compare(fileName1, fileName2, Qt::CaseInsensitive) < 0; } @@ -440,9 +436,9 @@ // List PNG files found directly in the kiconload search paths. Q_FOREACH (const QString &relDir, KIconLoader::global()->searchPaths()) { const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, relDir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { - Q_FOREACH (const QString &fileName, QDir(dir).entryList(QStringList() << "*.png")) { - filelist << dir + '/' + fileName; + for (const QString &dir : dirs) { + Q_FOREACH (const QString &fileName, QDir(dir).entryList(QStringList() << QLatin1String("*.png"))) { + filelist << dir + QLatin1Char('/') + fileName; } } } @@ -450,8 +446,6 @@ qSort(filelist.begin(), filelist.end(), sortByFileName); - searchLine->clear(); - // The KIconCanvas has uniformItemSizes set which really expects // all added icons to be the same size, otherwise weirdness ensues :) // Ensure all SVGs are scaled to the desired size and that as few icons @@ -547,7 +541,7 @@ return d->custom; } - QString name = d->mpCanvas->getCurrent(); + const QString name = d->mpCanvas->getCurrent(); if (name.isEmpty() || d->mpOtherIcons->isChecked()) { return name; } diff -Nru kiconthemes-5.18.0/src/kicondialog.h kiconthemes-5.44.0/src/kicondialog.h --- kiconthemes-5.18.0/src/kicondialog.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kicondialog.h 2018-03-03 10:04:07.000000000 +0000 @@ -23,6 +23,8 @@ #include /** + * @class KIconDialog kicondialog.h KIconDialog + * * Dialog for interactive selection of icons. Use the function * getIcon() to let the user select an icon. * @@ -38,7 +40,7 @@ * * @param parent The parent widget. */ - explicit KIconDialog(QWidget *parent = 0L); + explicit KIconDialog(QWidget *parent = nullptr); /** * Constructs an icon selection dialog using a specific icon loader. @@ -46,7 +48,7 @@ * @param loader The icon loader to use. * @param parent The parent widget. */ - explicit KIconDialog(KIconLoader *loader, QWidget *parent = 0); + explicit KIconDialog(KIconLoader *loader, QWidget *parent = nullptr); /** * Destructs the dialog. @@ -132,7 +134,7 @@ static QString getIcon(KIconLoader::Group group = KIconLoader::Desktop, KIconLoader::Context context = KIconLoader::Application, bool strictIconSize = false, int iconSize = 0, - bool user = false, QWidget *parent = 0, + bool user = false, QWidget *parent = nullptr, const QString &caption = QString()); Q_SIGNALS: diff -Nru kiconthemes-5.18.0/src/kicondialog_p.h kiconthemes-5.44.0/src/kicondialog_p.h --- kiconthemes-5.18.0/src/kicondialog_p.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kicondialog_p.h 2018-03-03 10:04:07.000000000 +0000 @@ -40,7 +40,7 @@ * * @param parent The parent widget. */ - explicit KIconCanvas(QWidget *parent = 0L); + explicit KIconCanvas(QWidget *parent = nullptr); /** * Destroys the icon canvas. @@ -101,7 +101,7 @@ KIconCanvasDelegate *m_delegate; }; -class KIconDialog::KIconDialogPrivate +class Q_DECL_HIDDEN KIconDialog::KIconDialogPrivate { public: KIconDialogPrivate(KIconDialog *qq) @@ -110,7 +110,7 @@ m_bStrictIconSize = true; m_bLockUser = false; m_bLockCustomDir = false; - searchLine = 0; + searchLine = nullptr; mNumOfSteps = 1; } ~KIconDialogPrivate() {} @@ -143,7 +143,7 @@ KIconLoader *mpLoader; KIconCanvas *mpCanvas; int mNumContext; - KIconLoader::Context mContextMap[ 12 ]; // must match KDE::icon::Context size, code has assert + KIconLoader::Context mContextMap[ 10 ]; // must match KDE::icon::Context size, code has assert bool m_bStrictIconSize, m_bLockUser, m_bLockCustomDir; QString custom; diff -Nru kiconthemes-5.18.0/src/kiconeffect.cpp kiconthemes-5.44.0/src/kiconeffect.cpp --- kiconthemes-5.18.0/src/kiconeffect.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconeffect.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -106,9 +106,9 @@ d->color2[i][1] = QColor(0, 0, 0); d->color2[i][2] = QColor(0, 0, 0); - KConfigGroup cg(config, *it + "Icons"); + KConfigGroup cg(config, *it + QStringLiteral("Icons")); for (it2 = states.constBegin(), j = 0; it2 != states.constEnd(); ++it2, ++j) { - QString tmp = cg.readEntry(*it2 + "Effect", QString()); + QString tmp = cg.readEntry(*it2 + QStringLiteral("Effect"), QString()); if (tmp == _togray) { effect = ToGray; } else if (tmp == _colorize) { @@ -127,10 +127,10 @@ if (effect != -1) { d->effect[i][j] = effect; } - d->value[i][j] = cg.readEntry(*it2 + "Value", 0.0); - d->color[i][j] = cg.readEntry(*it2 + "Color", QColor()); - d->color2[i][j] = cg.readEntry(*it2 + "Color2", QColor()); - d->trans[i][j] = cg.readEntry(*it2 + "SemiTransparent", false); + d->value[i][j] = cg.readEntry(*it2 + QStringLiteral("Value"), 0.0); + d->color[i][j] = cg.readEntry(*it2 + QStringLiteral("Color"), QColor()); + d->color2[i][j] = cg.readEntry(*it2 + QStringLiteral("Color2"), QColor()); + d->trans[i][j] = cg.readEntry(*it2 + QStringLiteral("SemiTransparent"), false); } } @@ -157,17 +157,17 @@ if (cached.isEmpty()) { QString tmp; cached = tmp.setNum(d->effect[group][state]); - cached += ':'; + cached += QLatin1Char(':'); cached += tmp.setNum(d->value[group][state]); - cached += ':'; + cached += QLatin1Char(':'); cached += d->trans[group][state] ? QLatin1String("trans") : QLatin1String("notrans"); if (d->effect[group][state] == Colorize || d->effect[group][state] == ToMonochrome) { - cached += ':'; + cached += QLatin1Char(':'); cached += d->color[group][state].name(); } if (d->effect[group][state] == ToMonochrome) { - cached += ':'; + cached += QLatin1Char(':'); cached += d->color2[group][state].name(); } @@ -719,7 +719,5 @@ } } } - - return; } diff -Nru kiconthemes-5.18.0/src/kiconeffect.h kiconthemes-5.44.0/src/kiconeffect.h --- kiconthemes-5.18.0/src/kiconeffect.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconeffect.h 2018-03-03 10:04:07.000000000 +0000 @@ -34,6 +34,8 @@ class KIconEffectPrivate; /** + * @class KIconEffect kiconeffect.h KIconEffect + * * Applies effects to icons. * * This class applies effects to icons depending on their state and diff -Nru kiconthemes-5.18.0/src/kiconengine.cpp kiconthemes-5.44.0/src/kiconengine.cpp --- kiconthemes-5.18.0/src/kiconengine.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconengine.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -51,6 +51,9 @@ case QIcon::Disabled: kstate = KIconLoader::DisabledState; break; + case QIcon::Selected: + kstate = KIconLoader::SelectedState; + break; } return kstate; } @@ -69,21 +72,15 @@ return; } - Q_UNUSED(state) - - qreal dpr = painter->device()->devicePixelRatio(); - - const int kstate = qIconModeToKIconState(mode); - const int iconSize = qMin(rect.width(), rect.height()) * dpr; - const QPixmap pix = mIconLoader.data()->loadIcon(mIconName, KIconLoader::Desktop, iconSize, kstate, mOverlays); - painter->drawPixmap(rect, pix); + const qreal dpr = painter->device()->devicePixelRatioF(); + painter->drawPixmap(rect, pixmap(rect.size() * dpr, mode, state)); } QPixmap KIconEngine::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state) { Q_UNUSED(state) - if (!size.isValid()) { + if (size.isEmpty()) { return QPixmap(); } @@ -93,6 +90,7 @@ return pm; } + const int kstate = qIconModeToKIconState(mode); const int iconSize = qMin(size.width(), size.height()); QPixmap pix = mIconLoader.data()->loadIcon(mIconName, KIconLoader::Desktop, iconSize, kstate, mOverlays); @@ -105,17 +103,20 @@ pix2.fill(QColor(0, 0, 0, 0)); QPainter painter(&pix2); - painter.drawPixmap(QPoint(), pix); + painter.drawPixmap(QPoint((pix2.width() - pix.width()) / 2, (pix2.height() - pix.height()) / 2), pix); return pix2; } QString KIconEngine::iconName() const { + if (!mIconLoader || !mIconLoader->hasIcon(mIconName)) { + return QString(); + } return mIconName; } -Q_GLOBAL_STATIC_WITH_ARGS(QList, sSizes, (QList() << QSize(16, 16) << QSize(22, 22) << QSize(32, 32) << QSize(48, 48) << QSize(64, 64) << QSize(128, 128) << QSize(256, 256))); +Q_GLOBAL_STATIC_WITH_ARGS(QList, sSizes, (QList() << QSize(16, 16) << QSize(22, 22) << QSize(32, 32) << QSize(48, 48) << QSize(64, 64) << QSize(128, 128) << QSize(256, 256))) QList KIconEngine::availableSizes(QIcon::Mode mode, QIcon::State state) const { @@ -151,3 +152,11 @@ out << mIconName << mOverlays; return true; } + +void KIconEngine::virtual_hook(int id, void *data) +{ + if (id == QIconEngine::IsNullHook) { + *reinterpret_cast(data) = !mIconLoader || !mIconLoader->hasIcon(mIconName); + } + QIconEngine::virtual_hook(id, data); +} diff -Nru kiconthemes-5.18.0/src/kiconengine.h kiconthemes-5.44.0/src/kiconengine.h --- kiconthemes-5.18.0/src/kiconengine.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconengine.h 2018-03-03 10:04:07.000000000 +0000 @@ -26,12 +26,18 @@ class KIconLoader; /** + * @class KIconEngine kiconengine.h KIconEngine + * * \short A class to provide rendering of KDE icons. * * Currently, this class is not much more than a wrapper around QIconEngine. * However, it should not be difficult to extend with features such as SVG * rendered icons. * + * Icon themes specifying a KDE-Extensions string list setting, will limit + * themselves to checking these extensions exclusively, in the order specified + * in the setting. + * * @author Hamish Rodda */ class KICONTHEMES_EXPORT KIconEngine : public QIconEngine // only exported for kdelibs4support's KIcon @@ -74,6 +80,8 @@ bool read(QDataStream &in) Q_DECL_OVERRIDE; bool write(QDataStream &out) const Q_DECL_OVERRIDE; + void virtual_hook(int id, void *data) Q_DECL_OVERRIDE; + private: //TODO KF6: move those into the d-pointer QString mIconName; diff -Nru kiconthemes-5.18.0/src/kiconloader.cpp kiconthemes-5.44.0/src/kiconloader.cpp --- kiconthemes-5.18.0/src/kiconloader.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconloader.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -34,7 +34,8 @@ #include #include #include // % operator for QString -#include +#include +#include #include #include #include @@ -48,6 +49,10 @@ #include #include #include +#include +#include +#include +#include // kdeui #include "kicontheme.h" @@ -57,8 +62,38 @@ //kwidgetsaddons #include +#include +#include + +namespace { // Used to make cache keys for icons with no group. Result type is QString* -Q_GLOBAL_STATIC_WITH_ARGS(QString, NULL_EFFECT_FINGERPRINT, (QString::fromLatin1("noeffect"))) +QString NULL_EFFECT_FINGERPRINT() +{ + return QStringLiteral("noeffect"); +} + +QString STYLESHEET_TEMPLATE() +{ + return QStringLiteral(".ColorScheme-Text {\ +color:%1;\ +}\ +.ColorScheme-Background{\ +color:%2;\ +}\ +.ColorScheme-Highlight{\ +color:%3;\ +}\ +.ColorScheme-PositiveText{\ +color:%4;\ +}\ +.ColorScheme-NeutralText{\ +color:%5;\ +}\ +.ColorScheme-NegativeText{\ +color:%6;\ +}"); +} +} /** * Checks for relative paths quickly on UNIX-alikes, slowly on everything else. @@ -66,7 +101,7 @@ static bool pathIsRelative(const QString &path) { #ifdef Q_OS_UNIX - return (!path.isEmpty() && path[0] != QChar('/')); + return (!path.isEmpty() && path[0] != QLatin1Char('/')); #else return QDir::isRelativePath(path); #endif @@ -80,6 +115,38 @@ QString path; }; +/** + * Function to convert an uint32_t to AARRGGBB hex values. + * + * W A R N I N G ! + * This function is for internal use! + */ +KICONTHEMES_EXPORT void uintToHex(uint32_t colorData, QChar *buffer) +{ + static const char hexLookup[] = "0123456789abcdef"; + buffer += 7; + uchar *colorFields = reinterpret_cast(&colorData); + + for (int i = 0; i < 4; i++) { + *buffer-- = hexLookup[*colorFields & 0xf]; + *buffer-- = hexLookup[*colorFields >> 4]; + colorFields++; + } +} + +static QString paletteId(const QPalette &pal) +{ + // 8 per color. We want 3 colors thus 8*4=32. + QString buffer(32, Qt::Uninitialized); + + uintToHex(pal.windowText().color().rgba(), buffer.data()); + uintToHex(pal.highlight().color().rgba(), buffer.data() + 8); + uintToHex(pal.highlightedText().color().rgba(), buffer.data() + 16); + uintToHex(pal.window().color().rgba(), buffer.data() + 24); + + return buffer; +} + /*** KIconThemeNode: A node in the icon theme dependancy tree. ***/ class KIconThemeNode @@ -132,14 +199,17 @@ int size; }; +extern KICONTHEMES_EXPORT int kiconloader_ms_between_checks; +KICONTHEMES_EXPORT int kiconloader_ms_between_checks = 5000; + /*** d pointer for KIconLoader. ***/ class KIconLoaderPrivate { public: KIconLoaderPrivate(KIconLoader *q) : q(q) - , mpGroups(0) - , mIconCache(0) + , mpGroups(nullptr) + , mIconCache(nullptr) { } @@ -155,8 +225,8 @@ qDeleteAll(links); delete[] mpGroups; delete mIconCache; - mpGroups = 0; - mIconCache = 0; + mpGroups = nullptr; + mIconCache = nullptr; mPixmapCache.clear(); appname.clear(); searchPaths.clear(); @@ -254,11 +324,20 @@ /** * @internal + * If the icon is an SVG file, process it generating a stylesheet + * following the current color scheme. in this case the icon can use named colors + * as text color, background color, highlight color, positive/neutral/negative color + * @see KColorScheme + */ + QByteArray processSvg(const QString &path, KIconLoader::States state) const; + + /** + * @internal * Creates the QImage for @p path, using SVG rendering as appropriate. * @p size is only used for scalable images, but if non-zero non-scalable * images will be resized anyways. */ - QImage createIconImage(const QString &path, int size = 0); + QImage createIconImage(const QString &path, int size = 0, KIconLoader::States state = KIconLoader::DefaultState); /** * @internal @@ -284,6 +363,15 @@ */ void _k_refreshIcons(int group); + bool shouldCheckForUnknownIcons() + { + if (mLastUnknownIconCheck.isValid() && mLastUnknownIconCheck.elapsed() < kiconloader_ms_between_checks) { + return false; + } + mLastUnknownIconCheck.start(); + return true; + } + KIconLoader *const q; QStringList mThemesInTree; @@ -307,7 +395,12 @@ void drawOverlays(const KIconLoader *loader, KIconLoader::Group group, int state, QPixmap &pix, const QStringList &overlays); - QSet mAvailableIcons; + QHash mIconAvailability; // icon name -> true (known to be available) or false (known to be unavailable) + QElapsedTimer mLastUnknownIconCheck; // recheck for unknown icons after kiconloader_ms_between_checks + //the palette used to recolor svg icons stylesheets + QPalette mPalette; + //to keep track if we are using a custom palette or just falling back to qApp; + bool mCustomPalette = false; }; class KIconLoaderGlobalData : public QObject @@ -319,7 +412,7 @@ { const QStringList genericIconsFiles = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("mime/generic-icons")); //qCDebug(KICONTHEMES) << genericIconsFiles; - Q_FOREACH (const QString &file, genericIconsFiles) { + for (const QString &file : genericIconsFiles) { parseGenericIconsFiles(file); } @@ -355,10 +448,10 @@ stream.setCodec("ISO 8859-1"); while (!stream.atEnd()) { const QString line = stream.readLine(); - if (line.isEmpty() || line[0] == '#') { + if (line.isEmpty() || line[0] == QLatin1Char('#')) { continue; } - const int pos = line.indexOf(':'); + const int pos = line.indexOf(QLatin1Char(':')); if (pos == -1) { // syntax error continue; } @@ -415,33 +508,39 @@ //TODO: should we pass in the kstate? it results in a slower // path, and perhaps emblems should remain in the default state // anyways? - const QPixmap pixmap = iconLoader->loadIcon(overlay, group, overlaySize, state, QStringList(), 0, true); + QPixmap pixmap = iconLoader->loadIcon(overlay, group, overlaySize, state, QStringList(), nullptr, true); if (pixmap.isNull()) { continue; } + // match the emblem's devicePixelRatio to the original pixmap's + pixmap.setDevicePixelRatio(pix.devicePixelRatio()); + const int margin = 2 * pixmap.devicePixelRatio(); + QPoint startPoint; switch (count) { case 0: // bottom left corner - startPoint = QPoint(2, height - overlaySize - 2); + startPoint = QPoint(margin, height - overlaySize - margin); break; case 1: // bottom right corner - startPoint = QPoint(width - overlaySize - 2, - height - overlaySize - 2); + startPoint = QPoint(width - overlaySize - margin, + height - overlaySize - margin); break; case 2: // top right corner - startPoint = QPoint(width - overlaySize - 2, 2); + startPoint = QPoint(width - overlaySize - margin, margin); break; case 3: // top left corner - startPoint = QPoint(2, 2); + startPoint = QPoint(margin, margin); break; } + startPoint /= pix.devicePixelRatio(); + painter.drawPixmap(startPoint, pixmap); ++count; @@ -453,9 +552,20 @@ void KIconLoaderPrivate::_k_refreshIcons(int group) { - KSharedConfig::openConfig()->reparseConfiguration(); + KSharedConfig::Ptr sharedConfig = KSharedConfig::openConfig(); + sharedConfig->reparseConfiguration(); + + const QString newThemeName = sharedConfig->group("Icons") + .readEntry("Theme", QString()); + if (!newThemeName.isEmpty()) { + // If we're refreshing icons the Qt platform plugin has probably + // already cached the old theme, which will accidentally filter back + // into KIconTheme unless we reset it + QIcon::setThemeName(newThemeName); + } + q->newIconLoader(); - mAvailableIcons.clear(); + mIconAvailability.clear(); emit q->iconChanged(group); } @@ -480,7 +590,7 @@ { extraDesktopIconsLoaded = false; mIconThemeInited = false; - mpThemeRoot = 0; + mpThemeRoot = nullptr; searchPaths = extraSearchPaths; @@ -496,19 +606,19 @@ mPixmapCache.setMaxCost(10 * 1024 * 1024); // These have to match the order in kiconloader.h - static const char *const groups[] = { "Desktop", "Toolbar", "MainToolbar", "Small", "Panel", "Dialog", 0L }; + static const char *const groups[] = { "Desktop", "Toolbar", "MainToolbar", "Small", "Panel", "Dialog", nullptr }; KSharedConfig::Ptr config = KSharedConfig::openConfig(); // loading config and default sizes initIconThemes(); - KIconTheme *defaultSizesTheme = links.empty() ? 0 : links.first()->theme; + KIconTheme *defaultSizesTheme = links.empty() ? nullptr : links.first()->theme; mpGroups = new KIconGroup[(int) KIconLoader::LastGroup]; for (KIconLoader::Group i = KIconLoader::FirstGroup; i < KIconLoader::LastGroup; ++i) { - if (groups[i] == 0L) { + if (groups[i] == nullptr) { break; } - KConfigGroup cg(config, QLatin1String(groups[i]) + "Icons"); + KConfigGroup cg(config, QLatin1String(groups[i]) + QStringLiteral("Icons")); mpGroups[i].size = cg.readEntry("Size", 0); if (!mpGroups[i].size && defaultSizesTheme) { @@ -521,7 +631,7 @@ { if (mIconThemeInited) { // If mpThemeRoot isn't 0 then initing has succeeded - return (mpThemeRoot != 0); + return (mpThemeRoot != nullptr); } //qCDebug(KICONTHEMES); mIconThemeInited = true; @@ -545,7 +655,7 @@ addBaseThemes(mpThemeRoot, appname); // Insert application specific themes at the top. - searchPaths.append(appname + "/pics"); + searchPaths.append(appname + QStringLiteral("/pics")); // Add legacy icon dirs. searchPaths.append(QStringLiteral("icons")); // was xdgdata-icon in KStandardDirs @@ -569,7 +679,7 @@ { d->initIconThemes(); - d->searchPaths.append(appname + "/pics"); + d->searchPaths.append(appname + QStringLiteral("/pics")); d->addAppThemes(appname, themeBaseDir); } @@ -611,7 +721,6 @@ // present in an inherited theme, and hicolor goes last. addInheritedThemes(node, appname); - addThemeByName(KIconTheme::defaultThemeName(), appname); addThemeByName(QStringLiteral("hicolor"), appname); } @@ -619,7 +728,7 @@ { const QStringList lst = node->theme->inherits(); - for (QStringList::ConstIterator it = lst.begin(); it != lst.end(); ++it) { + for (QStringList::ConstIterator it = lst.begin(), total = lst.end(); it != total; ++it) { if ((*it) == QLatin1String("hicolor")) { // The icon theme spec says that "hicolor" must be the very last // of all inherited themes, so don't add it here but at the very end @@ -656,18 +765,16 @@ QStringList list; const QStringList icnlibs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory); - QStringList::ConstIterator it; char buf[1000]; - for (it = icnlibs.begin(); it != icnlibs.end(); ++it) { + for (QStringList::ConstIterator it = icnlibs.begin(), total = icnlibs.end(); it != total; ++it) { QDir dir(*it); if (!dir.exists()) { continue; } const QStringList lst = dir.entryList(QStringList(QStringLiteral("default.*")), QDir::Dirs); - QStringList::ConstIterator it2; - for (it2 = lst.begin(); it2 != lst.end(); ++it2) { - if (!QFile::exists(*it + *it2 + "/index.desktop") - && !QFile::exists(*it + *it2 + "/index.theme")) { + for (QStringList::ConstIterator it2 = lst.begin(), total = lst.end(); it2 != total; ++it2) { + if (!QFileInfo::exists(*it + *it2 + QStringLiteral("/index.desktop")) + && !QFileInfo::exists(*it + *it2 + QStringLiteral("/index.theme"))) { continue; } //TODO: Is any special handling required for NTFS symlinks? @@ -686,7 +793,7 @@ } } - for (it = list.constBegin(); it != list.constEnd(); ++it) { + for (QStringList::ConstIterator it = list.constBegin(), total = list.constEnd(); it != total; ++it) { // Don't add the KDE defaults once more, we have them anyways. if (*it == QLatin1String("default.kde") || *it == QLatin1String("default.kde4")) { @@ -764,22 +871,84 @@ % QLatin1Char('_') % overlays.join(QStringLiteral("_")) % (group >= 0 ? mpEffect.fingerprint(group, state) - : *NULL_EFFECT_FINGERPRINT()); + : NULL_EFFECT_FINGERPRINT()) + % QLatin1Char('_') + % paletteId(mCustomPalette ? mPalette : qApp->palette()) + % (q->theme() && q->theme()->followsColorScheme() && state == KIconLoader::SelectedState ? QStringLiteral("_selected") : QString()); } -QImage KIconLoaderPrivate::createIconImage(const QString &path, int size) +QByteArray KIconLoaderPrivate::processSvg(const QString &path, KIconLoader::States state) const { - QImageReader reader(path); + QScopedPointer device; + + if (path.endsWith(QLatin1String("svgz"))) { + device.reset(new KCompressionDevice(path, KCompressionDevice::GZip)); + } else { + device.reset(new QFile(path)); + } + + if (!device->open(QIODevice::ReadOnly)) { + return QByteArray(); + } + + const QPalette pal = mCustomPalette ? mPalette : qApp->palette(); + KColorScheme scheme(QPalette::Active, KColorScheme::Window); + QString styleSheet = STYLESHEET_TEMPLATE().arg( + state == KIconLoader::SelectedState ? pal.highlightedText().color().name() : pal.windowText().color().name(), + state == KIconLoader::SelectedState ? pal.highlight().color().name() : pal.window().color().name(), + state == KIconLoader::SelectedState ? pal.highlightedText().color().name() : pal.highlight().color().name(), + scheme.foreground(KColorScheme::PositiveText).color().name(), + scheme.foreground(KColorScheme::NeutralText).color().name(), + scheme.foreground(KColorScheme::NegativeText).color().name()); + + QByteArray processedContents; + QXmlStreamReader reader(device.data()); + + QBuffer buffer(&processedContents); + buffer.open(QIODevice::WriteOnly); + QXmlStreamWriter writer(&buffer); + while (!reader.atEnd()) { + if (reader.readNext() == QXmlStreamReader::StartElement && + reader.qualifiedName() == QLatin1String("style") && + reader.attributes().value(QLatin1String("id")) == QLatin1String("current-color-scheme")) { + writer.writeStartElement(QStringLiteral("style")); + writer.writeAttributes(reader.attributes()); + writer.writeCharacters(styleSheet); + writer.writeEndElement(); + while (reader.tokenType() != QXmlStreamReader::EndElement) { + reader.readNext(); + } + } else if (reader.tokenType() != QXmlStreamReader::Invalid) { + writer.writeCurrentToken(reader); + } + } + buffer.close(); + + return processedContents; +} + +QImage KIconLoaderPrivate::createIconImage(const QString &path, int size, KIconLoader::States state) +{ + //TODO: metadata in the theme to make it do this only if explicitly supported? + QScopedPointer reader; + QBuffer buffer; - if (!reader.canRead()) { + if (q->theme()->followsColorScheme() && (path.endsWith(QLatin1String("svg")) || path.endsWith(QLatin1String("svgz")))) { + buffer.setData(processSvg(path, state)); + reader.reset(new QImageReader(&buffer)); + } else { + reader.reset(new QImageReader(path)); + } + + if (!reader->canRead()) { return QImage(); } if (size != 0) { - reader.setScaledSize(QSize(size, size)); + reader->setScaledSize(QSize(size, size)); } - return reader.read(); + return reader->read(); } void KIconLoaderPrivate::insertCachedPixmapWithPath( @@ -886,65 +1055,43 @@ { const_cast(this)->initIconThemes(); - QString path; - - const char *const ext[4] = { ".png", ".svgz", ".svg", ".xpm" }; - bool genericFallback = name.endsWith(QLatin1String("-x-generic")); - // Do two passes through themeNodes. // // The first pass looks for an exact match in each themeNode one after the other. // If one is found and it is an app icon then return that icon. // - // In the next pass (assuming the first pass failed), it looks for exact matches - // and then generic fallbacks in each themeNode one after the other - // - // The reasoning is that application icons should always match exactly, all other - // icons may fallback. Since we do not know what the context is here when we start - // looking for it, we can only go by the path found. - foreach (KIconThemeNode *themeNode, links) { - for (int i = 0; i < 4; i++) { - path = themeNode->theme->iconPath(name + ext[i], size, KIconLoader::MatchExact); - if (!path.isEmpty()) { - return path; - } + // In the next pass (assuming the first pass failed), it looks for + // generic fallbacks in each themeNode one after the other. - path = themeNode->theme->iconPath(name + ext[i], size, KIconLoader::MatchBest); - if (!path.isEmpty()) { - return path; - } - } + // In theory we should only do this for mimetype icons, not for app icons, + // but that would require different APIs. The long term solution is under + // development for Qt >= 5.8, QFileIconProvider calling QPlatformTheme::fileIcon, + // using QMimeType::genericIconName() to get the proper -x-generic fallback. + // Once everone uses that to look up mimetype icons, we can kill the fallback code + // from this method. - if (!path.isEmpty() && path.contains(QStringLiteral("/apps/"))) { + foreach (KIconThemeNode *themeNode, links) { + const QString path = themeNode->theme->iconPathByName(name, size, KIconLoader::MatchBest); + if (!path.isEmpty()) { return path; } } + if (name.endsWith(QLatin1String("-x-generic"))) { + return QString(); // no further fallback + } + bool genericFallback = false; + QString path; foreach (KIconThemeNode *themeNode, links) { QString currentName = name; while (!currentName.isEmpty()) { - //qCDebug(KICONTHEMES) << "Looking up" << currentName; - - for (int i = 0; i < 4; i++) { - path = themeNode->theme->iconPath(currentName + ext[i], size, KIconLoader::MatchExact); - if (!path.isEmpty()) { - return path; - } - - path = themeNode->theme->iconPath(currentName + ext[i], size, KIconLoader::MatchBest); - if (!path.isEmpty()) { - return path; - } - } - //qCDebug(KICONTHEMES) << "Looking up" << currentName; - if (genericFallback) { // we already tested the base name break; } - int rindex = currentName.lastIndexOf('-'); + int rindex = currentName.lastIndexOf(QLatin1Char('-')); if (rindex > 1) { // > 1 so that we don't split x-content or x-epoc currentName.truncate(rindex); @@ -968,6 +1115,16 @@ break; } } + + if (currentName.isEmpty()) { + break; + } + + //qCDebug(KICONTHEMES) << "Looking up" << currentName; + path = themeNode->theme->iconPathByName(currentName, size, KIconLoader::MatchBest); + if (!path.isEmpty()) { + return path; + } } } return path; @@ -986,9 +1143,9 @@ QString KIconLoaderPrivate::locate(const QString &fileName) { Q_FOREACH (const QString &dir, searchPaths) { - const QString path = dir + '/' + fileName; + const QString path = dir + QLatin1Char('/') + fileName; if (QDir(dir).isAbsolute()) { - if (QFile::exists(path)) { + if (QFileInfo::exists(path)) { return path; } } else { @@ -1114,7 +1271,7 @@ // Special case for absolute path icons. if (name.startsWith(QLatin1String("favicons/"))) { favIconOverlay = true; - name = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + '/' + name + ".png"; + name = QStandardPaths::writableLocation(QStandardPaths::GenericCacheLocation) + QLatin1Char('/') + name + QStringLiteral(".png"); } bool absolutePath = !pathIsRelative(name); @@ -1137,14 +1294,20 @@ bool iconWasUnknown = false; QString path; - // icon.path would be empty for "unknown" icons, which should be searched for - // anew each time. - if (d->findCachedPixmapWithPath(key, pix, path) && !path.isEmpty()) { + if (d->findCachedPixmapWithPath(key, pix, path)) { if (path_store) { *path_store = path; } - return pix; + if (!path.isEmpty()) { + return pix; + } else { + // path is empty for "unknown" icons, which should be searched for + // anew regularly + if (!d->shouldCheckForUnknownIcons()) { + return canReturnNull ? QPixmap() : pix; + } + } } // Image is not cached... go find it and apply effects. @@ -1179,7 +1342,7 @@ QImage img; if (!path.isEmpty()) { - img = d->createIconImage(path, size); + img = d->createIconImage(path, size, (KIconLoader::States)state); } if (group >= 0) { @@ -1232,17 +1395,17 @@ { QString file = moviePath(name, group, size); if (file.isEmpty()) { - return 0; + return nullptr; } - int dirLen = file.lastIndexOf('/'); - QString icon = iconPath(name, size ? -size : group, true); + int dirLen = file.lastIndexOf(QLatin1Char('/')); + const QString icon = iconPath(name, size ? -size : group, true); if (!icon.isEmpty() && file.left(dirLen) != icon.left(dirLen)) { - return 0; + return nullptr; } QMovie *movie = new QMovie(file, QByteArray(), parent); if (!movie->isValid()) { delete movie; - return 0; + return nullptr; } return movie; } @@ -1264,7 +1427,7 @@ group = KIconLoader::Desktop; } - QString file = name + ".mng"; + QString file = name + QStringLiteral(".mng"); if (group == KIconLoader::User) { file = d->locate(file); } else { @@ -1314,9 +1477,9 @@ group = KIconLoader::Desktop; } - QString file = name + "/0001"; + QString file = name + QStringLiteral("/0001"); if (group == KIconLoader::User) { - file = d->locate(file + ".png"); + file = d->locate(file + QStringLiteral(".png")); } else { if (size == 0) { size = d->mpGroups[group].size; @@ -1350,7 +1513,7 @@ if (d->mpThemeRoot) { return d->mpThemeRoot->theme; } - return 0L; + return nullptr; } int KIconLoader::currentSize(KIconLoader::Group group) const @@ -1372,9 +1535,8 @@ const QStringList formats = QStringList() << QStringLiteral("*.png") << QStringLiteral("*.xpm") << QStringLiteral("*.svg") << QStringLiteral("*.svgz"); const QStringList lst = dir.entryList(formats, QDir::Files); QStringList result; - QStringList::ConstIterator it; - for (it = lst.begin(); it != lst.end(); ++it) { - result += iconsDir + '/' + *it; + for (QStringList::ConstIterator it = lst.begin(), total = lst.end(); it != total; ++it) { + result += iconsDir + QLatin1Char('/') + *it; } return result; } @@ -1405,7 +1567,7 @@ QStringList res2, entries; QStringList::ConstIterator it; for (it = result.constBegin(); it != result.constEnd(); ++it) { - int n = (*it).lastIndexOf('/'); + int n = (*it).lastIndexOf(QLatin1Char('/')); if (n == -1) { name = *it; } else { @@ -1446,7 +1608,7 @@ QStringList res2, entries; QStringList::ConstIterator it; for (it = result.constBegin(); it != result.constEnd(); ++it) { - int n = (*it).lastIndexOf('/'); + int n = (*it).lastIndexOf(QLatin1Char('/')); if (n == -1) { name = *it; } else { @@ -1497,12 +1659,12 @@ bool canReturnNull) { QIcon iconset; - QPixmap tmp = loadIcon(name, g, s, KIconLoader::ActiveState, QStringList(), NULL, canReturnNull); + QPixmap tmp = loadIcon(name, g, s, KIconLoader::ActiveState, QStringList(), nullptr, canReturnNull); iconset.addPixmap(tmp, QIcon::Active, QIcon::On); // we don't use QIconSet's resizing anyway - tmp = loadIcon(name, g, s, KIconLoader::DisabledState, QStringList(), NULL, canReturnNull); + tmp = loadIcon(name, g, s, KIconLoader::DisabledState, QStringList(), nullptr, canReturnNull); iconset.addPixmap(tmp, QIcon::Disabled, QIcon::On); - tmp = loadIcon(name, g, s, KIconLoader::DefaultState, QStringList(), NULL, canReturnNull); + tmp = loadIcon(name, g, s, KIconLoader::DefaultState, QStringList(), nullptr, canReturnNull); iconset.addPixmap(tmp, QIcon::Normal, QIcon::On); return iconset; } @@ -1598,7 +1760,7 @@ return pix; } - QString path = global()->iconPath(QStringLiteral("unknown"), KIconLoader::Small, true); //krazy:exclude=iconnames + const QString path = global()->iconPath(QStringLiteral("unknown"), KIconLoader::Small, true); //krazy:exclude=iconnames if (path.isEmpty()) { qCDebug(KICONTHEMES) << "Warning: Cannot find \"unknown\" icon."; pix = QPixmap(32, 32); @@ -1612,14 +1774,38 @@ bool KIconLoader::hasIcon(const QString &name) const { - bool found = d->mAvailableIcons.contains(name); - if (!found && !iconPath(name, KIconLoader::Desktop, KIconLoader::MatchBest).isEmpty()) { - found = true; - d->mAvailableIcons.insert(name); + auto it = d->mIconAvailability.constFind(name); + const auto end = d->mIconAvailability.constEnd(); + if (it != end && !it.value() && !d->shouldCheckForUnknownIcons()) { + return false; // known to be unavailable + } + bool found = it != end && it.value(); + if (!found) { + if (!iconPath(name, KIconLoader::Desktop, KIconLoader::MatchBest).isEmpty()) { + found = true; + } + d->mIconAvailability.insert(name, found); // remember whether the icon is available or not } return found; } +void KIconLoader::setCustomPalette(const QPalette &palette) +{ + d->mCustomPalette = true; + d->mPalette = palette; +} + +QPalette KIconLoader::customPalette() const +{ + return d->mPalette; +} + +void KIconLoader::resetPalette() +{ + d->mCustomPalette = false; + d->mPalette = QPalette(); +} + /*** the global icon loader ***/ Q_GLOBAL_STATIC(KIconLoader, globalIconLoader) diff -Nru kiconthemes-5.18.0/src/kiconloader.h kiconthemes-5.44.0/src/kiconloader.h --- kiconthemes-5.18.0/src/kiconloader.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kiconloader.h 2018-03-03 10:04:07.000000000 +0000 @@ -39,6 +39,8 @@ class KPixmapSequence; /** + * @class KIconLoader kiconloader.h KIconLoader + * * Iconloader for KDE. * * KIconLoader will load the current icon theme and all its base themes. @@ -76,12 +78,6 @@ class KICONTHEMES_EXPORT KIconLoader : public QObject { Q_OBJECT - Q_ENUMS(Context) - Q_ENUMS(Type) - Q_ENUMS(MatchType) - Q_ENUMS(Group) - Q_ENUMS(StdSizes) - Q_ENUMS(States) public: /** @@ -102,6 +98,7 @@ Place, ///< An icon that represents a location (e.g. 'home', 'trash'). StatusIcon ///< An icon that represents an event. }; + Q_ENUM(Context) /** * The type of the icon. @@ -111,6 +108,7 @@ Scalable, ///< Scalable-size icon. Threshold ///< A threshold icon. }; + Q_ENUM(Type) /** * The type of a match. @@ -119,6 +117,7 @@ MatchExact, ///< Only try to find an exact match. MatchBest ///< Take the best match if there is no exact match. }; + Q_ENUM(MatchType) /** * The group of the icon. @@ -145,6 +144,7 @@ /// User icons User }; + Q_ENUM(Group) /** * These are the standard sizes for icons. @@ -163,6 +163,7 @@ /// enormous sized icons for iconviews SizeEnormous = 128 }; + Q_ENUM(StdSizes) /** * Defines the possible states of an icon. @@ -171,8 +172,10 @@ DefaultState, ///< The default state. ActiveState, ///< Icon is active. DisabledState, ///< Icon is disabled. + SelectedState, ///< Icon is selected. @since 5.22 LastState ///< Last state (last constant) }; + Q_ENUM(States) /** * Constructs an iconloader. @@ -185,7 +188,7 @@ * KIconLoader::global(), so you hardly ever have to create an * iconloader object yourself. That one is the application's iconloader. */ - explicit KIconLoader(const QString &appname = QString(), const QStringList &extraSearchPaths = QStringList(), QObject *parent = 0); + explicit KIconLoader(const QString &appname = QString(), const QStringList &extraSearchPaths = QStringList(), QObject *parent = nullptr); /** * Cleanup @@ -238,7 +241,7 @@ */ QPixmap loadIcon(const QString &name, KIconLoader::Group group, int size = 0, int state = KIconLoader::DefaultState, const QStringList &overlays = QStringList(), - QString *path_store = 0L, + QString *path_store = nullptr, bool canReturnNull = false) const; /** @@ -261,12 +264,12 @@ */ QPixmap loadMimeTypeIcon(const QString &iconName, KIconLoader::Group group, int size = 0, int state = KIconLoader::DefaultState, const QStringList &overlays = QStringList(), - QString *path_store = 0) const; + QString *path_store = nullptr) const; /** * Loads a pixmapSequence given the xdg icon name * - * @param name The name of the icon, without extension. + * @param iconName The name of the icon, without extension. * @param size the size/group to be used * @since 5.0 */ @@ -321,7 +324,7 @@ * @return A QMovie object. Can be null if not found or not valid. * Ownership is passed to the caller. */ - QMovie *loadMovie(const QString &name, KIconLoader::Group group, int size = 0, QObject *parent = 0) const; + QMovie *loadMovie(const QString &name, KIconLoader::Group group, int size = 0, QObject *parent = nullptr) const; /** * Returns the path to an animated icon. @@ -456,6 +459,34 @@ void drawOverlays(const QStringList &overlays, QPixmap &pixmap, KIconLoader::Group group, int state = KIconLoader::DefaultState) const; bool hasIcon(const QString &iconName) const; + + /** + * Sets the colors for this KIconLoader. + * NOTE: if you set a custom palette, if you are using some colors from + * application's palette, you need to track the application palette changes by yourself. + * If you no longer wish to use a custom palette, use resetPalette() + * @see resetPalette + * @since 5.38 + */ + void setCustomPalette(const QPalette &palette); + + /** + * The colors that will be used for the svg stylesheet in case the + * loaded icons are svg-based, icons can be colored in different ways in + * different areas of the application + * @return the palette, if any, an invalid one if the user didn't set it + * @since 5.38 + */ + QPalette customPalette() const; + + /** + * Resets the custom palette used by the KIconLoader to use the + * QGuiApplication::palette() again (and to follow it in case the + * application's palette changes) + * @since 5.38 + */ + void resetPalette(); + public Q_SLOTS: /** * Re-initialize the global icon loader @@ -592,14 +623,14 @@ * KDE style and effect standards. * @since 5.0 */ -KICONTHEMES_EXPORT QIcon icon(const QString &iconName, KIconLoader *iconLoader = 0); +KICONTHEMES_EXPORT QIcon icon(const QString &iconName, KIconLoader *iconLoader = nullptr); /** * \relates KIconLoader * Returns a QIcon for the given icon, with additional overlays. * @since 5.0 */ -KICONTHEMES_EXPORT QIcon icon(const QString &iconName, const QStringList &overlays, KIconLoader *iconLoader = 0); +KICONTHEMES_EXPORT QIcon icon(const QString &iconName, const QStringList &overlays, KIconLoader *iconLoader = nullptr); } diff -Nru kiconthemes-5.18.0/src/kicontheme.cpp kiconthemes-5.44.0/src/kicontheme.cpp --- kiconthemes-5.18.0/src/kicontheme.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kicontheme.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -25,12 +25,14 @@ #include +#include #include #include #include #include #include #include +#include #include // KLocalizedString::localizedFilePath. Need such functionality in, hmm, QLocale? QStandardPaths? @@ -38,11 +40,40 @@ #include -class KIconTheme::KIconThemePrivate +Q_GLOBAL_STATIC(QString, _themeOverride) + +// Support for icon themes in RCC files. +// The intended use case is standalone apps on Windows / MacOS / etc. +// For this reason we use AppDataLocation: BINDIR/data on Windows, Resources on OS X +void initRCCIconTheme() +{ + const QString iconThemeRcc = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("icontheme.rcc")); + if (!iconThemeRcc.isEmpty()) { + const QString iconThemeName = QStringLiteral("kf5_rcc_theme"); + const QString iconSubdir = QStringLiteral("/icons/") + iconThemeName; + if (QResource::registerResource(iconThemeRcc, iconSubdir)) { + if (QFileInfo::exists(QLatin1Char(':') + iconSubdir + QStringLiteral("/index.theme"))) { + // Tell Qt about the theme + // Note that since qtbase commit a8621a3f8, this means the QPA (i.e. KIconLoader) will NOT be used. + QIcon::setThemeName(iconThemeName); // Qt looks under :/icons automatically + // Tell KIconTheme about the theme, in case KIconLoader is used directly + *_themeOverride() = iconThemeName; + } else { + qWarning() << "No index.theme found in" << iconThemeRcc; + QResource::unregisterResource(iconThemeRcc, iconSubdir); + } + } else { + qWarning() << "Invalid rcc file" << iconThemeRcc; + } + } +} +Q_COREAPP_STARTUP_FUNCTION(initRCCIconTheme) + + +class Q_DECL_HIDDEN KIconTheme::KIconThemePrivate { public: QString example, screenshot; - QString linkOverlay, lockOverlay, zipOverlay, shareOverlay; bool hidden; KSharedConfig::Ptr sharedConfig; @@ -52,7 +83,9 @@ int mDepth; QString mDir, mName, mInternalName, mDesc; QStringList mInherits; - QList mDirs; + QStringList mExtensions; + QVector mDirs; + bool followsColorScheme : 1; }; Q_GLOBAL_STATIC(QString, _theme) Q_GLOBAL_STATIC(QStringList, _theme_list) @@ -71,9 +104,9 @@ } QString iconPath(const QString &name) const; QStringList iconList() const; - QString dir() const + QString constructFileName(const QString &file) const { - return mBaseDirThemeDir; + return mBaseDir + mThemeDir + QLatin1Char('/') + file; } KIconLoader::Context context() const @@ -108,7 +141,8 @@ int mSize, mMinSize, mMaxSize; int mThreshold; - QString mBaseDirThemeDir; + const QString mBaseDir; + const QString mThemeDir; }; @@ -116,7 +150,6 @@ KIconTheme::KIconTheme(const QString &name, const QString &appName, const QString &basePathHint) : d(new KIconThemePrivate) { - d->mInternalName = name; QStringList themeDirs; @@ -129,16 +162,16 @@ if (!appName.isEmpty() && (name == defaultThemeName() || name == QLatin1String("hicolor") || name == QLatin1String("locolor"))) { const QStringList icnlibs = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation); - for (QStringList::ConstIterator it = icnlibs.constBegin(); it != icnlibs.constEnd(); ++it) { - const QString cDir = *it + '/' + appName + "/icons/" + name; - if (QFile::exists(cDir)) { - themeDirs += cDir + '/'; + for (QStringList::ConstIterator it = icnlibs.constBegin(), total = icnlibs.constEnd(); it != total; ++it) { + const QString cDir = *it + QLatin1Char('/') + appName + QStringLiteral("/icons/") + name + QLatin1Char('/'); + if (QFileInfo::exists(cDir)) { + themeDirs += cDir; } } if (!basePathHint.isEmpty()) { // Checks for dir existing are done below - themeDirs += basePathHint + '/' + name + '/'; + themeDirs += basePathHint + QLatin1Char('/') + name + QLatin1Char('/'); } } @@ -155,18 +188,18 @@ icnlibs += QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("pixmaps"), QStandardPaths::LocateDirectory); QString fileName, mainSection; - for (QStringList::ConstIterator it = icnlibs.constBegin(); it != icnlibs.constEnd(); ++it) { - const QString cDir = *it + '/' + name + '/'; + for (QStringList::ConstIterator it = icnlibs.constBegin(), total = icnlibs.constEnd(); it != total; ++it) { + const QString cDir = *it + QLatin1Char('/') + name + QLatin1Char('/'); if (QDir(cDir).exists()) { themeDirs += cDir; if (d->mDir.isEmpty()) { - if (QFile::exists(cDir + "index.theme")) { + if (QFileInfo::exists(cDir + QStringLiteral("index.theme"))) { d->mDir = cDir; - fileName = d->mDir + "index.theme"; + fileName = d->mDir + QStringLiteral("index.theme"); mainSection = QStringLiteral("Icon Theme"); - } else if (QFile::exists(cDir + "index.desktop")) { + } else if (QFileInfo::exists(cDir + QStringLiteral("index.desktop"))) { d->mDir = cDir; - fileName = d->mDir + "index.desktop"; + fileName = d->mDir + QStringLiteral("index.desktop"); mainSection = QStringLiteral("KDE Icon Theme"); } } @@ -188,29 +221,31 @@ d->mDepth = cfg.readEntry("DisplayDepth", 32); d->mInherits = cfg.readEntry("Inherits", QStringList()); if (name != defaultThemeName()) { - for (QStringList::Iterator it = d->mInherits.begin(); it != d->mInherits.end(); ++it) { - if (*it == QLatin1String("default") || *it == QLatin1String("hicolor")) { + for (QStringList::Iterator it = d->mInherits.begin(), total = d->mInherits.end(); it != total; ++it) { + if (*it == QLatin1String("default")) { *it = defaultThemeName(); } } } d->hidden = cfg.readEntry("Hidden", false); + d->followsColorScheme = cfg.readEntry("FollowsColorScheme", false); d->example = cfg.readPathEntry("Example", QString()); d->screenshot = cfg.readPathEntry("ScreenShot", QString()); + d->mExtensions = cfg.readEntry("KDE-Extensions", QStringList{ QStringLiteral(".png"), QStringLiteral(".svgz"), QStringLiteral(".svg"), QStringLiteral(".xpm") }); const QStringList dirs = cfg.readPathEntry("Directories", QStringList()); for (QStringList::ConstIterator it = dirs.begin(); it != dirs.end(); ++it) { KConfigGroup cg(d->sharedConfig, *it); for (QStringList::ConstIterator itDir = themeDirs.constBegin(); itDir != themeDirs.constEnd(); ++itDir) { - const QString currentDir(*itDir + *it + '/'); + const QString currentDir(*itDir + *it + QLatin1Char('/')); if (!addedDirs.contains(currentDir) && QDir(currentDir).exists()) { addedDirs.insert(currentDir); KIconThemeDir *dir = new KIconThemeDir(*itDir, *it, cg); - if (!dir->isValid()) { - delete dir; - } else { + if (dir->isValid()) { d->mDirs.append(dir); + } else { + delete dir; } } } @@ -223,18 +258,12 @@ groups += QStringLiteral("Small"); groups += QStringLiteral("Panel"); groups += QStringLiteral("Dialog"); - const int defDefSizes[] = { 32, 22, 22, 16, 32, 32 }; + const int defDefSizes[] = { 32, 22, 22, 16, 48, 32 }; KConfigGroup cg(d->sharedConfig, mainSection); for (int i = 0; i < groups.size(); ++i) { const QString group = groups.at(i); - d->mDefSize[i] = cg.readEntry(group + "Default", defDefSizes[i]); - const QList lst = cg.readEntry(group + "Sizes", QList()); - QList exp; - QList::ConstIterator it2; - for (it2 = lst.begin(); it2 != lst.end(); ++it2) { - exp += *it2; - } - d->mSizes[i] = exp; + d->mDefSize[i] = cg.readEntry(group + QStringLiteral("Default"), defDefSizes[i]); + d->mSizes[i] = cg.readEntry(group + QStringLiteral("Sizes"), QList()); } } @@ -305,10 +334,9 @@ QList KIconTheme::querySizes(KIconLoader::Group group) const { - QList empty; if ((group < 0) || (group >= KIconLoader::LastGroup)) { qWarning() << "Illegal icon group: " << group; - return empty; + return QList(); } return d->mSizes[group]; } @@ -400,6 +428,21 @@ return false; } +QString KIconTheme::iconPathByName(const QString &iconName, int size, KIconLoader::MatchType match) const +{ + foreach(const QString ¤t, d->mExtensions) { + const QString path = iconPath(iconName + current, size, match); + if (!path.isEmpty()) + return path; + } + return QString(); +} + +bool KIconTheme::followsColorScheme() const +{ + return d->followsColorScheme; +} + QString KIconTheme::iconPath(const QString &name, int size, KIconLoader::MatchType match) const { QString path; @@ -482,26 +525,42 @@ // static QString KIconTheme::current() { - // Static pointer because of unloading problems wrt DSO's. + // Static pointers because of unloading problems wrt DSO's. + if (_themeOverride && !_themeOverride->isEmpty()) { + *_theme() = *_themeOverride(); + } if (!_theme()->isEmpty()) { return *_theme(); } - KConfigGroup cg(KSharedConfig::openConfig(), "Icons"); - *_theme() = cg.readEntry("Theme", defaultThemeName()); - if (*_theme() == QLatin1String("hicolor")) { - *_theme() = defaultThemeName(); - } - /* if (_theme->isEmpty()) - { - if (QPixmap::defaultDepth() > 8) - *_theme = defaultThemeName(); - else - *_theme = QLatin1String("locolor"); - }*/ + QString theme; + // Check application specific config for a theme setting. + KConfigGroup app_cg(KSharedConfig::openConfig(QString(), KConfig::NoGlobals), "Icons"); + theme = app_cg.readEntry("Theme", QString()); + if (theme.isEmpty() || theme == QLatin1String("hicolor")) { + // No theme, try to use Qt's. A Platform plugin might have set + // a good theme there. + theme = QIcon::themeName(); + } + if (theme.isEmpty() || theme == QLatin1String("hicolor")) { + // Still no theme, try config with kdeglobals. + KConfigGroup cg(KSharedConfig::openConfig(), "Icons"); + theme = cg.readEntry("Theme", QString()); + } + if (theme.isEmpty() || theme == QLatin1String("hicolor")) { + // Still no good theme, use default. + theme = defaultThemeName(); + } + *_theme() = theme; return *_theme(); } +void KIconTheme::forceThemeForTests(const QString &themeName) +{ + *_themeOverride() = themeName; + _theme()->clear(); // ::current sets this again based on conditions +} + // static QStringList KIconTheme::list() { @@ -524,14 +583,13 @@ Q_FOREACH (const QString &it, icnlibs) { QDir dir(it); - const QStringList lst = dir.entryList(QDir::Dirs); - QStringList::ConstIterator it2; - for (it2 = lst.begin(); it2 != lst.end(); ++it2) { - if ((*it2 == QLatin1String(".")) || (*it2 == QLatin1String("..")) || (*it2).startsWith(QLatin1String("default."))) { + const QStringList lst = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot); + for (QStringList::ConstIterator it2 = lst.begin(), total = lst.end(); it2 != total; ++it2) { + if ((*it2).startsWith(QLatin1String("default."))) { continue; } - if (!QFile::exists(it + QLatin1Char('/') + *it2 + QLatin1String("/index.desktop")) && - !QFile::exists(it + QLatin1Char('/') + *it2 + QLatin1String("/index.theme"))) { + if (!QFileInfo::exists(it + QLatin1Char('/') + *it2 + QLatin1String("/index.desktop")) && + !QFileInfo::exists(it + QLatin1Char('/') + *it2 + QLatin1String("/index.theme"))) { continue; } KIconTheme oink(*it2); @@ -557,7 +615,7 @@ // static QString KIconTheme::defaultThemeName() { - return QStringLiteral("oxygen"); + return QStringLiteral("hicolor"); } void KIconTheme::assignIconsToContextMenu(ContextMenus type, @@ -602,7 +660,9 @@ , mSize(config.readEntry("Size", 0)) , mMinSize(1) // just set the variables to something , mMaxSize(50) // meaningful in case someone calls minSize or maxSize - , mBaseDirThemeDir(basedir + themedir) + , mThreshold(2) + , mBaseDir(basedir) + , mThemeDir(themedir) { if (mSize == 0) { return; @@ -638,7 +698,7 @@ } else if (tmp.isEmpty()) { // do nothing. key not required } else { - qWarning() << "Invalid Context=" << tmp << "line for icon theme: " << dir(); + qWarning() << "Invalid Context=" << tmp << "line for icon theme: " << constructFileName(QString()); return; } tmp = config.readEntry(QStringLiteral("Type"), QStringLiteral("Threshold")); @@ -649,7 +709,7 @@ } else if (tmp == QLatin1String("Threshold")) { mType = KIconLoader::Threshold; } else { - qWarning() << "Invalid Type=" << tmp << "line for icon theme: " << dir(); + qWarning() << "Invalid Type=" << tmp << "line for icon theme: " << constructFileName(QString()); return; } if (mType == KIconLoader::Scalable) { @@ -667,9 +727,8 @@ return QString(); } - QString file = dir() + '/' + name; - - if (QFile::exists(file)) { + const QString file = constructFileName(name); + if (QFileInfo::exists(file)) { return KLocalizedString::localizedFilePath(file); } @@ -678,15 +737,15 @@ QStringList KIconThemeDir::iconList() const { - const QDir icondir = dir(); + const QDir icondir = constructFileName(QString()); const QStringList formats = QStringList() << QStringLiteral("*.png") << QStringLiteral("*.svg") << QStringLiteral("*.svgz") << QStringLiteral("*.xpm"); const QStringList lst = icondir.entryList(formats, QDir::Files); QStringList result; - QStringList::ConstIterator it; - for (it = lst.begin(); it != lst.end(); ++it) { - result += dir() + '/' + *it; + result.reserve(lst.size()); + for (const QString &file : lst) { + result += constructFileName(file); } return result; } diff -Nru kiconthemes-5.18.0/src/kicontheme.h kiconthemes-5.44.0/src/kicontheme.h --- kiconthemes-5.18.0/src/kicontheme.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/kicontheme.h 2018-03-03 10:04:07.000000000 +0000 @@ -130,7 +130,7 @@ /** * Query available sizes for a group. * @param group The icon group. See KIconLoader::Group. - * @return a list of available sized for the given group + * @return a list of available sizes for the given group */ QList querySizes(KIconLoader::Group group) const; @@ -152,7 +152,7 @@ /** * Lookup an icon in the theme. - * @param name The name of the icon, without extension. + * @param name The name of the icon, with extension. * @param size The desired size of the icon. * @param match The matching mode. KIconLoader::MatchExact returns an icon * only if matches exactly. KIconLoader::MatchBest returns the best matching @@ -163,11 +163,34 @@ QString iconPath(const QString &name, int size, KIconLoader::MatchType match) const; /** + * Lookup an icon in the theme. + * @param name The name of the icon, without extension. + * @param size The desired size of the icon. + * @param match The matching mode. KIconLoader::MatchExact returns an icon + * only if matches exactly. KIconLoader::MatchBest returns the best matching + * icon. + * @return An absolute path to the file of the icon if it's found, QString() otherwise. + * @see KIconLoader::isValid will return true, and false otherwise. + * + * @since 5.22 + */ + QString iconPathByName(const QString &name, int size, KIconLoader::MatchType match) const; + + /** * Returns true if the theme has any icons for the given context. */ bool hasContext(KIconLoader::Context context) const; /** + * If true, this theme is made of SVG icons that will be colorized following the system + * color scheme. This is necessary for monochrome themes that should look visible on both + * light and dark color schemes. + * @return true if the SVG will be colorized with a stylesheet. + * @since 5.22 + */ + bool followsColorScheme() const; + + /** * List all icon themes installed on the system, global and local. * @return the list of all icon themes */ @@ -180,6 +203,26 @@ static QString current(); /** + * Force a current theme and disable automatic resolution of the current + * theme in favor of the forced theme. + * + * To reset a forced theme, simply set an empty themeName. + * + * @param themeName name of the theme to force as current theme, or an + * empty string to unset theme forcing. + * + * @note This should only be used when a very precise expectation about + * the current theme is present. Most notably in unit tests + * this can be used to force a given theme. + * + * @warning A forced theme persists across reconfigure() calls! + * + * @see current + * @since 5.23 + */ + static void forceThemeForTests(const QString &themeName); + + /** * Reconfigure the theme. */ static void reconfigure(); diff -Nru kiconthemes-5.18.0/src/tools/kiconfinder/kiconfinder.cpp kiconthemes-5.44.0/src/tools/kiconfinder/kiconfinder.cpp --- kiconthemes-5.18.0/src/tools/kiconfinder/kiconfinder.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/src/tools/kiconfinder/kiconfinder.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -23,6 +23,8 @@ #include #include <../kiconthemes_version.h> +#include + int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); @@ -40,7 +42,7 @@ Q_FOREACH(const QString& iconName, parser.positionalArguments()) { const QString icon = KIconLoader::global()->iconPath(iconName, KIconLoader::Desktop /*TODO configurable*/, true); if ( !icon.isEmpty() ) { - printf("%s\n", icon.toLatin1().constData()); + printf("%s\n", icon.toLocal8Bit().constData()); } else { return 1; // error } diff -Nru kiconthemes-5.18.0/tests/kicondialogtest.cpp kiconthemes-5.44.0/tests/kicondialogtest.cpp --- kiconthemes-5.18.0/tests/kicondialogtest.cpp 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/tests/kicondialogtest.cpp 2018-03-03 10:04:07.000000000 +0000 @@ -40,7 +40,7 @@ delete dialog; icon = KIconDialog::getIcon(KIconLoader::Desktop, KIconLoader::MimeType, - true, 48, true, 0, QStringLiteral("Test dialog")); + true, 48, true, nullptr, QStringLiteral("Test dialog")); QTextStream(stdout) << "Icon \"" << icon << "\" was chosen (getIcon)\n"; } diff -Nru kiconthemes-5.18.0/tests/kiconeffecttest.h kiconthemes-5.44.0/tests/kiconeffecttest.h --- kiconthemes-5.18.0/tests/kiconeffecttest.h 2016-01-02 16:37:22.000000000 +0000 +++ kiconthemes-5.44.0/tests/kiconeffecttest.h 2018-03-03 10:04:07.000000000 +0000 @@ -10,7 +10,7 @@ { Q_OBJECT public: - KIconEffectTestWidget(QWidget *parent = 0); + KIconEffectTestWidget(QWidget *parent = nullptr); private Q_SLOTS: void slotGray(int); void slotMonochrome(int);