diff -Nru kconfigwidgets-5.15.0/autotests/kconfigdialog_unittest.cpp kconfigwidgets-5.18.0/autotests/kconfigdialog_unittest.cpp --- kconfigwidgets-5.15.0/autotests/kconfigdialog_unittest.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/autotests/kconfigdialog_unittest.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -42,21 +42,21 @@ ComboBoxPage() { colorCombo = new KColorCombo(this); - colorCombo->setObjectName("kcfg_Color"); + colorCombo->setObjectName(QStringLiteral("kcfg_Color")); colorCombo->setColor(Qt::red); enumCombo = new QComboBox(this); - enumCombo->setObjectName("kcfg_Enum"); - enumCombo->addItems(QStringList() << "A" << "B" << "C"); + enumCombo->setObjectName(QStringLiteral("kcfg_Enum")); + enumCombo->addItems(QStringList() << QStringLiteral("A") << QStringLiteral("B") << QStringLiteral("C")); textCombo = new QComboBox(this); - textCombo->setObjectName("kcfg_Text"); + textCombo->setObjectName(QStringLiteral("kcfg_Text")); textCombo->setEditable(true); - textCombo->addItems(QStringList() << "A" << "B" << "C"); + textCombo->addItems(QStringList() << QStringLiteral("A") << QStringLiteral("B") << QStringLiteral("C")); numInput = new QSpinBox(this); numInput->setValue(1); - numInput->setObjectName("kcfg_IntNumInput"); + numInput->setObjectName(QStringLiteral("kcfg_IntNumInput")); } KColorCombo *colorCombo; @@ -70,33 +70,33 @@ public: ComboSettings() : KConfigSkeleton(CONFIG_FILE) { - colorItem = new ItemColor(currentGroup(), QLatin1String("Color"), color, Qt::white); - addItem(colorItem, QLatin1String("Color")); + colorItem = new ItemColor(currentGroup(), QStringLiteral("Color"), color, Qt::white); + addItem(colorItem, QStringLiteral("Color")); QList textValues; { ItemEnum::Choice2 choice; - choice.name = QLatin1String("A"); + choice.name = QStringLiteral("A"); textValues.append(choice); } { ItemEnum::Choice2 choice; - choice.name = QLatin1String("B"); + choice.name = QStringLiteral("B"); textValues.append(choice); } { ItemEnum::Choice2 choice; - choice.name = QLatin1String("C"); + choice.name = QStringLiteral("C"); textValues.append(choice); } - enumItem = new ItemEnum(currentGroup(), QLatin1String("Enum"), enumIndex, textValues, 1); - addItem(enumItem, QLatin1String("Enum")); + enumItem = new ItemEnum(currentGroup(), QStringLiteral("Enum"), enumIndex, textValues, 1); + addItem(enumItem, QStringLiteral("Enum")); - stringItem = new ItemString(currentGroup(), QLatin1String("Text"), string, QLatin1String("hh:mm")); - addItem(stringItem, QLatin1String("Text")); + stringItem = new ItemString(currentGroup(), QStringLiteral("Text"), string, QStringLiteral("hh:mm")); + addItem(stringItem, QStringLiteral("Text")); - intValueItem = new ItemInt(currentGroup(), QLatin1String("IntNumInput"), intValue, 42); - addItem(intValueItem, QLatin1String("IntNumInput")); + intValueItem = new ItemInt(currentGroup(), QStringLiteral("IntNumInput"), intValue, 42); + addItem(intValueItem, QStringLiteral("IntNumInput")); } ItemColor *colorItem; @@ -132,7 +132,7 @@ void test() { ComboSettings *skeleton = new ComboSettings(); - KConfigDialog *dialog = new KConfigDialog(0, "settings", skeleton); + KConfigDialog *dialog = new KConfigDialog(0, QStringLiteral("settings"), skeleton); ComboBoxPage *page = new ComboBoxPage(); QCOMPARE(page->colorCombo->color().name(), QColor(Qt::red).name()); @@ -140,7 +140,7 @@ QCOMPARE(page->textCombo->currentText(), QString("A")); QCOMPARE(page->numInput->value(), 1); - dialog->addPage(page, "General"); + dialog->addPage(page, QStringLiteral("General")); QCOMPARE(page->colorCombo->color().name(), QColor(Qt::white).name()); QCOMPARE(page->enumCombo->currentIndex(), 1); @@ -169,7 +169,7 @@ const QString defaultValue = QStringLiteral("default value"); const QString changedValue = QStringLiteral("changed value"); const QString someOtherValue = QStringLiteral("some other value"); - KConfigDialog *dialog = new KConfigDialog(0, "settings2", SignalTest::self()); + KConfigDialog *dialog = new KConfigDialog(0, QStringLiteral("settings2"), SignalTest::self()); QWidget* page = new QWidget; QLineEdit *edit = new QLineEdit(page); edit->setObjectName(QStringLiteral("kcfg_foo")); @@ -178,7 +178,7 @@ QSignalSpy spy(SignalTest::self(), SIGNAL(fooChanged(QString))); QVERIFY(spy.isValid()); // now all the magic happens - dialog->addPage(page, "General"); + dialog->addPage(page, QStringLiteral("General")); //check that default value gets loaded QCOMPARE(spy.size(), 0); diff -Nru kconfigwidgets-5.15.0/autotests/krecentfilesactiontest.cpp kconfigwidgets-5.18.0/autotests/krecentfilesactiontest.cpp --- kconfigwidgets-5.15.0/autotests/krecentfilesactiontest.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/autotests/krecentfilesactiontest.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -74,7 +74,7 @@ void KRecentFilesActionTest::shouldAddActionInTop() { KRecentFilesAction recentAction(0); - recentAction.addUrl(QUrl(QLatin1String("http://www.kde.org"))); + recentAction.addUrl(QUrl(QStringLiteral("http://www.kde.org"))); QList lstAction = recentAction.menu()->actions(); QCOMPARE(lstAction.count(), 4); @@ -91,7 +91,7 @@ void KRecentFilesActionTest::shouldClearMenu() { KRecentFilesAction recentAction(0); - recentAction.addUrl(QUrl(QLatin1String("http://www.kde.org"))); + recentAction.addUrl(QUrl(QStringLiteral("http://www.kde.org"))); QList lstAction = recentAction.menu()->actions(); QCOMPARE(lstAction.count(), 4); recentAction.clear(); diff -Nru kconfigwidgets-5.15.0/CMakeLists.txt kconfigwidgets-5.18.0/CMakeLists.txt --- kconfigwidgets-5.15.0/CMakeLists.txt 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/CMakeLists.txt 2016-01-02 16:27:11.000000000 +0000 @@ -3,7 +3,7 @@ project(KConfigWidgets) include(FeatureSummary) -find_package(ECM 5.15.0 NO_MODULE) +find_package(ECM 5.18.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) @@ -19,8 +19,8 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -set(KF5_VERSION "5.15.0") # handled by release scripts -set(KF5_DEP_VERSION "5.15.0") # handled by release scripts +set(KF5_VERSION "5.18.0") # handled by release scripts +set(KF5_DEP_VERSION "5.18.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCONFIGWIDGETS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kconfigwidgets_version.h" @@ -31,7 +31,7 @@ find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) find_package(KF5Codecs ${KF5_DEP_VERSION} REQUIRED) find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) -find_package(KF5DocTools ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5DocTools ${KF5_DEP_VERSION}) find_package(KF5GuiAddons ${KF5_DEP_VERSION} REQUIRED) find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED) find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED) @@ -42,7 +42,9 @@ add_definitions(-DTRANSLATION_DOMAIN=\"kconfigwidgets5\") if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") ki18n_install(po) - kdoctools_install(po) + if (KF5DocTools_FOUND) + kdoctools_install(po) + endif() file(GLOB lang_dirs "po/*") foreach(lang_dir ${lang_dirs}) @@ -52,7 +54,11 @@ endif() endforeach() endif() -add_subdirectory(docs) + +if (KF5DocTools_FOUND) + add_subdirectory(docs) +endif() + add_subdirectory(src) add_subdirectory(tests) add_subdirectory(autotests) diff -Nru kconfigwidgets-5.15.0/debian/changelog kconfigwidgets-5.18.0/debian/changelog --- kconfigwidgets-5.15.0/debian/changelog 2015-11-03 14:34:32.000000000 +0000 +++ kconfigwidgets-5.18.0/debian/changelog 2016-03-07 22:19:04.000000000 +0000 @@ -1,3 +1,26 @@ +kconfigwidgets (5.18.0-0ubuntu1) xenial; urgency=medium + + [ Scarlett Clark ] + * New upstream release Xenial + + [ Philip Muškovac ] + * New upstream release + + -- Philip Muškovac Mon, 07 Mar 2016 23:19:04 +0100 + +kconfigwidgets (5.16.0-1) unstable; urgency=medium + + * New upstream release (5.16.0). + * Update install files. + + -- Maximiliano Curia Mon, 30 Nov 2015 12:12:53 +0100 + +kconfigwidgets (5.15.0-1) unstable; urgency=medium + + * New upstream release (5.15.0). + + -- Maximiliano Curia Fri, 09 Oct 2015 19:16:50 +0200 + kconfigwidgets (5.15.0-0ubuntu2) xenial; urgency=medium * Fix autopackagetests by adding allow-stderr to the requirements. @@ -14,18 +37,43 @@ -- Jonathan Riddell Wed, 07 Oct 2015 13:44:33 +0100 +kconfigwidgets (5.14.0-1) unstable; urgency=medium + + * New upstream release (5.14.0). + * Removed private classes from exported symbols. + + -- Maximiliano Curia Tue, 15 Sep 2015 13:49:59 +0200 + kconfigwidgets (5.14.0-0ubuntu1) wily; urgency=medium * new upstream release -- Clive Johnston Thu, 17 Sep 2015 13:11:32 +0100 +kconfigwidgets (5.13.0-2) unstable; urgency=medium + + * Bump build dependencies versions. + + -- Maximiliano Curia Tue, 01 Sep 2015 15:41:19 +0200 + +kconfigwidgets (5.13.0-1) unstable; urgency=medium + + * New upstream release (5.13.0). + + -- Maximiliano Curia Sun, 30 Aug 2015 20:01:59 +0200 + kconfigwidgets (5.13.0-0ubuntu1) wily; urgency=medium * new upstream release -- Jonathan Riddell Mon, 10 Aug 2015 12:53:29 +0200 +kconfigwidgets (5.12.0-1) unstable; urgency=medium + + * New upstream release (5.12.0). + + -- Maximiliano Curia Thu, 09 Jul 2015 12:44:07 +0200 + kconfigwidgets (5.12.0-0ubuntu1) wily; urgency=medium * New upstream release diff -Nru kconfigwidgets-5.15.0/debian/control kconfigwidgets-5.18.0/debian/control --- kconfigwidgets-5.15.0/debian/control 2015-11-03 14:07:19.000000000 +0000 +++ kconfigwidgets-5.18.0/debian/control 2016-03-07 22:19:04.000000000 +0000 @@ -7,22 +7,21 @@ debhelper (>= 9), docbook-xml, docbook-xsl, - extra-cmake-modules (>= 5.15.0~), - kdoctools-dev (>= 5.15.0~), - libkf5auth-dev (>= 5.15.0~), - libkf5codecs-dev (>= 5.15.0~), - libkf5config-dev (>= 5.15.0~), - libkf5coreaddons-dev (>= 5.15.0~), - libkf5guiaddons-dev (>= 5.15.0~), - libkf5i18n-dev (>= 5.15.0~), - libkf5widgetsaddons-dev (>= 5.15.0~), + extra-cmake-modules (>= 5.18.0~), + kdoctools-dev (>= 5.18.0~), + libkf5auth-dev (>= 5.18.0~), + libkf5codecs-dev (>= 5.18.0~), + libkf5config-dev (>= 5.18.0~), + libkf5coreaddons-dev (>= 5.18.0~), + libkf5guiaddons-dev (>= 5.18.0~), + libkf5i18n-dev (>= 5.18.0~), + libkf5widgetsaddons-dev (>= 5.18.0~), libxml2-utils, pkg-kde-tools (>= 0.15.15ubuntu1~), qtbase5-dev (>= 5.4), xauth, xvfb Standards-Version: 3.9.6 -XS-Testsuite: autopkgtest Homepage: https://projects.kde.org/projects/frameworks/kconfigwidgets Vcs-Browser: http://anonscm.debian.org/cgit/pkg-kde/frameworks/kconfigwidgets.git Vcs-Git: git://anonscm.debian.org/pkg-kde/frameworks/kconfigwidgets.git @@ -30,13 +29,13 @@ Package: libkf5configwidgets-dev Section: libdevel Architecture: any -Depends: libkf5auth-dev (>= 5.15.0~), - libkf5codecs-dev (>= 5.15.0~), - libkf5config-dev (>= 5.15.0~), +Depends: libkf5auth-dev (>= 5.16.0~), + libkf5codecs-dev (>= 5.16.0~), + libkf5config-dev (>= 5.16.0~), libkf5configwidgets5 (= ${binary:Version}), - libkf5guiaddons-dev (>= 5.15.0~), - libkf5i18n-dev (>= 5.15.0~), - libkf5widgetsaddons-dev (>= 5.15.0~), + libkf5guiaddons-dev (>= 5.16.0~), + libkf5i18n-dev (>= 5.16.0~), + libkf5widgetsaddons-dev (>= 5.16.0~), ${misc:Depends} Description: development files for kconfigwidgets KConfigWidgets provides easy-to-use classes to create diff -Nru kconfigwidgets-5.15.0/debian/libkf5configwidgets5.symbols kconfigwidgets-5.18.0/debian/libkf5configwidgets5.symbols --- kconfigwidgets-5.15.0/debian/libkf5configwidgets5.symbols 2015-11-03 14:07:19.000000000 +0000 +++ kconfigwidgets-5.18.0/debian/libkf5configwidgets5.symbols 2016-03-07 22:19:04.000000000 +0000 @@ -1,4 +1,4 @@ -# SymbolsHelper-Confirmed: 5.14 amd64 +# SymbolsHelper-Confirmed: 5.14.0 amd64 libKF5ConfigWidgets.so.5 libkf5configwidgets5 #MINVER# _ZN10KTipDialog11eventFilterEP7QObjectP6QEvent@Base 4.96.0 _ZN10KTipDialog11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.96.0 diff -Nru kconfigwidgets-5.15.0/debian/libkf5configwidgets-data.install kconfigwidgets-5.18.0/debian/libkf5configwidgets-data.install --- kconfigwidgets-5.15.0/debian/libkf5configwidgets-data.install 2015-11-03 14:07:19.000000000 +0000 +++ kconfigwidgets-5.18.0/debian/libkf5configwidgets-data.install 2016-03-07 22:19:04.000000000 +0000 @@ -1,3 +1,3 @@ usr/bin/preparetips5 -usr/share/kf5/kconfigwidgets/pics/ktip-bulb.png usr/share/locale/* + diff -Nru kconfigwidgets-5.15.0/metainfo.yaml kconfigwidgets-5.18.0/metainfo.yaml --- kconfigwidgets-5.15.0/metainfo.yaml 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/metainfo.yaml 2016-01-02 16:27:11.000000000 +0000 @@ -3,8 +3,7 @@ tier: 3 type: integration platforms: - - name: Linux - - name: MacOSX + - name: All portingAid: false deprecated: false release: true diff -Nru kconfigwidgets-5.15.0/po/af/kconfigwidgets5.po kconfigwidgets-5.18.0/po/af/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/af/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/af/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: kdelibs4 stable\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2006-01-12 16:33+0200\n" "Last-Translator: JUANITA FRANZ \n" "Language-Team: AFRIKAANS \n" @@ -538,35 +538,35 @@ msgid "About &KDE" msgstr "Aangaande KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Leidraad van die Dag" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Het jy geweet...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Vertoon leidrade tydens opstart" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Vorige" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/af/kf5_entry.desktop kconfigwidgets-5.18.0/po/af/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/af/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/af/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -3,6 +3,7 @@ Name[af]=Afrikaans Name[ar]=الأفريكانس Name[as]=আফ্ৰিকান্স +Name[ast]=Afrikaans Name[be]=Афрыкаанс Name[be@latin]=Afrykaans Name[bg]=Африкаанс diff -Nru kconfigwidgets-5.15.0/po/ar/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ar/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ar/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ar/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-08-08 13:54+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -488,35 +488,35 @@ msgid "About &KDE" msgstr "حول &كدي" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "تلميحة اليوم" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "هل تعلم أن....؟\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ا&عرض النصائح عند بدء التشغيل" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "ال&سابق" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/as/kconfigwidgets5.po kconfigwidgets-5.18.0/po/as/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/as/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/as/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4_as\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-12-26 15:19+0530\n" "Last-Translator: Amitakhya Phukan <অমিতাক্ষ ফুকন>\n" "Language-Team: Assamese \n" @@ -531,35 +531,35 @@ msgid "About &KDE" msgstr "KDE বিষয়ে (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "আজিৰ উপদেশ" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "আপুনি জানে নে...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "আৰম্ভণিত উপেদশ প্ৰদৰ্শন কৰা হ'ব (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "আগৰ (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ast/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ast/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ast/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ast/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,10 +6,10 @@ msgstr "" "Project-Id-Version: kdelibs4-1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2015-04-06 15:12+0100\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-12-11 02:53+0100\n" "Last-Translator: enolp \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian <>\n" "Language: ast_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,37 +18,31 @@ "X-Poedit-Language: asturian\n" "X-Generator: Lokalize 2.0\n" -#, fuzzy msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Iñigo Varela" +msgstr "Softastur" -#, fuzzy msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "malditoastur@gmail.com" +msgstr "alministradores@softastur.org" #: kcmodule.cpp:166 -#, fuzzy msgid "You will be asked to authenticate before saving" -msgstr "Entrugarásete p'autenticación enantes de salvar" +msgstr "Entrugarásete p'autenticate enantes de guardar" #: kcmodule.cpp:170 -#, fuzzy msgid "You are not allowed to save the configuration" -msgstr "Nun tienes permisos pa guardar la configuración" +msgstr "Nun tienes permisu pa guardar la configuración" #: kcodecaction.cpp:90 -#, fuzzy msgctxt "Encodings menu" msgid "Default" -msgstr "Predetermináu" +msgstr "Por defeutu" #: kcodecaction.cpp:98 -#, fuzzy msgctxt "Encodings menu" msgid "Autodetect" -msgstr "Deteutar automáticamente" +msgstr "Auto-deteutar" #: kconfigdialog.cpp:45 #, fuzzy @@ -58,58 +52,48 @@ msgstr "Configurar" #: klanguagebutton.cpp:194 -#, fuzzy msgid "without name" msgstr "ensin nome" #: krecentfilesaction.cpp:78 -#, fuzzy msgid "No Entries" -msgstr "Ensin Entraes" +msgstr "Ensin entraes" #: krecentfilesaction.cpp:84 -#, fuzzy msgid "Clear List" -msgstr "Vaciar llista" +msgstr "Llimpiar llistáu" #: kstandardaction.cpp:90 -#, fuzzy msgctxt "go back" msgid "&Back" -msgstr "&Retroceder" +msgstr "&Atrás" #: kstandardaction.cpp:97 -#, fuzzy msgctxt "go forward" msgid "&Forward" msgstr "&Avanzar" #: kstandardaction.cpp:104 -#, fuzzy msgctxt "home page" msgid "&Home" -msgstr "&Iniciu" +msgstr "&Aniciu" #: kstandardaction.cpp:107 -#, fuzzy msgctxt "show help" msgid "&Help" msgstr "&Ayuda" #: kstandardaction.cpp:526 kstandardaction_p.h:96 -#, fuzzy msgid "Show &Menubar" msgstr "Amosar barra de &menú" #: kstandardaction.cpp:534 -#, fuzzy msgid "Show Menubar

Shows the menubar again after it has been hidden

" msgstr "" -"Amosar barra de menú

Amuesa la barra de menú de nuevu dempués de que " -"s'anubrió

" +"Amosar barra de menú

Amuesa la barra de menú de nueves dempués de que " +"s'anubriere

" #: kstandardaction.cpp:552 kstandardaction_p.h:98 -#, fuzzy msgid "Show St&atusbar" msgstr "Amosar barra d'&estáu" @@ -127,7 +111,6 @@ "d'estáu." #: kstandardaction_p.h:41 -#, fuzzy msgid "&New" msgstr "&Nuevu" @@ -137,7 +120,6 @@ msgstr "Crear documentu nuevu..." #: kstandardaction_p.h:42 -#, fuzzy msgid "&Open..." msgstr "&Abrir..." @@ -147,7 +129,6 @@ msgstr "Abrir un documentu esistente" #: kstandardaction_p.h:43 -#, fuzzy msgid "Open &Recent" msgstr "Abrir &reciente" @@ -157,7 +138,6 @@ msgstr "Abrir un documentu abiertu de recién" #: kstandardaction_p.h:44 -#, fuzzy msgid "&Save" msgstr "&Guardar" @@ -167,7 +147,6 @@ msgstr "Guardar documentu" #: kstandardaction_p.h:45 -#, fuzzy msgid "Save &As..." msgstr "Guardar &Como..." @@ -177,7 +156,6 @@ msgstr "Guardar un documentu con un nome nuevu" #: kstandardaction_p.h:46 -#, fuzzy msgid "Re&vert" msgstr "Re&vertir" @@ -186,7 +164,6 @@ msgstr "" #: kstandardaction_p.h:47 -#, fuzzy msgid "&Close" msgstr "&Zarrar" @@ -196,7 +173,6 @@ msgstr "Zarrar documentu" #: kstandardaction_p.h:48 -#, fuzzy msgid "&Print..." msgstr "&Imprentar..." @@ -226,17 +202,14 @@ msgstr "Unviar documentu por corréu-e" #: kstandardaction_p.h:51 -#, fuzzy msgid "&Quit" msgstr "&Colar" #: kstandardaction_p.h:51 -#, fuzzy msgid "Quit application" -msgstr "Colar de l'aplicación" +msgstr "Cola de l'aplicación" #: kstandardaction_p.h:53 -#, fuzzy msgid "&Undo" msgstr "&Desfacer" @@ -246,7 +219,6 @@ msgstr "Desfacer la cabera aición" #: kstandardaction_p.h:54 -#, fuzzy msgid "Re&do" msgstr "Re&facer" @@ -256,7 +228,6 @@ msgstr "Refacer la cabera aición desfecha" #: kstandardaction_p.h:55 -#, fuzzy msgid "Cu&t" msgstr "Cor&tar" @@ -266,7 +237,6 @@ msgstr "Cortar seleición al cartafueyu" #: kstandardaction_p.h:56 -#, fuzzy msgid "&Copy" msgstr "&Copiar" @@ -276,7 +246,6 @@ msgstr "Copiar seleición al cartafueyu" #: kstandardaction_p.h:57 kstandardaction_p.h:58 -#, fuzzy msgid "&Paste" msgstr "&Apegar" @@ -286,12 +255,10 @@ msgstr "Apegar conteníu del cartafueyu" #: kstandardaction_p.h:59 -#, fuzzy msgid "C&lear" msgstr "Lli&mpiar" #: kstandardaction_p.h:60 -#, fuzzy msgid "Select &All" msgstr "Esbillar &too" @@ -301,9 +268,8 @@ msgstr "Dese&sbillar" #: kstandardaction_p.h:62 -#, fuzzy msgid "&Find..." -msgstr "&Atopar..." +msgstr "&Alcontrar" #: kstandardaction_p.h:63 #, fuzzy @@ -316,12 +282,10 @@ msgstr "Guetar &anterior" #: kstandardaction_p.h:65 -#, fuzzy msgid "&Replace..." msgstr "&Trocar..." #: kstandardaction_p.h:67 -#, fuzzy msgid "&Actual Size" msgstr "Tamañu &actual" @@ -331,7 +295,6 @@ msgstr "Ver documentu al so tamañu actual" #: kstandardaction_p.h:68 -#, fuzzy msgid "&Fit to Page" msgstr "A&xustar a la páxina" @@ -360,19 +323,16 @@ msgstr "" #: kstandardaction_p.h:71 -#, fuzzy msgid "Zoom &In" -msgstr "Ampl&iar" +msgstr "&Averar" #: kstandardaction_p.h:72 -#, fuzzy msgid "Zoom &Out" -msgstr "Amenor&gar" +msgstr "A&lloñar" #: kstandardaction_p.h:73 -#, fuzzy msgid "&Zoom..." -msgstr "&Ampliación..." +msgstr "&Zoom..." #: kstandardaction_p.h:73 #, fuzzy @@ -390,7 +350,6 @@ msgstr "&Re-amosar documentu" #: kstandardaction_p.h:76 -#, fuzzy msgid "&Up" msgstr "Arr&iba" @@ -399,7 +358,6 @@ msgstr "" #: kstandardaction_p.h:81 -#, fuzzy msgid "&Previous Page" msgstr "&Páxina anterior" @@ -409,7 +367,6 @@ msgstr "Dir a la páxina anterior" #: kstandardaction_p.h:82 -#, fuzzy msgid "&Next Page" msgstr "Páxina siguie&nte" @@ -419,24 +376,20 @@ msgstr "Dir a la siguiente páxina" #: kstandardaction_p.h:83 -#, fuzzy msgid "&Go To..." msgstr "&Dir a..." #: kstandardaction_p.h:84 -#, fuzzy msgid "&Go to Page..." -msgstr "&Dir a páxina..." +msgstr "&Dir a la páxina..." #: kstandardaction_p.h:85 -#, fuzzy msgid "&Go to Line..." -msgstr "Dir a &llinia..." +msgstr "Dir a la &llinia..." #: kstandardaction_p.h:86 -#, fuzzy msgid "&First Page" -msgstr "P&rimera páxina" +msgstr "P&rimer páxina" #: kstandardaction_p.h:86 #, fuzzy @@ -454,9 +407,8 @@ msgstr "Dir a la última páxina" #: kstandardaction_p.h:88 -#, fuzzy msgid "&Back" -msgstr "&Retroceder" +msgstr "&Atrás" #: kstandardaction_p.h:88 #, fuzzy @@ -464,9 +416,8 @@ msgstr "Retroceder nel documentu" #: kstandardaction_p.h:89 -#, fuzzy msgid "&Forward" -msgstr "&Avanzar" +msgstr "&Alantre" #: kstandardaction_p.h:89 #, fuzzy @@ -474,17 +425,14 @@ msgstr "Avanzar nel documentu" #: kstandardaction_p.h:91 -#, fuzzy msgid "&Add Bookmark" msgstr "&Amestar marcador" #: kstandardaction_p.h:92 -#, fuzzy msgid "&Edit Bookmarks..." msgstr "&Editar marcadores..." #: kstandardaction_p.h:94 -#, fuzzy msgid "&Spelling..." msgstr "&Ortografía..." @@ -499,7 +447,6 @@ msgstr "Amosar o anubrir la barra de menú" #: kstandardaction_p.h:97 -#, fuzzy msgid "Show &Toolbar" msgstr "Amosar barra de &ferramientes" @@ -514,101 +461,81 @@ msgstr "Amosar o anubrir la barra d'estáu" #: kstandardaction_p.h:99 -#, fuzzy msgid "F&ull Screen Mode" msgstr "Mou de pantalla c&ompleta" #: kstandardaction_p.h:100 -#, fuzzy msgid "&Save Settings" -msgstr "&Guardar preferencies" +msgstr "&Guardar axustes" #: kstandardaction_p.h:101 -#, fuzzy msgid "Configure S&hortcuts..." -msgstr "Configurar B&arres de Ferramientes..." +msgstr "Configurar ata&yos" #: kstandardaction_p.h:102 -#, fuzzy, kde-format +#, kde-format msgid "&Configure %1..." msgstr "&Configurar %1..." #: kstandardaction_p.h:103 -#, fuzzy msgid "Configure Tool&bars..." -msgstr "Configurar Barr&es de Ferramientes..." +msgstr "Configurar barr&es de ferramientes..." #: kstandardaction_p.h:104 -#, fuzzy msgid "Configure &Notifications..." -msgstr "Configurar &Notificaciones..." +msgstr "Configurar &avisos..." #: kstandardaction_p.h:109 -#, fuzzy, kde-format +#, kde-format msgid "%1 &Handbook" msgstr "&Manual de %1" #: kstandardaction_p.h:110 -#, fuzzy msgid "What's &This?" msgstr "¿Qué ye &esto?" #: kstandardaction_p.h:111 -#, fuzzy msgid "Tip of the &Day" -msgstr "Trucu del &Día" +msgstr "Conseyu del &Día" #: kstandardaction_p.h:112 -#, fuzzy msgid "&Report Bug..." msgstr "&Informar d'un fallu..." #: kstandardaction_p.h:113 -#, fuzzy msgid "Switch Application &Language..." -msgstr "Camudar Aplicación de Lli&ngua..." +msgstr "Camudar l&lingua d'aplicación..." #: kstandardaction_p.h:114 -#, fuzzy, kde-format +#, kde-format msgid "&About %1" msgstr "&Tocante a %1" #: kstandardaction_p.h:115 -#, fuzzy msgid "About &KDE" msgstr "Tocante a &KDE" -#: ktipdialog.cpp:239 -#, fuzzy -#| msgid "Tip of the Day" +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" -msgstr "Trucu del Día" +msgstr "Conseyu del día" -#: ktipdialog.cpp:255 -#, fuzzy -#| msgid "Did you know...?\n" +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" -msgstr "Sabíes que...?\n" +msgstr "¿Sabíes que...\n" -#: ktipdialog.cpp:307 -#, fuzzy -#| msgid "&Show tips on startup" +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" -msgstr "&Amosar trucos nel aniciu" +msgstr "&Amosar conseyos nel aniciu" -#: ktipdialog.cpp:312 -#, fuzzy -#| msgid "&Previous" +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" -msgstr "&Atrás" +msgstr "&Anterior" -#: ktipdialog.cpp:317 -#, fuzzy -#| msgid "&Next" +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" -msgstr "&Alantre" +msgstr "&Siguiente" diff -Nru kconfigwidgets-5.15.0/po/be/kconfigwidgets5.po kconfigwidgets-5.18.0/po/be/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/be/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/be/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-09-06 15:21+0300\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" @@ -545,35 +545,35 @@ msgid "About &KDE" msgstr "Пра &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Карысная парада" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Ці ведаеце вы, што...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Паказваць парады пасля запуску" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Папярэдні" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgctxt "Opposite to Previous" #| msgid "&Next" diff -Nru kconfigwidgets-5.15.0/po/be@latin/kconfigwidgets5.po kconfigwidgets-5.18.0/po/be@latin/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/be@latin/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/be@latin/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-08-30 01:10+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" @@ -532,35 +532,35 @@ msgid "About &KDE" msgstr "Pra &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Štodzionnyja parady" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Ci ty viedaŭ?..\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Pakazvaj parady pa ŭvachodzie" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Papiaredniaje" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/be@latin/kf5_entry.desktop kconfigwidgets-5.18.0/po/be@latin/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/be@latin/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/be@latin/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -44,7 +44,7 @@ Name[ko]=벨라루스어 (라틴 문자) Name[ku]=Latîniya Rûsiya Spî Name[lt]=Baltarusių lotynų -Name[lv]=Baltkrievu Latīņu +Name[lv]=Baltkrievu latīņu Name[mai]=बेलारूसी लैटिन Name[mk]=Белоруски латиница Name[ml]=ബെലാറൂഷ്യന്‍ ലാറ്റിന്‍ diff -Nru kconfigwidgets-5.15.0/po/bg/kconfigwidgets5.po kconfigwidgets-5.18.0/po/bg/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/bg/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/bg/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-07-23 01:52+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -481,35 +481,35 @@ msgid "About &KDE" msgstr "Относно &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Съвет за деня" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Знаете ли, че...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Показване при стартиране" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Преди&шен" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/bn/kconfigwidgets5.po kconfigwidgets-5.18.0/po/bn/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/bn/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/bn/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-07-16 14:27+0530\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: American English \n" @@ -484,35 +484,35 @@ msgid "About &KDE" msgstr "কে-ডি-&ই পরিচিতি" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "আজকের টিপ" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "আপনি কি জানেন...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "শুরু করার সময় টি&প দেখাও" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "পূর্ব&বর্তী" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/bn_IN/kconfigwidgets5.po kconfigwidgets-5.18.0/po/bn_IN/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/bn_IN/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/bn_IN/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-12-28 14:35+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -527,35 +527,35 @@ msgid "About &KDE" msgstr "KDE পরিচিতি (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "আজকের উপদেশ" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "আপনি কি জানেন...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "প্রারম্ভকালে উপেদশ প্রদর্শন করা হবে (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "পূর্ববর্তী (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/br/kconfigwidgets5.po kconfigwidgets-5.18.0/po/br/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/br/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/br/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4-1.1\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2007-10-15 22:19+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -539,33 +539,33 @@ msgid "About &KDE" msgstr "Diwar-benn &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Lagadenn an deiz" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Diskouez al lagadennoù pa loc'her" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Diaraog" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/bs/kconfigwidgets5.po kconfigwidgets-5.18.0/po/bs/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/bs/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/bs/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-12-21 17:26+0000\n" "Last-Translator: Ademovic Saudin \n" "Language-Team: bosanski \n" @@ -481,14 +481,14 @@ msgid "About &KDE" msgstr "O &KDE‑u" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Savjet dana" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" @@ -496,21 +496,21 @@ msgstr "Da li ste znali...?\n" # >> @option:check -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Savjeti po prijavljivanju" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Prethodno" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ca/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ca/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ca/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ca/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -4,7 +4,7 @@ # 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, 2007. -# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013, 2014. +# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013, 2014, 2015. # Albert Astals Cid , 2004, 2005, 2007. # Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Robert Millan , 2009. @@ -13,15 +13,15 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2015-06-13 18:04+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-11-13 14:43+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca\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" "X-Accelerator-Marker: &\n" @@ -404,7 +404,7 @@ #: kstandardaction_p.h:94 msgid "Check spelling in document" -msgstr "Comprovació de l'ortografia en el document" +msgstr "Verificació de l'ortografia en el document" #: kstandardaction_p.h:96 msgid "Show or hide menubar" @@ -477,27 +477,27 @@ msgid "About &KDE" msgstr "Quant al &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Consell del dia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Sabíeu que...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mo&stra consells en engegar" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Anterior" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Següent" diff -Nru kconfigwidgets-5.15.0/po/ca@valencia/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ca@valencia/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ca@valencia/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ca@valencia/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -1,28 +1,27 @@ -# Translation of kconfigwidgets5.po to Catalan -# Copyright (C) 1998-2014 This_file_is_part_of_KDE +# Translation of kconfigwidgets5.po to Catalan (Valencian) +# Copyright (C) 2014-2015 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. -# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013. +# Sebastià Pla i Sanz , 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007. +# Antoni Bella Pérez , 2003, 2006, 2011, 2012, 2013, 2014, 2015. # Albert Astals Cid , 2004, 2005, 2007. -# Sebastia Pla Sanz , 2006, 2007. -# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014. +# Josep Ma. Ferrer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Robert Millan , 2009. # Orestes Mas , 2010. msgid "" msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2014-04-06 11:53+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-11-13 14:43+0100\n" +"Last-Translator: Antoni Bella Pérez \n" "Language-Team: Catalan \n" "Language: ca@valencia\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" "X-Accelerator-Marker: &\n" @@ -32,7 +31,7 @@ msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "sps@sastia.com,antonibella5@orange.es,aacid@kde.org,txemaq@gmail.com" +msgstr "sps@sastia.com,antonibella5@yahoo.com,aacid@kde.org,txemaq@gmail.com" #: kcmodule.cpp:166 msgid "You will be asked to authenticate before saving" @@ -53,11 +52,9 @@ msgstr "Autodetecta" #: kconfigdialog.cpp:45 -#, fuzzy -#| msgid "&Configure %1..." msgctxt "@title:window" msgid "Configure" -msgstr "&Configura %1..." +msgstr "Configuració" #: klanguagebutton.cpp:194 msgid "without name" @@ -111,7 +108,7 @@ "window used for status information.

" msgstr "" "Mostra la barra d'estat

Mostra la barra d'estat, que és la barra a sota de " -"la finestra usada per a informació d'estat.

" +"la finestra usada per a la informació d'estat.

" #: kstandardaction_p.h:41 msgid "&New" @@ -159,7 +156,7 @@ #: kstandardaction_p.h:46 msgid "Revert unsaved changes made to document" -msgstr "Reverteix el canvis sense guardar efectuats en el document" +msgstr "Reverteix els canvis sense guardar efectuats en el document" #: kstandardaction_p.h:47 msgid "&Close" @@ -195,7 +192,7 @@ #: kstandardaction_p.h:51 msgid "&Quit" -msgstr "I&x" +msgstr "&Surt" #: kstandardaction_p.h:51 msgid "Quit application" @@ -235,11 +232,11 @@ #: kstandardaction_p.h:57 kstandardaction_p.h:58 msgid "&Paste" -msgstr "&Apega" +msgstr "&Enganxa" #: kstandardaction_p.h:57 kstandardaction_p.h:58 msgid "Paste clipboard content" -msgstr "Apega el contingut del porta-retalls" +msgstr "Enganxa el contingut del porta-retalls" #: kstandardaction_p.h:59 msgid "C&lear" @@ -407,7 +404,7 @@ #: kstandardaction_p.h:94 msgid "Check spelling in document" -msgstr "Comprovació d'ortografia en el document" +msgstr "Verificació de l'ortografia en el document" #: kstandardaction_p.h:96 msgid "Show or hide menubar" @@ -435,7 +432,7 @@ #: kstandardaction_p.h:101 msgid "Configure S&hortcuts..." -msgstr "Configura &dreceres..." +msgstr "Configura les &dreceres..." #: kstandardaction_p.h:102 #, kde-format @@ -465,7 +462,7 @@ #: kstandardaction_p.h:112 msgid "&Report Bug..." -msgstr "&Informe d'errors..." +msgstr "&Informa d'un error..." #: kstandardaction_p.h:113 msgid "Switch Application &Language..." @@ -480,33 +477,27 @@ msgid "About &KDE" msgstr "Quant al &KDE" -#: ktipdialog.cpp:239 -#, fuzzy -#| msgid "Tip of the &Day" +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" -msgstr "Consell del &dia" +msgstr "Consell del dia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" -msgstr "" +msgstr "Sabíeu que...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" -msgstr "" +msgstr "Mo&stra consells en engegar" -#: ktipdialog.cpp:312 -#, fuzzy -#| msgid "&Previous Page" +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" -msgstr "&Pàgina anterior" +msgstr "&Anterior" -#: ktipdialog.cpp:317 -#, fuzzy -#| msgid "Find &Next" +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" -msgstr "Cerca &següent" +msgstr "&Següent" diff -Nru kconfigwidgets-5.15.0/po/crh/kconfigwidgets5.po kconfigwidgets-5.18.0/po/crh/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/crh/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/crh/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-02-12 23:29-0600\n" "Last-Translator: Reşat SABIQ \n" "Language-Team: Qırımtatarca (Qırım Türkçesi)\n" @@ -541,35 +541,35 @@ msgid "About &KDE" msgstr "&KDE Aqqında" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Künniñ Qaranesi" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Bile ediñizmi...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Başlağanda qaranelerni &köster" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Evelki" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/cs/kconfigwidgets5.po kconfigwidgets-5.18.0/po/cs/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/cs/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/cs/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-13 15:20+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" @@ -473,27 +473,27 @@ msgid "About &KDE" msgstr "O prostředí &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip dne" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Věděli jste...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Zobrazovat tipy při &spuštění" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Předchozí" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Následující" diff -Nru kconfigwidgets-5.15.0/po/csb/kconfigwidgets5.po kconfigwidgets-5.18.0/po/csb/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/csb/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/csb/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-12-04 22:09+0100\n" "Last-Translator: Mark Kwidzińśczi \n" "Language-Team: Kaszëbsczi \n" @@ -534,35 +534,35 @@ msgid "About &KDE" msgstr "Wëdowiédzô ò &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Rada dnia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Wiész të, że...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Pòkôżë &radë pò zrëszeniém" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Pòprzédny" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/cy/kconfigwidgets5.po kconfigwidgets-5.18.0/po/cy/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/cy/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/cy/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2005-01-28 17:54+0000\n" "Last-Translator: Kevin Donnelly \n" "Language-Team: Cymraeg\n" @@ -552,35 +552,35 @@ msgid "About &KDE" msgstr "Ynglyn a &Kde" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Awgrymiad y Dydd" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr " Oeddech chi'n gwybod ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Dangos awgrymiadau wrth gychwyn" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Blaenorol" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/da/kconfigwidgets5.po kconfigwidgets-5.18.0/po/da/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/da/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/da/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-28 21:30+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -471,27 +471,27 @@ msgid "About &KDE" msgstr "Om &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dagens tip" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Vidste du...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Vis tip ved opstart" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Forrige" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Næste" diff -Nru kconfigwidgets-5.15.0/po/da/kf5_entry.desktop kconfigwidgets-5.18.0/po/da/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/da/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/da/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -3,6 +3,7 @@ Name[af]=Deens Name[ar]=الدانماركية Name[as]=ডেনিশ্ব +Name[ast]=Finlandés Name[be]=Дацкая Name[be@latin]=Dackaja Name[bg]=Датски diff -Nru kconfigwidgets-5.15.0/po/de/kconfigwidgets5.po kconfigwidgets-5.18.0/po/de/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/de/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/de/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-03-09 21:26+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" @@ -476,27 +476,27 @@ msgid "About &KDE" msgstr "Über &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tipp des Tages" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Wussten Sie schon ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Tipps beim &Start anzeigen" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Zurück" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Weiter" diff -Nru kconfigwidgets-5.15.0/po/el/kconfigwidgets5.po kconfigwidgets-5.18.0/po/el/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/el/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/el/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -15,13 +15,14 @@ # Dimitrios Glentadakis , 2010, 2011, 2012, 2013, 2014. # nikos, 2011. # Stelios , 2012, 2013. +# Dimitris Kardarakos , 2015. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2014-01-04 09:52+0100\n" -"Last-Translator: Dimitrios Glentadakis \n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-10-13 20:01+0300\n" +"Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" @@ -57,8 +58,6 @@ msgstr "Αυτόματη ανίχνευση" #: kconfigdialog.cpp:45 -#, fuzzy -#| msgid "Configure" msgctxt "@title:window" msgid "Configure" msgstr "Διαμόρφωση" @@ -485,37 +484,27 @@ msgid "About &KDE" msgstr "Σχετικά με το &KDE" -#: ktipdialog.cpp:239 -#, fuzzy -#| msgid "Tip of the Day" +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Συμβουλή της ημέρας" -#: ktipdialog.cpp:255 -#, fuzzy -#| msgid "Did you know...?\n" +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Γνωρίζατε ότι...;\n" -#: ktipdialog.cpp:307 -#, fuzzy -#| msgid "&Show tips on startup" +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Εμ&φάνιση συμβουλών στην εκκίνηση" -#: ktipdialog.cpp:312 -#, fuzzy -#| msgid "&Previous" +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" -msgstr "Προηγού&μενο" +msgstr "&Προηγούμενο" -#: ktipdialog.cpp:317 -#, fuzzy -#| msgid "&Next" +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Επόμενο" diff -Nru kconfigwidgets-5.15.0/po/en_GB/kconfigwidgets5.po kconfigwidgets-5.18.0/po/en_GB/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/en_GB/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/en_GB/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-15 11:21+0000\n" "Last-Translator: \n" "Language-Team: British English \n" @@ -468,27 +468,27 @@ msgid "About &KDE" msgstr "About &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip of the Day" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Did you know...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Show tips on startup" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Previous" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Next" diff -Nru kconfigwidgets-5.15.0/po/eo/kconfigwidgets5.po kconfigwidgets-5.18.0/po/eo/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/eo/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/eo/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-05-22 12:30+0200\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \n" @@ -538,27 +538,27 @@ msgid "About &KDE" msgstr "Pri &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Konsilo de la tago" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Ĉu vi sciis...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Montri konsilojn ĉe lanĉo" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Antaŭa" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Sekva" diff -Nru kconfigwidgets-5.15.0/po/es/kconfigwidgets5.po kconfigwidgets-5.18.0/po/es/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/es/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/es/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-10 13:45+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -479,27 +479,27 @@ msgid "About &KDE" msgstr "Acerca de &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Sugerencia del día" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "¿Sabía...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Mostrar sugerencias al inicio" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Anterior" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "Siguie&nte" diff -Nru kconfigwidgets-5.15.0/po/et/kconfigwidgets5.po kconfigwidgets-5.18.0/po/et/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/et/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/et/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-03-02 04:37+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -472,35 +472,35 @@ msgid "About &KDE" msgstr "&KDE info" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Päeva nõuanne" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Kas sa teadsid...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Nõuandeid näidatakse käivitami&sel" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Eelmine" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/eu/kconfigwidgets5.po kconfigwidgets-5.18.0/po/eu/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/eu/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/eu/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-03-02 19:49+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -475,35 +475,35 @@ msgid "About &KDE" msgstr "&KDEri buruz" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Eguneko aholkua" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Bazenekien...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Erakutsi aholkuak _abiaraztean" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Aurrekoa" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/fa/kconfigwidgets5.po kconfigwidgets-5.18.0/po/fa/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/fa/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/fa/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-06-28 16:40+0430\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" @@ -538,35 +538,35 @@ msgid "About &KDE" msgstr "درباره &KDE‌" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "نکته روز" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "آیا می‌دانید...؟\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&نمایش نکات هنگام راه‌اندازی‌" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&قبلی‌" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/fi/kconfigwidgets5.po kconfigwidgets-5.18.0/po/fi/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/fi/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/fi/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -26,7 +26,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-12 12:33+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -493,27 +493,27 @@ msgid "About &KDE" msgstr "Tietoa &KDE:stä" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Päivän vinkki" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Tiesitkö…?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Näytä vinkit käynnistettäessä" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Edellinen" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Seuraava" diff -Nru kconfigwidgets-5.15.0/po/fr/kconfigwidgets5.po kconfigwidgets-5.18.0/po/fr/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/fr/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/fr/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -16,31 +16,32 @@ # Nicolas Lécureuil , 2010. # Joëlle Cornavin , 2007, 2008, 2009, 2010, 2011, 2012, 2013. # Sebastien Renard , 2013, 2014. +# Maxime Corteel , 2015. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2013-11-01 15:56+0100\n" -"Last-Translator: Sebastien Renard \n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-11-11 09:39+0100\n" +"Last-Translator: Maxime Corteel \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" msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Joëlle Cornavin,Matthieu Robin, Sébastien Renard" +msgstr "Joëlle Cornavin, Matthieu Robin, Sébastien Renard, Maxime Corteel" msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "jcorn@free.fr,kde@macolu.org,renard@kde.org" +msgstr "jcorn@free.fr, kde@macolu.org, renard@kde.org, mcorteel@gmail.com" #: kcmodule.cpp:166 msgid "You will be asked to authenticate before saving" @@ -61,11 +62,9 @@ msgstr "Détecter automatiquement" #: kconfigdialog.cpp:45 -#, fuzzy -#| msgid "Configure" msgctxt "@title:window" msgid "Configure" -msgstr "Configuration" +msgstr "&Configurer" #: klanguagebutton.cpp:194 msgid "without name" @@ -488,37 +487,27 @@ msgid "About &KDE" msgstr "À propos de &KDE" -#: ktipdialog.cpp:239 -#, fuzzy -#| msgid "Tip of the Day" +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Astuce du jour" -#: ktipdialog.cpp:255 -#, fuzzy -#| msgid "Did you know...?\n" +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" -msgstr "Saviez-vous...\n" +msgstr "Saviez-vous que... ?\n" -#: ktipdialog.cpp:307 -#, fuzzy -#| msgid "&Show tips on startup" +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" -msgstr "Affic&her les astuces au démarrage" +msgstr "Afficher les a&stuces au démarrage" -#: ktipdialog.cpp:312 -#, fuzzy -#| msgid "&Previous" +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" -msgstr "&Précédent" +msgstr "&Précédente" -#: ktipdialog.cpp:317 -#, fuzzy -#| msgid "&Next" +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" -msgstr "&Suivant" +msgstr "Suiva&nte" diff -Nru kconfigwidgets-5.15.0/po/fy/kconfigwidgets5.po kconfigwidgets-5.18.0/po/fy/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/fy/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/fy/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-07-22 09:48+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: nl \n" @@ -544,35 +544,35 @@ msgid "About &KDE" msgstr "Ynfo oer &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip fan de dei" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Wisten jo dat...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Tips sjen litte by it &starten" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Foa&rige" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ga/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ga/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ga/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ga/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2004-12-14 09:11-0600\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -475,35 +475,35 @@ msgid "About &KDE" msgstr "Maidir le &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Leid an Lae" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "An bhfuil a fhios agat...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Taispeáin Leideanna i dTosach" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Roimhe Seo" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/gd/kconfigwidgets5.po kconfigwidgets-5.18.0/po/gd/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/gd/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/gd/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# GunChleoc , 2014. +# GunChleoc , 2014, 2015. msgid "" msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2014-12-09 10:27+0100\n" -"Last-Translator: GunChleoc \n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-11-04 15:11+0000\n" +"Last-Translator: Michael Bauer \n" "Language-Team: Fòram na Gàidhlig\n" "Language: gd\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " "(n > 2 && n < 20) ? 2 : 3;\n" -"X-Generator: Virtaal 0.7.1\n" +"X-Generator: Poedit 1.8.4\n" "X-Project-Style: kde\n" msgctxt "NAME OF TRANSLATORS" @@ -48,11 +48,9 @@ msgstr "Mothaich gu fèin-obrachail" #: kconfigdialog.cpp:45 -#, fuzzy -#| msgid "&Configure %1..." msgctxt "@title:window" msgid "Configure" -msgstr "Rèiti&ch %1..." +msgstr "Rèitich" #: klanguagebutton.cpp:194 msgid "without name" @@ -476,33 +474,27 @@ msgid "About &KDE" msgstr "Mu &KDE" -#: ktipdialog.cpp:239 -#, fuzzy -#| msgid "Tip of the &Day" +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" -msgstr "&Gliocas an latha" +msgstr "Gliocas an latha" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" -msgstr "" +msgstr "An robh fios agad...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" -msgstr "" +msgstr "&Seall na gliocasan aig an toiseach" -#: ktipdialog.cpp:312 -#, fuzzy -#| msgid "&Previous Page" +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" -msgstr "An duilleag &roimhpe" +msgstr "Ai&r ais" -#: ktipdialog.cpp:317 -#, fuzzy -#| msgid "Find &Next" +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" -msgstr "Lorg a&n ath fhear" +msgstr "Air &adhart" diff -Nru kconfigwidgets-5.15.0/po/gl/kconfigwidgets5.po kconfigwidgets-5.18.0/po/gl/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/gl/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/gl/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-03-14 06:26+0100\n" "Last-Translator: Adrián Chaves Fernández \n" "Language-Team: Galician \n" @@ -479,27 +479,27 @@ msgid "About &KDE" msgstr "Acerca de &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Consello do día" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Sabía que...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mostrar os con&sellos ao iniciar" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Anterior" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Seguinte" diff -Nru kconfigwidgets-5.15.0/po/gu/kconfigwidgets5.po kconfigwidgets-5.18.0/po/gu/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/gu/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/gu/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-11-22 00:01+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -532,35 +532,35 @@ msgid "About &KDE" msgstr "&KDE વિશે" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "દિવસની ટીપ્પણી" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "શું તમે જાણો છો...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ટીપ્પણી શરૂઆતમાં બતાવો (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "પાછળ (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ha/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ha/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ha/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ha/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-03-17 11:22+0100\n" "Last-Translator: Adriaan de Groot \n" "Language-Team: Hausa \n" @@ -503,27 +503,27 @@ msgid "About &KDE" msgstr "Bayani akan &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "" diff -Nru kconfigwidgets-5.15.0/po/he/kconfigwidgets5.po kconfigwidgets-5.18.0/po/he/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/he/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/he/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-01-10 17:20+0200\n" "Last-Translator: Diego Iastrubni \n" "Language-Team: Hebrew \n" @@ -487,35 +487,35 @@ msgid "About &KDE" msgstr "אודות &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "העצה היומית" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "הידעת...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&הצג עצות בעת ההפעלה" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&הקודם" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hi/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hi/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hi/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hi/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-06-25 15:27+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" @@ -478,35 +478,35 @@ msgid "About &KDE" msgstr "केडीई के बारे में (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "आज का नुस्ख़ा" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "क्या आप जानते हैं...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "प्रारंभ में नुस्ख़ा दिखाएँ (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "पिछला (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hne/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hne/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hne/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hne/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-02-10 20:44+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -537,35 +537,35 @@ msgid "About &KDE" msgstr "केडीई परिचय (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "आज के नुस्खा" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "का आप मन जानथो ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "सुरू मं नुस्खा देखाव (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "पिछला (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hr/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hr/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hr/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hr/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2011-07-22 16:08+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -533,35 +533,35 @@ msgid "About &KDE" msgstr "O okruženju &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Savjet dana" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Jeste li znal…?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Tijekom pokretanja &prikaži savjete" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Prethodno" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hsb/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hsb/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hsb/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hsb/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-12-19 22:49+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" @@ -541,35 +541,35 @@ msgid "About &KDE" msgstr "Wo &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Pokiw dnja" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Wěsće hižo ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Pokaž pokiwy při startowanju" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "P&rjedawši" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hsb/kf5_entry.desktop kconfigwidgets-5.18.0/po/hsb/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/hsb/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hsb/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ Name[br]=Sorab uhel Name[bs]=gornjolužičkosrpski Name[ca]=Alt sòrab -Name[ca@valencia]=Sòrab alt +Name[ca@valencia]=Alt sòrab Name[cs]=Hornolužický Name[csb]=Górnoserbsczi Name[cy]=Sorbieg Uchaf @@ -66,7 +66,7 @@ Name[ps]=بره سربي Name[pt]=Sérvio de Cima Name[pt_BR]=Alto Sorábio -Name[ro]=Sîrbă de sus +Name[ro]=Sârbă de sus Name[ru]=Верхнелужицкий Name[se]=Badjesorbialaš Name[si]=ඉහළ සෝබියානු diff -Nru kconfigwidgets-5.15.0/po/hu/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hu/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hu/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hu/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: KDE 4.4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-10-23 11:23+0200\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -468,35 +468,35 @@ msgid "About &KDE" msgstr "Névjegy: &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "A nap tippje" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Tudta, hogy…?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Felhasználási t&ipp indításkor" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "El&őző" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/hy/kconfigwidgets5.po kconfigwidgets-5.18.0/po/hy/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/hy/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/hy/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-01-31 01:08+0400\n" "Last-Translator: Davit \n" "Language-Team: Armenian Language: hy\n" @@ -488,35 +488,35 @@ msgid "About &KDE" msgstr "&KDE-ի մասին" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Օրվա խորհուրդը" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Դուք գիտե՞ք...\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Ցույց տալ խորհուրդները թողարկման ժամանակ" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Նախորդը" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ia/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ia/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ia/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ia/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-10-16 14:03+0200\n" "Last-Translator: G.Sora \n" "Language-Team: Interlingua \n" @@ -471,35 +471,35 @@ msgid "About &KDE" msgstr "A proposito de &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Suggestion del die" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Tu sape ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mon&stra suggestiones a le initio" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Previe" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/id/kconfigwidgets5.po kconfigwidgets-5.18.0/po/id/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/id/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/id/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-02-04 20:08+0700\n" "Last-Translator: Andhika Padmawan \n" "Language-Team: Indonesian \n" @@ -471,35 +471,35 @@ msgid "About &KDE" msgstr "Tentang &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip Hari Ini" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Apakah anda tahu...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Tampilkan tip pada mulai hidupkan" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Se&belumnya" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/is/kconfigwidgets5.po kconfigwidgets-5.18.0/po/is/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/is/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/is/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-05-13 22:40+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -484,35 +484,35 @@ msgid "About &KDE" msgstr "Um &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Vísbending dagsins" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Vissir þú að...\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Sýna vísbendingar í ræsingu" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Fyrra" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/it/kconfigwidgets5.po kconfigwidgets-5.18.0/po/it/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/it/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/it/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-03-01 17:18+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" @@ -479,27 +479,27 @@ msgid "About &KDE" msgstr "Informazioni su &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Suggerimento del giorno" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Sapevi che...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mo&stra i suggerimenti all'avvio" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Precedente" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Successivo" diff -Nru kconfigwidgets-5.15.0/po/ja/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ja/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ja/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ja/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-04-18 23:09-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -506,27 +506,27 @@ msgid "About &KDE" msgstr "KDE について(&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "今日の一言" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "前へ" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "次へ" diff -Nru kconfigwidgets-5.15.0/po/ka/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ka/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ka/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ka/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-12-17 02:11+0400\n" "Last-Translator: George Machitidze \n" "Language-Team: Georgian \n" @@ -540,35 +540,35 @@ msgid "About &KDE" msgstr "&KDE-ს შესახებ" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "დღის რჩევა" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "იცით თუ არა...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&რჩევების ჩვენება დაწყებისას" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&წინა" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgctxt "Opposite to Previous" #| msgid "&Next" diff -Nru kconfigwidgets-5.15.0/po/kk/kconfigwidgets5.po kconfigwidgets-5.18.0/po/kk/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/kk/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/kk/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-11-08 01:24+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -477,35 +477,35 @@ msgid "About &KDE" msgstr "&KDE туралы" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Бүгінгі кеңес" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Білесіз бе...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Бастау кезінде кеңестер көрсетілсін" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Алдыңғы" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/km/kconfigwidgets5.po kconfigwidgets-5.18.0/po/km/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/km/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/km/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-06-27 10:04+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -474,35 +474,35 @@ msgid "About &KDE" msgstr "អំពី KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ព័ត៌មាន​ជំនួយ​ប្រចាំថ្ងៃ" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "តើ​អ្នក​ដឹង​ទេ... ?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "បង្ហាញ​ព័ត៌មាន​ជំនួយ នៅ​​ពេល​ចាប់ផ្តើម" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "មុន" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/kn/kconfigwidgets5.po kconfigwidgets-5.18.0/po/kn/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/kn/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/kn/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-06-24 18:32+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: kn_IN \n" @@ -540,35 +540,35 @@ msgid "About &KDE" msgstr "&KDE ಬಗ್ಗೆ" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ದಿನದ ಕಿವಿಮಾತು" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "ನಿಮಗೆ ಗೊತ್ತೆ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ಪ್ರಾರಂಭದಲ್ಲಿ ಸಲಹೆಗಳನ್ನು ತೋರಿಸು(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "ಹಿಂದಿನ(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ko/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ko/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ko/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ko/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-04-26 17:51+0200\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" @@ -469,27 +469,27 @@ msgid "About &KDE" msgstr "KDE 정보(&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "오늘의 팁" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "알고 계십니까...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "시작할 때 팁 보기(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "이전(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "다음(&N)" diff -Nru kconfigwidgets-5.15.0/po/ku/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ku/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ku/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ku/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-08-13 15:45+0200\n" "Last-Translator: Erdal Ronahî \n" "Language-Team: Kurdish Team http://pckurd.net\n" @@ -538,35 +538,35 @@ msgid "About &KDE" msgstr "Der barê &KDE de" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Mijara Rojê" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Te zanîbû...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Di destpêka xebitandinê de têbîniyan pêşkêş bike" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Paşde" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/lb/kconfigwidgets5.po kconfigwidgets-5.18.0/po/lb/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/lb/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/lb/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2006-06-22 16:29+0200\n" "Last-Translator: Michel Ludwig \n" "Language-Team: Luxembourgish \n" @@ -541,35 +541,35 @@ msgid "About &KDE" msgstr "Iwwer &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Rotschlag vum Dag" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Wousst dir schonn...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Rotschléi beim Start &weisen" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Zeréck" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/lt/kconfigwidgets5.po kconfigwidgets-5.18.0/po/lt/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/lt/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/lt/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-01-28 10:18+0200\n" "Last-Translator: Liudas Ališauskas \n" "Language-Team: Lithuanian \n" @@ -481,31 +481,31 @@ msgid "About &KDE" msgstr "Apie &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the &Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "&Dienos patarimas" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous Page" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Ankstesnis &puslapis" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "Find &Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/lv/kconfigwidgets5.po kconfigwidgets-5.18.0/po/lv/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/lv/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/lv/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2011-07-06 12:57+0300\n" "Last-Translator: Maris Nartiss \n" "Language-Team: Latvian\n" @@ -543,35 +543,35 @@ msgid "About &KDE" msgstr "Par &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dienas padoms" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Vai jūs zināt...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Rādīt padomus pie palaišanas" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Ie&priekšējais" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/mai/kconfigwidgets5.po kconfigwidgets-5.18.0/po/mai/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/mai/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/mai/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-09-24 15:44+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" @@ -542,35 +542,35 @@ msgid "About &KDE" msgstr "केडीइ केर संबंध मे (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "दिन क' सुझाव" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "की अहाँ जानैत छी...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "प्रारंभ मे नुस्खा देखाबू (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "पछिला (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/mk/kconfigwidgets5.po kconfigwidgets-5.18.0/po/mk/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/mk/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/mk/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-01-27 10:39+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -542,35 +542,35 @@ msgid "About &KDE" msgstr "За &KDE..." -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Совет на денот" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Дали знаевте...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "При&кажи совети на почеток" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Претходно" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ml/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ml/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ml/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ml/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-12-29 15:32+0530\n" "Last-Translator: \n" "Language-Team: \n" @@ -543,35 +543,35 @@ msgid "About &KDE" msgstr "&കെഡിഇയെക്കുറിച്ചു്" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ഇന്നത്തെ നുറുങ്ങു്" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "നിങ്ങള്‍ക്കറിയാമോ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "നുറുങ്ങുകള്‍ ആരംഭത്തില്‍ &കാണിക്കുക" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&മുമ്പുള്ള" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/mr/kconfigwidgets5.po kconfigwidgets-5.18.0/po/mr/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/mr/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/mr/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-03-29 16:14+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -475,35 +475,35 @@ msgid "About &KDE" msgstr "केडीई विषयी (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "आजची विशेष टिपण्णी" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "तुम्हाला माहित आहे का...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "प्रारंभवेळी टिपण्णी दर्शवा (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "पूर्वीचे (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ms/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ms/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ms/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ms/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2011-07-16 00:57+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -537,35 +537,35 @@ msgid "About &KDE" msgstr "Perihal &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Petua Hari Ini" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Adakah anda tahu...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Papar pe&tua pada permulaan" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Sebelum" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/nb/kconfigwidgets5.po kconfigwidgets-5.18.0/po/nb/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/nb/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nb/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -1,3 +1,5 @@ +# Translation of kconfigwidgets5 to Norwegian Bokmål +# # Knut Yrvin , 2002, 2003, 2004, 2005. # Bjørn Steensrud , 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015. # Eskild Hustvedt , 2004, 2005. @@ -9,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-24 20:39+0100\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" @@ -474,27 +476,27 @@ msgid "About &KDE" msgstr "Om &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dagens tips" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Visste du …?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Vis ved oppstart" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Forrige" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Neste" diff -Nru kconfigwidgets-5.15.0/po/nb/kf5_entry.desktop kconfigwidgets-5.18.0/po/nb/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/nb/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nb/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ Name[br]=Norvegeg Bokmål Name[bs]=norveški (književni) Name[ca]=Noruec bokmål -Name[ca@valencia]=Noruec Bokmal +Name[ca@valencia]=Noruec bokmål Name[cs]=Norský (Bokmål) Name[csb]=Norwesczi Bokmål Name[cy]=Bokmål Norwyeg diff -Nru kconfigwidgets-5.15.0/po/nds/kconfigwidgets5.po kconfigwidgets-5.18.0/po/nds/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/nds/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nds/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-03-11 23:48+0100\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -472,35 +472,35 @@ msgid "About &KDE" msgstr "Vertell wat över &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tipp för Vundaag" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Weetst du al...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Tipps bi't Starten wiesen" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Verleden" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ne/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ne/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ne/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ne/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2007-11-05 15:41+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -542,35 +542,35 @@ msgid "About &KDE" msgstr "केडीईका बारेमा" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "आजको टिप" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "तपाईँलाई थाहा पाउनुभयो...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "सुरुआतमा टिप देखाउनुहोस्" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "अघिल्लो" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgctxt "Opposite to Previous" #| msgid "&Next" diff -Nru kconfigwidgets-5.15.0/po/nl/kconfigwidgets5.po kconfigwidgets-5.18.0/po/nl/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/nl/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nl/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-10 23:49+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -486,27 +486,27 @@ msgid "About &KDE" msgstr "Info over &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip van de dag" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Wist u dat...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Tips tonen tijdens het &starten" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Vo&rige" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "Volge&nde" diff -Nru kconfigwidgets-5.15.0/po/nl/kf5_entry.desktop kconfigwidgets-5.18.0/po/nl/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/nl/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nl/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -3,6 +3,7 @@ Name[af]=Hollandse Name[ar]=الهولندية Name[as]=ডাচ্‌ +Name[ast]=Neerlandés Name[be]=Галандская Name[be@latin]=Halandzkaja Name[bg]=Холандски diff -Nru kconfigwidgets-5.15.0/po/nn/kconfigwidgets5.po kconfigwidgets-5.18.0/po/nn/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/nn/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nn/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-09-12 19:07+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -472,27 +472,27 @@ msgid "About &KDE" msgstr "Om &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dagens tips" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Visste du …?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Vis tips ved oppstart" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Førre" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Neste" diff -Nru kconfigwidgets-5.15.0/po/nn/kf5_entry.desktop kconfigwidgets-5.18.0/po/nn/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/nn/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/nn/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ Name[br]=Norvegeg Nynorsk Name[bs]=novonorveški Name[ca]=Noruec nynorsk -Name[ca@valencia]=Noruec Nynorsk +Name[ca@valencia]=Noruec nynorsk Name[cs]=Norský (Nynorsk) Name[csb]=Norwesczi Nynorsk Name[cy]=Nynorsk Norwyeg diff -Nru kconfigwidgets-5.15.0/po/oc/kconfigwidgets5.po kconfigwidgets-5.18.0/po/oc/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/oc/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/oc/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-08-06 00:07+0200\n" "Last-Translator: \n" "Language-Team: Occitan \n" @@ -572,35 +572,35 @@ msgid "About &KDE" msgstr "A prepaus de KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Astúcia del jorn" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "O sabiatz...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Afic&har las astúcias a l'aviada" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous Page" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Pagina &precendenta" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgctxt "Opposite to Previous" #| msgid "&Next" diff -Nru kconfigwidgets-5.15.0/po/or/kconfigwidgets5.po kconfigwidgets-5.18.0/po/or/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/or/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/or/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-01-02 17:37+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" @@ -542,35 +542,35 @@ msgid "About &KDE" msgstr "KDE ବିଷୟରେ (&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ଆଜିର ସୂଚନା" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "ଆପଣ ଜାଣିଥିଲେ କି...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ପ୍ରାରମ୍ଭିକ ସମୟରେ ସୂଚନା ଦର୍ଶାନ୍ତୁ (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "ପୂର୍ବବର୍ତ୍ତୀ (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/pa/kconfigwidgets5.po kconfigwidgets-5.18.0/po/pa/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/pa/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/pa/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-03-16 23:21-0500\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -477,35 +477,35 @@ msgid "About &KDE" msgstr "ਕੇਡੀਈ (&KDE) ਬਾਰੇ" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ਅੱਜ ਦਾ ਸੁਝਾਅ" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "ਕੀ ਤੁਸੀਂ ਜਾਣਦੇ ਹੋ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ਸ਼ੁਰੂ ਵੇਲੇ ਟਿੱਪ ਵੇਖੋ(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "ਪਿੱਛੇ(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/pl/kconfigwidgets5.po kconfigwidgets-5.18.0/po/pl/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/pl/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/pl/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -16,8 +16,8 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2015-02-14 06:31+0100\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-11-14 07:55+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -108,7 +108,7 @@ ">\n" ">\n" ">\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" @@ -333,7 +333,7 @@ #: kstandardaction_p.h:61 msgid "Dese&lect" -msgstr "Usuń z&aznaczenie" +msgstr "O&dznacz wszystko" #: kstandardaction_p.h:62 msgid "&Find..." @@ -353,7 +353,7 @@ #: kstandardaction_p.h:67 msgid "&Actual Size" -msgstr "F&aktyczny rozmiar" +msgstr "Rzeczywisty rozmi&ar" #: kstandardaction_p.h:67 msgid "View document at its actual size" @@ -562,27 +562,27 @@ msgid "About &KDE" msgstr "Informacje o &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Wskazówka dnia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Czy wiesz, że...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Pokaż porady po uruchomieniu" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Poprzednia" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Następna" diff -Nru kconfigwidgets-5.15.0/po/ps/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ps/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ps/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ps/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-08-16 16:01-0800\n" "Last-Translator: Zabeeh Khan \n" "Language-Team: Pashto \n" @@ -536,35 +536,35 @@ msgid "About &KDE" msgstr "د &کډي په اړه" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "د ورځې نکته" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "تاسو پوهېدﺉ...؟\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "په پېلنګ کې نکتې ښودل" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "مخکنی" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgctxt "Opposite to Previous" #| msgid "&Next" diff -Nru kconfigwidgets-5.15.0/po/pt/kconfigwidgets5.po kconfigwidgets-5.18.0/po/pt/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/pt/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/pt/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-11 15:26+0000\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" @@ -558,27 +558,27 @@ msgid "About &KDE" msgstr "Acerca do &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dica do Dia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Sabia que...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mostrar as &dicas no início" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "An&terior" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "Segui&nte" diff -Nru kconfigwidgets-5.15.0/po/pt_BR/kconfigwidgets5.po kconfigwidgets-5.18.0/po/pt_BR/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/pt_BR/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/pt_BR/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -17,8 +17,8 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" -"PO-Revision-Date: 2015-08-29 09:21-0300\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" +"PO-Revision-Date: 2015-10-19 09:45-0200\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -102,7 +102,7 @@ #: kstandardaction.cpp:534 msgid "Show Menubar

Shows the menubar again after it has been hidden

" msgstr "" -"Exibir barra de menus

Exibe a barra de menus novamente, após ter sido " +"Mostrar a barra de menus

Mostra a barra de menus novamente, após ter sido " "ocultada

" #: kstandardaction.cpp:552 kstandardaction_p.h:98 @@ -195,7 +195,7 @@ #: kstandardaction_p.h:50 msgid "Send document by mail" -msgstr "Enviar o documento por e-mail" +msgstr "Envia o documento por e-mail" #: kstandardaction_p.h:51 msgid "&Quit" @@ -203,7 +203,7 @@ #: kstandardaction_p.h:51 msgid "Quit application" -msgstr "Sair do aplicativo" +msgstr "Fecha o aplicativo" #: kstandardaction_p.h:53 msgid "&Undo" @@ -279,7 +279,7 @@ #: kstandardaction_p.h:67 msgid "View document at its actual size" -msgstr "Exibir o documento no seu tamanho actual" +msgstr "Mostra o documento no seu tamanho actual" #: kstandardaction_p.h:68 msgid "&Fit to Page" @@ -319,7 +319,7 @@ #: kstandardaction_p.h:73 msgid "Select zoom level" -msgstr "Selecionar nível de zoom" +msgstr "Seleciona o nível de zoom" #: kstandardaction_p.h:74 msgid "&Redisplay" @@ -327,7 +327,7 @@ #: kstandardaction_p.h:74 msgid "Redisplay document" -msgstr "Mostrar o documento novamente" +msgstr "Mostra o documento novamente" #: kstandardaction_p.h:76 msgid "&Up" @@ -431,7 +431,7 @@ #: kstandardaction_p.h:99 msgid "F&ull Screen Mode" -msgstr "&Modo de tela cheia" +msgstr "&Modo de tela inteira" #: kstandardaction_p.h:100 msgid "&Save Settings" @@ -484,27 +484,27 @@ msgid "About &KDE" msgstr "Sobre o &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dica do dia" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Você sabia...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Mo&strar dicas ao iniciar" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Anterior" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Próxima" diff -Nru kconfigwidgets-5.15.0/po/ro/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ro/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ro/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ro/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2014-03-26 19:20+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -473,35 +473,35 @@ msgid "About &KDE" msgstr "Despre &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Sfatul zilei" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Știați că...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Afișează sfatul zilei la pornire" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Precedent" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/ru/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ru/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ru/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ru/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-03-01 07:00+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -489,27 +489,27 @@ msgid "About &KDE" msgstr "О &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Совет дня" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Знаете ли вы...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Пок&азывать советы при запуске" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Предыдущий" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Следующий" diff -Nru kconfigwidgets-5.15.0/po/se/kconfigwidgets5.po kconfigwidgets-5.18.0/po/se/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/se/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/se/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -1,9 +1,11 @@ +# Translation of kconfigwidgets5 to Northern Sami +# # Børre Gaup , 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-05-30 23:19+0200\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" @@ -470,27 +472,27 @@ msgid "About &KDE" msgstr "KDE &dieđut" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "" diff -Nru kconfigwidgets-5.15.0/po/se/kf5_entry.desktop kconfigwidgets-5.18.0/po/se/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/se/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/se/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -3,6 +3,7 @@ Name[af]=Noord Sami Name[ar]=الصامي الشمالي Name[as]=ন'ৰ্দাৰ্ণ চামি +Name[ast]=Sami del norte Name[be]=Самі (поўнач) Name[be@latin]=Paŭnočnaje Sami Name[bg]=Северен Сами @@ -11,7 +12,7 @@ Name[br]=Sami, Norzh Name[bs]=sjeverni sami Name[ca]=Sami septentrional -Name[ca@valencia]=Sami del nord +Name[ca@valencia]=Sami septentrional Name[cs]=Severní Sami Name[csb]=Nordowi Sami Name[cy]=Sami Gogleddol diff -Nru kconfigwidgets-5.15.0/po/si/kconfigwidgets5.po kconfigwidgets-5.18.0/po/si/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/si/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/si/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2011-07-25 07:45+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -532,35 +532,35 @@ msgid "About &KDE" msgstr "&KDE පිළිබඳ" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "දිනයේ ඉඟිය" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "ඔබ දැනගෙන සිටියාද...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ආරම්භයේදි ඉඟි දර්ෂණය කරන්න (&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "මීට පෙර (&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/sk/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sk/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sk/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sk/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-10 18:38+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -475,27 +475,27 @@ msgid "About &KDE" msgstr "Informácie o &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Tip dňa" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Viete, že...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Zobraziť tipy pri š&tarte" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Predošlé" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Ďalšie" diff -Nru kconfigwidgets-5.15.0/po/sl/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sl/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sl/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sl/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-09-20 14:33+0200\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" @@ -482,27 +482,27 @@ msgid "About &KDE" msgstr "O &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Namig dneva" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Ali ste vedeli ...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Pokaži namige ob zagonu" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Predhodni" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Naslednji" diff -Nru kconfigwidgets-5.15.0/po/sq/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sq/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sq/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sq/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: kde4libs\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-01-19 00:20-0500\n" "Last-Translator: Agron Selimaj \n" "Language-Team: Albanian \n" @@ -526,35 +526,35 @@ msgid "About &KDE" msgstr "Rreth &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Këshilla e Ditës" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "A e di...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Shfaq këshilla në nisje" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&E Mëparshme" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/sq/kf5_entry.desktop kconfigwidgets-5.18.0/po/sq/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/sq/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sq/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -2,7 +2,7 @@ Name=Albanian Name[af]=Albanian Name[ar]=الألبانية -Name[ast]=Albanés +Name[ast]=Albanu Name[bg]=Албански Name[br]=Albanieg Name[bs]=Albanski diff -Nru kconfigwidgets-5.15.0/po/sr/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sr/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sr/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-14 16:26+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -474,27 +474,27 @@ msgid "About &KDE" msgstr "О &КДЕ‑у" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Савет дана" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Да ли сте знали...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Савети по покретању" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Претходни" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Следећи" diff -Nru kconfigwidgets-5.15.0/po/sr/kf5_entry.desktop kconfigwidgets-5.18.0/po/sr/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/sr/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -68,7 +68,7 @@ Name[ps]=سربي Name[pt]=Sérvio Name[pt_BR]=Sérvio -Name[ro]=Sîrbă +Name[ro]=Sârbă Name[ru]=Сербский Name[se]=Serbiágiella Name[si]=සර්බියානු diff -Nru kconfigwidgets-5.15.0/po/sr@ijekavian/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sr@ijekavian/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sr@ijekavian/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@ijekavian/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-14 16:26+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -473,27 +473,27 @@ msgid "About &KDE" msgstr "О &КДЕ‑у" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Савјет дана" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Да ли сте знали...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Савјети по покретању" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Претходни" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Сљедећи" diff -Nru kconfigwidgets-5.15.0/po/sr@ijekavian/kf5_entry.desktop kconfigwidgets-5.18.0/po/sr@ijekavian/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/sr@ijekavian/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@ijekavian/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -44,7 +44,7 @@ Name[pl]=Serbski ijekawski Name[pt]=Sérvio Ijekavian Name[pt_BR]=Sérvio ijekavian -Name[ro]=Sîrbă jekaviană +Name[ro]=Sârbă jekaviană Name[ru]=Сербский (иекавский) Name[se]=Serbialaš ljekávagiella Name[sk]=Srbčina (ijekavština) diff -Nru kconfigwidgets-5.15.0/po/sr@ijekavianlatin/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sr@ijekavianlatin/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sr@ijekavianlatin/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@ijekavianlatin/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-14 16:26+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -473,27 +473,27 @@ msgid "About &KDE" msgstr "O &KDE‑u" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Savjet dana" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Da li ste znali...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Savjeti po pokretanju" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Prethodni" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Sljedeći" diff -Nru kconfigwidgets-5.15.0/po/sr@ijekavianlatin/kf5_entry.desktop kconfigwidgets-5.18.0/po/sr@ijekavianlatin/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/sr@ijekavianlatin/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@ijekavianlatin/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -45,7 +45,7 @@ Name[pl]=Serbski ijekawski (skrypt łaciński) Name[pt]=Sérvio Latino Ijekavian Name[pt_BR]=Sérvio latino ijekavian -Name[ro]=Sîrbă jekaviană latină +Name[ro]=Sârbă jekaviană latină Name[ru]=Сербский (иекавский, латиница) Name[se]=Serbialaš ljekávagiella (Latiinnalaš čállinvuohki) Name[sk]=Srbčina (ijekavština - latinka) diff -Nru kconfigwidgets-5.15.0/po/sr@latin/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sr@latin/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sr@latin/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@latin/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-14 16:26+0100\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -473,27 +473,27 @@ msgid "About &KDE" msgstr "O &KDE‑u" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Savet dana" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Da li ste znali...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Saveti po pokretanju" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Prethodni" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Sledeći" diff -Nru kconfigwidgets-5.15.0/po/sr@latin/kf5_entry.desktop kconfigwidgets-5.18.0/po/sr@latin/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/sr@latin/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sr@latin/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -67,7 +67,7 @@ Name[ps]=سربيايي لاټيني Name[pt]=Sérvio Latino Name[pt_BR]=Sérvio latino -Name[ro]=Sîrbă latină +Name[ro]=Sârbă latină Name[ru]=Сербский (латиница) Name[se]=Serbialaš latiidna Name[si]=සර්බියානු ලතින් diff -Nru kconfigwidgets-5.15.0/po/sv/kconfigwidgets5.po kconfigwidgets-5.18.0/po/sv/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/sv/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/sv/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-10 18:43+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -478,27 +478,27 @@ msgid "About &KDE" msgstr "Om &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Dagens tips" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Visste du...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Visa tips vid &start" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Föregående" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Nästa" diff -Nru kconfigwidgets-5.15.0/po/ta/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ta/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ta/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ta/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-03-25 21:39+0530\n" "Last-Translator: Sri Ramadoss M \n" "Language-Team: Tamil \n" @@ -536,35 +536,35 @@ msgid "About &KDE" msgstr "&KDE பற்றி" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "இன்று ஒரு தகவல்" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "உங்களுக்குத் தெரியுமா...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "ஆரம்பத்தில் உதவித் தகவல்களைக் &காட்டுக" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&முந்தைய" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/te/kconfigwidgets5.po kconfigwidgets-5.18.0/po/te/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/te/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/te/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-11-04 23:55+0630\n" "Last-Translator: Bhuvan Krishna \n" "Language-Team: Telugu \n" @@ -479,35 +479,35 @@ msgid "About &KDE" msgstr "(&K) కెడిఈ గురించి" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "ఈ రోజు సూచన" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "మీకు తెలుసా...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "(&S) మొదలైనప్పుడు సూచనలను చూపించు" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "(&P) ముందు" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/tg/kconfigwidgets5.po kconfigwidgets-5.18.0/po/tg/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/tg/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/tg/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-06-04 17:36+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik Language\n" @@ -518,35 +518,35 @@ msgid "About &KDE" msgstr "&Дар бораи KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Хабари рӯз!" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Оё медонистед ки...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Намоиши хабари рӯз ҳангоми оғозии система" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Пешина" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/th/kconfigwidgets5.po kconfigwidgets-5.18.0/po/th/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/th/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/th/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2010-12-31 22:47+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" @@ -539,35 +539,35 @@ msgid "About &KDE" msgstr "เกี่ยวกับ &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "คำแนะนำประจำวัน" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "คุณทราบหรือไม่ว่า... ?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "แ&สดงคำแนะนำเมื่อเริ่มทำงาน" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&ก่อนหน้า" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/tr/kconfigwidgets5.po kconfigwidgets-5.18.0/po/tr/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/tr/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/tr/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-15 12:56+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish \n" @@ -485,27 +485,27 @@ msgid "About &KDE" msgstr "&KDE Hakkında" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Günün İpucu" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Biliyor muydunuz..?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Başlangıçta ipuçlarını göster" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Önceki" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Sonraki" diff -Nru kconfigwidgets-5.15.0/po/tt/kconfigwidgets5.po kconfigwidgets-5.18.0/po/tt/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/tt/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/tt/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2011-11-26 15:12+0400\n" "Last-Translator: Ainur Shakirov \n" "Language-Team: Tatar <>\n" @@ -536,35 +536,35 @@ msgid "About &KDE" msgstr "KDE &турында" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Бар монда бер киңәш..." -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "А сез беләсезме?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Җибәргәндә киңәшләрне чагылдыру" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Кире кайту" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/tt/kf5_entry.desktop kconfigwidgets-5.18.0/po/tt/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/tt/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/tt/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -39,6 +39,7 @@ Name[ko]=타타르어 Name[lb]=Tataresch Name[lt]=Totorių +Name[lv]=Tatāru Name[mr]=तातार Name[nb]=Tatar Name[nds]=Tataarsch diff -Nru kconfigwidgets-5.15.0/po/ug/kconfigwidgets5.po kconfigwidgets-5.18.0/po/ug/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/ug/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/ug/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -472,35 +472,35 @@ msgid "About &KDE" msgstr "ك د ئې(&KDE) ھەققىدە" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "كۈندىلىك ئەسكەرتىش" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "بىلەمتىڭىز؟\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "قوزغالغاندا ئەسكەرتمىنى كۆرسەت(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "ئالدىنقى(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/uk/kconfigwidgets5.po kconfigwidgets-5.18.0/po/uk/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/uk/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/uk/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kconfigwidgets5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-10 19:05+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -475,27 +475,27 @@ msgid "About &KDE" msgstr "П&ро KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "Підказка дня" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "Чи знали ви, що…\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "П&оказувати підказки під час запуску" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Попередня" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "&Наступна" diff -Nru kconfigwidgets-5.15.0/po/uz/kconfigwidgets5.po kconfigwidgets-5.18.0/po/uz/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/uz/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/uz/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2008-05-30 17:29+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -530,35 +530,35 @@ msgid "About &KDE" msgstr "&KDE haqida" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Kun maslahati" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Bilganmisiz...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Ishga tushganda maslaxatlarni &koʻrsatish" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "O&ldingi" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/uz/kf5_entry.desktop kconfigwidgets-5.18.0/po/uz/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/uz/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/uz/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ Name[br]=Ouzbek Name[bs]=uzbečki Name[ca]=Uzbek -Name[ca@valencia]=Usbec +Name[ca@valencia]=Uzbek Name[cs]=Uzbecký Name[csb]=Ùzbecczi Name[cy]=Usbek diff -Nru kconfigwidgets-5.15.0/po/uz@cyrillic/kconfigwidgets5.po kconfigwidgets-5.18.0/po/uz@cyrillic/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/uz@cyrillic/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/uz@cyrillic/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2009-10-17 00:34+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -534,35 +534,35 @@ msgid "About &KDE" msgstr "&KDE ҳақида" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Кун маслаҳати" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Билганмисиз...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "Ишга тушганда маслахатларни &кўрсатиш" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "О&лдинги" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/uz@cyrillic/kf5_entry.desktop kconfigwidgets-5.18.0/po/uz@cyrillic/kf5_entry.desktop --- kconfigwidgets-5.15.0/po/uz@cyrillic/kf5_entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/uz@cyrillic/kf5_entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -9,7 +9,7 @@ Name[bn_IN]=উজবেক (সিরিলিক) Name[bs]=uzbečki (ćirilica) Name[ca]=Uzbek (ciríl·lic) -Name[ca@valencia]=Usbec (ciríl·lic) +Name[ca@valencia]=Uzbek (ciríl·lic) Name[cs]=Uzbecký (azbuka) Name[csb]=Ùzbecczi (cërëlica) Name[da]=Uzbek (Kyrillisk) diff -Nru kconfigwidgets-5.15.0/po/vi/kconfigwidgets5.po kconfigwidgets-5.18.0/po/vi/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/vi/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/vi/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-09-23 18:43+0800\n" "Last-Translator: Lê Hoàng Phương \n" "Language-Team: American English \n" @@ -536,35 +536,35 @@ msgid "About &KDE" msgstr "Giới thiệu về &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Mẹo của hôm nay" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Bạn có biết chưa...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Hiện mẹo khi khởi chạy" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Lùi" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/wa/kconfigwidgets5.po kconfigwidgets-5.18.0/po/wa/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/wa/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/wa/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2012-07-04 17:33+0200\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -536,35 +536,35 @@ msgid "About &KDE" msgstr "Åd fwait di &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Li Boune Idêye do Djoû" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "El savîz...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Mostrer des racsegnmints a l' enondêye" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "Di D&vant" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/xh/kconfigwidgets5.po kconfigwidgets-5.18.0/po/xh/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/xh/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/xh/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2002-12-13 17:20SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -532,35 +532,35 @@ msgid "About &KDE" msgstr "Malunga ne &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "Utsuphe Losuku" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "Ubusazi na...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "&Bonisa utshuphe kwisiqalo" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "&Edlulileyo" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/zh_CN/kconfigwidgets5.po kconfigwidgets-5.18.0/po/zh_CN/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/zh_CN/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/zh_CN/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-03-05 14:08-0800\n" "Last-Translator: Weng Xuetian \n" "Language-Team: Chinese Simplified \n" @@ -473,27 +473,27 @@ msgid "About &KDE" msgstr "关于 &KDE" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "日积月累" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "您知道吗...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "在启动时显示提示(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "上一个(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "下一个(&N)" diff -Nru kconfigwidgets-5.15.0/po/zh_HK/kconfigwidgets5.po kconfigwidgets-5.18.0/po/zh_HK/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/zh_HK/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/zh_HK/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -24,7 +24,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2006-01-04 13:32+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -565,35 +565,35 @@ msgid "About &KDE" msgstr "關於 KDE(&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 #, fuzzy #| msgid "Tip of the Day" msgctxt "@title:window" msgid "Tip of the Day" msgstr "每日小祕訣" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 #, fuzzy #| msgid "Did you know...?\n" msgctxt "@title" msgid "Did you know...?\n" msgstr "你知道嗎...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 #, fuzzy #| msgid "&Show tips on startup" msgctxt "@option:check" msgid "&Show tips on startup" msgstr "啟動時顯示小秘訣(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 #, fuzzy #| msgid "&Previous" msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "上一頁(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 #, fuzzy #| msgid "&Next" msgctxt "@action:button Goes to next tip, opposite to previous" diff -Nru kconfigwidgets-5.15.0/po/zh_TW/kconfigwidgets5.po kconfigwidgets-5.18.0/po/zh_TW/kconfigwidgets5.po --- kconfigwidgets-5.15.0/po/zh_TW/kconfigwidgets5.po 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/po/zh_TW/kconfigwidgets5.po 2016-01-02 16:27:11.000000000 +0000 @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-02-28 09:34+0000\n" +"POT-Creation-Date: 2015-10-26 07:54+0000\n" "PO-Revision-Date: 2015-02-15 20:37+0800\n" "Last-Translator: Franklin Weng \n" "Language-Team: Chinese Traditional \n" @@ -474,27 +474,27 @@ msgid "About &KDE" msgstr "關於 KDE(&K)" -#: ktipdialog.cpp:239 +#: ktipdialog.cpp:238 msgctxt "@title:window" msgid "Tip of the Day" msgstr "每日小祕訣" -#: ktipdialog.cpp:255 +#: ktipdialog.cpp:254 msgctxt "@title" msgid "Did you know...?\n" msgstr "您知道嗎...?\n" -#: ktipdialog.cpp:307 +#: ktipdialog.cpp:306 msgctxt "@option:check" msgid "&Show tips on startup" msgstr "啟動時顯示小秘訣(&S)" -#: ktipdialog.cpp:312 +#: ktipdialog.cpp:311 msgctxt "@action:button Goes to previous tip" msgid "&Previous" msgstr "前一個(&P)" -#: ktipdialog.cpp:317 +#: ktipdialog.cpp:316 msgctxt "@action:button Goes to next tip, opposite to previous" msgid "&Next" msgstr "下一個(&N)" diff -Nru kconfigwidgets-5.15.0/src/CMakeLists.txt kconfigwidgets-5.18.0/src/CMakeLists.txt --- kconfigwidgets-5.15.0/src/CMakeLists.txt 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/CMakeLists.txt 2016-01-02 16:27:11.000000000 +0000 @@ -14,6 +14,8 @@ ktipdialog.cpp ) +qt5_add_resources(kconfigwidgets_SRCS kconfigwidgets.qrc) + add_library(KF5ConfigWidgets ${kconfigwidgets_SRCS}) generate_export_header(KF5ConfigWidgets BASE_NAME KConfigWidgets) add_library(KF5::ConfigWidgets ALIAS KF5ConfigWidgets) @@ -67,11 +69,6 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KConfigWidgets COMPONENT Devel ) -install(FILES - ktip-bulb.png - DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kconfigwidgets/pics -) - install(PROGRAMS preparetips5 DESTINATION ${KDE_INSTALL_BINDIR} ) install( FILES entry.desktop DESTINATION ${KDE_INSTALL_LOCALEDIR}/en_US RENAME kf5_entry.desktop ) diff -Nru kconfigwidgets-5.15.0/src/entry.desktop kconfigwidgets-5.18.0/src/entry.desktop --- kconfigwidgets-5.15.0/src/entry.desktop 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/entry.desktop 2016-01-02 16:27:11.000000000 +0000 @@ -3,6 +3,7 @@ Name[ast]=Inglés d'EE.XX Name[bs]=Američki engleski Name[ca]=Anglès US +Name[ca@valencia]=Anglés US Name[cs]=US Angličtina Name[da]=US Engelsk Name[de]=US-Englisch diff -Nru kconfigwidgets-5.15.0/src/kcolorscheme.cpp kconfigwidgets-5.18.0/src/kcolorscheme.cpp --- kconfigwidgets-5.15.0/src/kcolorscheme.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/kcolorscheme.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -70,9 +70,9 @@ { QString group; if (state == QPalette::Disabled) { - group = QLatin1String("ColorEffects:Disabled"); + group = QStringLiteral("ColorEffects:Disabled"); } else if (state == QPalette::Inactive) { - group = QLatin1String("ColorEffects:Inactive"); + group = QStringLiteral("ColorEffects:Inactive"); } _effects[0] = 0; @@ -165,74 +165,75 @@ int Focus[3]; }; +// these numbers come from the Breeze color scheme ([breeze]/colors/Breeze.colors) static const SetDefaultColors defaultViewColors = { - { 255, 255, 255 }, // Background - { 248, 247, 246 }, // Alternate - { 31, 28, 27 }, // Normal - { 137, 136, 135 }, // Inactive - { 146, 76, 157 }, // Active - { 0, 87, 174 }, // Link - { 100, 74, 155 }, // Visited - { 191, 3, 3 }, // Negative - { 176, 128, 0 }, // Neutral - { 0, 110, 40 } // Positive + { 252, 252, 252 }, // Background + { 239, 240, 241 }, // Alternate + { 49, 54, 59 }, // Normal + { 127, 140, 141 }, // Inactive + { 61, 174, 233 }, // Active + { 41, 128, 185 }, // Link + { 127, 140, 141 }, // Visited + { 218, 68, 83 }, // Negative + { 246, 116, 0 }, // Neutral + { 39, 174, 96 } // Positive }; static const SetDefaultColors defaultWindowColors = { - { 214, 210, 208 }, // Background - { 218, 217, 216 }, // Alternate - { 34, 31, 30 }, // Normal - { 137, 136, 135 }, // Inactive - { 146, 76, 157 }, // Active - { 0, 87, 174 }, // Link - { 100, 74, 155 }, // Visited - { 191, 3, 3 }, // Negative - { 176, 128, 0 }, // Neutral - { 0, 110, 40 } // Positive + { 239, 240, 241 }, // Background + { 189, 195, 199 }, // Alternate + { 49, 54, 59 }, // Normal + { 127, 140, 141 }, // Inactive + { 61, 174, 233 }, // Active + { 41, 128, 185 }, // Link + { 127, 140, 141 }, // Visited + { 218, 68, 83 }, // Negative + { 246, 116, 0 }, // Neutral + { 39, 174, 96 } // Positive }; static const SetDefaultColors defaultButtonColors = { - { 223, 220, 217 }, // Background - { 224, 223, 222 }, // Alternate - { 34, 31, 30 }, // Normal - { 137, 136, 135 }, // Inactive - { 146, 76, 157 }, // Active - { 0, 87, 174 }, // Link - { 100, 74, 155 }, // Visited - { 191, 3, 3 }, // Negative - { 176, 128, 0 }, // Neutral - { 0, 110, 40 } // Positive + { 239, 240, 241 }, // Background + { 189, 195, 199 }, // Alternate + { 49, 54, 59 }, // Normal + { 127, 140, 141 }, // Inactive + { 61, 174, 233 }, // Active + { 41, 128, 185 }, // Link + { 127, 140, 141 }, // Visited + { 218, 68, 83 }, // Negative + { 246, 116, 0 }, // Neutral + { 39, 174, 96 } // Positive }; static const SetDefaultColors defaultSelectionColors = { - { 67, 172, 232 }, // Background - { 62, 138, 204 }, // Alternate - { 255, 255, 255 }, // Normal - { 199, 226, 248 }, // Inactive - { 108, 36, 119 }, // Active - { 0, 49, 110 }, // Link - { 69, 40, 134 }, // Visited - { 156, 14, 14 }, // Negative - { 255, 221, 0 }, // Neutral - { 128, 255, 128 } // Positive + { 61, 174, 233 }, // Background + { 29, 153, 243 }, // Alternate + { 239, 240, 241 }, // Normal + { 239, 240, 241 }, // Inactive + { 252, 252, 252 }, // Active + { 253, 188, 75 }, // Link + { 189, 195, 199 }, // Visited + { 218, 68, 83 }, // Negative + { 246, 116, 0 }, // Neutral + { 39, 174, 96 } // Positive }; static const SetDefaultColors defaultTooltipColors = { - { 24, 21, 19 }, // Background - { 196, 224, 255 }, // Alternate - { 231, 253, 255 }, // Normal - { 137, 136, 135 }, // Inactive - { 255, 128, 224 }, // Active - { 88, 172, 255 }, // Link - { 150, 111, 232 }, // Visited - { 191, 3, 3 }, // Negative - { 176, 128, 0 }, // Neutral - { 0, 110, 40 } // Positive + { 49, 54, 59 }, // Background + { 77, 77, 77 }, // Alternate + { 239, 240, 241 }, // Normal + { 189, 195, 199 }, // Inactive + { 61, 174, 233 }, // Active + { 41, 128, 185 }, // Link + { 127, 140, 141 }, // Visited + { 218, 68, 83 }, // Negative + { 246, 116, 0 }, // Neutral + { 39, 174, 96 } // Positive }; static const DecoDefaultColors defaultDecorationColors = { - { 110, 214, 255 }, // Hover - { 58, 167, 221 }, // Focus + { 147, 206, 233 }, // Hover + { 61, 174, 233 }, // Focus }; //END default colors diff -Nru kconfigwidgets-5.15.0/src/kconfigdialogmanager.cpp kconfigwidgets-5.18.0/src/kconfigdialogmanager.cpp --- kconfigwidgets-5.15.0/src/kconfigdialogmanager.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/kconfigdialogmanager.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -87,60 +87,60 @@ void KConfigDialogManager::initMaps() { if (s_propertyMap()->isEmpty()) { - s_propertyMap()->insert("KButtonGroup", "current"); - s_propertyMap()->insert("KColorButton", "color"); - s_propertyMap()->insert("KColorCombo", "color"); + s_propertyMap()->insert(QStringLiteral("KButtonGroup"), "current"); + s_propertyMap()->insert(QStringLiteral("KColorButton"), "color"); + s_propertyMap()->insert(QStringLiteral("KColorCombo"), "color"); //s_propertyMap()->insert( "KUrlRequester", "url" ); //s_propertyMap()->insert( "KUrlComboRequester", "url" ); } if (s_changedMap()->isEmpty()) { // QT - s_changedMap()->insert("QCheckBox", SIGNAL(stateChanged(int))); - s_changedMap()->insert("QPushButton", SIGNAL(clicked(bool))); - s_changedMap()->insert("QRadioButton", SIGNAL(toggled(bool))); + s_changedMap()->insert(QStringLiteral("QCheckBox"), SIGNAL(stateChanged(int))); + s_changedMap()->insert(QStringLiteral("QPushButton"), SIGNAL(clicked(bool))); + s_changedMap()->insert(QStringLiteral("QRadioButton"), SIGNAL(toggled(bool))); // We can only store one thing, so you can't have // a ButtonGroup that is checkable. // s_changedMap()->insert("QButtonGroup", SIGNAL(buttonClicked(int))); - s_changedMap()->insert("QGroupBox", SIGNAL(toggled(bool))); - s_changedMap()->insert("QComboBox", SIGNAL(activated(int))); + s_changedMap()->insert(QStringLiteral("QGroupBox"), SIGNAL(toggled(bool))); + s_changedMap()->insert(QStringLiteral("QComboBox"), SIGNAL(activated(int))); //qsqlproperty map doesn't store the text, but the value! //s_changedMap()->insert("QComboBox", SIGNAL(textChanged(QString))); - s_changedMap()->insert("QDateEdit", SIGNAL(dateChanged(QDate))); - s_changedMap()->insert("QTimeEdit", SIGNAL(timeChanged(QTime))); - s_changedMap()->insert("QDateTimeEdit", SIGNAL(dateTimeChanged(QDateTime))); - s_changedMap()->insert("QDial", SIGNAL(valueChanged(int))); - s_changedMap()->insert("QDoubleSpinBox", SIGNAL(valueChanged(double))); - s_changedMap()->insert("QLineEdit", SIGNAL(textChanged(QString))); - s_changedMap()->insert("QSlider", SIGNAL(valueChanged(int))); - s_changedMap()->insert("QSpinBox", SIGNAL(valueChanged(int))); - s_changedMap()->insert("QTextEdit", SIGNAL(textChanged())); - s_changedMap()->insert("QTextBrowser", SIGNAL(sourceChanged(QString))); - s_changedMap()->insert("QPlainTextEdit", SIGNAL(textChanged())); - s_changedMap()->insert("QTabWidget", SIGNAL(currentChanged(int))); + s_changedMap()->insert(QStringLiteral("QDateEdit"), SIGNAL(dateChanged(QDate))); + s_changedMap()->insert(QStringLiteral("QTimeEdit"), SIGNAL(timeChanged(QTime))); + s_changedMap()->insert(QStringLiteral("QDateTimeEdit"), SIGNAL(dateTimeChanged(QDateTime))); + s_changedMap()->insert(QStringLiteral("QDial"), SIGNAL(valueChanged(int))); + s_changedMap()->insert(QStringLiteral("QDoubleSpinBox"), SIGNAL(valueChanged(double))); + s_changedMap()->insert(QStringLiteral("QLineEdit"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("QSlider"), SIGNAL(valueChanged(int))); + s_changedMap()->insert(QStringLiteral("QSpinBox"), SIGNAL(valueChanged(int))); + s_changedMap()->insert(QStringLiteral("QTextEdit"), SIGNAL(textChanged())); + s_changedMap()->insert(QStringLiteral("QTextBrowser"), SIGNAL(sourceChanged(QString))); + s_changedMap()->insert(QStringLiteral("QPlainTextEdit"), SIGNAL(textChanged())); + s_changedMap()->insert(QStringLiteral("QTabWidget"), SIGNAL(currentChanged(int))); // KDE - s_changedMap()->insert("KComboBox", SIGNAL(activated(int))); - s_changedMap()->insert("KFontComboBox", SIGNAL(activated(int))); - s_changedMap()->insert("KFontRequester", SIGNAL(fontSelected(QFont))); - s_changedMap()->insert("KFontChooser", SIGNAL(fontSelected(QFont))); - s_changedMap()->insert("KHistoryCombo", SIGNAL(activated(int))); - s_changedMap()->insert("KColorCombo", SIGNAL(activated(QColor))); + s_changedMap()->insert(QStringLiteral("KComboBox"), SIGNAL(activated(int))); + s_changedMap()->insert(QStringLiteral("KFontComboBox"), SIGNAL(activated(int))); + s_changedMap()->insert(QStringLiteral("KFontRequester"), SIGNAL(fontSelected(QFont))); + s_changedMap()->insert(QStringLiteral("KFontChooser"), SIGNAL(fontSelected(QFont))); + s_changedMap()->insert(QStringLiteral("KHistoryCombo"), SIGNAL(activated(int))); + s_changedMap()->insert(QStringLiteral("KColorCombo"), SIGNAL(activated(QColor))); - s_changedMap()->insert("KColorButton", SIGNAL(changed(QColor))); - s_changedMap()->insert("KDatePicker", SIGNAL(dateSelected(QDate))); - s_changedMap()->insert("KDateWidget", SIGNAL(changed(QDate))); - s_changedMap()->insert("KDateTimeWidget", SIGNAL(valueChanged(QDateTime))); - s_changedMap()->insert("KEditListWidget", SIGNAL(changed())); - s_changedMap()->insert("KListWidget", SIGNAL(itemSelectionChanged())); - s_changedMap()->insert("KLineEdit", SIGNAL(textChanged(QString))); - s_changedMap()->insert("KPasswordEdit", SIGNAL(textChanged(QString))); - s_changedMap()->insert("KRestrictedLine", SIGNAL(textChanged(QString))); - s_changedMap()->insert("KTextEdit", SIGNAL(textChanged())); - s_changedMap()->insert("KUrlRequester", SIGNAL(textChanged(QString))); - s_changedMap()->insert("KUrlComboRequester", SIGNAL(textChanged(QString))); - s_changedMap()->insert("KUrlComboBox", SIGNAL(urlActivated(QUrl))); - s_changedMap()->insert("KButtonGroup", SIGNAL(changed(int))); + s_changedMap()->insert(QStringLiteral("KColorButton"), SIGNAL(changed(QColor))); + s_changedMap()->insert(QStringLiteral("KDatePicker"), SIGNAL(dateSelected(QDate))); + s_changedMap()->insert(QStringLiteral("KDateWidget"), SIGNAL(changed(QDate))); + s_changedMap()->insert(QStringLiteral("KDateTimeWidget"), SIGNAL(valueChanged(QDateTime))); + s_changedMap()->insert(QStringLiteral("KEditListWidget"), SIGNAL(changed())); + s_changedMap()->insert(QStringLiteral("KListWidget"), SIGNAL(itemSelectionChanged())); + s_changedMap()->insert(QStringLiteral("KLineEdit"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("KPasswordEdit"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("KRestrictedLine"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("KTextEdit"), SIGNAL(textChanged())); + s_changedMap()->insert(QStringLiteral("KUrlRequester"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("KUrlComboRequester"), SIGNAL(textChanged(QString))); + s_changedMap()->insert(QStringLiteral("KUrlComboBox"), SIGNAL(urlActivated(QUrl))); + s_changedMap()->insert(QStringLiteral("KButtonGroup"), SIGNAL(changed(int))); } } diff -Nru kconfigwidgets-5.15.0/src/kconfigwidgets.qrc kconfigwidgets-5.18.0/src/kconfigwidgets.qrc --- kconfigwidgets-5.15.0/src/kconfigwidgets.qrc 1970-01-01 00:00:00.000000000 +0000 +++ kconfigwidgets-5.18.0/src/kconfigwidgets.qrc 2016-01-02 16:27:11.000000000 +0000 @@ -0,0 +1,6 @@ + + + + ktip-bulb.png + + diff -Nru kconfigwidgets-5.15.0/src/khelpclient.cpp kconfigwidgets-5.18.0/src/khelpclient.cpp --- kconfigwidgets-5.15.0/src/khelpclient.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/khelpclient.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -61,14 +61,14 @@ QUrl url; if (!docPath.isEmpty()) { - url = QUrl(QLatin1String("help:/")).resolved(QUrl(docPath)); + url = QUrl(QStringLiteral("help:/")).resolved(QUrl(docPath)); } else { - url = QUrl(QString::fromLatin1("help:/%1/index.html").arg(appname)); + url = QUrl(QStringLiteral("help:/%1/index.html").arg(appname)); } if (!anchor.isEmpty()) { QUrlQuery query(url); - query.addQueryItem(QString::fromLatin1("anchor"), anchor); + query.addQueryItem(QStringLiteral("anchor"), anchor); url.setQuery(query); } diff -Nru kconfigwidgets-5.15.0/src/klanguagebutton.cpp kconfigwidgets-5.18.0/src/klanguagebutton.cpp --- kconfigwidgets-5.15.0/src/klanguagebutton.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/klanguagebutton.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -175,7 +175,7 @@ void KLanguageButton::loadAllLanguages() { QStringList langlist; - const QStringList localeDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QString("locale"), QStandardPaths::LocateDirectory); + const QStringList localeDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("locale"), QStandardPaths::LocateDirectory); Q_FOREACH (const QString &localeDir, localeDirs) { const QStringList entries = QDir(localeDir).entryList(QDir::Dirs); Q_FOREACH (const QString &d, entries) { @@ -245,7 +245,7 @@ QString KLanguageButton::current() const { - return d->current.isEmpty() ? QLatin1String("en") : d->current; + return d->current.isEmpty() ? QStringLiteral("en") : d->current; } QAction *KLanguageButtonPrivate::findAction(const QString &data) const diff -Nru kconfigwidgets-5.15.0/src/kpastetextaction.cpp kconfigwidgets-5.18.0/src/kpastetextaction.cpp --- kconfigwidgets-5.15.0/src/kpastetextaction.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/kpastetextaction.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -97,9 +97,9 @@ { m_popup->clear(); QStringList list; - QDBusInterface klipper("org.kde.klipper", "/klipper", "org.kde.klipper.klipper"); + QDBusInterface klipper(QStringLiteral("org.kde.klipper"), QStringLiteral("/klipper"), QStringLiteral("org.kde.klipper.klipper")); if (klipper.isValid()) { - QDBusReply reply = klipper.call("getClipboardHistoryMenu"); + QDBusReply reply = klipper.call(QStringLiteral("getClipboardHistoryMenu")); if (reply.isValid()) { list = reply; } @@ -112,7 +112,7 @@ const QFontMetrics fm = m_popup->fontMetrics(); foreach (const QString &string, list) { QString text = fm.elidedText(string.simplified(), Qt::ElideMiddle, fm.maxWidth() * 20); - text.replace('&', "&&"); + text.replace('&', QLatin1String("&&")); QAction *action = m_popup->addAction(text); if (!found && string == clipboardText) { action->setChecked(true); @@ -123,15 +123,15 @@ void KPasteTextActionPrivate::_k_slotTriggered(QAction *action) { - QDBusInterface klipper("org.kde.klipper", "/klipper", "org.kde.klipper.klipper"); + QDBusInterface klipper(QStringLiteral("org.kde.klipper"), QStringLiteral("/klipper"), QStringLiteral("org.kde.klipper.klipper")); if (klipper.isValid()) { - QDBusReply reply = klipper.call("getClipboardHistoryItem", + QDBusReply reply = klipper.call(QStringLiteral("getClipboardHistoryItem"), m_popup->actions().indexOf(action)); if (!reply.isValid()) { return; } QString clipboardText = reply; - reply = klipper.call("setClipboardContents", clipboardText); + reply = klipper.call(QStringLiteral("setClipboardContents"), clipboardText); //if (reply.isValid()) // qDebug() << "Clipboard: " << qApp->clipboard()->text(QClipboard::Clipboard); } diff -Nru kconfigwidgets-5.15.0/src/krecentfilesaction.cpp kconfigwidgets-5.18.0/src/krecentfilesaction.cpp --- kconfigwidgets-5.15.0/src/krecentfilesaction.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/krecentfilesaction.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -76,13 +76,13 @@ q->setMenu(new QMenu()); q->setToolBarMode(KSelectAction::MenuMode); m_noEntriesAction = q->menu()->addAction(i18n("No Entries")); - m_noEntriesAction->setObjectName(QLatin1String("no_entries")); + m_noEntriesAction->setObjectName(QStringLiteral("no_entries")); m_noEntriesAction->setEnabled(false); clearSeparator = q->menu()->addSeparator(); clearSeparator->setVisible(false); - clearSeparator->setObjectName(QLatin1String("separator")); + clearSeparator->setObjectName(QStringLiteral("separator")); clearAction = q->menu()->addAction(i18n("Clear List"), q, SLOT(clear())); - clearAction->setObjectName(QLatin1String("clear_action")); + clearAction->setObjectName(QStringLiteral("clear_action")); clearAction->setVisible(false); q->setEnabled(false); q->connect(q, SIGNAL(triggered(QAction*)), SLOT(_k_urlSelected(QAction*))); @@ -275,7 +275,7 @@ bool thereAreEntries = false; // read file list for (int i = 1; i <= d->m_maxItems; i++) { - key = QString("File%1").arg(i); + key = QStringLiteral("File%1").arg(i); value = cg.readPathEntry(key, QString()); if (value.isEmpty()) { continue; @@ -299,7 +299,7 @@ } #endif - nameKey = QString("Name%1").arg(i); + nameKey = QStringLiteral("Name%1").arg(i); nameValue = cg.readPathEntry(nameKey, url.fileName()); title = titleWithSensibleWidth(nameValue, value); if (!value.isNull()) { @@ -331,11 +331,11 @@ // write file list for (int i = 1; i <= selectableActionGroup()->actions().count(); i++) { - key = QString("File%1").arg(i); + key = QStringLiteral("File%1").arg(i); // i - 1 because we started from 1 value = d->m_urls[ selectableActionGroup()->actions()[ i - 1 ] ].toDisplayString(QUrl::PreferLocalFile); cg.writePathEntry(key, value); - key = QString("Name%1").arg(i); + key = QStringLiteral("Name%1").arg(i); value = d->m_shortNames[ selectableActionGroup()->actions()[ i - 1 ] ]; cg.writePathEntry(key, value); } diff -Nru kconfigwidgets-5.15.0/src/kstandardaction.cpp kconfigwidgets-5.18.0/src/kstandardaction.cpp --- kconfigwidgets-5.15.0/src/kstandardaction.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/kstandardaction.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -89,14 +89,14 @@ case Back: sLabel = i18nc("go back", "&Back"); if (QApplication::isRightToLeft()) { - iconName = "go-next"; + iconName = QStringLiteral("go-next"); } break; case Forward: sLabel = i18nc("go forward", "&Forward"); if (QApplication::isRightToLeft()) { - iconName = "go-previous"; + iconName = QStringLiteral("go-previous"); } break; @@ -122,12 +122,12 @@ if (QApplication::isRightToLeft()) { switch (id) { - case Prior: iconName = "go-next-view-page"; break; - case Next: iconName = "go-previous-view-page"; break; - case FirstPage: iconName = "go-last-view-page"; break; - case LastPage: iconName = "go-first-view-page"; break; - case DocumentBack: iconName = "go-next"; break; - case DocumentForward: iconName = "go-previous"; break; + case Prior: iconName = QStringLiteral("go-next-view-page"); break; + case Next: iconName = QStringLiteral("go-previous-view-page"); break; + case FirstPage: iconName = QStringLiteral("go-last-view-page"); break; + case LastPage: iconName = QStringLiteral("go-first-view-page"); break; + case DocumentBack: iconName = QStringLiteral("go-next"); break; + case DocumentForward: iconName = QStringLiteral("go-previous"); break; default: break; } } @@ -525,7 +525,7 @@ { KToggleAction *ret = new KToggleAction(i18n("Show &Menubar"), parent); ret->setObjectName(name(ShowMenubar)); - ret->setIcon(QIcon::fromTheme("show-menu")); + ret->setIcon(QIcon::fromTheme(QStringLiteral("show-menu"))); // emulate KActionCollection::setDefaultShortcuts to allow the use of "configure shortcuts" ret->setShortcuts(KStandardShortcut::shortcut(KStandardShortcut::ShowMenubar)); diff -Nru kconfigwidgets-5.15.0/src/ktipdialog.cpp kconfigwidgets-5.18.0/src/ktipdialog.cpp --- kconfigwidgets-5.15.0/src/ktipdialog.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/src/ktipdialog.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -34,7 +34,6 @@ #include #include #include -#include #include #include @@ -84,17 +83,17 @@ QByteArray data = file.readAll(); QString content = QString::fromUtf8(data.constData(), data.size()); - const QRegExp rx("\\n+"); + const QRegExp rx(QStringLiteral("\\n+")); int pos = -1; - while ((pos = content.indexOf("", pos + 1, Qt::CaseInsensitive)) != -1) { + while ((pos = content.indexOf(QStringLiteral(""), pos + 1, Qt::CaseInsensitive)) != -1) { /** * To make translations work, tip extraction here must exactly * match what is done by the preparetips5 script. */ QString tip = content - .mid(pos + 6, content.indexOf("", pos, Qt::CaseInsensitive) - pos - 6) - .replace(rx, "\n"); + .mid(pos + 6, content.indexOf(QStringLiteral(""), pos, Qt::CaseInsensitive) - pos - 6) + .replace(rx, QStringLiteral("\n")); if (!tip.endsWith('\n')) { tip += '\n'; @@ -216,14 +215,14 @@ void KTipDialog::Private::_k_prevTip() { database->prevTip(); - tipText->setHtml(QString::fromLatin1("%1") + tipText->setHtml(QStringLiteral("%1") .arg(KTipDialog::tr(database->tip().toUtf8()))); } void KTipDialog::Private::_k_nextTip() { database->nextTip(); - tipText->setHtml(QString::fromLatin1("%1") + tipText->setHtml(QStringLiteral("%1") .arg(KTipDialog::tr(database->tip().toUtf8()))); } @@ -246,7 +245,7 @@ d->database = database; - setWindowIcon(QIcon::fromTheme("ktip")); + setWindowIcon(QIcon::fromTheme(QStringLiteral("ktip"))); QVBoxLayout *mainLayout = new QVBoxLayout(this); @@ -268,8 +267,8 @@ d->tipText->setWordWrapMode(QTextOption::WrapAtWordBoundaryOrAnywhere); QStringList paths; - paths << QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "icons", QStandardPaths::LocateDirectory) - << QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "kdewizard/pics", QStandardPaths::LocateDirectory); + paths << QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("icons"), QStandardPaths::LocateDirectory) + << QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("kdewizard/pics"), QStandardPaths::LocateDirectory); d->tipText->setSearchPaths(paths); @@ -283,7 +282,7 @@ browserLayout->addWidget(d->tipText); QLabel *label = new QLabel(this); - label->setPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation, "kf5/kconfigwidgets/pics/ktip-bulb.png")); + label->setPixmap(QStringLiteral(":/kconfigwidgets/pics/ktip-bulb.png")); label->setAlignment(Qt::AlignRight | Qt::AlignVCenter); browserLayout->addWidget(label); diff -Nru kconfigwidgets-5.15.0/tests/kcodecactiontest.cpp kconfigwidgets-5.18.0/tests/kcodecactiontest.cpp --- kconfigwidgets-5.15.0/tests/kcodecactiontest.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/tests/kcodecactiontest.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -11,7 +11,7 @@ int main(int argc, char **argv) { - QApplication::setApplicationName("kcodecactiontest"); + QApplication::setApplicationName(QStringLiteral("kcodecactiontest")); QApplication app(argc, argv); CodecActionTest *test = new CodecActionTest; @@ -22,8 +22,8 @@ CodecActionTest::CodecActionTest(QWidget *parent) : QMainWindow(parent) - , m_comboCodec(new KCodecAction("Combo Codec Action", this)) - , m_buttonCodec(new KCodecAction("Button Codec Action", this)) + , m_comboCodec(new KCodecAction(QStringLiteral("Combo Codec Action"), this)) + , m_buttonCodec(new KCodecAction(QStringLiteral("Button Codec Action"), this)) { m_comboCodec->setToolBarMode(KCodecAction::ComboBoxMode); connect(m_comboCodec, SIGNAL(triggered(QAction*)), SLOT(triggered(QAction*))); @@ -40,7 +40,7 @@ menuBar()->addAction(m_comboCodec); menuBar()->addAction(m_buttonCodec); - QToolBar *toolBar = addToolBar("Test"); + QToolBar *toolBar = addToolBar(QStringLiteral("Test")); toolBar->addAction(m_comboCodec); toolBar->addAction(m_buttonCodec); } diff -Nru kconfigwidgets-5.15.0/tests/kcolorschemedemo.cpp kconfigwidgets-5.18.0/tests/kcolorschemedemo.cpp --- kconfigwidgets-5.15.0/tests/kcolorschemedemo.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/tests/kcolorschemedemo.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -42,7 +42,7 @@ connect(box, &QDialogButtonBox::rejected, qApp, &QApplication::quit); QToolButton *button = new QToolButton(box); - button->setIcon(QIcon::fromTheme("fill-color")); + button->setIcon(QIcon::fromTheme(QStringLiteral("fill-color"))); button->setMenu(manager->createSchemeSelectionMenu(QStringLiteral("Oxygen"), button)->menu()); box->addButton(button, QDialogButtonBox::InvalidRole); diff -Nru kconfigwidgets-5.15.0/tests/klanguagebuttontest.cpp kconfigwidgets-5.18.0/tests/klanguagebuttontest.cpp --- kconfigwidgets-5.15.0/tests/klanguagebuttontest.cpp 2015-10-05 07:56:13.000000000 +0000 +++ kconfigwidgets-5.18.0/tests/klanguagebuttontest.cpp 2016-01-02 16:27:11.000000000 +0000 @@ -25,7 +25,7 @@ int main(int argc, char **argv) { - QApplication::setApplicationName(QString::fromLatin1("KLanguageButtonTest")); + QApplication::setApplicationName(QStringLiteral("KLanguageButtonTest")); QApplication app(argc, argv); KLanguageButton button;