diff -Nru kxmlgui-5.15.0/autotests/kactioncategorytest.cpp kxmlgui-5.18.0/autotests/kactioncategorytest.cpp --- kxmlgui-5.15.0/autotests/kactioncategorytest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/kactioncategorytest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -9,8 +9,8 @@ void tst_KActionCategory::tstCreation() { KActionCollection collection((QObject *)NULL); - KActionCategory category1("category1", &collection); - KActionCategory category2("category2", &collection); + KActionCategory category1(QStringLiteral("category1"), &collection); + KActionCategory category2(QStringLiteral("category2"), &collection); // Check that the name is correct QCOMPARE(category1.text(), QString("category1")); @@ -27,21 +27,21 @@ QCOMPARE(categories.count(&category2), 1); // Change the text - category1.setText("Other Text"); + category1.setText(QStringLiteral("Other Text")); QCOMPARE(category1.text(), QString("Other Text")); } void tst_KActionCategory::tstSynchronization() { KActionCollection collection((QObject *)NULL); - KActionCategory category1("category1", &collection); - KActionCategory category2("category2", &collection); + KActionCategory category1(QStringLiteral("category1"), &collection); + KActionCategory category2(QStringLiteral("category2"), &collection); // The collection is empty QCOMPARE(collection.count(), 0); // Now add a action to category1 - QAction *action1 = category1.addAction("action1"); + QAction *action1 = category1.addAction(QStringLiteral("action1")); // Check it was added to the category. QCOMPARE(category1.actions().count(), 1); QCOMPARE(category1.actions().count(action1), 1); @@ -50,14 +50,14 @@ QCOMPARE(collection.actions().count(action1), 1); // Short intermezzo. Add the action a second time - category1.addAction("action1_new", action1); + category1.addAction(QStringLiteral("action1_new"), action1); QCOMPARE(category1.actions().count(), 1); QCOMPARE(category1.actions().count(action1), 1); QCOMPARE(collection.actions().count(), 1); QCOMPARE(collection.actions().count(action1), 1); // Now add a action to category2 - QAction *action2 = category2.addAction("action2"); + QAction *action2 = category2.addAction(QStringLiteral("action2")); // Check it was added to the category. QCOMPARE(category2.actions().count(), 1); QCOMPARE(category2.actions().count(action2), 1); @@ -85,8 +85,8 @@ // Create another category, add a action, delete the category and check // if the action is still part of the collection. - KActionCategory *category3 = new KActionCategory("category3", &collection); - QAction *action3 = category3->addAction("action3"); + KActionCategory *category3 = new KActionCategory(QStringLiteral("category3"), &collection); + QAction *action3 = category3->addAction(QStringLiteral("action3")); // Check it was added to the collection QCOMPARE(collection.actions().count(action3), 1); // delete the category @@ -98,17 +98,17 @@ void tst_KActionCategory::tstActionCreation() { KActionCollection collection((QObject *)NULL); - KActionCategory category("category", &collection); + KActionCategory category(QStringLiteral("category"), &collection); // QAction * addAction(const QString &name, QAction *action); QAction *action1 = new QAction(NULL); - category.addAction("action1", action1); + category.addAction(QStringLiteral("action1"), action1); QCOMPARE(category.actions().count(action1), 1); QCOMPARE(collection.actions().count(action1), 1); // QAction * addAction(const QString &name, QAction *action); QAction *action2 = new QAction(NULL); - category.addAction("action2", action2); + category.addAction(QStringLiteral("action2"), action2); QCOMPARE(category.actions().count(action2), 1); QCOMPARE(collection.actions().count(action2), 1); @@ -125,7 +125,7 @@ // const QString &name, // const QObject *receiver = NULL, // const char *member = NULL); - QAction *action4 = category.addAction(KStandardAction::Quit, "myownname"); + QAction *action4 = category.addAction(KStandardAction::Quit, QStringLiteral("myownname")); QCOMPARE(action4->objectName(), QString("myownname")); QCOMPARE(category.actions().count(action4), 1); QCOMPARE(collection.actions().count(action4), 1); @@ -134,7 +134,7 @@ // const QString &name, // const QObject *receiver = NULL, // const char *member = NULL); - QAction *action5 = category.addAction("action5"); + QAction *action5 = category.addAction(QStringLiteral("action5")); QCOMPARE(category.actions().count(action5), 1); QCOMPARE(collection.actions().count(action5), 1); @@ -143,7 +143,7 @@ // const QString &name, // const QObject *receiver = NULL, // const char *member = NULL) - KSelectAction *action6 = category.add("action6"); + KSelectAction *action6 = category.add(QStringLiteral("action6")); QCOMPARE(category.actions().count(action6), 1); QCOMPARE(collection.actions().count(action6), 1); diff -Nru kxmlgui-5.15.0/autotests/kactioncollectiontest.cpp kxmlgui-5.18.0/autotests/kactioncollectiontest.cpp --- kxmlgui-5.15.0/autotests/kactioncollectiontest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/kactioncollectiontest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -19,13 +19,13 @@ void tst_KActionCollection::clear() { - QPointer action1 = collection->add("test1"); - QPointer action2 = collection->add("test2"); - QPointer action3 = collection->add("test3"); - QPointer action4 = collection->add("test4"); - QPointer action5 = collection->add("test5"); - QPointer action6 = collection->add("test6"); - QPointer action7 = collection->add("test7"); + QPointer action1 = collection->add(QStringLiteral("test1")); + QPointer action2 = collection->add(QStringLiteral("test2")); + QPointer action3 = collection->add(QStringLiteral("test3")); + QPointer action4 = collection->add(QStringLiteral("test4")); + QPointer action5 = collection->add(QStringLiteral("test5")); + QPointer action6 = collection->add(QStringLiteral("test6")); + QPointer action7 = collection->add(QStringLiteral("test7")); collection->clear(); QVERIFY(collection->isEmpty()); @@ -42,14 +42,14 @@ void tst_KActionCollection::deleted() { // Delete action -> automatically removed from collection - QAction *a = collection->add("test"); + QAction *a = collection->add(QStringLiteral("test")); delete a; QVERIFY(collection->isEmpty()); // Delete action's parent -> automatically removed from collection QWidget *myWidget = new QWidget(0); - QPointer action = new QAction(/*i18n()*/ "Foo", myWidget); - collection->addAction("foo", action); + QPointer action = new QAction(/*i18n()*/ QStringLiteral("Foo"), myWidget); + collection->addAction(QStringLiteral("foo"), action); delete myWidget; QVERIFY(collection->isEmpty()); QVERIFY(action.isNull()); @@ -58,8 +58,8 @@ // and that widget gets deleted first. myWidget = new QWidget(0); QWidget *myAssociatedWidget = new QWidget(myWidget); // child widget - action = new QAction(/*i18n()*/ "Foo", myWidget); // child action - collection->addAction("foo", action); + action = new QAction(/*i18n()*/ QStringLiteral("Foo"), myWidget); // child action + collection->addAction(QStringLiteral("foo"), action); collection->addAssociatedWidget(myAssociatedWidget); QVERIFY(myAssociatedWidget->actions().contains(action)); delete myAssociatedWidget; // would be done by the line below, but let's make sure it happens first @@ -70,7 +70,7 @@ void tst_KActionCollection::take() { - QAction *a = collection->add("test"); + QAction *a = collection->add(QStringLiteral("test")); collection->takeAction(a); QVERIFY(collection->isEmpty()); delete a; @@ -89,22 +89,22 @@ QAction *actionWithDifferentShortcut = new QAction(this); collection->setDefaultShortcuts(actionWithDifferentShortcut, defaultShortcut); actionWithDifferentShortcut->setShortcuts(temporaryShortcut); - collection->addAction("actionWithDifferentShortcut", actionWithDifferentShortcut); + collection->addAction(QStringLiteral("actionWithDifferentShortcut"), actionWithDifferentShortcut); QAction *immutableAction = new QAction(this); collection->setDefaultShortcuts(immutableAction, defaultShortcut); immutableAction->setShortcuts(temporaryShortcut); collection->setShortcutsConfigurable(immutableAction, false); - collection->addAction("immutableAction", immutableAction); + collection->addAction(QStringLiteral("immutableAction"), immutableAction); QAction *actionWithSameShortcut = new QAction(this); collection->setDefaultShortcuts(actionWithSameShortcut, defaultShortcut); - collection->addAction("actionWithSameShortcut", actionWithSameShortcut); + collection->addAction(QStringLiteral("actionWithSameShortcut"), actionWithSameShortcut); - cfg.writeEntry("actionToDelete", QString("Foobar")); + cfg.writeEntry("actionToDelete", QStringLiteral("Foobar")); QAction *actionToDelete = new QAction(this); collection->setDefaultShortcuts(actionToDelete, defaultShortcut); - collection->addAction("actionToDelete", actionToDelete); + collection->addAction(QStringLiteral("actionToDelete"), actionToDelete); collection->writeSettings(&cfg); @@ -131,16 +131,16 @@ cfg.writeEntry("empty", QString()); QAction *normal = new QAction(this); - collection->addAction("normalAction", normal); + collection->addAction(QStringLiteral("normalAction"), normal); QAction *immutable = new QAction(this); immutable->setShortcuts(temporaryShortcut); collection->setDefaultShortcuts(immutable, temporaryShortcut); collection->setShortcutsConfigurable(immutable, false); - collection->addAction("immutable", immutable); + collection->addAction(QStringLiteral("immutable"), immutable); QAction *empty = new QAction(this); - collection->addAction("empty", empty); + collection->addAction(QStringLiteral("empty"), empty); collection->setDefaultShortcuts(empty, defaultShortcut); empty->setShortcuts(temporaryShortcut); QCOMPARE(QKeySequence::listToString(empty->shortcuts()), QKeySequence::listToString(temporaryShortcut)); @@ -160,11 +160,11 @@ QAction *a = new QAction(0); QAction *b = new QAction(0); - collection->addAction("a", a); + collection->addAction(QStringLiteral("a"), a); QVERIFY(collection->actions().contains(a)); QVERIFY(collection->action("a") == a); - collection->addAction("a", b); + collection->addAction(QStringLiteral("a"), b); QVERIFY(!collection->actions().contains(a)); QVERIFY(collection->actions().contains(b)); QVERIFY(collection->action("a") == b); @@ -181,19 +181,19 @@ { QAction *a = new QAction(0); - collection->addAction("a", a); + collection->addAction(QStringLiteral("a"), a); QVERIFY(collection->actions().contains(a)); QVERIFY(collection->action("a") == a); // Simple test: Just add it twice - collection->addAction("b", a); + collection->addAction(QStringLiteral("b"), a); QVERIFY(collection->actions().contains(a)); QVERIFY(!collection->action("a")); QVERIFY(collection->action("b") == a); // Complex text: Mesh with the objectname - a->setObjectName("c"); - collection->addAction("d", a); + a->setObjectName(QStringLiteral("c")); + collection->addAction(QStringLiteral("d"), a); QVERIFY(collection->actions().contains(a)); QVERIFY(!collection->action("b")); QVERIFY(!collection->action("c")); @@ -212,7 +212,7 @@ void tst_KActionCollection::testSetShortcuts() { QAction *action = new QAction(/*i18n*/("Next Unread &Folder"), this); - collection->addAction("go_next_unread_folder", action); + collection->addAction(QStringLiteral("go_next_unread_folder"), action); collection->setDefaultShortcut(action, QKeySequence(Qt::ALT + Qt::Key_Plus)); QList shortcut = action->shortcuts(); shortcut << QKeySequence(Qt::CTRL + Qt::Key_Plus); diff -Nru kxmlgui-5.15.0/autotests/kmainwindow_unittest.cpp kxmlgui-5.18.0/autotests/kmainwindow_unittest.cpp --- kxmlgui-5.15.0/autotests/kmainwindow_unittest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/kmainwindow_unittest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -55,12 +55,12 @@ void KMainWindow_UnitTest::testFixedName() { KMainWindow mw; - mw.setObjectName("mymainwindow"); + mw.setObjectName(QStringLiteral("mymainwindow")); mw.show(); mw.ensurePolished(); QCOMPARE(mw.objectName(), QString::fromLatin1("mymainwindow")); KMainWindow mw2; - mw2.setObjectName("mymainwindow"); + mw2.setObjectName(QStringLiteral("mymainwindow")); mw2.show(); mw2.ensurePolished(); QCOMPARE(mw2.objectName(), QString::fromLatin1("mymainwindow2")); @@ -69,17 +69,17 @@ void KMainWindow_UnitTest::testNameWithHash() { KMainWindow mw; - mw.setObjectName("composer#"); + mw.setObjectName(QStringLiteral("composer#")); mw.show(); mw.ensurePolished(); QCOMPARE(mw.objectName(), QString::fromLatin1("composer#1")); KMainWindow mw2; - mw2.setObjectName("composer#"); + mw2.setObjectName(QStringLiteral("composer#")); mw2.show(); mw2.ensurePolished(); QCOMPARE(mw2.objectName(), QString::fromLatin1("composer#2")); KMainWindow mw4; - mw4.setObjectName("composer#4"); + mw4.setObjectName(QStringLiteral("composer#4")); mw4.show(); mw4.ensurePolished(); QCOMPARE(mw4.objectName(), QString::fromLatin1("composer#4")); @@ -88,12 +88,12 @@ void KMainWindow_UnitTest::testNameWithSpecialChars() { KMainWindow mw; - mw.setObjectName("a#@_test/"); + mw.setObjectName(QStringLiteral("a#@_test/")); mw.show(); mw.ensurePolished(); QCOMPARE(mw.dbusName(), QString::fromLatin1("/kmainwindow_unittest/a___test_")); KMainWindow mw2; - mw2.setObjectName("a#@_test/"); + mw2.setObjectName(QStringLiteral("a#@_test/")); mw2.show(); mw2.ensurePolished(); QCOMPARE(mw2.dbusName(), QString::fromLatin1("/kmainwindow_unittest/a___test_2")); @@ -157,7 +157,7 @@ MyMainWindow mw; mw.show(); KToolBar *tb = new KToolBar(&mw); // we need a toolbar to trigger an old bug in saveMainWindowSettings - tb->setObjectName("testtb"); + tb->setObjectName(QStringLiteral("testtb")); mw.reallyResize(800, 600); QTRY_COMPARE(mw.size(), QSize(800, 600)); QTRY_COMPARE(mw.windowHandle()->size(), QSize(800, 600)); @@ -168,7 +168,7 @@ KMainWindow mw2; mw2.show(); KToolBar *tb = new KToolBar(&mw2); - tb->setObjectName("testtb"); + tb->setObjectName(QStringLiteral("testtb")); mw2.resize(500, 500); mw2.applyMainWindowSettings(cfg); @@ -177,13 +177,13 @@ void KMainWindow_UnitTest::testAutoSaveSettings() { - const QString group("AutoSaveTestGroup"); + const QString group(QStringLiteral("AutoSaveTestGroup")); { MyMainWindow mw; mw.show(); KToolBar *tb = new KToolBar(&mw); // we need a toolbar to trigger an old bug in saveMainWindowSettings - tb->setObjectName("testtb"); + tb->setObjectName(QStringLiteral("testtb")); mw.setAutoSaveSettings(group); mw.reallyResize(800, 600); mw.close(); @@ -192,14 +192,14 @@ KMainWindow mw2; mw2.show(); KToolBar *tb = new KToolBar(&mw2); - tb->setObjectName("testtb"); + tb->setObjectName(QStringLiteral("testtb")); mw2.setAutoSaveSettings(group); QTRY_COMPARE(mw2.size(), QSize(800, 600)); } void KMainWindow_UnitTest::testNoAutoSave() { - const QString group("AutoSaveTestGroup"); + const QString group(QStringLiteral("AutoSaveTestGroup")); { // A mainwindow with autosaving, but not of the window size. diff -Nru kxmlgui-5.15.0/autotests/ktoolbar_unittest.cpp kxmlgui-5.18.0/autotests/ktoolbar_unittest.cpp --- kxmlgui-5.15.0/autotests/ktoolbar_unittest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/ktoolbar_unittest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -109,7 +109,7 @@ QDir testDataDir = QDir(QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation)); QVERIFY(testDataDir.absolutePath().contains(QStringLiteral("qttest"))); testDataDir.removeRecursively(); - testDataDir.mkpath("."); + testDataDir.mkpath(QStringLiteral(".")); // copy a minimal icon theme to where KIconTheme will find it, in case oxygen-icons is not // installed @@ -197,7 +197,7 @@ void tst_KToolBar::testIconSizeNoXmlGui() { QFETCH(int, iconSize); - KConfig config("tst_KToolBar"); + KConfig config(QStringLiteral("tst_KToolBar")); KConfigGroup group(&config, "group"); { KMainWindow kmw; @@ -287,11 +287,11 @@ QFETCH(int, expectedSizeOtherToolbar); QFETCH(int, expectedSizeCleanToolbar); QFETCH(int, expectedSizeBigToolbar); - KConfig config("tst_KToolBar"); + KConfig config(QStringLiteral("tst_KToolBar")); KConfigGroup group(&config, "group"); { TestXmlGuiWindow kmw(m_xml); - kmw.createActions(QStringList() << "go_up"); + kmw.createActions(QStringList() << QStringLiteral("go_up")); kmw.createGUI(); KToolBar *mainToolBar = kmw.toolBarByName(QStringLiteral("mainToolBar")); KToolBar *otherToolBar = kmw.toolBarByName(QStringLiteral("otherToolBar")); @@ -385,12 +385,12 @@ const bool selectedDefaultForMainToolbar = toolButtonStyle == mainToolBarDefaultStyle; const bool selectedDefaultForOtherToolbar = toolButtonStyle == Qt::ToolButtonTextBesideIcon; - KConfig config("tst_KToolBar"); + KConfig config(QStringLiteral("tst_KToolBar")); KConfigGroup group(&config, "group"); { KMainWindow kmw; - KToolBar *mainToolBar = kmw.toolBar("mainToolBar"); - KToolBar *otherToolBar = kmw.toolBar("otherToolBar"); + KToolBar *mainToolBar = kmw.toolBar(QStringLiteral("mainToolBar")); + KToolBar *otherToolBar = kmw.toolBar(QStringLiteral("otherToolBar")); // Default settings (applied by applyAppearanceSettings) QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)mainToolBarDefaultStyle); @@ -415,15 +415,15 @@ { // Recreate, load, compare. KMainWindow kmw; - KToolBar *mainToolBar = kmw.toolBar("mainToolBar"); - KToolBar *otherToolBar = kmw.toolBar("otherToolBar"); + KToolBar *mainToolBar = kmw.toolBar(QStringLiteral("mainToolBar")); + KToolBar *otherToolBar = kmw.toolBar(QStringLiteral("otherToolBar")); QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)mainToolBarDefaultStyle); kmw.applyMainWindowSettings(group); QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)toolButtonStyle); QCOMPARE((int)otherToolBar->toolButtonStyle(), (int)toolButtonStyle); // Now change KDE-global setting - changeGlobalToolButtonStyleSetting("IconOnly", "TextOnly"); + changeGlobalToolButtonStyleSetting(QStringLiteral("IconOnly"), QStringLiteral("TextOnly")); if (selectedDefaultForMainToolbar) { QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)Qt::ToolButtonIconOnly); @@ -464,15 +464,15 @@ QFETCH(Qt::ToolButtonStyle, expectedStyleOtherToolbar); QFETCH(Qt::ToolButtonStyle, expectedStyleCleanToolbar); const Qt::ToolButtonStyle mainToolBarDefaultStyle = Qt::ToolButtonTextBesideIcon; // was TextUnderIcon before KDE-4.4.0 - KConfig config("tst_KToolBar"); + KConfig config(QStringLiteral("tst_KToolBar")); KConfigGroup group(&config, "group"); { TestXmlGuiWindow kmw(m_xml); - kmw.createActions(QStringList() << "go_up"); + kmw.createActions(QStringList() << QStringLiteral("go_up")); kmw.createGUI(); - KToolBar *mainToolBar = kmw.toolBarByName("mainToolBar"); - KToolBar *otherToolBar = kmw.toolBarByName("otherToolBar"); - KToolBar *cleanToolBar = kmw.toolBarByName("cleanToolBar"); + KToolBar *mainToolBar = kmw.toolBarByName(QStringLiteral("mainToolBar")); + KToolBar *otherToolBar = kmw.toolBarByName(QStringLiteral("otherToolBar")); + KToolBar *cleanToolBar = kmw.toolBarByName(QStringLiteral("cleanToolBar")); QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)mainToolBarDefaultStyle); QCOMPARE((int)otherToolBar->toolButtonStyle(), (int)Qt::ToolButtonTextUnderIcon); // from xml @@ -486,7 +486,7 @@ kmw.saveMainWindowSettings(group); // Now change KDE-global setting - changeGlobalToolButtonStyleSetting("IconOnly", "TextOnly"); + changeGlobalToolButtonStyleSetting(QStringLiteral("IconOnly"), QStringLiteral("TextOnly")); QCOMPARE((int)mainToolBar->toolButtonStyle(), (int)expectedStyleMainToolbar); QCOMPARE((int)otherToolBar->toolButtonStyle(), (int)expectedStyleOtherToolbar); @@ -524,7 +524,7 @@ void tst_KToolBar::testToolBarPosition() { TestXmlGuiWindow kmw(m_xml); - kmw.createActions(QStringList() << "go_up"); + kmw.createActions(QStringList() << QStringLiteral("go_up")); kmw.createGUI(); KToolBar *mainToolBar = kmw.toolBarByName(QStringLiteral("mainToolBar")); KToolBar *otherToolBar = kmw.toolBarByName(QStringLiteral("otherToolBar")); @@ -542,7 +542,7 @@ "\n" "\n"; TestXmlGuiWindow kmw(windowXml); - kmw.createActions(QStringList() << "go_up"); + kmw.createActions(QStringList() << QStringLiteral("go_up")); kmw.createGUI(); TestGuiClient firstClient(m_xml); kmw.guiFactory()->addClient(&firstClient); @@ -598,7 +598,7 @@ QCOMPARE(otherToolBar->iconSize().width(), 35); // Now save, and check what we saved - KConfig config("tst_KToolBar"); + KConfig config(QStringLiteral("tst_KToolBar")); KConfigGroup group(&config, "group"); kmw.saveMainWindowSettings(group); QCOMPARE(group.group("Toolbar bigToolBar").readEntry("IconSize", 0), 35); @@ -611,7 +611,7 @@ // Recreate window and apply config; is hidden toolbar shown as expected? { TestXmlGuiWindow kmw2(windowXml); - kmw2.createActions(QStringList() << "go_up"); + kmw2.createActions(QStringList() << QStringLiteral("go_up")); kmw2.createGUI(); TestGuiClient firstClient(m_xml); kmw2.guiFactory()->addClient(&firstClient); diff -Nru kxmlgui-5.15.0/autotests/kxmlgui_unittest.cpp kxmlgui-5.18.0/autotests/kxmlgui_unittest.cpp --- kxmlgui-5.15.0/autotests/kxmlgui_unittest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/kxmlgui_unittest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -284,7 +284,7 @@ static QStringList collectMenuNames(KXMLGUIFactory &factory) { - QList containers = factory.containers("Menu"); + QList containers = factory.containers(QStringLiteral("Menu")); QStringList containerNames; Q_FOREACH (QWidget *w, containers) { containerNames << w->objectName(); @@ -337,37 +337,37 @@ "\n"; TestGuiClient hostClient; - hostClient.createActions(QStringList() << "go_up" << "go_back" << "go_forward" << "go_home" - << "host_after_merge" << "host_after_merge_2" << "last_from_host" - << "file_new" << "file_open" << "file_quit"); + hostClient.createActions(QStringList() << QStringLiteral("go_up") << QStringLiteral("go_back") << QStringLiteral("go_forward") << QStringLiteral("go_home") + << QStringLiteral("host_after_merge") << QStringLiteral("host_after_merge_2") << QStringLiteral("last_from_host") + << QStringLiteral("file_new") << QStringLiteral("file_open") << QStringLiteral("file_quit")); hostClient.createGUI(hostXml, true /*ui_standards.rc*/); KMainWindow mainWindow; KXMLGUIBuilder builder(&mainWindow); KXMLGUIFactory factory(&builder); factory.addClient(&hostClient); - QWidget *goMenuW = factory.container("go", &hostClient); + QWidget *goMenuW = factory.container(QStringLiteral("go"), &hostClient); QVERIFY(goMenuW); QMenu *goMenu = qobject_cast(goMenuW); QVERIFY(goMenu); - QMenu *fileMenu = qobject_cast(factory.container("file", &hostClient)); + QMenu *fileMenu = qobject_cast(factory.container(QStringLiteral("file"), &hostClient)); //debugActions(goMenu->actions()); checkActions(goMenu->actions(), QStringList() - << "go_up" - << "go_back" - << "go_forward" - << "go_home" - << "separator" - << "host_after_merge" - << "host_after_merge_2" - << "separator" - << "last_from_host"); + << QStringLiteral("go_up") + << QStringLiteral("go_back") + << QStringLiteral("go_forward") + << QStringLiteral("go_home") + << QStringLiteral("separator") + << QStringLiteral("host_after_merge") + << QStringLiteral("host_after_merge_2") + << QStringLiteral("separator") + << QStringLiteral("last_from_host")); checkActions(fileMenu->actions(), QStringList() - << "file_new" - << "file_open" - << "separator" - << "file_quit"); + << QStringLiteral("file_new") + << QStringLiteral("file_open") + << QStringLiteral("separator") + << QStringLiteral("file_quit")); qDebug() << "Now merging the part"; @@ -394,43 +394,43 @@ "\n"; TestGuiClient partClient(partXml); - partClient.createActions(QStringList() << "go_previous" << "go_next" << "first_page" << - "last_page" << "last_from_part" << "action_in_merge_group" << "undefined_group" << - "action_in_placed_merge" << "other_file_action"); + partClient.createActions(QStringList() << QStringLiteral("go_previous") << QStringLiteral("go_next") << QStringLiteral("first_page") << + QStringLiteral("last_page") << QStringLiteral("last_from_part") << QStringLiteral("action_in_merge_group") << QStringLiteral("undefined_group") << + QStringLiteral("action_in_placed_merge") << QStringLiteral("other_file_action")); factory.addClient(&partClient); //debugActions(goMenu->actions()); checkActions(goMenu->actions(), QStringList() - << "go_up" - << "go_back" - << "go_forward" - << "go_home" - << "separator" + << QStringLiteral("go_up") + << QStringLiteral("go_back") + << QStringLiteral("go_forward") + << QStringLiteral("go_home") + << QStringLiteral("separator") // Contents of the : - << "go_previous" - << "go_next" - << "separator" - << "first_page" - << "last_page" - << "separator" - << "undefined_group" - << "last_from_part" + << QStringLiteral("go_previous") + << QStringLiteral("go_next") + << QStringLiteral("separator") + << QStringLiteral("first_page") + << QStringLiteral("last_page") + << QStringLiteral("separator") + << QStringLiteral("undefined_group") + << QStringLiteral("last_from_part") // End of - << "host_after_merge" - << "host_after_merge_2" - << "separator" + << QStringLiteral("host_after_merge") + << QStringLiteral("host_after_merge_2") + << QStringLiteral("separator") // Contents of - << "action_in_merge_group" + << QStringLiteral("action_in_merge_group") // End of - << "last_from_host" + << QStringLiteral("last_from_host") ); checkActions(fileMenu->actions(), QStringList() - << "file_new" - << "action_in_placed_merge" - << "file_open" - << "separator" - << "file_quit" - << "other_file_action"); + << QStringLiteral("file_new") + << QStringLiteral("action_in_placed_merge") + << QStringLiteral("file_open") + << QStringLiteral("separator") + << QStringLiteral("file_quit") + << QStringLiteral("other_file_action")); factory.removeClient(&partClient); factory.removeClient(&hostClient); } @@ -452,14 +452,14 @@ // " \n" "\n"; TestGuiClient hostClient; - hostClient.createActions(QStringList() << "options_configure_keybinding" << "options_configure_toolbars"); + hostClient.createActions(QStringList() << QStringLiteral("options_configure_keybinding") << QStringLiteral("options_configure_toolbars")); hostClient.createGUI(hostXml, true /*ui_standards.rc*/); //qDebug() << hostClient.domDocument().toString(); KMainWindow mainWindow; KXMLGUIBuilder builder(&mainWindow); KXMLGUIFactory factory(&builder); factory.addClient(&hostClient); - QWidget *settingsMenu = qobject_cast(factory.container("settings", &hostClient)); + QWidget *settingsMenu = qobject_cast(factory.container(QStringLiteral("settings"), &hostClient)); QVERIFY(settingsMenu); //debugActions(settingsMenu->actions()); @@ -473,14 +473,14 @@ " \n" "\n"; TestGuiClient partClient(partXml); - partClient.createActions(QStringList() << "configure_klinkstatus"); + partClient.createActions(QStringList() << QStringLiteral("configure_klinkstatus")); factory.addClient(&partClient); //debugActions(settingsMenu->actions()); checkActions(settingsMenu->actions(), QStringList() - << "separator" // that's ok, QMenuPrivate::filterActions won't show it - << "options_configure_keybinding" - << "options_configure_toolbars" - << "configure_klinkstatus"); + << QStringLiteral("separator") // that's ok, QMenuPrivate::filterActions won't show it + << QStringLiteral("options_configure_keybinding") + << QStringLiteral("options_configure_toolbars") + << QStringLiteral("configure_klinkstatus")); factory.removeClient(&partClient); factory.removeClient(&hostClient); } @@ -503,76 +503,76 @@ // the empty menu appear at the end after all other menus (fixed for KDE-4.2) QTest::newRow("empty file menu, implicit settings menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "options_configure_toolbars") - << (QStringList() << "settings"); + << (QStringList() << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("settings")); QTest::newRow("file menu with non existing action, implicit settings menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "options_configure_toolbars") - << (QStringList() << "settings"); + << (QStringList() << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("settings")); QTest::newRow("file menu with existing action, implicit settings menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "open" << "options_configure_toolbars") - << (QStringList() << "file" << "settings"); + << (QStringList() << QStringLiteral("open") << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("settings")); QTest::newRow("implicit file and settings menu") << QByteArray(xmlBegin + xmlEnd) - << (QStringList() << "file_open" << "options_configure_toolbars") - << (QStringList() << "file" << "settings"); // we could check that file_open is in the mainToolBar, too + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("settings")); // we could check that file_open is in the mainToolBar, too // Check that unknown non-empty menus are added at the "MergeLocal" position (before settings). QTest::newRow("foo menu added at the end") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open" << "options_configure_toolbars" << "foo_action") - << (QStringList() << "file" << "foo" << "settings"); + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("options_configure_toolbars") << QStringLiteral("foo_action")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("foo") << QStringLiteral("settings")); QTest::newRow("Bille's testcase: menu patch + menu edit") << QByteArray(xmlBegin + "\n" + "\n" + xmlEnd) - << (QStringList() << "file_open" << "patch_generate" << "edit_foo") - << (QStringList() << "file" << "edit" << "patch"); + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("patch_generate") << QStringLiteral("edit_foo")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("edit") << QStringLiteral("patch")); QTest::newRow("Bille's testcase: menu patch + menu edit, lowercase tag") << QByteArray(xmlBegin + "\n" + "\n" + xmlEnd) - << (QStringList() << "file_open" << "patch_generate" << "edit_foo") - << (QStringList() << "file" << "edit" << "patch"); + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("patch_generate") << QStringLiteral("edit_foo")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("edit") << QStringLiteral("patch")); // Check that allows to insert menus at specific positions QTest::newRow("Menu append") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open" << "options_configure_toolbars" << "foo_action" << "help_contents") - << (QStringList() << "file" << "settings" << "foo" << "help"); + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("options_configure_toolbars") << QStringLiteral("foo_action") << QStringLiteral("help_contents")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("settings") << QStringLiteral("foo") << QStringLiteral("help")); QTest::newRow("Custom first menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "edit_undo" << "foo_action" << "help_contents") - << (QStringList() << "foo" << "edit" << "help"); + << (QStringList() << QStringLiteral("edit_undo") << QStringLiteral("foo_action") << QStringLiteral("help_contents")) + << (QStringList() << QStringLiteral("foo") << QStringLiteral("edit") << QStringLiteral("help")); // Tests for noMerge="1" QTest::newRow("noMerge empty file menu, implicit settings menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open" << "options_configure_toolbars") - << (QStringList() << "file" << "settings"); // we keep empty menus, see #186382 + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("settings")); // we keep empty menus, see #186382 QTest::newRow("noMerge empty file menu, file_open moved elsewhere") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open") - << (QStringList() << "file" << "foo"); + << (QStringList() << QStringLiteral("file_open")) + << (QStringList() << QStringLiteral("file") << QStringLiteral("foo")); QTest::newRow("noMerge file menu with open before new") << QByteArray(xmlBegin + "" + xmlEnd) - << (QStringList() << "file_open" << "file_new") - << (QStringList() << "file"); // TODO check the order of the actions in the menu? how? + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("file_new")) + << (QStringList() << QStringLiteral("file")); // TODO check the order of the actions in the menu? how? // Tests for deleted="true" QTest::newRow("deleted file menu, implicit settings menu") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open" << "options_configure_toolbars") - << (QStringList() << "settings"); + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("options_configure_toolbars")) + << (QStringList() << QStringLiteral("settings")); QTest::newRow("deleted file menu, file_open moved elsewhere") << QByteArray(xmlBegin + "\n" + xmlEnd) - << (QStringList() << "file_open") - << (QStringList() << "foo"); + << (QStringList() << QStringLiteral("file_open")) + << (QStringList() << QStringLiteral("foo")); QTest::newRow("deleted file menu with actions (contradiction)") << QByteArray(xmlBegin + "" + xmlEnd) - << (QStringList() << "file_open" << "file_new") + << (QStringList() << QStringLiteral("file_open") << QStringLiteral("file_new")) << (QStringList()); } @@ -620,37 +620,37 @@ ""; TestGuiClient client(xml); - client.createActions(QStringList() << "view_add_to_new_group"); + client.createActions(QStringList() << QStringLiteral("view_add_to_new_group")); KMainWindow mainWindow; KXMLGUIBuilder builder(&mainWindow); KXMLGUIFactory factory(&builder); factory.addClient(&client); - QWidget *menuW = factory.container("groups", &client); + QWidget *menuW = factory.container(QStringLiteral("groups"), &client); QVERIFY(menuW); QMenu *menu = qobject_cast(menuW); QVERIFY(menu); //debugActions(menu->actions()); checkActions(menu->actions(), QStringList() - << "separator" // that's ok, QMenuPrivate::filterActions won't show it - << "view_add_to_new_group"); + << QStringLiteral("separator") // that's ok, QMenuPrivate::filterActions won't show it + << QStringLiteral("view_add_to_new_group")); qDebug() << "Now plugging the actionlist"; QAction *action1 = new QAction(this); - action1->setObjectName("action1"); - action1->setShortcuts(QKeySequence::listFromString("Ctrl+2")); + action1->setObjectName(QStringLiteral("action1")); + action1->setShortcuts(QKeySequence::listFromString(QStringLiteral("Ctrl+2"))); QList actionList; actionList << action1; - client.plugActionList("view_groups_list", actionList); + client.plugActionList(QStringLiteral("view_groups_list"), actionList); QCOMPARE(QKeySequence::listToString(action1->shortcuts()), QString("Ctrl+2")); //debugActions(menu->actions()); checkActions(menu->actions(), QStringList() - << "action1" - << "separator" - << "view_add_to_new_group"); + << QStringLiteral("action1") + << QStringLiteral("separator") + << QStringLiteral("view_add_to_new_group")); qDebug() << "Now remove+add gui client"; @@ -659,19 +659,19 @@ factory.removeClient(&client); factory.addClient(&client); // We need to get the container widget again, it was re-created. - menuW = factory.container("groups", &client); + menuW = factory.container(QStringLiteral("groups"), &client); QVERIFY(menuW); menu = qobject_cast(menuW); //debugActions(menu->actions()); checkActions(menu->actions(), QStringList() - << "separator" // yep, it removed the actionlist thing... - << "view_add_to_new_group"); + << QStringLiteral("separator") // yep, it removed the actionlist thing... + << QStringLiteral("view_add_to_new_group")); qDebug() << "Now plugging the actionlist again"; - client.plugActionList("view_groups_list", actionList); + client.plugActionList(QStringLiteral("view_groups_list"), actionList); checkActions(menu->actions(), QStringList() - << "action1" - << "separator" - << "view_add_to_new_group"); + << QStringLiteral("action1") + << QStringLiteral("separator") + << QStringLiteral("view_add_to_new_group")); factory.removeClient(&client); } @@ -696,15 +696,15 @@ KConfigGroup cg(KSharedConfig::openConfig(), "testHiddenToolBar"); TestXmlGuiWindow mainWindow(xml); mainWindow.setAutoSaveSettings(cg); - mainWindow.createActions(QStringList() << "go_up"); + mainWindow.createActions(QStringList() << QStringLiteral("go_up")); mainWindow.createGUI(); - KToolBar *mainToolBar = mainWindow.toolBarByName("mainToolBar"); + KToolBar *mainToolBar = mainWindow.toolBarByName(QStringLiteral("mainToolBar")); QVERIFY(mainToolBar->isHidden()); KXMLGUIFactory *factory = mainWindow.guiFactory(); QVERIFY(!factory->container("visibleToolBar", &mainWindow)->isHidden()); - KToolBar *hiddenToolBar = qobject_cast(factory->container("hiddenToolBar", &mainWindow)); + KToolBar *hiddenToolBar = qobject_cast(factory->container(QStringLiteral("hiddenToolBar"), &mainWindow)); qDebug() << hiddenToolBar; QVERIFY(hiddenToolBar->isHidden()); @@ -745,16 +745,16 @@ mw.reallyResize(400, 400); QTest::qWait(200); - mw.createActions(QStringList() << "go_up"); + mw.createActions(QStringList() << QStringLiteral("go_up")); mw.createGUI(); // Resize again, should be saved mw.reallyResize(800, 600); QTest::qWait(200); - KToolBar *mainToolBar = mw.toolBarByName("mainToolBar"); + KToolBar *mainToolBar = mw.toolBarByName(QStringLiteral("mainToolBar")); QCOMPARE(mw.toolBarArea(mainToolBar), Qt::TopToolBarArea); - KToolBar *secondToolBar = mw.toolBarByName("secondToolBar"); + KToolBar *secondToolBar = mw.toolBarByName(QStringLiteral("secondToolBar")); QCOMPARE((int)mw.toolBarArea(secondToolBar), (int)Qt::TopToolBarArea); // REFERENCE #1 (see below) // Move second toolbar to bottom @@ -779,7 +779,7 @@ // Check window size was restored QCOMPARE(mw2.size(), QSize(800, 600)); - mw2.createActions(QStringList() << "go_up"); + mw2.createActions(QStringList() << QStringLiteral("go_up")); mw2.createGUI(); // Force window layout to happen @@ -787,9 +787,9 @@ QTest::qWait(200); // Check toolbar positions were restored - KToolBar *mainToolBar = mw2.toolBarByName("mainToolBar"); + KToolBar *mainToolBar = mw2.toolBarByName(QStringLiteral("mainToolBar")); QCOMPARE(mw2.toolBarArea(mainToolBar), Qt::TopToolBarArea); - KToolBar *secondToolBar = mw2.toolBarByName("secondToolBar"); + KToolBar *secondToolBar = mw2.toolBarByName(QStringLiteral("secondToolBar")); QCOMPARE(mw2.toolBarArea(secondToolBar), Qt::BottomToolBarArea); mw2.applyMainWindowSettings(mw2.autoSaveConfigGroup()); QCOMPARE(mw2.toolBarArea(secondToolBar), Qt::BottomToolBarArea); @@ -818,7 +818,7 @@ KConfigGroup cg(KSharedConfig::openConfig(), "testDeletedToolBar"); TestXmlGuiWindow mainWindow(xml); mainWindow.setAutoSaveSettings(cg); - mainWindow.createActions(QStringList() << "go_up" << "file_new" << "game_new"); + mainWindow.createActions(QStringList() << QStringLiteral("go_up") << QStringLiteral("file_new") << QStringLiteral("game_new")); mainWindow.createGUI(); KXMLGUIFactory *factory = mainWindow.guiFactory(); @@ -860,11 +860,11 @@ mainWindow.createGUI(); checkActions(mainWindow.menuBar()->actions(), QStringList() - << "before_separator" - << "separator" - << "after_separator" - << "separator" - << "help"); + << QStringLiteral("before_separator") + << QStringLiteral("separator") + << QStringLiteral("after_separator") + << QStringLiteral("separator") + << QStringLiteral("help")); } // Check that the objectName() of the menus is set from the name in the XML file @@ -883,9 +883,9 @@ mainWindow.createGUI(); checkActions(mainWindow.menuBar()->actions(), QStringList() - << "filemenu" - << "separator" - << "help"); + << QStringLiteral("filemenu") + << QStringLiteral("separator") + << QStringLiteral("help")); } // Test what happens when the application's rc file isn't found @@ -896,7 +896,7 @@ mainWindow.createGUIBad(); checkActions(mainWindow.menuBar()->actions(), QStringList() - << "help"); + << QStringLiteral("help")); } void KXmlGui_UnitTest::testXMLFileReplacement() @@ -980,12 +980,12 @@ TestXmlGuiWindow mainWindow(hostXml); TestGuiClient *client = new TestGuiClient(xml); - client->createActions(QStringList() << "file_open" << "file_quit"); + client->createActions(QStringList() << QStringLiteral("file_open") << QStringLiteral("file_quit")); mainWindow.insertChildClient(client); mainWindow.createGUI(); checkActions(mainWindow.menuBar()->actions(), QStringList() - << "file" << "separator" << "help"); + << QStringLiteral("file") << QStringLiteral("separator") << QStringLiteral("help")); QVERIFY(mainWindow.factory()->clients().contains(client)); delete client; @@ -993,7 +993,7 @@ // No change, because deletion is fast, it doesn't do manual unplugging. checkActions(mainWindow.menuBar()->actions(), QStringList() - << "file" << "separator" << "help"); + << QStringLiteral("file") << QStringLiteral("separator") << QStringLiteral("help")); } void KXmlGui_UnitTest::testShortcuts() @@ -1014,7 +1014,7 @@ ""; TestGuiClient client; - client.createActions(QStringList() << "file_open" << "file_quit"); + client.createActions(QStringList() << QStringLiteral("file_open") << QStringLiteral("file_quit")); client.createGUI(xml, false /*ui_standards.rc*/); KMainWindow mainWindow; diff -Nru kxmlgui-5.15.0/autotests/testguiclient.h kxmlgui-5.18.0/autotests/testguiclient.h --- kxmlgui-5.15.0/autotests/testguiclient.h 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/autotests/testguiclient.h 2016-01-02 16:54:49.000000000 +0000 @@ -21,7 +21,6 @@ #ifndef TESTGUICLIENT_H #define TESTGUICLIENT_H -#include #include #include @@ -45,9 +44,7 @@ void createGUI(const QByteArray &xml, bool withUiStandards = false) { if (withUiStandards) { - QString uis = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QStringLiteral("ui/ui_standards.rc")); - QVERIFY(!uis.isEmpty()); - setXMLFile(uis); + setXMLFile(KXMLGUIClient::standardsXmlFileLocation()); } setXML(QString::fromLatin1(xml), true); diff -Nru kxmlgui-5.15.0/CMakeLists.txt kxmlgui-5.18.0/CMakeLists.txt --- kxmlgui-5.15.0/CMakeLists.txt 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/CMakeLists.txt 2016-01-02 16:54:49.000000000 +0000 @@ -4,7 +4,7 @@ # ECM setup 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) @@ -21,8 +21,8 @@ include(KDECMakeSettings) include(ECMQtDeclareLoggingCategory) -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 KXMLGUI @@ -34,6 +34,7 @@ set(REQUIRED_QT_VERSION 5.3.0) find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets DBus Xml Network PrintSupport) +find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) find_package(KF5ItemViews ${KF5_DEP_VERSION} REQUIRED) find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) find_package(KF5GlobalAccel ${KF5_DEP_VERSION} REQUIRED) diff -Nru kxmlgui-5.15.0/debian/changelog kxmlgui-5.18.0/debian/changelog --- kxmlgui-5.15.0/debian/changelog 2015-11-03 14:34:51.000000000 +0000 +++ kxmlgui-5.18.0/debian/changelog 2016-03-07 22:25:43.000000000 +0000 @@ -1,3 +1,31 @@ +kxmlgui (5.18.0-0ubuntu1) xenial; urgency=medium + + [ Scarlett Clark ] + * Debian merge. No remaining changes. + * New upstream release Xenial + + [ Philip Muškovac ] + * New upstream release + + -- Philip Muškovac Mon, 07 Mar 2016 23:25:43 +0100 + +kxmlgui (5.16.0-1) unstable; urgency=medium + + * New upstream release (5.16.0). + * Update symbols files from buildds logs (5.15.0-1). + * Update install files. + * Update symbols files. + + -- Maximiliano Curia Mon, 30 Nov 2015 12:12:25 +0100 + +kxmlgui (5.15.0-1) unstable; urgency=medium + + * New upstream release (5.15.0). + * Update symbols files from buildds logs (5.14.0-1). + * Update symbols files. + + -- Maximiliano Curia Fri, 09 Oct 2015 19:16:23 +0200 + kxmlgui (5.15.0-0ubuntu2) xenial; urgency=medium * Fix autopackagetests by adding allow-stderr to the requirements. @@ -14,18 +42,36 @@ -- Jonathan Riddell Wed, 07 Oct 2015 13:58:35 +0100 +kxmlgui (5.14.0-1) unstable; urgency=medium + + * New upstream release (5.14.0). + + -- Maximiliano Curia Tue, 15 Sep 2015 13:49:05 +0200 + kxmlgui (5.14.0-0ubuntu1) wily; urgency=medium * new upstream release -- Clive Johnston Thu, 17 Sep 2015 13:28:24 +0100 +kxmlgui (5.13.0-1) unstable; urgency=medium + + * New upstream release (5.13.0). + + -- Maximiliano Curia Mon, 31 Aug 2015 12:12:27 +0200 + kxmlgui (5.13.0-0ubuntu1) wily; urgency=medium * new upstream release -- Jonathan Riddell Mon, 10 Aug 2015 13:34:36 +0200 +kxmlgui (5.12.0-1) unstable; urgency=medium + + * New upstream release (5.12.0). + + -- Maximiliano Curia Thu, 09 Jul 2015 12:42:55 +0200 + kxmlgui (5.12.0-0ubuntu1) wily; urgency=medium * New upstream release diff -Nru kxmlgui-5.15.0/debian/control kxmlgui-5.18.0/debian/control --- kxmlgui-5.15.0/debian/control 2015-11-03 14:07:20.000000000 +0000 +++ kxmlgui-5.18.0/debian/control 2016-03-07 22:25:43.000000000 +0000 @@ -5,37 +5,37 @@ Uploaders: Maximiliano Curia Build-Depends: cmake (>= 2.8.12), debhelper (>= 9), - extra-cmake-modules (>= 5.15.0~), - libkf5attica-dev (>= 5.15.0~), - libkf5config-dev (>= 5.15.0~), - libkf5configwidgets-dev (>= 5.15.0~), - libkf5globalaccel-dev (>= 5.15.0~), - libkf5i18n-dev (>= 5.15.0~), - libkf5iconthemes-dev (>= 5.15.0~), - libkf5itemviews-dev (>= 5.15.0~), - libkf5textwidgets-dev (>= 5.15.0~), - libkf5widgetsaddons-dev (>= 5.15.0~), - libkf5windowsystem-dev (>= 5.15.0~), + extra-cmake-modules (>= 5.18.0~), + libkf5attica-dev (>= 5.18.0~), + libkf5config-dev (>= 5.18.0~), + libkf5configwidgets-dev (>= 5.18.0~), + libkf5coreaddons-dev (>= 5.18.0~), + libkf5globalaccel-dev (>= 5.18.0~), + libkf5i18n-dev (>= 5.18.0~), + libkf5iconthemes-dev (>= 5.18.0~), + libkf5itemviews-dev (>= 5.18.0~), + libkf5textwidgets-dev (>= 5.18.0~), + libkf5widgetsaddons-dev (>= 5.18.0~), + libkf5windowsystem-dev (>= 5.18.0~), libqt5x11extras5-dev (>= 5.4), pkg-kde-tools (>= 0.15.15ubuntu1~), qtbase5-dev (>= 5.4) Standards-Version: 3.9.6 Homepage: https://projects.kde.org/projects/frameworks/kxmlgui -XS-Testsuite: autopkgtest Vcs-Browser: http://anonscm.debian.org/cgit/pkg-kde/frameworks/kxmlgui.git Vcs-Git: git://anonscm.debian.org/pkg-kde/frameworks/kxmlgui.git Package: libkf5xmlgui-dev Section: libdevel Architecture: any -Depends: libkf5attica-dev (>= 5.15.0~), - libkf5config-dev (>= 5.15.0~), - libkf5configwidgets-dev (>= 5.15.0~), - libkf5globalaccel-dev (>= 5.15.0~), - libkf5iconthemes-dev (>= 5.15.0~), - libkf5itemviews-dev (>= 5.15.0~), - libkf5textwidgets-dev (>= 5.15.0~), - libkf5windowsystem-dev (>= 5.15.0~), +Depends: libkf5attica-dev (>= 5.16.0~), + libkf5config-dev (>= 5.16.0~), + libkf5configwidgets-dev (>= 5.16.0~), + libkf5globalaccel-dev (>= 5.16.0~), + libkf5iconthemes-dev (>= 5.16.0~), + libkf5itemviews-dev (>= 5.16.0~), + libkf5textwidgets-dev (>= 5.16.0~), + libkf5windowsystem-dev (>= 5.16.0~), libkf5xmlgui5 (= ${binary:Version}), qtbase5-dev (>= 5.4), ${misc:Depends}, diff -Nru kxmlgui-5.15.0/debian/libkf5xmlgui5.symbols kxmlgui-5.18.0/debian/libkf5xmlgui5.symbols --- kxmlgui-5.15.0/debian/libkf5xmlgui5.symbols 2015-11-03 14:07:20.000000000 +0000 +++ kxmlgui-5.18.0/debian/libkf5xmlgui5.symbols 2016-03-07 22:25:43.000000000 +0000 @@ -1,4 +1,4 @@ -# SymbolsHelper-Confirmed: 5.14.0+git20150922.0135+15.10 amd64 i386 +# SymbolsHelper-Confirmed: 5.16.0+git20151204.1432+16.04 amd64 i386 libKF5XmlGui.so.5 libkf5xmlgui5 #MINVER# _ZN10KBugReport10closeEventEP11QCloseEvent@Base 4.96.0 _ZN10KBugReport11qt_metacallEN11QMetaObject4CallEiPPv@Base 4.96.0 @@ -122,6 +122,7 @@ _ZN13KXMLGUIClient21findMostRecentXMLFileERK11QStringListR7QString@Base 4.96.0 _ZN13KXMLGUIClient22addStateActionDisabledERK7QStringS2_@Base 4.96.0 _ZN13KXMLGUIClient22setXMLGUIBuildDocumentERK12QDomDocument@Base 4.96.0 + _ZN13KXMLGUIClient24standardsXmlFileLocationEv@Base 5.16.0 _ZN13KXMLGUIClient26getActionsToChangeForStateERK7QString@Base 4.96.0 _ZN13KXMLGUIClient6setXMLERK7QStringb@Base 4.96.0 _ZN13KXMLGUIClient9reloadXMLEv@Base 4.96.0 @@ -246,7 +247,7 @@ _ZN16KShortcutsDialog11qt_metacastEPKc@Base 4.96.0 _ZN16KShortcutsDialog13addCollectionEP17KActionCollectionRK7QString@Base 4.96.0 _ZN16KShortcutsDialog16staticMetaObjectE@Base 4.96.0 - _ZN16KShortcutsDialog19importConfigurationERK7QString@Base 5.14.0+git20150922.0135+15.10 + _ZN16KShortcutsDialog19importConfigurationERK7QString@Base 5.15.0 _ZN16KShortcutsDialog5savedEv@Base 4.96.0 _ZN16KShortcutsDialog6acceptEv@Base 4.98.0 _ZN16KShortcutsDialog9configureEP17KActionCollectionN16KShortcutsEditor15LetterShortcutsEP7QWidgetb@Base 4.96.0 @@ -466,7 +467,7 @@ _ZNK11KMainWindow19autoSaveConfigGroupEv@Base 4.96.0 _ZNK11KMainWindow8dbusNameEv@Base 4.96.0 _ZNK11KMainWindow8toolBarsEv@Base 4.96.0 - (optional=templinst)_ZNK12KConfigGroup9readEntryI10QByteArrayEET_PKcRKS2_@Base 4.100.0 + (optional=templinst|arch=!arm64)_ZNK12KConfigGroup9readEntryI10QByteArrayEET_PKcRKS2_@Base 4.100.0 (optional=templinst|arch=amd64)_ZNK12KConfigGroup9readEntryI5QSizeEET_PKcRKS2_@Base 4.100.0 (optional=templinst)_ZNK12KConfigGroup9readEntryIbEET_PKcRKS1_@Base 5.6.0+git20150122.0048+15.04 _ZNK12KEditToolBar10metaObjectEv@Base 4.96.0 @@ -512,7 +513,7 @@ _ZNK15KShortcutWidget8shortcutEv@Base 4.96.0 _ZNK16KShortcutsDialog10metaObjectEv@Base 4.96.0 _ZNK16KShortcutsDialog17actionCollectionsEv@Base 4.96.0 - _ZNK16KShortcutsDialog19exportConfigurationERK7QString@Base 5.14.0+git20150922.0135+15.10 + _ZNK16KShortcutsDialog19exportConfigurationERK7QString@Base 5.15.0 _ZNK16KShortcutsDialog8sizeHintEv@Base 4.96.0 _ZNK16KShortcutsEditor10isModifiedEv@Base 4.96.0 _ZNK16KShortcutsEditor10metaObjectEv@Base 4.96.0 @@ -612,6 +613,8 @@ _ZTV23KAboutApplicationDialog@Base 4.96.0 _ZTV8KToolBar@Base 4.96.0 _ZTV9KHelpMenu@Base 4.96.0 + _ZZZN11KMainWindow19setAutoSaveSettingsERK7QStringbEd0_NKUlvE_clEvE15qstring_literal@Base 5.16.0+git20151204.1432+16.04 + _ZZZN16KShortcutsDialog23KShortcutsDialogPrivate13toggleDetailsEvENKUlvE0_clEvE15qstring_literal@Base 5.16.0+git20151204.1432+16.04 _ZZZN16KShortcutsDialog23KShortcutsDialogPrivate13toggleDetailsEvENKUlvE_clEvE15qstring_literal@Base 4.96.0 (c++)"non-virtual thunk to KAboutApplicationDialog::~KAboutApplicationDialog()@Base" 4.96.0 (c++)"non-virtual thunk to KBugReport::~KBugReport()@Base" 4.96.0 diff -Nru kxmlgui-5.15.0/debian/libkf5xmlgui-data.install kxmlgui-5.18.0/debian/libkf5xmlgui-data.install --- kxmlgui-5.15.0/debian/libkf5xmlgui-data.install 2015-11-03 14:05:39.000000000 +0000 +++ kxmlgui-5.18.0/debian/libkf5xmlgui-data.install 2016-03-07 22:25:43.000000000 +0000 @@ -1,3 +1,2 @@ etc/xdg/ui/ui_standards.rc -usr/share/kf5/kxmlgui/ usr/share/locale/*/*/kxmlgui5.mo diff -Nru kxmlgui-5.15.0/po/af/kxmlgui5.po kxmlgui-5.18.0/po/af/kxmlgui5.po --- kxmlgui-5.15.0/po/af/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/af/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2006-01-12 16:33+0200\n" "Last-Translator: JUANITA FRANZ \n" "Language-Team: AFRIKAANS \n" @@ -13,14 +13,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Frikkie Thirion,Juanita Franz " - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "frix@expertron.co.za,juanita.franz@vr-web.de " - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -894,16 +886,26 @@ msgid "None" msgstr "Geen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Untrusted" msgid "Unsupported Key" msgstr "Wantrou" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Frikkie Thirion,Juanita Franz " + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "frix@expertron.co.za,juanita.franz@vr-web.de " + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/ar/kxmlgui5.po kxmlgui-5.18.0/po/ar/kxmlgui5.po --- kxmlgui-5.15.0/po/ar/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ar/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-08-08 13:54+0300\n" "Last-Translator: Safa Alfulaij \n" "Language-Team: Arabic \n" @@ -33,15 +33,6 @@ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "زايد السعيدي,محمد هاني صباغ,صفا الفليج" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"zayed.alsaidi@gmail.com,hannysabbagh@hotmail.com,safaalfulaij@hotmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -862,14 +853,25 @@ msgid "None" msgstr "بدون" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "المفتاح الذي ضغط عليه غير مدعوم من قبل Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "مفتاح غير مدعوم" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "زايد السعيدي,محمد هاني صباغ,صفا الفليج" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"zayed.alsaidi@gmail.com,hannysabbagh@hotmail.com,safaalfulaij@hotmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "أضف إلى شريط الأدوات" diff -Nru kxmlgui-5.15.0/po/as/kxmlgui5.po kxmlgui-5.18.0/po/as/kxmlgui5.po --- kxmlgui-5.15.0/po/as/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/as/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-12-26 15:19+0530\n" "Last-Translator: Amitakhya Phukan <অমিতাক্ষ ফুকন>\n" "Language-Team: Assamese \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 0.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "অমিতাক্ষ ফুকন" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "aphukan@fedoraproject.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -788,14 +780,24 @@ msgid "None" msgstr "শূণ্য" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "অসমৰ্থিত চাবি" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "অমিতাক্ষ ফুকন" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "aphukan@fedoraproject.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "টুল-বাৰত যোগ কৰক" diff -Nru kxmlgui-5.15.0/po/ast/kxmlgui5.po kxmlgui-5.18.0/po/ast/kxmlgui5.po --- kxmlgui-5.15.0/po/ast/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ast/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-04-06 15:05+0100\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-12-10 02:02+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,18 +18,8 @@ "X-Poedit-Language: asturian\n" "X-Generator: Lokalize 2.0\n" -#, fuzzy -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Iñigo Varela" - -#, fuzzy -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "malditoastur@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 -#, fuzzy, kde-format +#, kde-format msgid "About %1" msgstr "Tocante a %1" @@ -44,20 +34,18 @@ "b>" #: kaboutapplicationdialog.cpp:136 -#, fuzzy, kde-format +#, kde-format msgid "License: %1" msgstr "Llicencia: %1" #: kaboutapplicationdialog.cpp:148 -#, fuzzy msgid "&About" msgstr "&Tocante a" #: kaboutapplicationdialog.cpp:153 -#, fuzzy, kde-format -#| msgid "
Version: %1" +#, kde-format msgid "Version %1" -msgstr "
Versión: %1" +msgstr "
Versión %1" #: kaboutapplicationdialog.cpp:158 #, kde-format @@ -67,9 +55,8 @@ msgstr "" #: kaboutapplicationdialog.cpp:168 -#, fuzzy msgid "&Version" -msgstr "Versión:" +msgstr "&Versión:" #: kaboutapplicationdialog.cpp:188 #, fuzzy @@ -86,17 +73,14 @@ msgstr "Por favor use %2.\n" #: kaboutapplicationdialog.cpp:223 -#, fuzzy msgid "A&uthor" msgstr "A&utor" #: kaboutapplicationdialog.cpp:223 -#, fuzzy msgid "A&uthors" msgstr "A&utores" #: kaboutapplicationdialog.cpp:250 -#, fuzzy msgid "&Thanks To" msgstr "&Gracies a" @@ -106,7 +90,6 @@ msgstr "T&raducción" #: kaboutapplicationdialog.cpp:321 -#, fuzzy msgid "License Agreement" msgstr "Alcuerdu de Llicencia" @@ -161,13 +144,13 @@ msgstr "" #: kaboutapplicationpersonlistdelegate_p.cpp:264 -#, fuzzy, kde-format +#, kde-format msgctxt "@item Contributor name in about dialog." msgid "%1" msgstr "%1" #: kaboutapplicationpersonmodel_p.cpp:206 -#, fuzzy, kde-format +#, kde-format msgctxt "City, Country" msgid "%1, %2" msgstr "%1, %2" @@ -179,7 +162,6 @@ msgstr "Otru" #: kaboutapplicationpersonmodel_p.cpp:314 -#, fuzzy msgctxt "A type of link." msgid "Blog" msgstr "Blogue" @@ -191,19 +173,12 @@ msgstr "Páxina aniciu" #: kaboutkdedialog_p.cpp:43 -#, fuzzy msgid "About KDE" msgstr "Tocante a KDE" #: kaboutkdedialog_p.cpp:46 -#, fuzzy -#| msgid "" -#| "KDE - Be Free!
Platform Version %1" msgid "KDE - Be Free!" -msgstr "" -"KDE - Sé llibre!
Platform Version %1" +msgstr "KDE - ¡Sé llibre!" #: kaboutkdedialog_p.cpp:55 #, kde-format @@ -218,6 +193,15 @@ ">Visit %2 for more information about the KDE community " "and the software we produce." msgstr "" +"KDE ye una rede mundial d'inxenieros/es de software, artistes, " +"escritores, traductores y facilitadores qu'unviaron contribuciones al " +"desendolcu de software llibre. Esta comunidá creó cientos " +"d'aplicaciones de software llibre como parte del framework KDE, estayes de " +"trabayu y aplicaciones.

KDE ye una empresa coperativa na que dal " +"entidá controla los esfuercios o productos de KDE cola esclusión d'otros. " +"Dámos-y l'acoyida al tol mundiu pa xunise y contribuyir en KDE, incluyéndote " +"a tigo.

Visita %2 pa más información tocante " +"a la comunidá KDE y el software que producimos." #: kaboutkdedialog_p.cpp:74 #, kde-format @@ -230,6 +214,14 @@ "improvement then you are welcome to use the bug tracking system to register " "your wish. Make sure you use the severity called \"Wishlist\"." msgstr "" +"Siempres pue ameyorase'l software y l'equipu KDE ta preparáu pa " +"facelo. Por embargu, tu (l'usuariu), has dicimos cuando daqué nun furrule " +"como s'esperaba o podría ameyorase.

KDE tien un sistema de " +"rastrexu de fallos. Visita %1 o usa'l diálogu «Informar " +"fallu...» dende'l menú d'«Ayuda» pa informar de fallos.

Si tienes " +"una suxerencia p'ameyorar, entós dámoste l'acoyida a usar el sistema de " +"rastrexu de fallos pa rexistrar el to deseyu. Asegúrate qu'uses la severidá " +"nomada «Wishlist»." #: kaboutkdedialog_p.cpp:92 #, kde-format @@ -261,25 +253,21 @@ msgstr "" #: kaboutkdedialog_p.cpp:133 -#, fuzzy msgctxt "About KDE" msgid "&About" msgstr "&Tocante a" #: kaboutkdedialog_p.cpp:134 -#, fuzzy msgid "&Report Bugs or Wishes" -msgstr "&Informar de fallos o deseos" +msgstr "&Informar fallos o deseyos" #: kaboutkdedialog_p.cpp:135 -#, fuzzy msgid "&Join KDE" msgstr "&Xúnite a KDE" #: kaboutkdedialog_p.cpp:136 -#, fuzzy msgid "&Support KDE" -msgstr "&Andecha con KDE" +msgstr "&Sofita KDE" #: kactionconflictdetector.cpp:49 #, fuzzy, kde-format @@ -293,14 +281,12 @@ "Nun s'executará denguna aición." #: kactionconflictdetector.cpp:53 -#, fuzzy msgid "Ambiguous shortcut detected" -msgstr "Deteutóse un accesu rápidu ambiguu" +msgstr "Deteutóse un atayu ambiguu" #: kbugreport.cpp:97 kbugreport.cpp:119 -#, fuzzy msgid "Submit Bug Report" -msgstr "Unvia un informe de fallos" +msgstr "Unviu d'informe de fallos" #: kbugreport.cpp:130 #, fuzzy @@ -317,9 +303,8 @@ msgstr "De:" #: kbugreport.cpp:139 -#, fuzzy msgid "Configure Email..." -msgstr "Configurar Corréu-e..." +msgstr "Configurar corréu..." #: kbugreport.cpp:146 #, fuzzy @@ -333,7 +318,6 @@ msgstr "Pa:" #: kbugreport.cpp:156 -#, fuzzy msgid "&Send" msgstr "&Unviar" @@ -358,7 +342,6 @@ "l'aplicación correuta" #: kbugreport.cpp:166 -#, fuzzy msgid "Application: " msgstr "Aplicación: " @@ -372,7 +355,6 @@ "una versión postrera enantes d'unviar un informe de fallos" #: kbugreport.cpp:194 -#, fuzzy msgid "Version:" msgstr "Versión:" @@ -382,12 +364,10 @@ msgstr "nun hai versión (fallu del programador)" #: kbugreport.cpp:212 -#, fuzzy msgid "OS:" msgstr "SO:" #: kbugreport.cpp:220 -#, fuzzy msgid "Compiler:" msgstr "Compilador:" @@ -413,7 +393,6 @@ msgstr "Normal" #: kbugreport.cpp:230 -#, fuzzy msgid "Wishlist" msgstr "Llista de deseyos" @@ -440,22 +419,20 @@ "Si calca «Unviar», unviaráse un mensax al encargáu d'esti programa.\n" #: kbugreport.cpp:279 -#, fuzzy msgid "" "To submit a bug report, click on the button below. This will open a web " "browser window on http://bugs.kde.org " "where you will find a form to fill in. The information displayed above will " "be transferred to that server." msgstr "" -"Pa mandar un informe de fallos, calca'l botón d'abaxo. Abriráse una " -"ventana del restolador web en http://bugs." -"kde.org au atopará un formulariu pa rellenar. La información amosada " -"enriba tresferiráse a esi sirvidor." +"Pa unviar un informe de fallos, primi nel botón d'embaxo. Esto abrirá " +"una ventana del restolador web en http://" +"bugs.kde.org u alcontrarás un formulariu pa rellenar. La información " +"amosada enriba tresferiráse a esi sirvidor." #: kbugreport.cpp:294 -#, fuzzy msgid "&Launch Bug Report Wizard" -msgstr "&Llanzar l'asistente d'informe de fallos" +msgstr "&Llanciar l'encontu pa informar fallos" #: kbugreport.cpp:357 #, fuzzy @@ -547,13 +524,12 @@ msgstr "Informe de fallos unviáu, gracies pola so contribución." #: kbugreport.cpp:467 -#, fuzzy msgid "" "Close and discard\n" "edited message?" msgstr "" "¿Zarrar y descartar\n" -"el mensax editáu?" +"el mensaxe editáu?" #: kbugreport.cpp:468 #, fuzzy @@ -573,7 +549,6 @@ msgstr "Desactivar la comprobación automática" #: kcheckaccelerators.cpp:232 -#, fuzzy msgctxt "@action:button" msgid "Close" msgstr "Zarrar" @@ -645,12 +620,10 @@ msgstr "Reaniciar Configurar barres de ferramientes" #: kedittoolbar.cpp:682 -#, fuzzy msgid "Reset" -msgstr "Restablecer" +msgstr "Reafitar" #: kedittoolbar.cpp:1010 -#, fuzzy msgid "&Toolbar:" msgstr "Barra de &ferramientes:" @@ -716,7 +689,7 @@ msgstr "Llista d'aiciones: %1" #: kedittoolbar.cpp:1353 kedittoolbar.cpp:1380 -#, fuzzy, kde-format +#, kde-format msgctxt "@label Action tooltip in toolbar editor, below the action list" msgid "%1" msgstr "%1" @@ -760,14 +733,13 @@ #. i18n: ectx: Menu (help) #: khelpmenu.cpp:169 ui_standards.rc:177 -#, fuzzy msgid "&Help" msgstr "&Ayuda" #: kkeysequencewidget.cpp:128 #, kde-format msgid "Shortcut '%1' in Application %2 for action %3\n" -msgstr "" +msgstr "L'atayu «%1» na aplicación %2 pa l'aición %3\n" #: kkeysequencewidget.cpp:138 #, kde-format @@ -845,7 +817,7 @@ #: kkeysequencewidget.cpp:465 msgid "Reserved Shortcut" -msgstr "" +msgstr "Atayu acutáu" #: kkeysequencewidget.cpp:466 msgid "" @@ -883,16 +855,26 @@ msgid "None" msgstr "Dengún" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 #, fuzzy msgid "The key you just pressed is not supported by Qt." msgstr "La tecla qu'acabes de calcar nun se contempla en Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy msgid "Unsupported Key" msgstr "Tecla non funcional" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Softastur" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "alministradores@softastur.org" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" @@ -904,10 +886,8 @@ msgstr "Configurar Atayos..." #: ksendbugmail/main.cpp:45 -#, fuzzy -#| msgid "Error initializing provider." msgid "Error connecting to server." -msgstr "Fallu anicializando'l fornidor" +msgstr "Fallu coneutando al sirvidor." #: ksendbugmail/main.cpp:48 #, fuzzy @@ -923,7 +903,7 @@ #: ksendbugmail/main.cpp:54 msgid "Time out waiting for server interaction." -msgstr "" +msgstr "Tiempu escosao esperando pola interaición del sirvidor" #: ksendbugmail/main.cpp:58 #, fuzzy, kde-format @@ -980,9 +960,8 @@ msgstr "Desaniciar" #: kshortcutschemeseditor.cpp:78 -#, fuzzy msgid "More Actions" -msgstr "Más Aiciones" +msgstr "Más aiciones" #: kshortcutschemeseditor.cpp:82 #, fuzzy @@ -1010,7 +989,6 @@ msgstr "Nome del esquema nuevu:" #: kshortcutschemeseditor.cpp:103 -#, fuzzy msgid "New Scheme" msgstr "Esquema nuevu" @@ -1087,15 +1065,13 @@ #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:33 -#, fuzzy msgid "Action" msgstr "Aición" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:38 -#, fuzzy msgid "Shortcut" -msgstr "Accesu rápidu" +msgstr "Atayu" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:43 @@ -1169,7 +1145,6 @@ msgstr "Alternativu:" #: kshortcutseditor.cpp:705 -#, fuzzy msgid "Global:" msgstr "Global:" @@ -1205,9 +1180,8 @@ msgstr "Camudar la llingua de la aplicación" #: kswitchlanguagedialog_p.cpp:157 -#, fuzzy msgid "Please choose the language which should be used for this application:" -msgstr "Escueyi la llingua que quier usar nesta aplicación:" +msgstr "Escueyi la llingua que debería usase pa esta aplicación:" #: kswitchlanguagedialog_p.cpp:184 #, fuzzy @@ -1238,9 +1212,8 @@ msgstr "La llingua de l'aplicación camudóse" #: kswitchlanguagedialog_p.cpp:396 -#, fuzzy msgid "Primary language:" -msgstr "Llinguax primariu" +msgstr "Llingua primaria:" #: kswitchlanguagedialog_p.cpp:396 #, fuzzy @@ -1318,24 +1291,21 @@ msgstr "Posición del testu" #: ktoolbar.cpp:324 -#, fuzzy msgid "Icons Only" msgstr "Namái iconos" #: ktoolbar.cpp:325 -#, fuzzy msgid "Text Only" msgstr "Namái testu" #: ktoolbar.cpp:326 #, fuzzy msgid "Text Alongside Icons" -msgstr "Testu xunto a iconos" +msgstr "Testu cabo a iconos" #: ktoolbar.cpp:327 -#, fuzzy msgid "Text Under Icons" -msgstr "Testu baxo iconos" +msgstr "Testu so iconos" #: ktoolbar.cpp:335 #, fuzzy @@ -1374,13 +1344,13 @@ msgstr "Bloquiar les posiciones de les barres de ferramientes" #: ktoolbar.cpp:1357 -#, fuzzy, kde-format +#, kde-format msgctxt "@action:intoolbar Text label of toolbar button" msgid "%1" msgstr "%1" #: ktoolbar.cpp:1358 -#, fuzzy, kde-format +#, kde-format msgctxt "@info:tooltip Tooltip of toolbar button" msgid "%1" msgstr "%1" @@ -1391,12 +1361,10 @@ msgstr "Barres de ferramientes amosaes" #: kundoactions.cpp:43 -#, fuzzy msgid "Redo" msgstr "Refacer" #: kundoactions.cpp:62 -#, fuzzy msgid "Undo" msgstr "Desfacer" @@ -1407,7 +1375,6 @@ #. i18n: ectx: Menu (file) #: ui_standards.rc:5 -#, fuzzy msgid "&File" msgstr "&Ficheru" @@ -1419,49 +1386,41 @@ #. i18n: ectx: Menu (edit) #: ui_standards.rc:61 -#, fuzzy msgid "&Edit" msgstr "&Editar" #. i18n: ectx: Menu (move) #: ui_standards.rc:84 -#, fuzzy msgctxt "@title:menu Game move" msgid "&Move" msgstr "&Mover" #. i18n: ectx: Menu (view) #: ui_standards.rc:101 -#, fuzzy msgid "&View" msgstr "&Ver" #. i18n: ectx: Menu (go) #: ui_standards.rc:117 -#, fuzzy msgid "&Go" msgstr "&Dir" #. i18n: ectx: Menu (bookmarks) #: ui_standards.rc:138 -#, fuzzy msgid "&Bookmarks" msgstr "&Marcadores" #. i18n: ectx: Menu (tools) #: ui_standards.rc:144 -#, fuzzy msgid "&Tools" msgstr "&Ferramientes" #. i18n: ectx: Menu (settings) #: ui_standards.rc:148 -#, fuzzy msgid "&Settings" msgstr "&Preferencies" #. i18n: ectx: ToolBar (mainToolBar) #: ui_standards.rc:194 -#, fuzzy msgid "Main Toolbar" msgstr "Barra de ferramientes principal" diff -Nru kxmlgui-5.15.0/po/be/kxmlgui5.po kxmlgui-5.18.0/po/be/kxmlgui5.po --- kxmlgui-5.15.0/po/be/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/be/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-09-06 15:21+0300\n" "Last-Translator: Darafei Praliaskouski \n" "Language-Team: Belarusian \n" @@ -26,14 +26,6 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Дарафей Праляскоўскі" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "komzpa@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -891,16 +883,26 @@ msgid "None" msgstr "Няма" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Unsorted" msgid "Unsupported Key" msgstr "Несартаваны" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Дарафей Праляскоўскі" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "komzpa@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Дадаць на панель" diff -Nru kxmlgui-5.15.0/po/be@latin/kxmlgui5.po kxmlgui-5.18.0/po/be@latin/kxmlgui5.po --- kxmlgui-5.15.0/po/be@latin/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/be@latin/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-08-30 01:10+0300\n" "Last-Translator: Ihar Hrachyshka \n" "Language-Team: Belarusian Latin \n" @@ -19,14 +19,6 @@ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Ihar Hračyška" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "ihar.hrachyshka@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -799,14 +791,24 @@ msgid "None" msgstr "Niama" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Niepadtrymanaja klaviša" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Ihar Hračyška" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "ihar.hrachyshka@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dadaj u panel pryładździa" diff -Nru kxmlgui-5.15.0/po/bg/kxmlgui5.po kxmlgui-5.18.0/po/bg/kxmlgui5.po --- kxmlgui-5.15.0/po/bg/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/bg/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-07-23 01:52+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -21,14 +21,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Ясен Праматаров,Радостин Раднев,Златко Попов" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "yasen@lindeas.com,radnev@yahoo.com,zlatkopopov@fsa-bg.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -890,14 +882,24 @@ msgid "None" msgstr "Без" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Клавишът, който натиснахте, не се поддържа от Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Неподдържан клавиш" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Ясен Праматаров,Радостин Раднев,Златко Попов" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "yasen@lindeas.com,radnev@yahoo.com,zlatkopopov@fsa-bg.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Добавяне в лентата с инструменти" diff -Nru kxmlgui-5.15.0/po/bn/kxmlgui5.po kxmlgui-5.18.0/po/bn/kxmlgui5.po --- kxmlgui-5.15.0/po/bn/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/bn/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-07-16 14:27+0530\n" "Last-Translator: Deepayan Sarkar \n" "Language-Team: American English \n" @@ -21,14 +21,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "দীপায়ন সরকার" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "deepayan.sarkar@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -833,14 +825,24 @@ msgid "None" msgstr "কিছু না" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "আপনি যে key-টি চেপেছেন সেটি কিউ-টি (Qt) সমর্থন করে না।" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "অসমর্থিত কী (key)" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "দীপায়ন সরকার" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "deepayan.sarkar@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "টুলবার-এ যোগ করো" diff -Nru kxmlgui-5.15.0/po/bn_IN/kxmlgui5.po kxmlgui-5.18.0/po/bn_IN/kxmlgui5.po --- kxmlgui-5.15.0/po/bn_IN/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/bn_IN/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-12-28 14:35+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali INDIA \n" @@ -20,14 +20,6 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "রুণা ভট্টাচার্য্য" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "runabh@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -764,14 +756,24 @@ msgid "None" msgstr "শূণ্য" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "টেপা কি-টি Qt-র মধ্যে সমর্থিত হয় না।" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "অসমর্থিত-কি" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "রুণা ভট্টাচার্য্য" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "runabh@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "টুল-বারে যোগ করুন" diff -Nru kxmlgui-5.15.0/po/br/kxmlgui5.po kxmlgui-5.18.0/po/br/kxmlgui5.po --- kxmlgui-5.15.0/po/br/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/br/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2007-10-15 22:19+0200\n" "Last-Translator: Jañ-Mai Drapier \n" "Language-Team: Brezhoneg \n" @@ -18,14 +18,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Thierry Vignaud, Jañ-Mai Drapier" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "tvignaud@mandriva.com, jdrapier@club-internet.fr" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -795,16 +787,26 @@ msgid "None" msgstr "Ebet" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Unsorted" msgid "Unsupported Key" msgstr "N'eo ket rummet" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Thierry Vignaud, Jañ-Mai Drapier" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "tvignaud@mandriva.com, jdrapier@club-internet.fr" + #: kmenumenuhandler_p.cpp:50 #, fuzzy #| msgid "Add to toolbar" diff -Nru kxmlgui-5.15.0/po/bs/kxmlgui5.po kxmlgui-5.18.0/po/bs/kxmlgui5.po --- kxmlgui-5.15.0/po/bs/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/bs/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-12-21 17:26+0000\n" "Last-Translator: Ademovic Saudin \n" "Language-Team: bosanski \n" @@ -28,14 +28,6 @@ "X-Text-Markup: kde4\n" "X-Environment: kde\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Samir Ribić,Ademovic Saudin,Vedran Ljubovic" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "samir.ribic@etf.unsa.ba,sademovic1@etf.unsa.ba,vljubovic@smartnet.ba" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -866,14 +858,24 @@ msgid "None" msgstr "nijedna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ne podržava taster koji ste upravo pritisnuli." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodržani taster" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Samir Ribić,Ademovic Saudin,Vedran Ljubovic" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "samir.ribic@etf.unsa.ba,sademovic1@etf.unsa.ba,vljubovic@smartnet.ba" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj na alatnu traku" diff -Nru kxmlgui-5.15.0/po/ca/kxmlgui5.po kxmlgui-5.18.0/po/ca/kxmlgui5.po --- kxmlgui-5.15.0/po/ca/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ca/kxmlgui5.po 2016-01-02 16:54:49.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,30 +13,22 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-09-22 21:05+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-12 14:51+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" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Sebastià Pla,Antoni Bella,Albert Astals,Josep Ma. Ferrer" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sps@sastia.com,antonibella5@yahoo.com,aacid@kde.org,txemaq@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" -msgstr "Quant a %1" +msgstr "Quant al %1" #: kaboutapplicationdialog.cpp:98 #, kde-format @@ -63,7 +55,7 @@ "Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " "%4 windowing system
" msgstr "" -"En ús:
  • KDE Frameworks %1
  • Qt %2 (construïdes amb %3)
  • Frameworks %1 del KDE
  • Qt %2 (construïdes amb %3)
  • El sistema de finestres %4
" #: kaboutapplicationdialog.cpp:168 @@ -304,7 +296,7 @@ #: kaboutkdedialog_p.cpp:136 msgid "&Support KDE" -msgstr "&Contribuir al KDE" +msgstr "&Contribució al KDE" #: kactionconflictdetector.cpp:49 #, kde-format @@ -719,9 +711,9 @@ msgid_plural "" "The shortcut '%2' conflicts with the following key combinations:\n" msgstr[0] "" -"La drecera «%2» està en conflicte amb la combinació de tecles següent:\n" +"La drecera «%2» entra en conflicte amb la combinació de tecles següent:\n" msgstr[1] "" -"La drecera «%2» està en conflicte amb les combinacions de tecles següents:\n" +"La drecera «%2» entra en conflicte amb les combinacions de tecles següents:\n" #: kkeysequencewidget.cpp:144 msgctxt "%1 is the number of shortcuts with which there is a conflict" @@ -830,14 +822,24 @@ msgid "None" msgstr "Cap" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." -msgstr "La tecla que heu premut no està implementada per Qt." +msgstr "La tecla que heu premut no està implementada a les Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla no implementada" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Sebastià Pla,Antoni Bella,Albert Astals,Josep Ma. Ferrer" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sps@sastia.com,antonibella5@yahoo.com,aacid@kde.org,txemaq@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Afegeix a la barra d'eines" @@ -913,7 +915,7 @@ #: kshortcutschemeseditor.cpp:84 msgid "Export Scheme..." -msgstr "Exporta un esquema..." +msgstr "Exporta l'esquema..." #: kshortcutschemeseditor.cpp:86 msgid "Import Scheme..." @@ -1005,7 +1007,7 @@ #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:43 msgid "Alternate" -msgstr "Alternatiu" +msgstr "Alternativa" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:48 @@ -1015,7 +1017,7 @@ #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:53 msgid "Global Alternate" -msgstr "Global alternatiu" +msgstr "Global alternativa" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:58 @@ -1063,7 +1065,7 @@ #. i18n: ectx: property (text), widget (QLabel, altLabel) #: kshortcutseditor.cpp:704 kshortcutwidget.ui:52 msgid "Alternate:" -msgstr "Alternatiu:" +msgstr "Alternativa:" #: kshortcutseditor.cpp:705 msgid "Global:" @@ -1071,7 +1073,7 @@ #: kshortcutseditor.cpp:706 msgid "Global alternate:" -msgstr "Global alternatiu:" +msgstr "Global alternativa:" #: kshortcutseditor.cpp:721 msgid "Action Name" @@ -1109,7 +1111,7 @@ "contain a proper translation." msgstr "" "Afegeix un o més idiomes que s'usaran si les altres traduccions no contenen " -"una traducció apropiada." +"cap traducció apropiada." #: kswitchlanguagedialog_p.cpp:281 kswitchlanguagedialog_p.cpp:303 msgid "" diff -Nru kxmlgui-5.15.0/po/ca@valencia/kxmlgui5.po kxmlgui-5.18.0/po/ca@valencia/kxmlgui5.po --- kxmlgui-5.15.0/po/ca@valencia/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ca@valencia/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -1,53 +1,39 @@ -# Translation of kxmlgui5.po to Catalan -# Copyright (C) 1998-2014 This_file_is_part_of_KDE +# Translation of kxmlgui5.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: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2014-04-06 11:41+0200\n" -"Last-Translator: Josep Ma. Ferrer \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-12 14:51+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" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Sebastià Pla,Antoni Bella,Albert Astals,Josep Ma. Ferrer" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sps@sastia.com,antonibella5@orange.es,aacid@kde.org,txemaq@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" -msgstr "Quant a %1" +msgstr "Quant al %1" #: kaboutapplicationdialog.cpp:98 -#, fuzzy, kde-format -#| msgid "" -#| "KDE - Be Free!
Frameworks Version " -#| "%1" +#, kde-format msgid "%1" -msgstr "" -"KDE - Sigues lliure!
Versió %1 de les " -"Frameworks" +msgstr "%1" #: kaboutapplicationdialog.cpp:136 #, kde-format @@ -61,7 +47,7 @@ #: kaboutapplicationdialog.cpp:153 #, kde-format msgid "Version %1" -msgstr "" +msgstr "Versió %1" #: kaboutapplicationdialog.cpp:158 #, kde-format @@ -69,12 +55,12 @@ "Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " "%4 windowing system
" msgstr "" +"En ús:
  • Frameworks %1 del KDE
  • Qt %2 (construïdes amb %3)
  • El sistema de finestres %4
" #: kaboutapplicationdialog.cpp:168 -#, fuzzy -#| msgid "Version:" msgid "&Version" -msgstr "Versió:" +msgstr "&Versió" #: kaboutapplicationdialog.cpp:188 msgid "" @@ -82,7 +68,7 @@ "bugs.\n" msgstr "" "Per favor, useu http://bugs.kde.org per " -"a informar d'errors.\n" +"a informar dels errors.\n" #: kaboutapplicationdialog.cpp:192 kaboutapplicationdialog.cpp:196 #, kde-format @@ -191,21 +177,15 @@ #: kaboutapplicationpersonmodel_p.cpp:322 msgctxt "A type of link." msgid "Homepage" -msgstr "Pàgina inici" +msgstr "Pàgina web" #: kaboutkdedialog_p.cpp:43 msgid "About KDE" msgstr "Quant al KDE" #: kaboutkdedialog_p.cpp:46 -#, fuzzy -#| msgid "" -#| "KDE - Be Free!
Frameworks Version " -#| "%1" msgid "KDE - Be Free!" -msgstr "" -"KDE - Sigues lliure!
Versió %1 de les " -"Frameworks" +msgstr "KDE - Sigues lliure!" #: kaboutkdedialog_p.cpp:55 #, kde-format @@ -225,11 +205,11 @@ "programari lliure (Free Software). Esta comunitat ha " "creat centenars d'aplicacions de programari lliure com a part dels entorns " "de treball del KDE («KDE Frameworks»), espais de treball i aplicacions.

KDE és una iniciativa cooperativa en que cap entitat individual " -"controla els esforços o els productes de KDE per a excloure'n d'altres. " -"Tothom és benvingut a afegir-se i col·laborar amb el KDE, incloent-vos.

Visiteu %2 per a més informació sobre la comunitat " -"KDE i el programari que produïm." +">
El KDE és una iniciativa cooperativa en el qual cap entitat " +"individual controla els esforços o els productes del KDE per a excloure'n " +"d'altres. Tothom és benvingut a afegir-se i col·laborar amb el KDE, incloent-" +"vos.

Visiteu %2 per a més informació sobre la " +"comunitat KDE i el programari que produïm." #: kaboutkdedialog_p.cpp:74 #, kde-format @@ -244,12 +224,13 @@ msgstr "" "Els programes sempre es poden millorar, i l'equip del KDE està " "preparat per a fer-ho. En canvi, vós - l'usuari - heu de dir-nos quan alguna " -"cosa no funciona tal com s'espera o es pot fer millor.

KDE té un " -"sistema de seguiment d'errors. Visiteu %1 o utilitzeu el " -"diàleg «Informe d'errors...» des del menú «Ajuda» per a informar d'errors. " -"

Si teniu un suggeriment de millora, vos convidem a usar el " -"sistema de seguiment d'errors per a registrar la vostra petició. Assegureu-" -"vos d'usar el nivell de severitat anomenat «Llista de desitjos»." +"cosa no funciona tal com s'espera o si es pot fer millor.

El KDE " +"té un sistema de seguiment d'errors. Visiteu %1 o " +"utilitzeu el diàleg «Informa d'un error...» des del menú «Ajuda» per a " +"informar-ne.

Si teniu un suggeriment de millora, vos convidem a " +"usar el sistema de seguiment d'errors per a registrar la vostra petició. " +"Assegureu-vos d'usar el nivell de severitat anomenat «Llista de " +"desitjos» (Wishlist)." #: kaboutkdedialog_p.cpp:92 #, kde-format @@ -266,9 +247,9 @@ "l'equip del KDE. Podeu unir-vos als equips nacionals que tradueixen les " "interfícies de programa. Podeu proporcionar gràfics, temes, sons i millorar " "la documentació. Vós decidiu!

Visiteu %1 si " -"voleu informació sobre projectes en els que podeu participar.

Si " -"vos cal més informació o documentació, llavors una visita a " -"%2 vos proporcionarà el que necessiteu." +"voleu informació sobre projectes en els quals podeu participar.

Si vos cal més informació o documentació, llavors una visita a %2 vos proporcionarà el que necessiteu." #: kaboutkdedialog_p.cpp:114 #, kde-format @@ -287,22 +268,23 @@ "advance for your support." msgstr "" "El KDE és i sempre serà disponible sense càrrecs, però la seua creació " -"no és debades.

Per donar suport al desenvolupament la comunitat " +"no és debades.

Per donar suport al desenvolupament, la comunitat " "KDE va formar la KDE e.V., una organització sense ànim de lucre, fundada " "legalment a Alemanya. La KDE e.V. representa la comunitat KDE en qüestions " "legals i financeres. Consulteu a %1 la informació quant a " -"KDE e.V.

El KDE es beneficia de molts tipus de col·laboracions, " -"inclosa la financera. Els fons obtinguts s'utilitzen per a tornar als seus " -"membres i altres persones les despeses incorregudes en col·laborar amb el " -"KDE. Altres fons s'utilitzen per al suport legal i per organitzar " -"conferències i reunions.

Vos animem a ajudar al KDE mitjançant " -"donacions monetàries, usant un dels mitjans descrits a %2." -"

Moltes gràcies per avant per la vostra ajuda." +"la KDE e.V.

El KDE es beneficia de molts tipus de " +"col·laboracions, inclosa la financera. Els fons obtinguts s'utilitzen per a " +"tornar als seus membres i altres persones les despeses incorregudes a " +"col·laborar amb el KDE. Altres fons s'utilitzen per al suport legal i per " +"organitzar conferències i reunions.

Vos animem a ajudar al KDE " +"mitjançant donacions monetàries, usant un dels mitjans descrits a %2.

Moltes gràcies per avant per la vostra ajuda." #: kaboutkdedialog_p.cpp:133 msgctxt "About KDE" msgid "&About" -msgstr "&Quant al" +msgstr "&Quant a" #: kaboutkdedialog_p.cpp:134 msgid "&Report Bugs or Wishes" @@ -310,11 +292,11 @@ #: kaboutkdedialog_p.cpp:135 msgid "&Join KDE" -msgstr "&Uneix-te a KDE" +msgstr "&Uneix-te al KDE" #: kaboutkdedialog_p.cpp:136 msgid "&Support KDE" -msgstr "&Contribuir al KDE" +msgstr "&Contribució al KDE" #: kactionconflictdetector.cpp:49 #, kde-format @@ -323,7 +305,7 @@ "from the 'Settings' menu to solve the ambiguity.\n" "No action will be triggered." msgstr "" -"La seqüència de tecles «%1» és ambigua. Useu «Configura dreceres»\n" +"La seqüència de tecles «%1» és ambigua. Useu «Configura les dreceres»\n" "des del menú «Arranjament» per a solucionar l'ambigüitat.\n" "No s'activarà cap acció." @@ -339,8 +321,8 @@ msgid "" "Your email address. If incorrect, use the Configure Email button to change it" msgstr "" -"La vostra adreça de correu. Si és incorrecta, useu el botó de configuració " -"de correu per a canviar-la" +"La vostra adreça de correu. Si és incorrecta, useu el botó «Configura el " +"correu» per a canviar-la" #: kbugreport.cpp:131 msgctxt "Email sender address" @@ -378,8 +360,9 @@ "The application for which you wish to submit a bug report - if incorrect, " "please use the Report Bug menu item of the correct application" msgstr "" -"L'aplicació per a la que voleu enviar un informe d'error - si és incorrecta, " -"useu l'element de menú d'informació d'error de l'aplicació correcta" +"L'aplicació per a la qual voleu enviar un informe d'error -si és " +"incorrecta-, useu l'element de menú «Informa d'un error» des de l'aplicació " +"correcta" #: kbugreport.cpp:166 msgid "Application: " @@ -390,8 +373,8 @@ "The version of this application - please make sure that no newer version is " "available before sending a bug report" msgstr "" -"La versió d'esta aplicació - per favor, assegureu-vos que no hi ha " -"disponible cap versió més nova abans d'enviar un informe d'error" +"La versió d'esta aplicació -per favor, assegureu-vos que no hi ha disponible " +"cap versió més nova abans d'enviar un informe d'error-" #: kbugreport.cpp:194 msgid "Version:" @@ -399,7 +382,7 @@ #: kbugreport.cpp:199 msgid "no version set (programmer error)" -msgstr "cap versió de programa (error del programador)" +msgstr "cap versió del programa (error del programador)" #: kbugreport.cpp:212 msgid "OS:" @@ -428,7 +411,7 @@ #: kbugreport.cpp:230 msgid "Wishlist" -msgstr "Llista de peticions" +msgstr "Llista de desitjos" #: kbugreport.cpp:230 msgid "Translation" @@ -457,14 +440,14 @@ "where you will find a form to fill in. The information displayed above will " "be transferred to that server." msgstr "" -"Per a enviar un informe d'error, cliqueu al botó de sota. Això obrirà " -"una finestra del navegador web a http://bugs." -"kde.org on trobareu un formulari per a omplir. La informació que es " -"mostra més amunt s'enviarà a este servidor." +"Per enviar un informe d'error, cliqueu al botó de sota. Això obrirà una " +"finestra del navegador web a http://bugs.kde." +"org on trobareu un formulari per omplir. La informació que es mostra més " +"amunt s'enviarà a este servidor." #: kbugreport.cpp:294 msgid "&Launch Bug Report Wizard" -msgstr "&Engega l'assistent d'informe d'errors" +msgstr "&Llança l'assistent d'informe d'errors" #: kbugreport.cpp:357 msgctxt "unknown program name" @@ -489,12 +472,12 @@ "

Does the bug you are reporting cause any of the above damage? If it does " "not, please select a lower severity. Thank you.

" msgstr "" -"

Heu triat la severitat Crítica. Tingueu present que esta severitat " -"només està pensada per a errors que:

  • fan que programes del " -"sistema sense cap relació (o tot el sistema) no funcionen
  • causen una " -"pèrdua greu de dades
  • introdueixen un forat de seguretat en el " -"sistema on s'instal·la el paquet afectat
\n" -"

L'error del que esteu informant causa algun dels danys esmentats? Si no " +"

Heu triat la severitat Crítica (Critical). Tingueu present que " +"esta severitat només està pensada per a errors que:

  • fan que " +"programes del sistema sense cap relació (o tot el sistema) no funcionen
  • causen una pèrdua greu de dades
  • introdueixen un forat de " +"seguretat en el sistema on s'instal·la el paquet afectat
\n" +"

L'error del qual esteu informant causa algun dels danys esmentats? Si no " "ho fa, per favor, trieu una severitat més baixa. Gràcies.

" #: kbugreport.cpp:437 @@ -507,12 +490,12 @@ "

Does the bug you are reporting cause any of the above damage? If it does " "not, please select a lower severity. Thank you.

" msgstr "" -"

Heu triat la severitat Greu. Tingueu present que esta severitat " -"només està pensada per a errors que:

  • fan que el paquet en qüestió " -"no es puga usar en la pràctica
  • causen pèrdua de dades
  • provoquen un forat de seguretat que permet l'accés als comptes dels " -"usuaris que usen el paquet afectat
\n" -"

L'error del que esteu informant causa algun dels danys esmentats? Si no " +"

Heu triat la severitat Greu (Grave). Tingueu present que esta " +"severitat només està pensada per a errors que:

  • fan que el paquet " +"en qüestió no es puga usar en la pràctica
  • causen una pèrdua de " +"dades
  • introdueixen un forat de seguretat que permet l'accés als " +"comptes dels usuaris que usen el paquet afectat
\n" +"

L'error del qual esteu informant causa algun dels danys esmentats? Si no " "ho fa, per favor, trieu una severitat més baixa. Gràcies.

" #: kbugreport.cpp:451 @@ -607,7 +590,7 @@ #: kedittoolbar.cpp:682 msgid "Reset Toolbars" -msgstr "Reinicialitza les barres d'eines" +msgstr "Inicialitza les barres d'eines" #: kedittoolbar.cpp:682 msgid "Reset" @@ -631,7 +614,7 @@ #: kedittoolbar.cpp:1062 msgid "Change &Icon..." -msgstr "Canvia &icona..." +msgstr "Canvia la &icona..." #: kedittoolbar.cpp:1070 msgid "Change Te&xt..." @@ -647,7 +630,7 @@ msgid "" "This element will be replaced with all the elements of an embedded component." msgstr "" -"Este element es reemplaçarà amb tots els elements d'un component incrustat." +"Este element se substituirà amb tots els elements d'un component incrustat." #: kedittoolbar.cpp:1244 msgid "" @@ -663,7 +646,7 @@ "This is a dynamic list of actions. You can move it, but if you remove it you " "will not be able to re-add it." msgstr "" -"Això és una llista dinàmica d'accions. Podeu moure-la, però si l'esborreu no " +"Això és una llista dinàmica d'accions. Podeu moure-la, però si l'elimineu no " "podreu tornar-la a afegir." #: kedittoolbar.cpp:1253 @@ -679,7 +662,7 @@ #: kedittoolbar.cpp:1607 msgid "Change Icon" -msgstr "Canvi d'icona" +msgstr "Canvi de la icona" #: kgesture.cpp:505 msgctxt "left mouse button" @@ -728,9 +711,9 @@ msgid_plural "" "The shortcut '%2' conflicts with the following key combinations:\n" msgstr[0] "" -"La drecera «%2» està en conflicte amb la combinació de tecles següent:\n" +"La drecera «%2» entra en conflicte amb la combinació de tecles següent:\n" msgstr[1] "" -"La drecera «%2» està en conflicte amb les combinacions de tecles següents:\n" +"La drecera «%2» entra en conflicte amb les combinacions de tecles següents:\n" #: kkeysequencewidget.cpp:144 msgctxt "%1 is the number of shortcuts with which there is a conflict" @@ -811,11 +794,11 @@ msgstr "" "La tecla F12 està reservada en el Windows, no es pot utilitzar com a drecera " "global.\n" -"Per favor, seleccioneu-ne una altra." +"Per favor, escolliu-ne una altra." #: kkeysequencewidget.cpp:613 msgid "Conflict with Standard Application Shortcut" -msgstr "Conflicte amb la drecera aplicació estàndard" +msgstr "Conflicte amb la drecera estàndard de l'aplicació" #: kkeysequencewidget.cpp:614 #, kde-format @@ -839,21 +822,31 @@ msgid "None" msgstr "Cap" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "La tecla que heu premut no està implementada a les Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla no implementada" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Sebastià Pla,Antoni Bella,Albert Astals,Josep Ma. Ferrer" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sps@sastia.com,antonibella5@yahoo.com,aacid@kde.org,txemaq@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Afig a la barra d'eines" #: kmenumenuhandler_p.cpp:227 msgid "Configure Shortcut..." -msgstr "Configura dreceres..." +msgstr "Configura les dreceres..." #: ksendbugmail/main.cpp:45 msgid "Error connecting to server." @@ -910,7 +903,7 @@ #: kshortcutschemeseditor.cpp:75 msgid "Delete" -msgstr "Esborra" +msgstr "Suprimeix" #: kshortcutschemeseditor.cpp:78 msgid "More Actions" @@ -922,13 +915,11 @@ #: kshortcutschemeseditor.cpp:84 msgid "Export Scheme..." -msgstr "Exporta esquema..." +msgstr "Exporta l'esquema..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "Exporta esquema..." +msgstr "Importa un esquema..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -952,28 +943,21 @@ "Do you really want to delete the scheme %1?\n" "Note that this will not remove any system wide shortcut schemes." msgstr "" -"Esteu segur que voleu esborrar l'esquema %1?\n" -"Tingueu en compte que això no esborrarà cap esquema de dreceres global del " +"Esteu segur que voleu suprimir l'esquema %1?\n" +"Tingueu en compte que això no eliminarà cap esquema de dreceres global del " "sistema." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "Dreceres" +msgstr "Exporta dreceres" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgctxt "header for an applications shortcut list" -#| msgid "Shortcuts for %1" msgid "Shortcuts (*.shortcuts)" -msgstr "Dreceres per a %1" +msgstr "Dreceres (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "Dreceres" +msgstr "Importa dreceres" #: kshortcutsdialog.cpp:85 msgid "" @@ -988,7 +972,7 @@ #: kshortcutsdialog.cpp:149 msgid "Configure Shortcuts" -msgstr "Configura dreceres" +msgstr "Configuració de les dreceres" #. i18n: ectx: property (whatsThis), widget (KTreeWidgetSearchLineWidget, searchFilter) #: kshortcutsdialog.ui:16 @@ -996,8 +980,8 @@ "Search interactively for shortcut names (e.g. Copy) or combination of keys " "(e.g. Ctrl+C) by typing them here." msgstr "" -"Cerca interactivament teclejant-les ací noms de drecera (p. ex. Copia) o " -"combinacions de tecles (p. ex. Ctrl+C)." +"Cerca interactivament teclejant ací els noms de la drecera (p. ex. Copia) o " +"les combinacions de tecles (p. ex. Ctrl+C)." #. i18n: ectx: property (whatsThis), widget (QTreeWidget, list) #: kshortcutsdialog.ui:23 @@ -1023,7 +1007,7 @@ #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:43 msgid "Alternate" -msgstr "Alternatiu" +msgstr "Alternativa" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:48 @@ -1033,17 +1017,17 @@ #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:53 msgid "Global Alternate" -msgstr "Global alternatiu" +msgstr "Global alternativa" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:58 msgid "Mouse Button Gesture" -msgstr "Gest de botó de ratolí" +msgstr "Gest del botó del ratolí" #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:63 msgid "Mouse Shape Gesture" -msgstr "Gest de forma de ratolí" +msgstr "Gest de forma del ratolí" #: kshortcutseditor.cpp:619 kshortcutseditor.cpp:637 msgid "Key Conflict" @@ -1056,7 +1040,7 @@ "Do you want to reassign it from that action to the current one?" msgstr "" "El gest de forma «%1» ja s'ha assignat a l'acció «%2».\n" -"Voleu reassignar-la des d'esta acció a l'acció actual?" +"Voleu reassignar-lo des d'esta acció a l'acció actual?" #: kshortcutseditor.cpp:638 #, kde-format @@ -1065,7 +1049,7 @@ "Do you want to reassign it from that action to the current one?" msgstr "" "El gest de balancí «%1» ja s'ha assignat a l'acció «%2».\n" -"Voleu reassignar-la des d'esta acció a l'acció actual?" +"Voleu reassignar-lo des d'esta acció a l'acció actual?" #: kshortcutseditor.cpp:685 #, kde-format @@ -1081,17 +1065,15 @@ #. i18n: ectx: property (text), widget (QLabel, altLabel) #: kshortcutseditor.cpp:704 kshortcutwidget.ui:52 msgid "Alternate:" -msgstr "Alternatiu:" +msgstr "Alternativa:" #: kshortcutseditor.cpp:705 msgid "Global:" msgstr "Global:" #: kshortcutseditor.cpp:706 -#, fuzzy -#| msgid "Global Alternate" msgid "Global alternate:" -msgstr "Global alternatiu" +msgstr "Global alternativa:" #: kshortcutseditor.cpp:721 msgid "Action Name" @@ -1128,7 +1110,7 @@ "Adds one more language which will be used if other translations do not " "contain a proper translation." msgstr "" -"Afig un o més idiomes que s'usaran si les altres traduccions no tenen una " +"Afig un o més idiomes que s'usaran si les altres traduccions no contenen cap " "traducció apropiada." #: kswitchlanguagedialog_p.cpp:281 kswitchlanguagedialog_p.cpp:303 @@ -1136,12 +1118,12 @@ "The language for this application has been changed. The change will take " "effect the next time the application is started." msgstr "" -"Ha canviat l'idioma per esta aplicació. El canvi serà efectiu a partir del " +"S'ha canviat l'idioma per esta aplicació. El canvi serà efectiu a partir del " "següent inici de l'aplicació." #: kswitchlanguagedialog_p.cpp:282 kswitchlanguagedialog_p.cpp:304 msgid "Application Language Changed" -msgstr "Ha canviat l'idioma de l'aplicació" +msgstr "S'ha canviat l'idioma de l'aplicació" #: kswitchlanguagedialog_p.cpp:396 msgid "Primary language:" @@ -1160,7 +1142,7 @@ "This is the main application language which will be used first, before any " "other languages." msgstr "" -"Este és l'idioma principal de l'aplicació que s'usarà primer abans que " +"Este és l'idioma principal de l'aplicació, el qual s'usarà primer abans que " "qualsevol altre." #: kswitchlanguagedialog_p.cpp:427 @@ -1174,7 +1156,7 @@ #: ktoolbar.cpp:303 msgctxt "@title:menu" msgid "Show Text" -msgstr "Mostra text" +msgstr "Mostra el text" #: ktoolbar.cpp:306 msgctxt "@title:menu" @@ -1208,15 +1190,15 @@ #: ktoolbar.cpp:322 msgid "Text Position" -msgstr "Posició de text" +msgstr "Posició del text" #: ktoolbar.cpp:324 msgid "Icons Only" -msgstr "Només icones" +msgstr "Només les icones" #: ktoolbar.cpp:325 msgid "Text Only" -msgstr "Només text" +msgstr "Només el text" #: ktoolbar.cpp:326 msgid "Text Alongside Icons" @@ -1228,7 +1210,7 @@ #: ktoolbar.cpp:335 msgid "Icon Size" -msgstr "Mida d'icones" +msgstr "Mida de les icones" #: ktoolbar.cpp:337 msgctxt "@item:inmenu Icon size" diff -Nru kxmlgui-5.15.0/po/crh/kxmlgui5.po kxmlgui-5.18.0/po/crh/kxmlgui5.po --- kxmlgui-5.15.0/po/crh/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/crh/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+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" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Reşat SABIQ" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "tilde.birlik@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -777,14 +769,24 @@ msgid "None" msgstr "İç biri" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Desteklenmegen Tuş" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Reşat SABIQ" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "tilde.birlik@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Alet Çubuğına Ekle" diff -Nru kxmlgui-5.15.0/po/cs/kxmlgui5.po kxmlgui-5.18.0/po/cs/kxmlgui5.po --- kxmlgui-5.15.0/po/cs/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/cs/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-07-10 11:10+0100\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-10-02 13:22+0100\n" "Last-Translator: Vít Pelčák \n" "Language-Team: Czech \n" "Language: en_US\n" @@ -21,14 +21,6 @@ "X-Language: cs_CZ\n" "X-Source-Language: en_US\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Vít Pelčák, Marián Kyral" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "vit@pelcak.org,mkyral@email.cz" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -815,14 +807,24 @@ msgid "None" msgstr "Žádná" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Právě stisknutá klávesa není podporována v Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodporovaná klávesa" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Vít Pelčák, Marián Kyral" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "vit@pelcak.org,mkyral@email.cz" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Přidat do nástrojové lišty" @@ -902,7 +904,7 @@ #: kshortcutschemeseditor.cpp:86 msgid "Import Scheme..." -msgstr "" +msgstr "Importovat schéma..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -931,11 +933,11 @@ #: kshortcutschemeseditor.cpp:168 msgid "Export Shortcuts" -msgstr "" +msgstr "Exportovat klávesové zkratky" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 msgid "Shortcuts (*.shortcuts)" -msgstr "" +msgstr "Zkratky (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 msgid "Import Shortcuts" diff -Nru kxmlgui-5.15.0/po/csb/kxmlgui5.po kxmlgui-5.18.0/po/csb/kxmlgui5.po --- kxmlgui-5.15.0/po/csb/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/csb/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-12-04 22:09+0100\n" "Last-Translator: Mark Kwidzińśczi \n" "Language-Team: Kaszëbsczi \n" @@ -19,14 +19,6 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2)\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Michôł Òstrowsczi, Mark Kwidzińsczi" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "michol@linuxcsb.org, mark@linuxcsb.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -908,14 +900,24 @@ msgid "None" msgstr "Felëjë" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Niezortowóné klucze" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Michôł Òstrowsczi, Mark Kwidzińsczi" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "michol@linuxcsb.org, mark@linuxcsb.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodôj do listwë nôrzãdzów" diff -Nru kxmlgui-5.15.0/po/cy/kxmlgui5.po kxmlgui-5.18.0/po/cy/kxmlgui5.po --- kxmlgui-5.15.0/po/cy/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/cy/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2005-01-28 17:54+0000\n" "Last-Translator: Kevin Donnelly \n" "Language-Team: Cymraeg\n" @@ -30,14 +30,6 @@ "\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "KD wrth KGyfieithu" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kyfieithu@dotmon.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -911,16 +903,26 @@ msgid "None" msgstr "Dim" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Untrusted" msgid "Unsupported Key" msgstr "Ni ymddiriedir" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "KD wrth KGyfieithu" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kyfieithu@dotmon.com" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/da/kxmlgui5.po kxmlgui-5.18.0/po/da/kxmlgui5.po --- kxmlgui-5.15.0/po/da/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/da/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-07-08 20:44+0200\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-23 21:00+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" "Language: da\n" @@ -19,15 +19,7 @@ "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" - -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Erik Kjær Pedersen,Martin Schlander,Keld Simonsen" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "erik@binghamton.edu,mschlander@opensuse.org,keld@keldix.com" +"X-Generator: Lokalize 2.0\n" #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format @@ -815,14 +807,24 @@ msgid "None" msgstr "Ingen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Tasten du netop trykkede på, understøttes ikke af Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Ikke understøttet tast" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Erik Kjær Pedersen,Martin Schlander,Keld Simonsen" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "erik@binghamton.edu,mschlander@opensuse.org,keld@keldix.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Tilføj til værktøjslinje" @@ -901,10 +903,8 @@ msgstr "Eksportér skema..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "Eksportér skema..." +msgstr "Importér skema..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -932,22 +932,16 @@ "Bemærk at dette ikke vil fjerne nogen systemomfattende genvejsskemaer." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "Genveje" +msgstr "Eksportér genveje" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcut Conflict(s)" msgid "Shortcuts (*.shortcuts)" -msgstr "Genvejskonflikter" +msgstr "Genveje (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "Genveje" +msgstr "Importér genveje" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/de/kxmlgui5.po kxmlgui-5.18.0/po/de/kxmlgui5.po --- kxmlgui-5.15.0/po/de/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/de/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -13,25 +13,17 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-09-28 11:28+0200\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-10-24 11:42+0100\n" "Last-Translator: Burkhard Lück \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Thomas Reitelbach, Stephan Johach, Thomas Diehl" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "tr@erdfunkstelle.de, hunsum@gmx.de, thd@kde.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -62,8 +54,8 @@ "Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " "%4 windowing system
" msgstr "" -"Unter:
  • KDE Frameworks %1
  • Qt %2, kompiliert gegen %3)
  • Das %4Fenstersystem
" +"Unter:
  • KDE Frameworks %1
  • Qt %2 (kompiliert gegen %3)
  • Das %4 Fenstersystem
" #: kaboutapplicationdialog.cpp:168 msgid "&Version" @@ -840,14 +832,24 @@ msgid "None" msgstr "Keiner" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Die gerade gedrückte Taste wird von Qt nicht unterstützt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nicht unterstützte Taste" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Thomas Reitelbach, Stephan Johach, Thomas Diehl" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "tr@erdfunkstelle.de, hunsum@gmx.de, thd@kde.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Zur Werkzeugleiste hinzufügen" diff -Nru kxmlgui-5.15.0/po/el/kxmlgui5.po kxmlgui-5.18.0/po/el/kxmlgui5.po --- kxmlgui-5.15.0/po/el/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/el/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" -"PO-Revision-Date: 2014-01-04 09:52+0100\n" -"Last-Translator: Dimitrios Glentadakis \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-12-13 14:15+0200\n" +"Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" @@ -30,28 +31,15 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Σπύρος Γεωργαράς, Τούσης Μανώλης, Πέτρος Βιδάλης" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sng@hellug.gr, manolis@koppermind.homelinux.org, p_vidalis@hotmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" msgstr "Σχετικά με το %1" #: kaboutapplicationdialog.cpp:98 -#, fuzzy, kde-format -#| msgid "" -#| "KDE - Be Free!
Platform Version %1" +#, kde-format msgid "%1" -msgstr "" -"KDE - Ελευθερωθείτε!
έκδοση πλατφόρμας " -"%1" +msgstr "%1" #: kaboutapplicationdialog.cpp:136 #, kde-format @@ -63,10 +51,9 @@ msgstr "&Σχετικά" #: kaboutapplicationdialog.cpp:153 -#, fuzzy, kde-format -#| msgid "
Version: %1" +#, kde-format msgid "Version %1" -msgstr "
Έκδοση: %1" +msgstr "Έκδοση %1" #: kaboutapplicationdialog.cpp:158 #, kde-format @@ -74,12 +61,12 @@ "Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " "%4 windowing system
" msgstr "" +"Χρησιμοποιούνται:
  • KDE Frameworks %1
  • Qt %2 (κατασκευασμένη με " +"%3)
  • Το παραθυρικό σύστημα %4
" #: kaboutapplicationdialog.cpp:168 -#, fuzzy -#| msgid "Version:" msgid "&Version" -msgstr "Έκδοση:" +msgstr "Έ&κδοση" #: kaboutapplicationdialog.cpp:188 msgid "" @@ -203,27 +190,11 @@ msgstr "Σχετικά με το KDE" #: kaboutkdedialog_p.cpp:46 -#, fuzzy -#| msgid "" -#| "KDE - Be Free!
Platform Version %1" msgid "KDE - Be Free!" -msgstr "" -"KDE - Ελευθερωθείτε!
έκδοση πλατφόρμας " -"%1" +msgstr "KDE - Και ελεύθεροι!" #: kaboutkdedialog_p.cpp:55 -#, fuzzy, kde-format -#| msgid "" -#| "KDE is a world-wide network of software engineers, artists, " -#| "writers, translators and facilitators who are committed to Free Software development. This community has created hundreds " -#| "of Free Software applications as part of the KDE Development Platform and " -#| "KDE Software Distribution.

KDE is a cooperative enterprise in " -#| "which no single entity controls the efforts or products of KDE to the " -#| "exclusion of others. Everyone is welcome to join and contribute to KDE, " -#| "including you.

Visit %2 for more " -#| "information about the KDE community and the software we produce." +#, kde-format msgid "" "KDE is a world-wide network of software engineers, artists, " "writers, translators and facilitators who are committed to Visit %2 for more information about the KDE community " "and the software we produce." msgstr "" -"Το Περιβάλλον επιφάνειας εργασίας KDE γράφεται και συντηρείται " -"από την ομάδα του KDE, ένα παγκόσμιο δίκτυο μηχανικών λογισμικού," -"καλλιτεχνών, συγγραφέων, μεταφραστών και διαμεσολαβητών αφιερωμένο στην " -"ανάπτυξη ελεύθερου λογισμικού. Αυτή η κοινότητα έχει " -"δημιουργήσει εκατοντάδες εφαρμογές ελεύθερου λογισμικού ως κομμάτι της " -"πλατφόρμας ανάπτυξης του KDE και της διανομής λογισμικού KDE.

" -"Καμία ομάδα, εταιρεία ή οργανισμός δεν ελέγχει τον πηγαίο κώδικα του KDE. Η " -"συνεισφορά οποιουδήποτε στην ανάπτυξη του KDE είναι ευπρόσδεκτη.

Επισκεφτείτε το %2 για περισσότερες πληροφορίες. " +"Το KDE είναι ένα παγκόσμιο δίκτυο μηχανικών λογισμικού," +"καλλιτεχνών, συγγραφέων, μεταφραστών και οργανωτών αφιερωμένο στην ανάπτυξη " +"ελεύθερου λογισμικού. Αυτή η κοινότητα έχει δημιουργήσει " +"εκατοντάδες εφαρμογές ελεύθερου λογισμικού ως τμήμα του KDE frameworks, των " +"χώρων εργασίας και των εφαρμογών.

Το KDE είναι ένα συνεργατικό " +"εγχείρημα όπου καμία συγκεκριμένη ομάδα δεν ελέγχει τις προσπάθειες ή τα " +"προϊόντα του KDE. Η συνεισφορά και η συμμετοχή οποιουδήποτε στο KDE είναι " +"ευπρόσδεκτη, μεταξύ αυτών και εσείς.

Επισκεφτείτε το %2 για περισσότερες πληροφορίες για την κοινότητα του KDE και το " +"λογισμικό που παράγει. " #: kaboutkdedialog_p.cpp:74 #, kde-format @@ -579,17 +551,12 @@ msgstr "

Πλήκτρα επιτάχυνσης άλλαξαν

" #: kcheckaccelerators.cpp:275 kcheckaccelerators.cpp:286 -#, fuzzy -#| msgid "Find Text" msgid "Old Text" -msgstr "Αναζήτηση κειμένου" +msgstr "Παλιό κείμενο" #: kcheckaccelerators.cpp:277 kcheckaccelerators.cpp:295 -#, fuzzy -#| msgctxt "@title:menu" -#| msgid "Show Text" msgid "New Text" -msgstr "Εμφάνιση κειμένου" +msgstr "Νέο κείμενο" #: kcheckaccelerators.cpp:284 msgid "

Accelerators removed

" @@ -768,7 +735,7 @@ #: kkeysequencewidget.cpp:619 kshortcutseditor.cpp:624 #: kshortcutseditor.cpp:642 msgid "Reassign" -msgstr "Επανάθεση" +msgstr "Ανάθεση ξανά" #: kkeysequencewidget.cpp:214 msgctxt "%1 is the number of conflicts" @@ -818,18 +785,13 @@ "b>.
Παρακαλώ επιλέξτε κάποιον άλλον." #: kkeysequencewidget.cpp:273 -#, fuzzy -#| msgid "" -#| "Click on the button, then enter the shortcut like you would in the " -#| "program.\n" -#| "Example for Ctrl+a: hold the Ctrl key and press a." msgid "" "Click on the button, then enter the shortcut like you would in the program.\n" "Example for Ctrl+A: hold the Ctrl key and press A." msgstr "" -"Πατήστε το κουμπί, έπειτα εισάγετε την συντόμευση που επιθυμείτε στο " -"πρόγραμμα.\n" -"Παράδειγμα για Ctrl+a: κρατήστε πατημένο το Ctrl και πιέστε το a." +"Κάντε κλικ στο κουμπί, στη συνέχεια καταχωρήστε την συντόμευση που " +"επιθυμείτε στο πρόγραμμα.\n" +"Παράδειγμα για Ctrl+Α: κρατήστε πατημένο το Ctrl και πιέστε το Α." #: kkeysequencewidget.cpp:465 msgid "Reserved Shortcut" @@ -871,14 +833,24 @@ msgid "None" msgstr "Καμία" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Το πλήκτρο που μόλις πιέσατε δεν υποστηρίζεται από την Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Μη υποστηριζόμενο πλήκτρο" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Σπύρος Γεωργαράς, Τούσης Μανώλης, Πέτρος Βιδάλης" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sng@hellug.gr, manolis@koppermind.homelinux.org, p_vidalis@hotmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Προσθήκη στη γραμμή εργαλείων" @@ -888,51 +860,37 @@ msgstr "Διαμόρφωση συντόμευσης..." #: ksendbugmail/main.cpp:45 -#, fuzzy -#| msgid "Create content on server" msgid "Error connecting to server." -msgstr "Δημιουργία περιεχομένου στον διακομιστή" +msgstr "Σφάλμα κατά τη σύνδεση με τον διακομιστή." #: ksendbugmail/main.cpp:48 -#, fuzzy -#| msgid "Not found" msgid "Not connected." -msgstr "Δε βρέθηκε" +msgstr "Χωρίς σύνδεση." #: ksendbugmail/main.cpp:51 -#, fuzzy -#| msgid "Connection timed out" msgid "Connection timed out." -msgstr "Λήξη χρονικού ορίου" +msgstr "Λήξη χρονικού ορίου σύνδεσης." #: ksendbugmail/main.cpp:54 msgid "Time out waiting for server interaction." -msgstr "" +msgstr "Λήξη χρονικού ορίου στην αναμονή για επικοινωνία με τον διακομιστή." #: ksendbugmail/main.cpp:58 -#, fuzzy, kde-format -#| msgid "Server: %1" +#, kde-format msgid "Server said: \"%1\"" -msgstr "Εξυπηρετητής: %1" +msgstr "Ο διακομιστής ανέφερε: \"%1\"" #: ksendbugmail/main.cpp:89 -#, fuzzy -#| msgid "Send bug report." msgid "Sends a bug report by email." -msgstr "Αποστολή αναφοράς σφάλματος." +msgstr "Αποστολή αναφοράς σφάλματος με ηλ. αλληλογραφία." #: ksendbugmail/main.cpp:91 -#, fuzzy -#| msgid "The size of the dialog" msgid "The subject line of the email." -msgstr "Το μέγεθος του διαλόγου" +msgstr "Η γραμμή θέματος της αλληλογραφίας." #: ksendbugmail/main.cpp:92 -#, fuzzy -#| msgid "The email address this bug report is sent to." msgid "The email address to send the bug report to." -msgstr "" -"Η διεύθυνση αλληλογραφίας στην οποία στέλνεται αυτή η αναφορά σφάλματος." +msgstr "Η διεύθυνση αλληλογραφίας στην οποία στέλνεται η αναφορά σφάλματος." #: kshortcuteditwidget.cpp:62 msgid "Default:" @@ -971,10 +929,8 @@ msgstr "Εξαγωγή θέματος..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "Εξαγωγή θέματος..." +msgstr "Εισαγωγή θέματος..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -1002,22 +958,16 @@ "
Σημειώστε ότι αυτό δεν αφαιρεί θέματα συντομεύσεων του συστήματος." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "Συντομεύσεις" +msgstr "Εξαγωγή συντομεύσεων" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcut Conflict(s)" msgid "Shortcuts (*.shortcuts)" -msgstr "Σύγκρουση συντόμευσης(ων)" +msgstr "Συντομεύσεις (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "Συντομεύσεις" +msgstr "Εισαγωγή συντομεύσεων" #: kshortcutsdialog.cpp:85 msgid "" @@ -1133,10 +1083,8 @@ msgstr "Καθολική:" #: kshortcutseditor.cpp:706 -#, fuzzy -#| msgid "Global Alternate" msgid "Global alternate:" -msgstr "Εναλλακτική καθολική" +msgstr "Καθολική εναλλακτική:" #: kshortcutseditor.cpp:721 msgid "Action Name" diff -Nru kxmlgui-5.15.0/po/en_GB/kxmlgui5.po kxmlgui-5.18.0/po/en_GB/kxmlgui5.po --- kxmlgui-5.15.0/po/en_GB/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/en_GB/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-27 11:45+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Andrew Cole, Steve Allewell" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "andrew_coles@yahoo.co.uk, steve.allewell@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -813,14 +805,24 @@ msgid "None" msgstr "None" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "The key you just pressed is not supported by Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Unsupported Key" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Andrew Cole, Steve Allewell" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "andrew_coles@yahoo.co.uk, steve.allewell@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/eo/kxmlgui5.po kxmlgui-5.18.0/po/eo/kxmlgui5.po --- kxmlgui-5.15.0/po/eo/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/eo/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-05-22 12:30+0200\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \n" @@ -26,17 +26,6 @@ "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Matthias Peick, Oliver Kellogg, Cindy McKee, Axel Rousseau, Michael Moroni" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"matthias@peick.de, okellogg@users.sourceforge.net, cfmckee@gmail.com, " -"axel@esperanto-jeunes.org, michael.moroni@mailoo.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -822,14 +811,27 @@ msgid "None" msgstr "Nenio" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Ne subtenata ŝlosilo" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Matthias Peick, Oliver Kellogg, Cindy McKee, Axel Rousseau, Michael Moroni" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"matthias@peick.de, okellogg@users.sourceforge.net, cfmckee@gmail.com, " +"axel@esperanto-jeunes.org, michael.moroni@mailoo.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Aldoni al ilobreto" diff -Nru kxmlgui-5.15.0/po/es/kxmlgui5.po kxmlgui-5.18.0/po/es/kxmlgui5.po --- kxmlgui-5.15.0/po/es/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/es/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-24 03:27+0200\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" @@ -26,14 +26,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Eloy Cuadra" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "ecuadra@eloihr.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -837,14 +829,24 @@ msgid "None" msgstr "Ninguna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "La tecla que acaba de pulsar no está contemplada por Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla no funcional" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Eloy Cuadra" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "ecuadra@eloihr.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Añadir a la barra de herramientas" diff -Nru kxmlgui-5.15.0/po/et/kxmlgui5.po kxmlgui-5.18.0/po/et/kxmlgui5.po --- kxmlgui-5.15.0/po/et/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/et/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-03-02 04:37+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -20,14 +20,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Marek Laane" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "bald@smail.ee" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -846,14 +838,24 @@ msgid "None" msgstr "Puudub" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ei toeta klahvi, mida sa praegu vajutasid." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Toetamata klahv" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Marek Laane" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "bald@smail.ee" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Lisa tööriistaribale" diff -Nru kxmlgui-5.15.0/po/eu/kxmlgui5.po kxmlgui-5.18.0/po/eu/kxmlgui5.po --- kxmlgui-5.15.0/po/eu/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/eu/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-03-02 19:49+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" @@ -22,14 +22,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Marcos,Ion Gaztañaga,Iñigo Salvador Azurmendi" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "marcos@euskalgnu.org,igaztanaga@gmail.com,xalba@euskalnet.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -852,14 +844,24 @@ msgid "None" msgstr "Bat ere ez" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt-ek ez du onartzen sakatu duzun tekla." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tekla ez da onartzen" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Marcos,Ion Gaztañaga,Iñigo Salvador Azurmendi" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "marcos@euskalgnu.org,igaztanaga@gmail.com,xalba@euskalnet.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Gehitu tresna-barrari" diff -Nru kxmlgui-5.15.0/po/fa/kxmlgui5.po kxmlgui-5.18.0/po/fa/kxmlgui5.po --- kxmlgui-5.15.0/po/fa/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/fa/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-06-28 16:40+0430\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) \n" @@ -21,16 +21,6 @@ "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "محمدرضا میردامادی , نازنین کاظمی , محمد ابراهیم محمدی پناه , سعید تقوی" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"mohi@linuxshop.ir , kazemi@itland.ir , mebrahim@gmail.com , s.taghavi@gmail." -"com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -868,14 +858,26 @@ msgid "None" msgstr "هیچ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "کلیدی که هم‌اکنون فشرده شد به‌وسیله Qt پشتیبانی نمیشود." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "کلید پشتیبانی نشده" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "محمدرضا میردامادی , نازنین کاظمی , محمد ابراهیم محمدی پناه , سعید تقوی" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"mohi@linuxshop.ir , kazemi@itland.ir , mebrahim@gmail.com , s.taghavi@gmail." +"com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "افزودن به میله ابزار" diff -Nru kxmlgui-5.15.0/po/fi/kxmlgui5.po kxmlgui-5.18.0/po/fi/kxmlgui5.po --- kxmlgui-5.15.0/po/fi/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/fi/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-23 12:23+0200\n" "Last-Translator: Lasse Liehu \n" "Language-Team: Finnish \n" @@ -38,19 +38,6 @@ "X-Generator: Lokalize 2.0\n" "X-POT-Import-Date: 2013-01-13 20:43:21+0000\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Kim Enkovaara, Tapio Kautto, Mikko Ikola, Teemu Rytilahti, Lasse Liehu, " -"Niklas Laxström, Joonas Niilola, Mikko Piippo, Tommi Nieminen, Jorma Karvonen" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"kim.enkovaara@iki.fi, eleknader@phnet.fi, ikola@iki.fi, tpr@d5k.net, lasse." -"liehu@gmail.com, niklas.laxstrom+kdetrans@gmail.com, juippis@roskakori.org, " -"piippo@cc.helsinki.fi, translator@legisign.org, karvonen.jorma@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -837,14 +824,29 @@ msgid "None" msgstr "Ei asetettu" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ei tue painamaasi näppäintä." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Ei-tuettu näppäin" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Kim Enkovaara, Tapio Kautto, Mikko Ikola, Teemu Rytilahti, Lasse Liehu, " +"Niklas Laxström, Joonas Niilola, Mikko Piippo, Tommi Nieminen, Jorma Karvonen" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"kim.enkovaara@iki.fi, eleknader@phnet.fi, ikola@iki.fi, tpr@d5k.net, lasse." +"liehu@gmail.com, niklas.laxstrom+kdetrans@gmail.com, juippis@roskakori.org, " +"piippo@cc.helsinki.fi, translator@legisign.org, karvonen.jorma@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Lisää työkaluriville" diff -Nru kxmlgui-5.15.0/po/fr/kxmlgui5.po kxmlgui-5.18.0/po/fr/kxmlgui5.po --- kxmlgui-5.15.0/po/fr/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/fr/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-07-02 13:50+0200\n" "Last-Translator: Sebastien Renard \n" "Language-Team: French \n" @@ -34,14 +34,6 @@ "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" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "jcorn@free.fr,kde@macolu.org,renard@kde.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -861,15 +853,25 @@ msgid "None" msgstr "Aucun" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" "La touche sur laquelle vous venez d'appuyer n'est pas prise en charge par Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Touche non prise en charge" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Joëlle Cornavin,Matthieu Robin, Sébastien Renard" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "jcorn@free.fr,kde@macolu.org,renard@kde.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Ajouter à la barre d'outils" diff -Nru kxmlgui-5.15.0/po/fy/kxmlgui5.po kxmlgui-5.18.0/po/fy/kxmlgui5.po --- kxmlgui-5.15.0/po/fy/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/fy/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-07-22 09:48+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: nl \n" @@ -26,14 +26,6 @@ "X-Generator: KAider 0.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Berend Ytsma" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "Berendy@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -853,14 +845,24 @@ msgid "None" msgstr "Gjint" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Net stipe toets" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Berend Ytsma" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "Berendy@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Oan arkbalke taheakje" diff -Nru kxmlgui-5.15.0/po/ga/kxmlgui5.po kxmlgui-5.18.0/po/ga/kxmlgui5.po --- kxmlgui-5.15.0/po/ga/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ga/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2004-12-14 09:11-0600\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -20,14 +20,6 @@ "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n < 11 ? " "3 : 4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Séamus Ó Ciardhuáin,Kevin Scannell,Sean V. Kelley" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "seoc@iolfree.ie,kscanne@gmail.com,s_oceallaigh@yahoo.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -887,14 +879,24 @@ msgid "None" msgstr "Gan aicearra" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Ní thacaíonn Qt leis an eochair a bhrúigh tú anois beag." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Eochair nach dtacaítear léi" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Séamus Ó Ciardhuáin,Kevin Scannell,Sean V. Kelley" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "seoc@iolfree.ie,kscanne@gmail.com,s_oceallaigh@yahoo.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Cuir leis an mBarra Uirlisí" diff -Nru kxmlgui-5.15.0/po/gd/kxmlgui5.po kxmlgui-5.18.0/po/gd/kxmlgui5.po --- kxmlgui-5.15.0/po/gd/kxmlgui5.po 1970-01-01 00:00:00.000000000 +0000 +++ kxmlgui-5.18.0/po/gd/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -0,0 +1,1199 @@ +# 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 , 2015. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-04 15:14+0000\n" +"Last-Translator: Michael Bauer \n" +"Language-Team: Fòram na Gàidhlig\n" +"Language: gd\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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: Poedit 1.8.4\n" +"X-Project-Style: kde\n" + +#: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 +#, kde-format +msgid "About %1" +msgstr "Mu %1" + +#: kaboutapplicationdialog.cpp:98 +#, kde-format +msgid "%1" +msgstr "%1" + +#: kaboutapplicationdialog.cpp:136 +#, kde-format +msgid "License: %1" +msgstr "Ceadachas: %1" + +#: kaboutapplicationdialog.cpp:148 +msgid "&About" +msgstr "&Mu dhèidhinn" + +#: kaboutapplicationdialog.cpp:153 +#, kde-format +msgid "Version %1" +msgstr "Tionndadh %1" + +#: kaboutapplicationdialog.cpp:158 +#, kde-format +msgid "" +"Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " +"%4 windowing system
" +msgstr "" +"A' cleachdadh:
  • KDE Frameworks %1
  • Qt %2 (air a thogail ri %3)
  • Siostam uinneagan %4
" + +#: kaboutapplicationdialog.cpp:168 +msgid "&Version" +msgstr "&Tionndadh" + +#: kaboutapplicationdialog.cpp:188 +msgid "" +"Please use http://bugs.kde.org to report " +"bugs.\n" +msgstr "" +"Cleachd http://bugs.kde.org gus innse " +"dhuinn mu bhugaichean.\n" + +#: kaboutapplicationdialog.cpp:192 kaboutapplicationdialog.cpp:196 +#, kde-format +msgid "Please report bugs to %2.\n" +msgstr "Dèan aithris air bugaichean gu %2.\n" + +#: kaboutapplicationdialog.cpp:223 +msgid "A&uthor" +msgstr "Ù&ghdar" + +#: kaboutapplicationdialog.cpp:223 +msgid "A&uthors" +msgstr "Ù&ghdaran" + +#: kaboutapplicationdialog.cpp:250 +msgid "&Thanks To" +msgstr "&Taing do" + +#: kaboutapplicationdialog.cpp:289 +msgid "T&ranslation" +msgstr "Eada&r-theangachadh" + +#: kaboutapplicationdialog.cpp:321 +msgid "License Agreement" +msgstr "Aonta a' cheadachais" + +#: kaboutapplicationpersonlistdelegate_p.cpp:61 +msgctxt "Action to send an email to a contributor" +msgid "Email contributor" +msgstr "Cuir post-d gun chom-pàirtiche" + +#: kaboutapplicationpersonlistdelegate_p.cpp:66 +msgid "Visit contributor's homepage" +msgstr "Tadhail air duilleag-dhachaigh a' chom-pàirtiche" + +#: kaboutapplicationpersonlistdelegate_p.cpp:127 +#, kde-format +msgctxt "Action to send an email to a contributor" +msgid "" +"Email contributor\n" +"%1" +msgstr "" +"Cuir post-d gun chom-pàirtiche\n" +"%1" + +#: kaboutapplicationpersonlistdelegate_p.cpp:133 +#: kaboutapplicationpersonlistdelegate_p.cpp:169 +#, kde-format +msgid "" +"Visit contributor's homepage\n" +"%1" +msgstr "" +"Tadhail air duilleag-dhachaigh a' chom-pàirtiche\n" +"%1" + +#: kaboutapplicationpersonlistdelegate_p.cpp:140 +#: kaboutapplicationpersonlistdelegate_p.cpp:172 +#, kde-format +msgid "" +"Visit contributor's profile on %1\n" +"%2" +msgstr "" +"Tadhail air pròifil a' chom-pàirtiche air %1\n" +"%2" + +#: kaboutapplicationpersonlistdelegate_p.cpp:163 +#, kde-format +msgid "" +"Visit contributor's page\n" +"%1" +msgstr "" +"Tadhail air duilleag a' chom-pàirtiche\n" +"%1" + +#: kaboutapplicationpersonlistdelegate_p.cpp:166 +#, kde-format +msgid "" +"Visit contributor's blog\n" +"%1" +msgstr "" +"Tadhail air bloga a' chom-pàirtiche\n" +"%1" + +#: kaboutapplicationpersonlistdelegate_p.cpp:264 +#, kde-format +msgctxt "@item Contributor name in about dialog." +msgid "%1" +msgstr "%1" + +#: kaboutapplicationpersonmodel_p.cpp:206 +#, kde-format +msgctxt "City, Country" +msgid "%1, %2" +msgstr "%1, %2" + +#: kaboutapplicationpersonmodel_p.cpp:312 +msgctxt "A generic social network or homepage link of an unlisted type." +msgid "Other" +msgstr "Eile" + +#: kaboutapplicationpersonmodel_p.cpp:314 +msgctxt "A type of link." +msgid "Blog" +msgstr "Bloga" + +#: kaboutapplicationpersonmodel_p.cpp:322 +msgctxt "A type of link." +msgid "Homepage" +msgstr "Duilleag-dhachaigh" + +#: kaboutkdedialog_p.cpp:43 +msgid "About KDE" +msgstr "Mu KDE" + +#: kaboutkdedialog_p.cpp:46 +msgid "KDE - Be Free!" +msgstr "KDE - Bi saor!" + +#: kaboutkdedialog_p.cpp:55 +#, kde-format +msgid "" +"KDE is a world-wide network of software engineers, artists, " +"writers, translators and facilitators who are committed to Free Software development. This community has created hundreds of " +"Free Software applications as part of the KDE frameworks, workspaces and " +"applications.

KDE is a cooperative enterprise in which no single " +"entity controls the efforts or products of KDE to the exclusion of others. " +"Everyone is welcome to join and contribute to KDE, including you.

Visit %2 for more information about the KDE community " +"and the software we produce." +msgstr "" + +#: kaboutkdedialog_p.cpp:74 +#, kde-format +msgid "" +"Software can always be improved, and the KDE team is ready to do so. " +"However, you - the user - must tell us when something does not work as " +"expected or could be done better.

KDE has a bug tracking system. " +"Visit %1 or use the \"Report Bug...\" dialog from the " +"\"Help\" menu to report bugs.

If you have a suggestion for " +"improvement then you are welcome to use the bug tracking system to register " +"your wish. Make sure you use the severity called \"Wishlist\"." +msgstr "" + +#: kaboutkdedialog_p.cpp:92 +#, kde-format +msgid "" +"You do not have to be a software developer to be a member of the KDE " +"team. You can join the national teams that translate program interfaces. You " +"can provide graphics, themes, sounds, and improved documentation. You decide!" +"

Visit %1 for information on some projects in " +"which you can participate.

If you need more information or " +"documentation, then a visit to %2 will provide you with " +"what you need." +msgstr "" + +#: kaboutkdedialog_p.cpp:114 +#, kde-format +msgid "" +"KDE software is and will always be available free of charge, however " +"creating it is not free.

To support development the KDE community " +"has formed the KDE e.V., a non-profit organization legally founded in " +"Germany. KDE e.V. represents the KDE community in legal and financial " +"matters. See %1 for information on KDE e.V.

KDE benefits from many kinds of contributions, including financial. We use " +"the funds to reimburse members and others for expenses they incur when " +"contributing. Further funds are used for legal support and organizing " +"conferences and meetings.

We would like to encourage you to " +"support our efforts with a financial donation, using one of the ways " +"described at %2.

Thank you very much in " +"advance for your support." +msgstr "" + +#: kaboutkdedialog_p.cpp:133 +msgctxt "About KDE" +msgid "&About" +msgstr "&Mu dhèidhinn" + +#: kaboutkdedialog_p.cpp:134 +msgid "&Report Bugs or Wishes" +msgstr "&Innis dhuinn mu bhugaichean no miannan" + +#: kaboutkdedialog_p.cpp:135 +msgid "&Join KDE" +msgstr "Faigh &ballrachd ann an KDE" + +#: kaboutkdedialog_p.cpp:136 +msgid "&Support KDE" +msgstr "&Cuir taic ri KDE" + +#: kactionconflictdetector.cpp:49 +#, kde-format +msgid "" +"The key sequence '%1' is ambiguous. Use 'Configure Shortcuts'\n" +"from the 'Settings' menu to solve the ambiguity.\n" +"No action will be triggered." +msgstr "" + +#: kactionconflictdetector.cpp:53 +msgid "Ambiguous shortcut detected" +msgstr "" + +#: kbugreport.cpp:97 kbugreport.cpp:119 +msgid "Submit Bug Report" +msgstr "" + +#: kbugreport.cpp:130 +msgid "" +"Your email address. If incorrect, use the Configure Email button to change it" +msgstr "" + +#: kbugreport.cpp:131 +msgctxt "Email sender address" +msgid "From:" +msgstr "O:" + +#: kbugreport.cpp:139 +msgid "Configure Email..." +msgstr "" + +#: kbugreport.cpp:146 +msgid "The email address this bug report is sent to." +msgstr "" + +#: kbugreport.cpp:147 +msgctxt "Email receiver address" +msgid "To:" +msgstr "Gu:" + +#: kbugreport.cpp:156 +msgid "&Send" +msgstr "&Cuir" + +#: kbugreport.cpp:156 +msgid "Send bug report." +msgstr "" + +#: kbugreport.cpp:157 +#, kde-format +msgid "Send this bug report to %1." +msgstr "" + +#: kbugreport.cpp:165 +msgid "" +"The application for which you wish to submit a bug report - if incorrect, " +"please use the Report Bug menu item of the correct application" +msgstr "" + +#: kbugreport.cpp:166 +msgid "Application: " +msgstr "Aplacaid: " + +#: kbugreport.cpp:193 +msgid "" +"The version of this application - please make sure that no newer version is " +"available before sending a bug report" +msgstr "" + +#: kbugreport.cpp:194 +msgid "Version:" +msgstr "Tionndadh:" + +#: kbugreport.cpp:199 +msgid "no version set (programmer error)" +msgstr "" + +#: kbugreport.cpp:212 +msgid "OS:" +msgstr "Siostam-obrachaidh:" + +#: kbugreport.cpp:220 +msgid "Compiler:" +msgstr "" + +#: kbugreport.cpp:228 +msgid "Se&verity" +msgstr "" + +#: kbugreport.cpp:230 +msgid "Critical" +msgstr "Èiginneach" + +#: kbugreport.cpp:230 +msgid "Grave" +msgstr "Cudromach" + +#: kbugreport.cpp:230 +msgctxt "normal severity" +msgid "Normal" +msgstr "Àbhaisteach" + +#: kbugreport.cpp:230 +msgid "Wishlist" +msgstr "Miann" + +#: kbugreport.cpp:230 +msgid "Translation" +msgstr "Eadar-theangachadh" + +#: kbugreport.cpp:248 +msgid "S&ubject: " +msgstr "C&uspair: " + +#: kbugreport.cpp:256 +msgid "" +"Enter the text (in English if possible) that you wish to submit for the bug " +"report.\n" +"If you press \"Send\", a mail message will be sent to the maintainer of this " +"program.\n" +msgstr "" + +#: kbugreport.cpp:279 +msgid "" +"To submit a bug report, click on the button below. This will open a web " +"browser window on http://bugs.kde.org " +"where you will find a form to fill in. The information displayed above will " +"be transferred to that server." +msgstr "" + +#: kbugreport.cpp:294 +msgid "&Launch Bug Report Wizard" +msgstr "" + +#: kbugreport.cpp:357 +msgctxt "unknown program name" +msgid "unknown" +msgstr "chan eil fhios" + +#: kbugreport.cpp:416 +msgid "" +"You must specify both a subject and a description before the report can be " +"sent." +msgstr "" + +#: kbugreport.cpp:425 +msgid "" +"

You chose the severity Critical. Please note that this severity is " +"intended only for bugs that:

  • break unrelated software on the " +"system (or the whole system)
  • cause serious data loss
  • introduce a security hole on the system where the affected package is " +"installed
\n" +"

Does the bug you are reporting cause any of the above damage? If it does " +"not, please select a lower severity. Thank you.

" +msgstr "" + +#: kbugreport.cpp:437 +msgid "" +"

You chose the severity Grave. Please note that this severity is " +"intended only for bugs that:

  • make the package in question " +"unusable or mostly so
  • cause data loss
  • introduce a security " +"hole allowing access to the accounts of users who use the affected package
\n" +"

Does the bug you are reporting cause any of the above damage? If it does " +"not, please select a lower severity. Thank you.

" +msgstr "" + +#: kbugreport.cpp:451 +msgid "" +"Unable to send the bug report.\n" +"Please submit a bug report manually....\n" +"See http://bugs.kde.org/ for instructions." +msgstr "" + +#: kbugreport.cpp:459 +msgid "Bug report sent, thank you for your input." +msgstr "" + +#: kbugreport.cpp:467 +msgid "" +"Close and discard\n" +"edited message?" +msgstr "" + +#: kbugreport.cpp:468 +msgid "Close Message" +msgstr "" + +#: kcheckaccelerators.cpp:221 +msgctxt "@title:window" +msgid "Dr. Klash' Accelerator Diagnosis" +msgstr "" + +#: kcheckaccelerators.cpp:228 +msgctxt "@option:check" +msgid "Disable automatic checking" +msgstr "" + +#: kcheckaccelerators.cpp:232 +msgctxt "@action:button" +msgid "Close" +msgstr "Dùin" + +#: kcheckaccelerators.cpp:273 +msgid "

Accelerators changed

" +msgstr "" + +#: kcheckaccelerators.cpp:275 kcheckaccelerators.cpp:286 +msgid "Old Text" +msgstr "Seann-teacsa" + +#: kcheckaccelerators.cpp:277 kcheckaccelerators.cpp:295 +msgid "New Text" +msgstr "Teacsa ùr" + +#: kcheckaccelerators.cpp:284 +msgid "

Accelerators removed

" +msgstr "" + +#: kcheckaccelerators.cpp:293 +msgid "

Accelerators added (just for your info)

" +msgstr "" + +#: kedittoolbar.cpp:56 +msgid "--- separator ---" +msgstr "--- sgaradair ---" + +#: kedittoolbar.cpp:350 +msgid "Change Text" +msgstr "" + +#: kedittoolbar.cpp:361 +msgid "Icon te&xt:" +msgstr "" + +#: kedittoolbar.cpp:366 +msgid "&Hide text when toolbar shows text alongside icons" +msgstr "" + +#: kedittoolbar.cpp:619 +msgid "Configure Toolbars" +msgstr "" + +#: kedittoolbar.cpp:682 +msgid "" +"Do you really want to reset all toolbars of this application to their " +"default? The changes will be applied immediately." +msgstr "" + +#: kedittoolbar.cpp:682 +msgid "Reset Toolbars" +msgstr "" + +#: kedittoolbar.cpp:682 +msgid "Reset" +msgstr "" + +#: kedittoolbar.cpp:1010 +msgid "&Toolbar:" +msgstr "" + +#: kedittoolbar.cpp:1025 +msgid "A&vailable actions:" +msgstr "" + +#: kedittoolbar.cpp:1040 kedittoolbar.cpp:1059 +msgid "Filter" +msgstr "" + +#: kedittoolbar.cpp:1043 +msgid "Curr&ent actions:" +msgstr "" + +#: kedittoolbar.cpp:1062 +msgid "Change &Icon..." +msgstr "" + +#: kedittoolbar.cpp:1070 +msgid "Change Te&xt..." +msgstr "" + +#: kedittoolbar.cpp:1222 +#, kde-format +msgctxt "@item:intable Action name in toolbar editor" +msgid "%1" +msgstr "" + +#: kedittoolbar.cpp:1242 +msgid "" +"This element will be replaced with all the elements of an embedded component." +msgstr "" + +#: kedittoolbar.cpp:1244 +msgid "" +msgstr "" + +#: kedittoolbar.cpp:1246 +#, kde-format +msgid "" +msgstr "" + +#: kedittoolbar.cpp:1252 +msgid "" +"This is a dynamic list of actions. You can move it, but if you remove it you " +"will not be able to re-add it." +msgstr "" + +#: kedittoolbar.cpp:1253 +#, kde-format +msgid "ActionList: %1" +msgstr "" + +#: kedittoolbar.cpp:1353 kedittoolbar.cpp:1380 +#, kde-format +msgctxt "@label Action tooltip in toolbar editor, below the action list" +msgid "%1" +msgstr "" + +#: kedittoolbar.cpp:1607 +msgid "Change Icon" +msgstr "" + +#: kgesture.cpp:505 +msgctxt "left mouse button" +msgid "left button" +msgstr "" + +#: kgesture.cpp:508 +msgctxt "middle mouse button" +msgid "middle button" +msgstr "" + +#: kgesture.cpp:511 +msgctxt "right mouse button" +msgid "right button" +msgstr "" + +#: kgesture.cpp:514 +msgctxt "a nonexistent value of mouse button" +msgid "invalid button" +msgstr "" + +#: kgesture.cpp:528 +#, kde-format +msgctxt "" +"a kind of mouse gesture: hold down one mouse button, then press another " +"button" +msgid "Hold %1, then push %2" +msgstr "" + +#. i18n: ectx: Menu (help) +#: khelpmenu.cpp:169 ui_standards.rc:177 +msgid "&Help" +msgstr "" + +#: kkeysequencewidget.cpp:128 +#, kde-format +msgid "Shortcut '%1' in Application %2 for action %3\n" +msgstr "" + +#: kkeysequencewidget.cpp:138 +#, kde-format +msgctxt "" +"%1 is the number of conflicts (hidden), %2 is the key sequence of the " +"shortcut that is problematic" +msgid "The shortcut '%2' conflicts with the following key combination:\n" +msgid_plural "" +"The shortcut '%2' conflicts with the following key combinations:\n" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: kkeysequencewidget.cpp:144 +msgctxt "%1 is the number of shortcuts with which there is a conflict" +msgid "Conflict with Registered Global Shortcut" +msgid_plural "Conflict with Registered Global Shortcuts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: kkeysequencewidget.cpp:146 kkeysequencewidget.cpp:233 +#: kkeysequencewidget.cpp:619 kshortcutseditor.cpp:624 +#: kshortcutseditor.cpp:642 +msgid "Reassign" +msgstr "" + +#: kkeysequencewidget.cpp:214 +msgctxt "%1 is the number of conflicts" +msgid "Shortcut Conflict" +msgid_plural "Shortcut Conflicts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: kkeysequencewidget.cpp:218 +#, kde-format +msgid "Shortcut '%1' for action '%2'\n" +msgstr "" + +#: kkeysequencewidget.cpp:223 +#, kde-format +msgctxt "%1 is the number of ambigious shortcut clashes (hidden)" +msgid "" +"The \"%2\" shortcut is ambiguous with the following shortcut.\n" +"Do you want to assign an empty shortcut to this action?\n" +"%3" +msgid_plural "" +"The \"%2\" shortcut is ambiguous with the following shortcuts.\n" +"Do you want to assign an empty shortcut to these actions?\n" +"%3" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: kkeysequencewidget.cpp:242 +msgid "Shortcut conflict" +msgstr "" + +#: kkeysequencewidget.cpp:243 +#, kde-format +msgid "" +"The '%1' key combination is already used by the %2 action." +"
Please select a different one.
" +msgstr "" + +#: kkeysequencewidget.cpp:273 +msgid "" +"Click on the button, then enter the shortcut like you would in the program.\n" +"Example for Ctrl+A: hold the Ctrl key and press A." +msgstr "" + +#: kkeysequencewidget.cpp:465 +msgid "Reserved Shortcut" +msgstr "" + +#: kkeysequencewidget.cpp:466 +msgid "" +"The F12 key is reserved on Windows, so cannot be used for a global " +"shortcut.\n" +"Please choose another one." +msgstr "" + +#: kkeysequencewidget.cpp:613 +msgid "Conflict with Standard Application Shortcut" +msgstr "" + +#: kkeysequencewidget.cpp:614 +#, kde-format +msgid "" +"The '%1' key combination is also used for the standard action \"%2\" that " +"some applications use.\n" +"Do you really want to use it as a global shortcut as well?" +msgstr "" + +#: kkeysequencewidget.cpp:659 +msgctxt "What the user inputs now will be taken as the new shortcut" +msgid "Input" +msgstr "" + +#: kkeysequencewidget.cpp:666 kshortcuteditwidget.cpp:63 +#: kshortcuteditwidget.cpp:66 +msgctxt "No shortcut defined" +msgid "None" +msgstr "" + +#: kkeysequencewidget.cpp:712 +msgid "The key you just pressed is not supported by Qt." +msgstr "" + +#: kkeysequencewidget.cpp:713 +msgid "Unsupported Key" +msgstr "" + +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "GunChleoc" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "fios@foramnagaidhlig.net" + +#: kmenumenuhandler_p.cpp:50 +msgid "Add to Toolbar" +msgstr "" + +#: kmenumenuhandler_p.cpp:227 +msgid "Configure Shortcut..." +msgstr "" + +#: ksendbugmail/main.cpp:45 +msgid "Error connecting to server." +msgstr "" + +#: ksendbugmail/main.cpp:48 +msgid "Not connected." +msgstr "" + +#: ksendbugmail/main.cpp:51 +msgid "Connection timed out." +msgstr "" + +#: ksendbugmail/main.cpp:54 +msgid "Time out waiting for server interaction." +msgstr "" + +#: ksendbugmail/main.cpp:58 +#, kde-format +msgid "Server said: \"%1\"" +msgstr "" + +#: ksendbugmail/main.cpp:89 +msgid "Sends a bug report by email." +msgstr "" + +#: ksendbugmail/main.cpp:91 +msgid "The subject line of the email." +msgstr "" + +#: ksendbugmail/main.cpp:92 +msgid "The email address to send the bug report to." +msgstr "" + +#: kshortcuteditwidget.cpp:62 +msgid "Default:" +msgstr "" + +#: kshortcuteditwidget.cpp:70 +msgid "Custom:" +msgstr "" + +#: kshortcutschemeseditor.cpp:43 +msgid "Shortcut Schemes" +msgstr "" + +#: kshortcutschemeseditor.cpp:62 +msgid "Current scheme:" +msgstr "" + +#: kshortcutschemeseditor.cpp:72 +msgid "New..." +msgstr "" + +#: kshortcutschemeseditor.cpp:75 +msgid "Delete" +msgstr "" + +#: kshortcutschemeseditor.cpp:78 +msgid "More Actions" +msgstr "" + +#: kshortcutschemeseditor.cpp:82 +msgid "Save as Scheme Defaults" +msgstr "" + +#: kshortcutschemeseditor.cpp:84 +msgid "Export Scheme..." +msgstr "" + +#: kshortcutschemeseditor.cpp:86 +msgid "Import Scheme..." +msgstr "" + +#: kshortcutschemeseditor.cpp:102 +msgid "Name for New Scheme" +msgstr "" + +#: kshortcutschemeseditor.cpp:103 +msgid "Name for new scheme:" +msgstr "" + +#: kshortcutschemeseditor.cpp:103 +msgid "New Scheme" +msgstr "" + +#: kshortcutschemeseditor.cpp:109 +msgid "A scheme with this name already exists." +msgstr "" + +#: kshortcutschemeseditor.cpp:138 +#, kde-format +msgid "" +"Do you really want to delete the scheme %1?\n" +"Note that this will not remove any system wide shortcut schemes." +msgstr "" + +#: kshortcutschemeseditor.cpp:168 +msgid "Export Shortcuts" +msgstr "" + +#: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 +msgid "Shortcuts (*.shortcuts)" +msgstr "" + +#: kshortcutschemeseditor.cpp:179 +msgid "Import Shortcuts" +msgstr "" + +#: kshortcutsdialog.cpp:85 +msgid "" +"The current shortcut scheme is modified. Save before switching to the new " +"one?" +msgstr "" + +#: kshortcutsdialog.cpp:130 kshortcutsdialog.cpp:165 +msgid "&Details" +msgstr "" + +#: kshortcutsdialog.cpp:149 +msgid "Configure Shortcuts" +msgstr "" + +#. i18n: ectx: property (whatsThis), widget (KTreeWidgetSearchLineWidget, searchFilter) +#: kshortcutsdialog.ui:16 +msgid "" +"Search interactively for shortcut names (e.g. Copy) or combination of keys " +"(e.g. Ctrl+C) by typing them here." +msgstr "" + +#. i18n: ectx: property (whatsThis), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:23 +msgid "" +"Here you can see a list of key bindings, i.e. associations between actions " +"(e.g. 'Copy') shown in the left column and keys or combination of keys (e.g. " +"Ctrl+V) shown in the right column." +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:33 +msgid "Action" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:38 +msgid "Shortcut" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:43 +msgid "Alternate" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:48 +msgid "Global" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:53 +msgid "Global Alternate" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:58 +msgid "Mouse Button Gesture" +msgstr "" + +#. i18n: ectx: property (text), widget (QTreeWidget, list) +#: kshortcutsdialog.ui:63 +msgid "Mouse Shape Gesture" +msgstr "" + +#: kshortcutseditor.cpp:619 kshortcutseditor.cpp:637 +msgid "Key Conflict" +msgstr "" + +#: kshortcutseditor.cpp:620 +#, kde-format +msgid "" +"The '%1' shape gesture has already been allocated to the \"%2\" action.\n" +"Do you want to reassign it from that action to the current one?" +msgstr "" + +#: kshortcutseditor.cpp:638 +#, kde-format +msgid "" +"The '%1' rocker gesture has already been allocated to the \"%2\" action.\n" +"Do you want to reassign it from that action to the current one?" +msgstr "" + +#: kshortcutseditor.cpp:685 +#, kde-format +msgctxt "header for an applications shortcut list" +msgid "Shortcuts for %1" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, priLabel) +#: kshortcutseditor.cpp:703 kshortcutwidget.ui:22 +msgid "Main:" +msgstr "" + +#. i18n: ectx: property (text), widget (QLabel, altLabel) +#: kshortcutseditor.cpp:704 kshortcutwidget.ui:52 +msgid "Alternate:" +msgstr "" + +#: kshortcutseditor.cpp:705 +msgid "Global:" +msgstr "" + +#: kshortcutseditor.cpp:706 +msgid "Global alternate:" +msgstr "" + +#: kshortcutseditor.cpp:721 +msgid "Action Name" +msgstr "" + +#: kshortcutseditor.cpp:725 +msgid "Shortcuts" +msgstr "" + +#: kshortcutseditor.cpp:729 +msgid "Description" +msgstr "" + +#: kshortcutseditoritem.cpp:51 +#, kde-format +msgctxt "@item:intable Action name in shortcuts configuration" +msgid "%1" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:152 +msgid "Switch Application Language" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:157 +msgid "Please choose the language which should be used for this application:" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:184 +msgid "Add Fallback Language" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:185 +msgid "" +"Adds one more language which will be used if other translations do not " +"contain a proper translation." +msgstr "" + +#: kswitchlanguagedialog_p.cpp:281 kswitchlanguagedialog_p.cpp:303 +msgid "" +"The language for this application has been changed. The change will take " +"effect the next time the application is started." +msgstr "" + +#: kswitchlanguagedialog_p.cpp:282 kswitchlanguagedialog_p.cpp:304 +msgid "Application Language Changed" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:396 +msgid "Primary language:" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:396 +msgid "Fallback language:" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:415 +msgid "Remove" +msgstr "" + +#: kswitchlanguagedialog_p.cpp:426 +msgid "" +"This is the main application language which will be used first, before any " +"other languages." +msgstr "" + +#: kswitchlanguagedialog_p.cpp:427 +msgid "" +"This is the language which will be used if any previous languages do not " +"contain a proper translation." +msgstr "" + +#: ktoolbar.cpp:303 +msgctxt "@title:menu" +msgid "Show Text" +msgstr "" + +#: ktoolbar.cpp:306 +msgctxt "@title:menu" +msgid "Toolbar Settings" +msgstr "" + +#: ktoolbar.cpp:308 +msgctxt "Toolbar orientation" +msgid "Orientation" +msgstr "" + +#: ktoolbar.cpp:310 +msgctxt "toolbar position string" +msgid "Top" +msgstr "" + +#: ktoolbar.cpp:312 +msgctxt "toolbar position string" +msgid "Left" +msgstr "" + +#: ktoolbar.cpp:313 +msgctxt "toolbar position string" +msgid "Right" +msgstr "" + +#: ktoolbar.cpp:314 +msgctxt "toolbar position string" +msgid "Bottom" +msgstr "" + +#: ktoolbar.cpp:322 +msgid "Text Position" +msgstr "" + +#: ktoolbar.cpp:324 +msgid "Icons Only" +msgstr "" + +#: ktoolbar.cpp:325 +msgid "Text Only" +msgstr "" + +#: ktoolbar.cpp:326 +msgid "Text Alongside Icons" +msgstr "" + +#: ktoolbar.cpp:327 +msgid "Text Under Icons" +msgstr "" + +#: ktoolbar.cpp:335 +msgid "Icon Size" +msgstr "" + +#: ktoolbar.cpp:337 +msgctxt "@item:inmenu Icon size" +msgid "Default" +msgstr "" + +#: ktoolbar.cpp:354 ktoolbar.cpp:375 +#, kde-format +msgid "Small (%1x%2)" +msgstr "" + +#: ktoolbar.cpp:356 ktoolbar.cpp:377 +#, kde-format +msgid "Medium (%1x%2)" +msgstr "" + +#: ktoolbar.cpp:358 ktoolbar.cpp:379 +#, kde-format +msgid "Large (%1x%2)" +msgstr "" + +#: ktoolbar.cpp:360 ktoolbar.cpp:381 +#, kde-format +msgid "Huge (%1x%2)" +msgstr "" + +#: ktoolbar.cpp:403 +msgid "Lock Toolbar Positions" +msgstr "" + +#: ktoolbar.cpp:1357 +#, kde-format +msgctxt "@action:intoolbar Text label of toolbar button" +msgid "%1" +msgstr "" + +#: ktoolbar.cpp:1358 +#, kde-format +msgctxt "@info:tooltip Tooltip of toolbar button" +msgid "%1" +msgstr "" + +#: ktoolbarhandler.cpp:101 +msgid "Toolbars Shown" +msgstr "" + +#: kundoactions.cpp:43 +msgid "Redo" +msgstr "" + +#: kundoactions.cpp:62 +msgid "Undo" +msgstr "" + +#: kxmlguibuilder.cpp:188 kxmlguibuilder.cpp:352 +msgid "No text" +msgstr "" + +#. i18n: ectx: Menu (file) +#: ui_standards.rc:5 +msgid "&File" +msgstr "" + +#. i18n: ectx: Menu (game) +#: ui_standards.rc:34 +msgid "&Game" +msgstr "" + +#. i18n: ectx: Menu (edit) +#: ui_standards.rc:61 +msgid "&Edit" +msgstr "" + +#. i18n: ectx: Menu (move) +#: ui_standards.rc:84 +msgctxt "@title:menu Game move" +msgid "&Move" +msgstr "" + +#. i18n: ectx: Menu (view) +#: ui_standards.rc:101 +msgid "&View" +msgstr "" + +#. i18n: ectx: Menu (go) +#: ui_standards.rc:117 +msgid "&Go" +msgstr "" + +#. i18n: ectx: Menu (bookmarks) +#: ui_standards.rc:138 +msgid "&Bookmarks" +msgstr "" + +#. i18n: ectx: Menu (tools) +#: ui_standards.rc:144 +msgid "&Tools" +msgstr "" + +#. i18n: ectx: Menu (settings) +#: ui_standards.rc:148 +msgid "&Settings" +msgstr "" + +#. i18n: ectx: ToolBar (mainToolBar) +#: ui_standards.rc:194 +msgid "Main Toolbar" +msgstr "" diff -Nru kxmlgui-5.15.0/po/gl/kxmlgui5.po kxmlgui-5.18.0/po/gl/kxmlgui5.po --- kxmlgui-5.15.0/po/gl/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/gl/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -14,8 +14,8 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-07-09 10:08+0100\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-07 11:11+0100\n" "Last-Translator: Adrián Chaves Fernández (Gallaecio) \n" "Language-Team: Galician \n" @@ -23,21 +23,12 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"com>\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" "X-Environment: kde, development\n" "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Xabier García Feal, marce villarino, Xosé Calvo" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "xosecalvo@gmail.com, mvillarino@gmail.com, proxecto@trasno.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -832,14 +823,24 @@ msgid "None" msgstr "Ningún" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "A tecla que acaba de premer non é admitida por Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla non admitida" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Xabier García Feal, marce villarino, Xosé Calvo" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "xosecalvo@gmail.com, mvillarino@gmail.com, proxecto@trasno.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Engadir á barra de ferramentas" @@ -918,10 +919,8 @@ msgstr "Exportar o esquema..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "Exportar o esquema..." +msgstr "Importar un esquema…" #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -949,23 +948,16 @@ "Lembre que isto non eliminará ningún esquema de atallos do sistema." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "Atallos" +msgstr "Exportar os atallos" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgctxt "header for an applications shortcut list" -#| msgid "Shortcuts for %1" msgid "Shortcuts (*.shortcuts)" -msgstr "Atallos de %1" +msgstr "Atallos (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "Atallos" +msgstr "Importar atallos" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/gu/kxmlgui5.po kxmlgui-5.18.0/po/gu/kxmlgui5.po --- kxmlgui-5.15.0/po/gu/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/gu/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-11-22 00:01+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Kartik Mistry" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kartik.mistry@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -889,14 +881,24 @@ msgid "None" msgstr "કંઇ નહી" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "તમે હમણાં દબાવેલ કળ Qt વડે આધાર આપવામાં આવતી નથી." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "આધાર ન અપાતી કળ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Kartik Mistry" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kartik.mistry@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "સાધનપટ્ટીમાં ઉમેરો" diff -Nru kxmlgui-5.15.0/po/ha/kxmlgui5.po kxmlgui-5.18.0/po/ha/kxmlgui5.po --- kxmlgui-5.15.0/po/ha/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ha/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-03-17 11:22+0100\n" "Last-Translator: Adriaan de Groot \n" "Language-Team: Hausa \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 0.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Mustapha Abubakar,Adriaan de Groot,Ibrahim Dasuna" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr ",groot@kde.org," - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -711,14 +703,24 @@ msgid "None" msgstr "" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Mustapha Abubakar,Adriaan de Groot,Ibrahim Dasuna" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr ",groot@kde.org," + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "" diff -Nru kxmlgui-5.15.0/po/he/kxmlgui5.po kxmlgui-5.18.0/po/he/kxmlgui5.po --- kxmlgui-5.15.0/po/he/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/he/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-01-10 17:20+0200\n" "Last-Translator: Diego Iastrubni \n" "Language-Team: Hebrew \n" @@ -31,14 +31,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "צוות התרגום של KDE ישראל" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kde-l10n-he@kde.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -839,14 +831,24 @@ msgid "None" msgstr "ללא" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "המקש שלחצת אינו נתמך על ידי Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "מקש לא נתמך" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "צוות התרגום של KDE ישראל" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kde-l10n-he@kde.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "הוסף לסרגל־הכלים" diff -Nru kxmlgui-5.15.0/po/hi/kxmlgui5.po kxmlgui-5.18.0/po/hi/kxmlgui5.po --- kxmlgui-5.15.0/po/hi/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hi/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-06-25 15:27+0530\n" "Last-Translator: G Karunakar \n" "Language-Team: Hindi \n" @@ -20,14 +20,6 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 1.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "करुणाकर गुंटुपल्ली" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "karunakar@indlinux.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -754,14 +746,24 @@ msgid "None" msgstr "कुछ नहीं" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "जो कुँजी आपने दबाई वह Qt द्वारा समर्थित नहीं है" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "असमर्थित कुँजी" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "करुणाकर गुंटुपल्ली" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "karunakar@indlinux.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "औज़ार-पट्टी में जोड़ें" diff -Nru kxmlgui-5.15.0/po/hne/kxmlgui5.po kxmlgui-5.18.0/po/hne/kxmlgui5.po --- kxmlgui-5.15.0/po/hne/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hne/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-02-10 20:44+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -19,14 +19,6 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 0.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "रविसंकर सिरीवास्तव, जी. करूनाकर" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "raviratlami@aol.in," - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -864,15 +856,25 @@ msgid "None" msgstr "कुछ नइ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 #, fuzzy msgid "The key you just pressed is not supported by Qt." msgstr "जऊन कुंजी आप मन दबाय हो वो हर क्यूटी द्वारा समर्थित नइ हे." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "असमर्थित कुंजी" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "रविसंकर सिरीवास्तव, जी. करूनाकर" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "raviratlami@aol.in," + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "औजार-पट्टी मं जोड़व" diff -Nru kxmlgui-5.15.0/po/hr/kxmlgui5.po kxmlgui-5.18.0/po/hr/kxmlgui5.po --- kxmlgui-5.15.0/po/hr/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hr/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-07-22 16:08+0200\n" "Last-Translator: Marko Dimjašević \n" "Language-Team: Croatian \n" @@ -29,16 +29,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Renato Pavičić, Žarko Pintar, Marko Dimjašević, Andrej Dundović" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"renato@translator-shop.org, zarko.pintar@gmail.com, marko@dimjasevic.net, " -"adundovi@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -867,14 +857,26 @@ msgid "None" msgstr "Bez" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ne podržava tipku koju ste upravo pritisnuli." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodržana tipka" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Renato Pavičić, Žarko Pintar, Marko Dimjašević, Andrej Dundović" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"renato@translator-shop.org, zarko.pintar@gmail.com, marko@dimjasevic.net, " +"adundovi@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj na alatnu traku" diff -Nru kxmlgui-5.15.0/po/hsb/kxmlgui5.po kxmlgui-5.18.0/po/hsb/kxmlgui5.po --- kxmlgui-5.15.0/po/hsb/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hsb/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-12-19 22:49+0100\n" "Last-Translator: Eduard Werner \n" "Language-Team: en_US \n" @@ -22,14 +22,6 @@ "%100==4 ? 2 : 3;\n" "X-Generator: KAider 0.1\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Edward Wornar" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "edi.werner@gmx.de" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -938,16 +930,26 @@ msgid "None" msgstr "Žane" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 #, fuzzy #| msgid "The key you just pressed isn't supported by Qt." msgid "The key you just pressed is not supported by Qt." msgstr "Tasta, kotruž sće runje stłóčili, so wot Qt njepodpěruje." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Njepodpěrana tasta" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Edward Wornar" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "edi.werner@gmx.de" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "K nastrojowemu paskej dodać" diff -Nru kxmlgui-5.15.0/po/hu/kxmlgui5.po kxmlgui-5.18.0/po/hu/kxmlgui5.po --- kxmlgui-5.15.0/po/hu/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hu/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-09-03 13:34+0200\n" "Last-Translator: Kristóf Kiszel \n" "Language-Team: Hungarian \n" @@ -16,14 +16,6 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Kiszel Kristóf,Szántó Tamás" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "ulysses@kubuntu.org,taszanto@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -826,14 +818,24 @@ msgid "None" msgstr "Nincs" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "A most lenyomott billentyűt a Qt nem támogatja." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nem támogatott billentyű" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Kiszel Kristóf,Szántó Tamás" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "ulysses@kubuntu.org,taszanto@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Hozzáadás az eszköztárhoz" diff -Nru kxmlgui-5.15.0/po/hy/kxmlgui5.po kxmlgui-5.18.0/po/hy/kxmlgui5.po --- kxmlgui-5.15.0/po/hy/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/hy/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-01-31 01:08+0400\n" "Last-Translator: Davit \n" "Language-Team: Armenian Language: hy\n" @@ -21,14 +21,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Դավիթ Նիկողոսյան" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "nikdavnik@mail.ru" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -884,14 +876,24 @@ msgid "None" msgstr "Ընտրված չէ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Սեղմված կոճակը չի համապատասխանում Qt հետ։" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Կոճակը չի համապատասխանում" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Դավիթ Նիկողոսյան" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "nikdavnik@mail.ru" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Ավելացնել գործիքների վահանակի մեջ" diff -Nru kxmlgui-5.15.0/po/ia/kxmlgui5.po kxmlgui-5.18.0/po/ia/kxmlgui5.po --- kxmlgui-5.15.0/po/ia/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ia/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-04-04 16:01+0200\n" "Last-Translator: G.Sora \n" "Language-Team: Interlingua \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Giovanni Sora" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "g.sora@tiscali.it" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -834,14 +826,24 @@ msgid "None" msgstr "Nulle" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Le clave que tu tosto pressava non es supportate per Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Clave non supportate" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Giovanni Sora" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "g.sora@tiscali.it" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Adde a la barra de instrumento" diff -Nru kxmlgui-5.15.0/po/id/kxmlgui5.po kxmlgui-5.18.0/po/id/kxmlgui5.po --- kxmlgui-5.15.0/po/id/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/id/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-06-26 19:35+0700\n" "Last-Translator: Andhika Padmawan \n" "Language-Team: Indonesian \n" @@ -17,14 +17,6 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Andhika Padmawan" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "andhika.padmawan@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -826,14 +818,24 @@ msgid "None" msgstr "Tak Ada" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Tombol yang baru anda tekan tidak didukung oleh Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tombol Tak Didukung" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Andhika Padmawan" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "andhika.padmawan@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Tambah ke Batang Alat" diff -Nru kxmlgui-5.15.0/po/is/kxmlgui5.po kxmlgui-5.18.0/po/is/kxmlgui5.po --- kxmlgui-5.15.0/po/is/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/is/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-05-13 22:40+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -28,18 +28,6 @@ "\n" "\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Richard Allen, Logi Ragnarsson, Pjetur G. Hjaltason, Arnar Leósson, Svanur " -"Pálsson, Sveinn í Felli" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"ra@ra.is, logi@logi.org, pjetur@pjetur.net, leosson@frisurf.no, svanur@tern." -"is, sveinki@nett.is" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -862,14 +850,28 @@ msgid "None" msgstr "Engin" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Lykillinn sem þú varst að ýta á er ekki studdur í Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Óstuddur lykill" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Richard Allen, Logi Ragnarsson, Pjetur G. Hjaltason, Arnar Leósson, Svanur " +"Pálsson, Sveinn í Felli" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"ra@ra.is, logi@logi.org, pjetur@pjetur.net, leosson@frisurf.no, svanur@tern." +"is, sveinki@nett.is" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Bæta við tækjaslá" diff -Nru kxmlgui-5.15.0/po/it/kxmlgui5.po kxmlgui-5.18.0/po/it/kxmlgui5.po --- kxmlgui-5.15.0/po/it/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/it/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-25 12:17+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" @@ -26,15 +26,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Vincenzo Reale,Federico Zenith,Dario Panico,Nicola Ruggero,Federico Cozzi" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "smart2128@baslug.org,,,," - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -832,14 +823,25 @@ msgid "None" msgstr "Nessuna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Il tasto che hai appena premuto non è supportato da Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tasto non supportato" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Vincenzo Reale,Federico Zenith,Dario Panico,Nicola Ruggero,Federico Cozzi" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "smart2128@baslug.org,,,," + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Aggiungi alla barra degli strumenti" diff -Nru kxmlgui-5.15.0/po/ja/kxmlgui5.po kxmlgui-5.18.0/po/ja/kxmlgui5.po --- kxmlgui-5.15.0/po/ja/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ja/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-08-27 14:05-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -26,17 +26,6 @@ "X-Text-Markup: kde4\n" "X-Generator: Lokalize 1.1\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Taiki Komoda,Noboru Sinohara,Toyohiro Asukai,Kurose Shushi,Shinichi Tsunoda" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"kom@kde.gr.jp,shinobo@leo.bekkoame.ne.jp,toyohiro@ksmplus.com,md81@bird." -"email.ne.jp,tsuno@ngy.1st.ne.jp" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -857,14 +846,27 @@ msgid "None" msgstr "なし" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "あなたが押したキーは Qt でサポートされていません。" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "サポートされていないキー" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Taiki Komoda,Noboru Sinohara,Toyohiro Asukai,Kurose Shushi,Shinichi Tsunoda" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"kom@kde.gr.jp,shinobo@leo.bekkoame.ne.jp,toyohiro@ksmplus.com,md81@bird." +"email.ne.jp,tsuno@ngy.1st.ne.jp" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "ツールバーに追加" diff -Nru kxmlgui-5.15.0/po/ka/kxmlgui5.po kxmlgui-5.18.0/po/ka/kxmlgui5.po --- kxmlgui-5.15.0/po/ka/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ka/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-12-17 02:11+0400\n" "Last-Translator: George Machitidze \n" "Language-Team: Georgian \n" @@ -16,14 +16,6 @@ "X-Generator: KBabel 1.9\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "გია შერვაშიძე" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "giasher@telenet.ge" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -870,16 +862,26 @@ msgid "None" msgstr "არა" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Untrusted" msgid "Unsupported Key" msgstr "შეუმოწმებელი" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "გია შერვაშიძე" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "giasher@telenet.ge" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/kk/kxmlgui5.po kxmlgui-5.18.0/po/kk/kxmlgui5.po --- kxmlgui-5.15.0/po/kk/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/kk/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-11-08 01:24+0600\n" "Last-Translator: Sairan Kikkarin \n" "Language-Team: Kazakh \n" @@ -23,16 +23,6 @@ "\n" "\n" -# -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Сайран Киккарин" - -# -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sairan@computer.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -847,14 +837,26 @@ msgid "None" msgstr "Жоқ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Жаңа ғана басқан пернені Qt танымайды." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Танымайтын перне" +# +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Сайран Киккарин" + +# +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sairan@computer.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Құралдар панеліне қосу" diff -Nru kxmlgui-5.15.0/po/km/kxmlgui5.po kxmlgui-5.18.0/po/km/kxmlgui5.po --- kxmlgui-5.15.0/po/km/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/km/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-06-27 10:04+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" @@ -16,16 +16,6 @@ "X-Generator: KBabel 1.11.4\n" "X-Language: km-KH\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr " ខឹម សុខែម, ម៉ន ម៉េត, សេង សុត្ថា​​, ចាន់ សម្បត្តិរតនៈ, សុខ សុភា" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"khoemsokhem@khmeros.info,​​mornmet@khmeros.info,sutha@khmeros.info," -"ratanak@khmeros.info,sophea@khmeros.info" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -820,14 +810,26 @@ msgid "None" msgstr "គ្មាន" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "គ្រាប់ចុច​ដែល​អ្នក​ទើបតែ​បាន​ចុច​មិន​ត្រូវ​បានគាំទ្រ​ដោយ Qt ទេ ។" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "គ្រាប់ចុច​មិនបានគាំទ្រ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr " ខឹម សុខែម, ម៉ន ម៉េត, សេង សុត្ថា​​, ចាន់ សម្បត្តិរតនៈ, សុខ សុភា" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"khoemsokhem@khmeros.info,​​mornmet@khmeros.info,sutha@khmeros.info," +"ratanak@khmeros.info,sophea@khmeros.info" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "បន្ថែម​ទៅ​របារ​ឧបករណ៍" diff -Nru kxmlgui-5.15.0/po/kn/kxmlgui5.po kxmlgui-5.18.0/po/kn/kxmlgui5.po --- kxmlgui-5.15.0/po/kn/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/kn/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-06-24 18:32+0530\n" "Last-Translator: Shankar Prasad \n" "Language-Team: kn_IN \n" @@ -21,14 +21,6 @@ "\n" "X-Generator: Lokalize 1.0\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ಉಮೇಶ್ ರುದ್ರಪಟ್ಟಣ, ಸಿದ್ಧಾರೂಢ ಪಿ ಟಿ, ಶಂಕರ ಪ್ರಸಾದ್ ಎಂ ವಿ" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "umeshrs@gmail.com, siddharudh@gmail.com, svenkate@redhat.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -802,14 +794,24 @@ msgid "None" msgstr "ಯಾವುದೂ ಇಲ್ಲ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "ನೀವು ಈಗ ಒತ್ತಿದ ಕೀಲಿಕೈಗೆ Qt ಯ ಬೆಂಬಲವಿಲ್ಲ." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ಬೆಂಬಲವಿಲ್ಲದೆ ಇರುವ ಕೀಲಿ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ಉಮೇಶ್ ರುದ್ರಪಟ್ಟಣ, ಸಿದ್ಧಾರೂಢ ಪಿ ಟಿ, ಶಂಕರ ಪ್ರಸಾದ್ ಎಂ ವಿ" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "umeshrs@gmail.com, siddharudh@gmail.com, svenkate@redhat.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "ಉಪಕರಣಪಟ್ಟಿಗೆ ಸೇರಿಸು" diff -Nru kxmlgui-5.15.0/po/ko/kxmlgui5.po kxmlgui-5.18.0/po/ko/kxmlgui5.po --- kxmlgui-5.15.0/po/ko/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ko/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -8,24 +8,16 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-07-29 12:02+0200\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-10 22:44+0100\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.5\n" - -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Cho Sung Jae,Shinjo Park" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "cho.sungjae@gmail.com,kde@peremen.name" +"X-Generator: Lokalize 2.0\n" #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format @@ -57,7 +49,7 @@ "Using:
  • KDE Frameworks %1
  • Qt %2 (built against %3)
  • The " "%4 windowing system
" msgstr "" -"사용:
  • KDE 프레임워크 %1
  • Qt %2(%3으로 빌드됨)
  • 창 관리" +"사용:
    • KDE 프레임워크 %1
    • Qt %2(%3(으)로 빌드됨)
    • 창 관리" "자: %4
    " #: kaboutapplicationdialog.cpp:168 @@ -205,7 +197,7 @@ "KDE자유 소프트웨어 개발을 위해 모인 소프트" "웨어 개발자, 예술가, 집필가, 번역가 및 기타 인원의 모임입니다. KDE 커뮤니티에" "서는 KDE 프레임워크, 작업 공간 및 프로그램의 일원으로 다양한 프로그램을 개발" -"하였습니다.

    어떠한 단일 집단도 KDE에 누가 들어가는가, KDE에서 무엇" +"했습니다.

    어떠한 단일 집단도 KDE에 누가 들어가는가, KDE에서 무엇" "을 개발하는가를 통제하지 않습니다. KDE에는 이 글을 읽는 여러분을 포함한 누구" "나 참여하고 기여할 수 있습니다.

    %2을 방문하셔" "서 KDE 커뮤니티와 소프트웨어에 대해 알아 보십시오." @@ -793,14 +785,24 @@ msgid "None" msgstr "없음" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt에서 방금 누른 키를 지원하지 않습니다." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "지원하지 않는 키" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Cho Sung Jae,Shinjo Park" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "cho.sungjae@gmail.com,kde@peremen.name" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "도구 모음에 추가" @@ -879,10 +881,8 @@ msgstr "배열 내보내기..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "배열 내보내기..." +msgstr "배열 가져오기..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -910,23 +910,16 @@ "
시스템 전역 단축키 배열을 삭제하지는 않습니다." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "단축키" +msgstr "단축키 내보내기" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgctxt "header for an applications shortcut list" -#| msgid "Shortcuts for %1" msgid "Shortcuts (*.shortcuts)" -msgstr "%1의 단축키" +msgstr "단축키 (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "단축키" +msgstr "단축키 가져오기" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/ku/kxmlgui5.po kxmlgui-5.18.0/po/ku/kxmlgui5.po --- kxmlgui-5.15.0/po/ku/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ku/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+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" @@ -26,14 +26,6 @@ "X-Poedit-Country: Kurdistan\n" "X-Poedit-SourceCharset: utf-8\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Erdal Ronahi" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "erdal.ronahi@nospam.gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -800,14 +792,24 @@ msgid "None" msgstr "Ti yek" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Bişkojka te pêlêkirî ji aliyê Qt ve nayê naskirin." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Mifteya Bêpiştgir" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Erdal Ronahi" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "erdal.ronahi@nospam.gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Têxe darikê amûran" diff -Nru kxmlgui-5.15.0/po/lb/kxmlgui5.po kxmlgui-5.18.0/po/lb/kxmlgui5.po --- kxmlgui-5.15.0/po/lb/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/lb/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2006-06-22 16:29+0200\n" "Last-Translator: Michel Ludwig \n" "Language-Team: Luxembourgish \n" @@ -16,14 +16,6 @@ "X-Generator: KBabel 1.11.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Kevin Claude Everard,Michel Ludwig" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kevin@math.uni-sb.de,miclud@studcs.uni-sb.de" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -904,16 +896,26 @@ msgid "None" msgstr "Keng" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Untrusted" msgid "Unsupported Key" msgstr "Net als sëcher agestuft" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Kevin Claude Everard,Michel Ludwig" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kevin@math.uni-sb.de,miclud@studcs.uni-sb.de" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/lt/kxmlgui5.po kxmlgui-5.18.0/po/lt/kxmlgui5.po --- kxmlgui-5.15.0/po/lt/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/lt/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,14 +7,15 @@ # Remigijus Jarmalavičius , 2011. # Liudas Ališauskas , 2011, 2012, 2013, 2014. # Liudas Alisauskas , 2013. +# Mindaugas Baranauskas , 2015. msgid "" msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2014-03-16 20:46+0200\n" -"Last-Translator: Liudas Ališauskas \n" -"Language-Team: Lithuanian \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-12-30 18:08+0200\n" +"Last-Translator: Mindaugas Baranauskas \n" +"Language-Team: lt \n" "Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,18 +24,6 @@ "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Ričardas Čepas, Donatas Glodenis, Gintautas Miselis, Andrius Štikonas, " -"Liudas Ališauskas" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"rch@richard.eu.org, dgvirtual@akl.lt, gintautas@miselis.lt, stikonas@gmail." -"com, liudas@akmc.lt" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -277,12 +266,12 @@ msgstr "" "Jei norite tapti KDE komandos nariu, Jums visai nereikia būti " "programinės įrangos kūrėju. Galite prisidėti prie nacionalinių komandų, " -"kurios daro programų sąsajų vertimus. Galite tiekti grafiką, temas, garsus " -"ir patobulinti dokumentaciją. Sprendžiate Jūs!

    Norėdami rasti " -"daugiau informacijos apie projektus, kuriuose galite dalyvauti, " -"apsilankykite %1. Jei Jums reikia daugiau informacijos " -"arba dokumentacijos, apsilankymas %2 patenkins Jūsų " -"poreikius." +"kurios daro programų sąsajų vertimus. Galite tiekti grafiką, " +"apipavidalinimus, garsus ir patobulinti dokumentaciją. Sprendžiate Jūs!

    Norėdami rasti daugiau informacijos apie projektus, kuriuose galite " +"dalyvauti, apsilankykite %1. Jei Jums reikia daugiau " +"informacijos arba dokumentacijos, apsilankymas %2 " +"patenkins Jūsų poreikius." #: kaboutkdedialog_p.cpp:114 #, kde-format @@ -334,7 +323,7 @@ "from the 'Settings' menu to solve the ambiguity.\n" "No action will be triggered." msgstr "" -"Klavišų seka „%1“ yra neaiški. Iš meniu „Nustatymai“ išsirinkę \n" +"Klavišų seka „%1“ yra neaiški. Iš meniu „Nuostatos“ išsirinkę \n" "įrašą „Konfigūruoti sparčiuosius klavišus“ galite \n" "šį neaiškumą panaikinti. Klavišai neiššaukia jokio veiksmo." @@ -833,7 +822,7 @@ msgstr "" "Spauskite mygtuką, tada įveskite klavišų derinį taip, tarsi spaustumėte jį " "programoje.\n" -"Pavyzdžiui kombinacijai Ctrl+a: laikykite Ctrl ir spauskite a." +"Pavyzdžiui kombinacijai Vald+a: laikykite Vald ir spauskite a." #: kkeysequencewidget.cpp:465 msgid "Reserved Shortcut" @@ -875,14 +864,28 @@ msgid "None" msgstr "Jokio" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Klavišas, kurį nuspaudėte, nepalaikomas Qt sistemoje." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepalaikomas klavišas" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Ričardas Čepas, Donatas Glodenis, Gintautas Miselis, Andrius Štikonas, " +"Liudas Ališauskas" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"rch@richard.eu.org, dgvirtual@akl.lt, gintautas@miselis.lt, stikonas@gmail." +"com, liudas@akmc.lt" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Įtraukti į įrankinę" @@ -1048,7 +1051,7 @@ "(e.g. Ctrl+C) by typing them here." msgstr "" "Interaktyviai ieškokite klavišų derinių pavadinimų (pvz., Copy) arba klavišų " -"kombinacijų(pvz., Ctrl+C) įrašydami juos čia." +"kombinacijų(pvz., Vald+C) įrašydami juos čia." #. i18n: ectx: property (whatsThis), widget (QTreeWidget, list) #: kshortcutsdialog.ui:23 @@ -1059,7 +1062,7 @@ msgstr "" "Čia galite matyti klavišų derinių sąrašą, t.y. sąsajas tarp veiksmo (pvz., " "„Kopijuoti“), rodomo kairiame stulpelyje, ir klavišų arba jų derinių (pvz., " -"Ctrl+C), dešiniame stulpelyje." +"Vald+C), dešiniame stulpelyje." #. i18n: ectx: property (text), widget (QTreeWidget, list) #: kshortcutsdialog.ui:33 @@ -1380,7 +1383,7 @@ #. i18n: ectx: Menu (settings) #: ui_standards.rc:148 msgid "&Settings" -msgstr "Nu&statymai" +msgstr "Nuo&statos" #. i18n: ectx: ToolBar (mainToolBar) #: ui_standards.rc:194 diff -Nru kxmlgui-5.15.0/po/lv/kxmlgui5.po kxmlgui-5.18.0/po/lv/kxmlgui5.po --- kxmlgui-5.15.0/po/lv/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/lv/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-07-06 12:57+0300\n" "Last-Translator: Maris Nartiss \n" "Language-Team: Latvian\n" @@ -25,14 +25,6 @@ "X-Launchpad-Export-Date: 2007-11-22 17:44+0000\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Viesturs Zariņš, Māris Nartišs" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "viesturs.zarins@mi.lu.lv, maris.kde@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -896,14 +888,24 @@ msgid "None" msgstr "Nav" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt neatbalsta jūsu nospiesto taustiņu." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Neatbalstīts taustiņš" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Viesturs Zariņš, Māris Nartišs" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "viesturs.zarins@mi.lu.lv, maris.kde@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Pievienot rīkjoslai" diff -Nru kxmlgui-5.15.0/po/mai/kxmlgui5.po kxmlgui-5.18.0/po/mai/kxmlgui5.po --- kxmlgui-5.15.0/po/mai/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/mai/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-09-24 15:44+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" @@ -20,14 +20,6 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "संगीता कुमारी" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sangeeta09@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -802,14 +794,24 @@ msgid "None" msgstr "किछु नहि" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "असमर्थित कुंजी" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "संगीता कुमारी" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sangeeta09@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "अओजार-पट्टी मे जोड़ू" diff -Nru kxmlgui-5.15.0/po/mk/kxmlgui5.po kxmlgui-5.18.0/po/mk/kxmlgui5.po --- kxmlgui-5.15.0/po/mk/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/mk/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-01-27 10:39+0100\n" "Last-Translator: Bozidar Proevski \n" "Language-Team: Macedonian \n" @@ -29,14 +29,6 @@ "Plural-Forms: Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : " "2;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Божидар Проевски" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "bobibobi@freemail.com.mk" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -914,14 +906,24 @@ msgid "None" msgstr "Нема" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Тастерот што го притиснавте не е поддржан од Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Неподдржан тастер" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Божидар Проевски" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "bobibobi@freemail.com.mk" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Додај во алатник" diff -Nru kxmlgui-5.15.0/po/ml/kxmlgui5.po kxmlgui-5.18.0/po/ml/kxmlgui5.po --- kxmlgui-5.15.0/po/ml/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ml/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-12-29 15:32+0530\n" "Last-Translator: \n" "Language-Team: \n" @@ -23,16 +23,6 @@ "X-Generator: KBabel 1.11.4\n" "X-Poedit-Country: INDIA\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍, അനി പീറ്റര്‍, മാക്സിന്‍ ജോണ്‍, അനൂപ് പനവളപ്പില്‍, മനു എസ് മാധവ്" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"pravi.a@gmail.com, peter.ani@gmail.com, maxinbjohn@gmail.com, gnuanu@gmail." -"com, manusmad@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -776,14 +766,26 @@ msgid "None" msgstr "ഒന്നുമല്ല" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "നിങ്ങള്‍ അമര്‍ത്തിയ കീ ക്യൂട്ടി പിന്തുണയ്ക്കുന്നതല്ല." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "പിന്തുണയില്ലാത്ത കീ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍, അനി പീറ്റര്‍, മാക്സിന്‍ ജോണ്‍, അനൂപ് പനവളപ്പില്‍, മനു എസ് മാധവ്" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"pravi.a@gmail.com, peter.ani@gmail.com, maxinbjohn@gmail.com, gnuanu@gmail." +"com, manusmad@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "പണിയായുധനിരയിലേക്കു് ചേര്‍ക്കുക" diff -Nru kxmlgui-5.15.0/po/mr/kxmlgui5.po kxmlgui-5.18.0/po/mr/kxmlgui5.po --- kxmlgui-5.15.0/po/mr/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/mr/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-03-29 16:14+0530\n" "Last-Translator: Chetan Khona \n" "Language-Team: Marathi \n" @@ -19,18 +19,6 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"संदिप शेडमाके, \n" -"चेतन खोना" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"sandeep.shedmake@gmail.com, \n" -"chetan@kompkin.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -768,14 +756,28 @@ msgid "None" msgstr "काहीच नाही" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "तुम्ही जी कळ दाबली ती Qt मध्ये समर्थीत नाही." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "असमर्थीत कि" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"संदिप शेडमाके, \n" +"चेतन खोना" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"sandeep.shedmake@gmail.com, \n" +"chetan@kompkin.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "साधनपट्टीशी जोडा" diff -Nru kxmlgui-5.15.0/po/ms/kxmlgui5.po kxmlgui-5.18.0/po/ms/kxmlgui5.po --- kxmlgui-5.15.0/po/ms/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ms/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-07-16 00:57+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" @@ -21,14 +21,6 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Sharuzzaman Ahmat Raslan" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sharuzzaman@myrealbox.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -884,14 +876,24 @@ msgid "None" msgstr "Tiada" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Kekunci yang anda baru tekan tidak disokong oleh Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Kekunci Tidak Disokong" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Sharuzzaman Ahmat Raslan" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sharuzzaman@myrealbox.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Tambah ke Bar Alatan" diff -Nru kxmlgui-5.15.0/po/nb/kxmlgui5.po kxmlgui-5.18.0/po/nb/kxmlgui5.po --- kxmlgui-5.15.0/po/nb/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/nb/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -1,3 +1,5 @@ +# Translation of kxmlgui5 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. @@ -10,7 +12,7 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-06-03 18:51+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Bokmål \n" @@ -24,14 +26,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Knut Yrvin,Axel Bojer,Bjørn Steensrud" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "knut.yrvin@gmail.com,axel@bojer.no,bjornst@skogkatt.homelinux.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -817,14 +811,24 @@ msgid "None" msgstr "Ingen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt støtter ikke den tasten du nettopp trykket." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Ustøttet tast" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Knut Yrvin,Axel Bojer,Bjørn Steensrud" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "knut.yrvin@gmail.com,axel@bojer.no,bjornst@skogkatt.homelinux.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Legg til verktøylinja" diff -Nru kxmlgui-5.15.0/po/nds/kxmlgui5.po kxmlgui-5.18.0/po/nds/kxmlgui5.po --- kxmlgui-5.15.0/po/nds/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/nds/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-06-18 01:32+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -19,14 +19,6 @@ "X-Generator: Lokalize 1.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Sönke Dibbern, Manfred Wiese" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "s_dibbern@web.de, m.j.wiese@web.de" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -834,14 +826,24 @@ msgid "None" msgstr "Keen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ünnerstütt de Tast nich, de Du jüst drückt hest." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nich ünnerstütt Tast" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Sönke Dibbern, Manfred Wiese" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "s_dibbern@web.de, m.j.wiese@web.de" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Na Warktüüchbalken tofögen" diff -Nru kxmlgui-5.15.0/po/ne/kxmlgui5.po kxmlgui-5.18.0/po/ne/kxmlgui5.po --- kxmlgui-5.15.0/po/ne/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ne/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2007-11-05 15:41+0545\n" "Last-Translator: Shyam Krishna Bal \n" "Language-Team: Nepali \n" @@ -22,14 +22,6 @@ "Plural-Forms: nplurals=2; plural=n !=1\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Mahesh Subedi, श्यामकृष्ण बल, Nabin Gautam" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "submanesh@gmail.com, shyamkrishna_bal@yahoo.com, Nabin@mpp.org.np" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -917,16 +909,26 @@ msgid "None" msgstr "कुनै पनि होइन" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Unsorted" msgid "Unsupported Key" msgstr "क्रमबद्ध नगरिएका" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Mahesh Subedi, श्यामकृष्ण बल, Nabin Gautam" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "submanesh@gmail.com, shyamkrishna_bal@yahoo.com, Nabin@mpp.org.np" + #: kmenumenuhandler_p.cpp:50 #, fuzzy #| msgid "Add to toolbar" diff -Nru kxmlgui-5.15.0/po/nl/kxmlgui5.po kxmlgui-5.18.0/po/nl/kxmlgui5.po --- kxmlgui-5.15.0/po/nl/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/nl/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-22 17:18+0200\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" @@ -31,19 +31,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Rinse de Vries - 2000 t/m 2008,Wilbert Berendsen - 2003; 2004,Bram " -"Schoenmakers - 2004 t/m 2007,Tom Albers - 2004,Tijmen Baarda - 2005,Sander " -"Koning - 2005, Freek de Kruijf - 2009 t/m 2012" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"rinsedevries@kde.nl,wbsoft@xs4all.nl,bramschoenmakers@kde.nl,tomalbers@kde." -"nl,tijmenbaarda@kde.nl,,freekdekruijf@kde.nl" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -840,14 +827,29 @@ msgid "None" msgstr "Geen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "De toets die u net indrukte wordt niet door Qt ondersteund." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Niet ondersteunde sleutel" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Rinse de Vries - 2000 t/m 2008,Wilbert Berendsen - 2003; 2004,Bram " +"Schoenmakers - 2004 t/m 2007,Tom Albers - 2004,Tijmen Baarda - 2005,Sander " +"Koning - 2005, Freek de Kruijf - 2009 t/m 2012" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"rinsedevries@kde.nl,wbsoft@xs4all.nl,bramschoenmakers@kde.nl,tomalbers@kde." +"nl,tijmenbaarda@kde.nl,,freekdekruijf@kde.nl" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Aan werkbalk toevoegen" diff -Nru kxmlgui-5.15.0/po/nn/kxmlgui5.po kxmlgui-5.18.0/po/nn/kxmlgui5.po --- kxmlgui-5.15.0/po/nn/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/nn/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-08-27 21:36+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Nynorsk \n" @@ -22,14 +22,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Gaute Hvoslef Kvalnes,Karl Ove Hufthammer" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "gaute@verdsveven.com,karl@huftis.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -307,7 +299,7 @@ msgstr "" "Snøggtasten «%1» er tvetydig. Vel «Set opp snøggtastar»\n" "frå «Innstillingar»-menyen for å løysa konflikta.\n" -"Inga handling vart utførd." +"Inga handling vart utført." #: kactionconflictdetector.cpp:53 msgid "Ambiguous shortcut detected" @@ -812,14 +804,24 @@ msgid "None" msgstr "Ingen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Tasten du trykte er ikkje støtta av Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Ustøtta tast" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Gaute Hvoslef Kvalnes,Karl Ove Hufthammer" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "gaute@verdsveven.com,karl@huftis.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Legg til verktøylinje" diff -Nru kxmlgui-5.15.0/po/oc/kxmlgui5.po kxmlgui-5.18.0/po/oc/kxmlgui5.po --- kxmlgui-5.15.0/po/oc/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/oc/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-08-06 00:07+0200\n" "Last-Translator: \n" "Language-Team: Occitan \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Yannig Marchegay (Kokoyaya)" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "yannig@marchegay.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -823,14 +815,24 @@ msgid "None" msgstr "Pas cap" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Yannig Marchegay (Kokoyaya)" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "yannig@marchegay.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "" diff -Nru kxmlgui-5.15.0/po/or/kxmlgui5.po kxmlgui-5.18.0/po/or/kxmlgui5.po --- kxmlgui-5.15.0/po/or/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/or/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-01-02 17:37+0530\n" "Last-Translator: Manoj Kumar Giri \n" "Language-Team: Oriya \n" @@ -23,14 +23,6 @@ "\n" "X-Generator: KBabel 1.11.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ମନୋଜ କୁମାର ଗିରି" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "mgiri@redhat.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -781,14 +773,24 @@ msgid "None" msgstr "କେହିନୁହଁ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ଅସମର୍ଥିତ କି" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ମନୋଜ କୁମାର ଗିରି" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "mgiri@redhat.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "ସାଧନପଟିରେ ଯୋଗକରନ୍ତୁ" diff -Nru kxmlgui-5.15.0/po/pa/kxmlgui5.po kxmlgui-5.18.0/po/pa/kxmlgui5.po --- kxmlgui-5.15.0/po/pa/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/pa/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-07-08 14:49-0500\n" "Last-Translator: A S Alam \n" "Language-Team: Punjabi/Panjabi \n" @@ -24,16 +24,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"ਅ.ਸ.ਆਲਮ. ੨੦੦੪-੨੦੧੪\n" -"http://code.google.com/p/gurmukhi/" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "aalam@users.sf.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -810,14 +800,26 @@ msgid "None" msgstr "ਕੋਈ ਨਹੀਂ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "ਸਵਿੱਚ, ਜੋ ਦੱਬੀ ਹੈ, Qt ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ਗ਼ੈਰ-ਸਹਾਇਕ ਸਵਿੱਚ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"ਅ.ਸ.ਆਲਮ. ੨੦੦੪-੨੦੧੪\n" +"http://code.google.com/p/gurmukhi/" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "aalam@users.sf.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "ਟੂਲਬਾਰ ਵਿੱਚ ਸ਼ਾਮਲ" diff -Nru kxmlgui-5.15.0/po/pl/kxmlgui5.po kxmlgui-5.18.0/po/pl/kxmlgui5.po --- kxmlgui-5.15.0/po/pl/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/pl/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-09-26 09:09+0100\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-14 08:57+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -112,14 +112,6 @@ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Michał Rudolf, Artur Chłond, Łukasz Wojniłowicz" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "mrudolf@kdewebdev.org, eugenewolfe@o2.pl, lukasz.wojnilowicz@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -150,8 +142,8 @@ "Using:
    • KDE Frameworks %1
    • Qt %2 (built against %3)
    • The " "%4 windowing system
    " msgstr "" -"Używa:
    • Szkielety KDE %1
    • Qt %2 (zbudowane z %3)
    • System " -"okien %4
    " +"Używa:
    • Szkielety KDE %1
    • Qt %2 (zbudowane na %3)
    • System okien %4
    " #: kaboutapplicationdialog.cpp:168 msgid "&Version" @@ -411,7 +403,7 @@ #: kbugreport.cpp:97 kbugreport.cpp:119 msgid "Submit Bug Report" -msgstr "Podeślij zgłoszenie o błędzie" +msgstr "Zgłaszanie błędu" #: kbugreport.cpp:130 msgid "" @@ -533,14 +525,14 @@ "where you will find a form to fill in. The information displayed above will " "be transferred to that server." msgstr "" -"Aby zgłosić błąd, kliknij przycisk poniżej.Spowoduje to otworzenie okna " -"przeglądarki na stronie http://bugs.kde.org, gdzie znajduje się formularz do wypełnienia. Informacje wyświetlone " -"powyżej zostaną przesłane do tego serwera." +"Aby zgłosić błąd, naciśnij na przycisk poniżej. Otworzy to przeglądarkę " +"internetową na stronie http://bugs.kde.org, gdzie będzie znajdował się formularz do wypełnienia. Formularz zostanie " +"w części wypełniony powyższym informacjami." #: kbugreport.cpp:294 msgid "&Launch Bug Report Wizard" -msgstr "&Uruchom pomocnika zgłaszania błędu" +msgstr "&Rozpocznij zgłaszanie błędu" #: kbugreport.cpp:357 msgctxt "unknown program name" @@ -918,14 +910,24 @@ msgid "None" msgstr "Brak" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Klawisz, który wcisnąłeś, nie jest obsługiwany przez Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nieobsługiwany klawisz" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Michał Rudolf, Artur Chłond, Łukasz Wojniłowicz" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "mrudolf@kdewebdev.org, eugenewolfe@o2.pl, lukasz.wojnilowicz@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj do paska narzędzi" @@ -1189,23 +1191,22 @@ #: kswitchlanguagedialog_p.cpp:184 msgid "Add Fallback Language" -msgstr "Dodaj język awaryjny" +msgstr "Dodaj język zapasowy" #: kswitchlanguagedialog_p.cpp:185 msgid "" "Adds one more language which will be used if other translations do not " "contain a proper translation." msgstr "" -"Dodaje jeden lub więcej jeżyków, które będą używane gdy pierwszy język nie " -"zawiera własnego tłumaczenia." +"Dodaje dodatkowy język, używany przy braku tłumaczenia dla języka domyślnego" #: kswitchlanguagedialog_p.cpp:281 kswitchlanguagedialog_p.cpp:303 msgid "" "The language for this application has been changed. The change will take " "effect the next time the application is started." msgstr "" -"Język tego programu został zmieniony. Zmiany odniosą skutek po następnym " -"uruchomieniu programu." +"Język tego programu został zmieniony. Wprowadzone zmiany odniosą skutek przy " +"następnym uruchomieniu programu." #: kswitchlanguagedialog_p.cpp:282 kswitchlanguagedialog_p.cpp:304 msgid "Application Language Changed" @@ -1217,7 +1218,7 @@ #: kswitchlanguagedialog_p.cpp:396 msgid "Fallback language:" -msgstr "Język awaryjny:" +msgstr "Język zapasowy:" #: kswitchlanguagedialog_p.cpp:415 msgid "Remove" diff -Nru kxmlgui-5.15.0/po/ps/kxmlgui5.po kxmlgui-5.18.0/po/ps/kxmlgui5.po --- kxmlgui-5.15.0/po/ps/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ps/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-08-16 16:01-0800\n" "Last-Translator: Zabeeh Khan \n" "Language-Team: Pashto \n" @@ -19,14 +19,6 @@ "X-Poedit-Language: Pashto, Pushto\n" "X-Poedit-Country: AFGHANISTAN\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ستاسو نومونه" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "zabeehkhan@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -774,16 +766,26 @@ msgid "None" msgstr "هېڅ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Unsorted" msgid "Unsupported Key" msgstr "نا اڼلي" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ستاسو نومونه" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "zabeehkhan@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "توکپټې کې زياتول" diff -Nru kxmlgui-5.15.0/po/pt/kxmlgui5.po kxmlgui-5.18.0/po/pt/kxmlgui5.po --- kxmlgui-5.15.0/po/pt/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/pt/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-22 23:29+0100\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" @@ -107,14 +107,6 @@ "X-POFile-IgnoreConsistency: Update\n" "X-POFile-IgnoreConsistency: New Text\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "José Nuno Pires" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "zepires@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -905,14 +897,24 @@ msgid "None" msgstr "Nenhum" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "A tecla que acabou de pressionar não é suportada pelo Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla Não Suportada" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "José Nuno Pires" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "zepires@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Adicionar à Barra de Ferramentas" diff -Nru kxmlgui-5.15.0/po/pt_BR/kxmlgui5.po kxmlgui-5.18.0/po/pt_BR/kxmlgui5.po --- kxmlgui-5.15.0/po/pt_BR/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/pt_BR/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -17,8 +17,8 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-09-22 20:15-0300\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-10-19 10:10-0200\n" "Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" @@ -28,18 +28,6 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Diniz Bortolotto, Lisiane Sztoltz Teixeira, André Marcelo Alvarenga, Luiz " -"Fernando Ranghetti" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"diniz.bortolotto@gmail.com, lisiane@kdemail.net, alvarenga@kde.org, " -"elchevive@opensuse.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -571,7 +559,7 @@ #: kcheckaccelerators.cpp:293 msgid "

    Accelerators added (just for your info)

    " -msgstr "

    Aceleradores adicionados (somente para o seu conhecimento)

    " +msgstr "

    Aceleradores adicionados (apenas para conhecimento)

    " #: kedittoolbar.cpp:56 msgid "--- separator ---" @@ -600,9 +588,8 @@ "Do you really want to reset all toolbars of this application to their " "default? The changes will be applied immediately." msgstr "" -"Tem certeza de que deseja redefinir todas as barras de ferramentas deste " -"aplicativo para seus valores padrão? As alterações serão aplicadas " -"imediatamente." +"Deseja realmente redefinir todas as barras de ferramentas deste aplicativo " +"para seus valores padrão? As alterações serão aplicadas imediatamente." #: kedittoolbar.cpp:682 msgid "Reset Toolbars" @@ -826,7 +813,7 @@ msgstr "" "A combinação de teclas '%1' está atribuída para a ação padrão \"%2\", usada " "por alguns aplicativos.\n" -"Você realmente deseja usá-la como um atalho global?" +"Deseja realmente usá-la como um atalho global?" #: kkeysequencewidget.cpp:659 msgctxt "What the user inputs now will be taken as the new shortcut" @@ -839,14 +826,28 @@ msgid "None" msgstr "Nenhum" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "A tecla que você pressionou não é suportada pelo Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tecla não suportada" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Diniz Bortolotto, Lisiane Sztoltz Teixeira, André Marcelo Alvarenga, Luiz " +"Fernando Ranghetti" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"diniz.bortolotto@gmail.com, lisiane@kdemail.net, alvarenga@kde.org, " +"elchevive@opensuse.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Adicionar à barra de ferramentas" @@ -1264,7 +1265,7 @@ #: ktoolbarhandler.cpp:101 msgid "Toolbars Shown" -msgstr "Barras de ferramentas exibidas" +msgstr "Barras de ferramentas visíveis" #: kundoactions.cpp:43 msgid "Redo" diff -Nru kxmlgui-5.15.0/po/ro/kxmlgui5.po kxmlgui-5.18.0/po/ro/kxmlgui5.po --- kxmlgui-5.15.0/po/ro/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ro/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2014-03-26 19:20+0200\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Romanian \n" @@ -19,14 +19,6 @@ "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Claudiu Costin,Sergiu Bivol,Laurențiu Buzdugan,Cristian Oneț" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr ",sergiu@ase.md,lbuz@rolix.org,onet.cristian@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -248,10 +240,10 @@ msgstr "" "Programele pot fi îmbunătățite întotdeauna și echipa KDE este gata să " "o facă. Pentru aceasta, dumneavoastră, utilizatorul, ar trebui să ne " -"comunicați cînd ceva nu merge cum trebuie sau poate fi făcut mai bine.

    KDE are un sistem de urmărire a erorilor. Vizitați
    %1 sau utilizați dialogul „Raportează eroare” din meniul „Ajutor” pentru a " -"comunica erori.

    Dacă aveți sugestii pentru îmbunătățiri sînteți " +"comunica erori.

    Dacă aveți sugestii pentru îmbunătățiri sunteți " "invitat să utilizați sistemul de urmărire a erorilor și să vă înregistrați " "dorința. Asigurați-vă că utilizați prioritatea numită „Dorință”." @@ -296,11 +288,11 @@ "legală fondată în Germania. Asociația KDE reprezintă comunitateaKDE în " "probleme legale și financiare. Vizitați
    %1 pentru mai " "multe informații despre Asociația KDE.

    KDE beneficiază de multe " -"feluri de sprijin, inclusiv financiar. Fondurile sînt utilizate pentru a " +"feluri de sprijin, inclusiv financiar. Fondurile sunt utilizate pentru a " "rambursa cheltuielile membrilor și a altora făcute pentru contribuția la KDE." -"Fondurile suplimentare sînt folosite pentru chestiuni legale și pentru " -"organizarea unor conferințe și întîlniri

    Sînteți încurajat să " -"ajutați KDE printr-o donație financiară, utilizînd una din modalitățile " +"Fondurile suplimentare sunt folosite pentru chestiuni legale și pentru " +"organizarea unor conferințe și întâlniri

    Sunteți încurajat să " +"ajutați KDE printr-o donație financiară, utilizând una din modalitățile " "descrise la %2.

    Vă mulțumim anticipat pentru " "sprijinul dumneavoastră." @@ -397,7 +389,7 @@ "available before sending a bug report" msgstr "" "Versiunea acestei aplicații. Asigurați-vă că nu există o versiune mai nouă " -"atunci cînd trimiteți un raport de eroare." +"atunci când trimiteți un raport de eroare." #: kbugreport.cpp:194 msgid "Version:" @@ -606,7 +598,7 @@ #: kedittoolbar.cpp:366 msgid "&Hide text when toolbar shows text alongside icons" msgstr "" -"&Ascunde textul atunci cînd bara de unelte afișează text lîngă pictograme" +"&Ascunde textul atunci când bara de unelte afișează text lângă pictograme" #: kedittoolbar.cpp:619 msgid "Configure Toolbars" @@ -700,7 +692,7 @@ #: kgesture.cpp:505 msgctxt "left mouse button" msgid "left button" -msgstr "butonul stîng" +msgstr "butonul stâng" #: kgesture.cpp:508 msgctxt "middle mouse button" @@ -869,14 +861,24 @@ msgid "None" msgstr "Niciuna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Tasta pe care tocmai ați apăsat-o nu este susținută de Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tastă nesuportată" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Claudiu Costin,Sergiu Bivol,Laurențiu Buzdugan,Cristian Oneț" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr ",sergiu@ase.md,lbuz@rolix.org,onet.cristian@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Adaugă la bara de unelte" @@ -1039,7 +1041,7 @@ "(e.g. Ctrl+C) by typing them here." msgstr "" "Caută interactiv un nume de accelerator (de ex: Copiază) sau o combinație de " -"taste (de ex: Ctrl+C) tastînd-o aici." +"taste (de ex: Ctrl+C) tastând-o aici." #. i18n: ectx: property (whatsThis), widget (QTreeWidget, list) #: kshortcutsdialog.ui:23 @@ -1049,7 +1051,7 @@ "Ctrl+V) shown in the right column." msgstr "" "Aici puteți vedea o listă de asocieri de taste, adică asocierile dintre " -"acțiunile afișate în coloana din stînga (de ex. „Copiază”) și tastele sau " +"acțiunile afișate în coloana din stânga (de ex. „Copiază”) și tastele sau " "combinațiile de taste (de ex. Ctrl-V) afișate în coloana din dreapta." #. i18n: ectx: property (text), widget (QTreeWidget, list) @@ -1236,7 +1238,7 @@ #: ktoolbar.cpp:312 msgctxt "toolbar position string" msgid "Left" -msgstr "Stînga" +msgstr "Stânga" #: ktoolbar.cpp:313 msgctxt "toolbar position string" @@ -1262,7 +1264,7 @@ #: ktoolbar.cpp:326 msgid "Text Alongside Icons" -msgstr "Text lîngă pictograme" +msgstr "Text lângă pictograme" #: ktoolbar.cpp:327 msgid "Text Under Icons" diff -Nru kxmlgui-5.15.0/po/ru/kxmlgui5.po kxmlgui-5.18.0/po/ru/kxmlgui5.po --- kxmlgui-5.15.0/po/ru/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ru/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-10-01 22:33+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" @@ -33,18 +33,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Григорий Мохин,Николай Шафоростов,Андрей Черепанов,Леонид Кантер,Альберт " -"Валиев" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"mok@kde.ru,shaforostoff@kde.ru,skull@kde.ru,leon@asplinux.ru," -"darkstar@altlinux.ru" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -862,14 +850,28 @@ msgid "None" msgstr "Не определена" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Нажатая клавиша не поддерживается в Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Клавиша не поддерживается" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Григорий Мохин,Николай Шафоростов,Андрей Черепанов,Леонид Кантер,Альберт " +"Валиев" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"mok@kde.ru,shaforostoff@kde.ru,skull@kde.ru,leon@asplinux.ru," +"darkstar@altlinux.ru" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Добавить на панель инструментов" diff -Nru kxmlgui-5.15.0/po/se/kxmlgui5.po kxmlgui-5.18.0/po/se/kxmlgui5.po --- kxmlgui-5.15.0/po/se/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/se/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -1,9 +1,11 @@ +# Translation of kxmlgui5 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-08-25 10:49+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-05-30 23:19+0200\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" @@ -17,14 +19,6 @@ "X-Accelerator-Marker: &\n" "X-Text-Markup: kde4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Børre Gaup" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "boerre@skolelinux.no" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -810,14 +804,24 @@ msgid "None" msgstr "Ii mihkkige" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ii doarjjo boalu maid easka deaddilit." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Doarjjokeahtes boallu" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Børre Gaup" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "boerre@skolelinux.no" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Lasit reaidoholgii" @@ -898,23 +902,27 @@ msgid "Export Scheme..." msgstr "Olggosfievrrit čoahkkádusa …" -#: kshortcutschemeseditor.cpp:101 +#: kshortcutschemeseditor.cpp:86 +msgid "Import Scheme..." +msgstr "" + +#: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" msgstr "Ođđa čoahkkádusa namma" -#: kshortcutschemeseditor.cpp:102 +#: kshortcutschemeseditor.cpp:103 msgid "Name for new scheme:" msgstr "Čoahkkádusa namma" -#: kshortcutschemeseditor.cpp:102 +#: kshortcutschemeseditor.cpp:103 msgid "New Scheme" msgstr "Ođđa čoahkkádus" -#: kshortcutschemeseditor.cpp:108 +#: kshortcutschemeseditor.cpp:109 msgid "A scheme with this name already exists." msgstr "Čoahkkádus dán namas gávdno juo." -#: kshortcutschemeseditor.cpp:137 +#: kshortcutschemeseditor.cpp:138 #, kde-format msgid "" "Do you really want to delete the scheme %1?\n" @@ -924,13 +932,17 @@ "Fuomáš ahte dát ii váldde eret ovttage vuogádatviidosaš njuolggobálggis " "čoahkkádusa." -#: kshortcutschemeseditor.cpp:167 -msgid "Export to Location" -msgstr "Olggosfievrrit dása" - -#: kshortcutschemeseditor.cpp:175 -msgid "Could not export shortcuts scheme because the location is invalid." -msgstr "Ii sáhttán olggosfievrridit čoahkkádusa danne go báiki ii gusto." +#: kshortcutschemeseditor.cpp:168 +msgid "Export Shortcuts" +msgstr "" + +#: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 +msgid "Shortcuts (*.shortcuts)" +msgstr "" + +#: kshortcutschemeseditor.cpp:179 +msgid "Import Shortcuts" +msgstr "" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/si/kxmlgui5.po kxmlgui-5.18.0/po/si/kxmlgui5.po --- kxmlgui-5.15.0/po/si/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/si/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-07-25 07:45+0530\n" "Last-Translator: Danishka Navin \n" "Language-Team: Sinhala \n" @@ -18,14 +18,6 @@ " \n" "X-Generator: Lokalize 1.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ඩනිෂ්ක නවින්" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "danishka@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -859,16 +851,26 @@ msgid "None" msgstr "කිසිවක් නැත" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 #, fuzzy #| msgid "The key you just pressed isn't supported by Qt." msgid "The key you just pressed is not supported by Qt." msgstr "ඔබ දැන් එබූ යතුර Qt මඟින් සහය දක්වන්නේ නැත." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "සහාය නොදන්නා යතුරු" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ඩනිෂ්ක නවින්" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "danishka@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "මෙවලම් තීරුවට එක් කරන්න" diff -Nru kxmlgui-5.15.0/po/sk/kxmlgui5.po kxmlgui-5.18.0/po/sk/kxmlgui5.po --- kxmlgui-5.15.0/po/sk/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sk/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-24 19:15+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" @@ -22,17 +22,6 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Stanislav Višňovský,Richard Frič,Michal Gašpar,Jakub Vatrt,Michal Šulek" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"visnovsky@kde.org,Richard.Fric@kdemail.net,miguel@portugal.sk,vatrtj@gmail." -"com,misurel@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -822,14 +811,27 @@ msgid "None" msgstr "Žiadna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Práve stlačená klávesa nie je podporovaná v Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodporovaná klávesa" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Stanislav Višňovský,Richard Frič,Michal Gašpar,Jakub Vatrt,Michal Šulek" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"visnovsky@kde.org,Richard.Fric@kdemail.net,miguel@portugal.sk,vatrtj@gmail." +"com,misurel@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Pridať do panelu nástrojov" diff -Nru kxmlgui-5.15.0/po/sl/kxmlgui5.po kxmlgui-5.18.0/po/sl/kxmlgui5.po --- kxmlgui-5.15.0/po/sl/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sl/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-07-07 22:06+0200\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-10-25 19:03+0100\n" "Last-Translator: Andrej Mernik \n" "Language-Team: Slovenian \n" "Language: sl\n" @@ -28,16 +28,6 @@ "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n" "%100==4 ? 3 : 0);\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Roman Maurer,Gregor Rakar,Andrej Vernekar,Jure Repinc,Andrej Mernik" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"roman.maurer@amis.net,gregor.rakar@kiss.si,andrej.vernekar@gmail.com," -"jlp@holodeck1.com,andrejm@ubuntu.si" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -836,14 +826,26 @@ msgid "None" msgstr "Brez" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ne podpira tipke, ki ste jo ravnokar pritisnili." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodprta tipka" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Roman Maurer,Gregor Rakar,Andrej Vernekar,Jure Repinc,Andrej Mernik" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"roman.maurer@amis.net,gregor.rakar@kiss.si,andrej.vernekar@gmail.com," +"jlp@holodeck1.com,andrejm@ubuntu.si" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj v orodno vrstico" @@ -922,10 +924,8 @@ msgstr "Izvozi shemo ..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "Izvozi shemo ..." +msgstr "Uvozi shemo ..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -954,23 +954,16 @@ "ves sistem." #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "Bližnjice" +msgstr "Izvozi bližnjice" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgctxt "header for an applications shortcut list" -#| msgid "Shortcuts for %1" msgid "Shortcuts (*.shortcuts)" -msgstr "Bližnjice za %1" +msgstr "Bližnjice (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "Bližnjice" +msgstr "Uvozi bližnjice" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/sq/kxmlgui5.po kxmlgui-5.18.0/po/sq/kxmlgui5.po --- kxmlgui-5.15.0/po/sq/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sq/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-01-19 00:20-0500\n" "Last-Translator: Agron Selimaj \n" "Language-Team: Albanian \n" @@ -15,16 +15,6 @@ "X-Launchpad-Export-Date: 2010-11-24 03:19+0000\n" "X-Generator: Lokalize 1.2\n" -#, fuzzy -#| msgid "without name" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "pa emër" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -769,16 +759,28 @@ msgid "None" msgstr "Asnjë" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 #, fuzzy #| msgid "The socket operation is not supported" msgid "The key you just pressed is not supported by Qt." msgstr "Veprimi i socket nuk suportohet" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "" +#: kmainwindow.cpp:208 +#, fuzzy +#| msgid "without name" +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "pa emër" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Shtoja Shiritit të Mjeteve" diff -Nru kxmlgui-5.15.0/po/sr/kxmlgui5.po kxmlgui-5.18.0/po/sr/kxmlgui5.po --- kxmlgui-5.15.0/po/sr/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sr/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-27 19:15+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -23,14 +23,6 @@ "X-Wrapping: fine\n" "X-Associated-UI-Catalogs: kconfigwidgets5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Топлица Танасковић,Часлав Илић" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -848,14 +840,24 @@ msgid "None" msgstr "ниједна" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "КуТ не подржава тастер који сте управо притиснули." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Неподржани тастер" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Топлица Танасковић,Часлав Илић" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Додај на траку алатки" diff -Nru kxmlgui-5.15.0/po/sr@ijekavian/kxmlgui5.po kxmlgui-5.18.0/po/sr@ijekavian/kxmlgui5.po --- kxmlgui-5.15.0/po/sr@ijekavian/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sr@ijekavian/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-27 19:15+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -22,14 +22,6 @@ "X-Environment: kde\n" "X-Associated-UI-Catalogs: kconfigwidgets5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Топлица Танасковић,Часлав Илић" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -849,14 +841,24 @@ msgid "None" msgstr "ниједна" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "КуТ не подржава тастер који сте управо притиснули." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Неподржани тастер" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Топлица Танасковић,Часлав Илић" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Додај на траку алатки" diff -Nru kxmlgui-5.15.0/po/sr@ijekavianlatin/kxmlgui5.po kxmlgui-5.18.0/po/sr@ijekavianlatin/kxmlgui5.po --- kxmlgui-5.15.0/po/sr@ijekavianlatin/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sr@ijekavianlatin/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-27 19:15+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -22,14 +22,6 @@ "X-Environment: kde\n" "X-Associated-UI-Catalogs: kconfigwidgets5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Toplica Tanasković,Časlav Ilić" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -851,14 +843,24 @@ msgid "None" msgstr "nijedna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ne podržava taster koji ste upravo pritisnuli." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodržani taster" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Toplica Tanasković,Časlav Ilić" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj na traku alatki" diff -Nru kxmlgui-5.15.0/po/sr@latin/kxmlgui5.po kxmlgui-5.18.0/po/sr@latin/kxmlgui5.po --- kxmlgui-5.15.0/po/sr@latin/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sr@latin/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-27 19:15+0200\n" "Last-Translator: Chusslove Illich \n" "Language-Team: Serbian \n" @@ -22,14 +22,6 @@ "X-Environment: kde\n" "X-Associated-UI-Catalogs: kconfigwidgets5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Toplica Tanasković,Časlav Ilić" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -849,14 +841,24 @@ msgid "None" msgstr "nijedna" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt ne podržava taster koji ste upravo pritisnuli." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Nepodržani taster" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Toplica Tanasković,Časlav Ilić" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "toptan@kde.org.yu,caslav.ilic@gmx.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Dodaj na traku alatki" diff -Nru kxmlgui-5.15.0/po/sv/kxmlgui5.po kxmlgui-5.18.0/po/sv/kxmlgui5.po --- kxmlgui-5.15.0/po/sv/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/sv/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-10-04 11:25+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" @@ -25,17 +25,6 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Magnus Reftel,Anders Widell,Per Lindström,Mattias Newzella,Stefan Asserhäll" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"d96reftl@dtek.chalmers.se,awl@hem.passagen.se,pelinstr@algonet.se," -"newzella@linux.nu,stefan.asserhall@telia.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -826,14 +815,27 @@ msgid "None" msgstr "Ingen" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Tangenten du just tryckte ner stöds inte av Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tangent som inte stöds" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Magnus Reftel,Anders Widell,Per Lindström,Mattias Newzella,Stefan Asserhäll" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"d96reftl@dtek.chalmers.se,awl@hem.passagen.se,pelinstr@algonet.se," +"newzella@linux.nu,stefan.asserhall@telia.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Lägg till i verktygsrad" @@ -912,7 +914,6 @@ msgstr "Exportera system..." #: kshortcutschemeseditor.cpp:86 -#| msgid "Export Scheme..." msgid "Import Scheme..." msgstr "Importera schema..." @@ -942,17 +943,14 @@ "Observera att det inte tar bort några allmänt tillgängliga genvägssystem." #: kshortcutschemeseditor.cpp:168 -#| msgid "Shortcuts" msgid "Export Shortcuts" msgstr "Exportera genvägar" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#| msgid "Shortcut Conflict(s)" msgid "Shortcuts (*.shortcuts)" msgstr "Genvägar (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#| msgid "Shortcuts" msgid "Import Shortcuts" msgstr "Importera genvägar" diff -Nru kxmlgui-5.15.0/po/ta/kxmlgui5.po kxmlgui-5.18.0/po/ta/kxmlgui5.po --- kxmlgui-5.15.0/po/ta/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ta/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-03-25 21:39+0530\n" "Last-Translator: Sri Ramadoss M \n" "Language-Team: Tamil \n" @@ -19,14 +19,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ம. ஸ்ரீ ராமதாஸ்" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "amachu@yavarkkum.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -839,14 +831,24 @@ msgid "None" msgstr "ஏதுமற்ற" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "நீங்கள் இப்போடு தட்டிய விசை Qt யால் ஆதரிக்கப்படவில்லை." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ஆதரிக்கப்படாத துப்பு" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ம. ஸ்ரீ ராமதாஸ்" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "amachu@yavarkkum.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "கருவிப்பட்டியில் சேர்க்க" diff -Nru kxmlgui-5.15.0/po/te/kxmlgui5.po kxmlgui-5.18.0/po/te/kxmlgui5.po --- kxmlgui-5.15.0/po/te/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/te/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-11-04 23:55+0630\n" "Last-Translator: Bhuvan Krishna \n" "Language-Team: Telugu \n" @@ -25,16 +25,6 @@ "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " "4;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "విజయ్ కిరణ్ కముజు,కృష్ణబాబు కె, భువన్ కృష్ణ, జి వి యస్ గిరి, శ్రీ కళ్యన్న్, ననిన్" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"infyquest@gmail.com,kkrothap@redhat.com,bhuvan@swecha.org,gvs.giri@swecha." -"net,sreekalyan3@gmail.com,naveen@swecha.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -793,14 +783,26 @@ msgid "None" msgstr "ఏదీ వద్దు" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "మీరు వాడిన మీట qt సహాయము తీసుకోలేదు" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "మద్దతు చేయని కీ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "విజయ్ కిరణ్ కముజు,కృష్ణబాబు కె, భువన్ కృష్ణ, జి వి యస్ గిరి, శ్రీ కళ్యన్న్, ననిన్" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"infyquest@gmail.com,kkrothap@redhat.com,bhuvan@swecha.org,gvs.giri@swecha." +"net,sreekalyan3@gmail.com,naveen@swecha.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "పనిముట్లపట్టీకు జతచేయుము" diff -Nru kxmlgui-5.15.0/po/tg/kxmlgui5.po kxmlgui-5.18.0/po/tg/kxmlgui5.po --- kxmlgui-5.15.0/po/tg/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/tg/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-06-04 17:36+0500\n" "Last-Translator: Victor Ibragimov \n" "Language-Team: Tajik Language\n" @@ -22,14 +22,6 @@ "X-Generator: Poedit 1.5.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Victor Ibragimov" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "victor.ibragimov@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -892,14 +884,24 @@ msgid "None" msgstr "Холӣ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Нажатая клавиша не поддерживается в Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Неподдерживаемый ключ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Victor Ibragimov" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "victor.ibragimov@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Илова ба панели асбобҳо" diff -Nru kxmlgui-5.15.0/po/th/kxmlgui5.po kxmlgui-5.18.0/po/th/kxmlgui5.po --- kxmlgui-5.15.0/po/th/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/th/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2010-12-31 22:47+0700\n" "Last-Translator: Phuwanat Sakornsakolpat \n" "Language-Team: Thai \n" @@ -21,14 +21,6 @@ "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ถนอมทรัพย์ นพบูรณ์, สหชาติ อนุกูลกิจ" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "donga.nb@gmail.com, drrider@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -831,14 +823,24 @@ msgid "None" msgstr "ไม่มี" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "ปุ่มพิมพ์ที่คุณเพิ่งกด ยังไม่ถูกรองรับโดย Qt" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ปุ่มพิมพ์ที่ยังไม่รองรับ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ถนอมทรัพย์ นพบูรณ์, สหชาติ อนุกูลกิจ" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "donga.nb@gmail.com, drrider@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "เพิ่มไปยังแถบเครื่องมือ" diff -Nru kxmlgui-5.15.0/po/tr/kxmlgui5.po kxmlgui-5.18.0/po/tr/kxmlgui5.po --- kxmlgui-5.15.0/po/tr/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/tr/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-07-10 18:46+0000\n" "Last-Translator: Necdet \n" "Language-Team: Turkish \n" @@ -32,16 +32,6 @@ "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Lokalize 1.4\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Serdar Soytetir, Görkem Çetin, H. İbrahim Güngör, Volkan Gezer" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"tulliana@gmail.com, gorkem@kde.org, ibrahim@pardus.org.tr, volkangezer@gmail." -"com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -828,14 +818,26 @@ msgid "None" msgstr "Hiçbiri" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Şimdi bastığınız tuş Qt tarafından desteklenmiyor." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Desteklenmeyen Tuş" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Serdar Soytetir, Görkem Çetin, H. İbrahim Güngör, Volkan Gezer" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"tulliana@gmail.com, gorkem@kde.org, ibrahim@pardus.org.tr, volkangezer@gmail." +"com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Araç Çubuğuna Ekle" diff -Nru kxmlgui-5.15.0/po/tt/kxmlgui5.po kxmlgui-5.18.0/po/tt/kxmlgui5.po --- kxmlgui-5.15.0/po/tt/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/tt/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2011-11-26 15:12+0400\n" "Last-Translator: Ainur Shakirov \n" "Language-Team: Tatar <>\n" @@ -17,14 +17,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 1.2\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Ainur Shakirov" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "ainur.shakirov.tt@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -863,14 +855,24 @@ msgid "None" msgstr "Юк" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Басылган төймә Qt коралы белән тотылмый." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Төймә тотылмый" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Ainur Shakirov" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "ainur.shakirov.tt@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Корал панеленә өстәү" diff -Nru kxmlgui-5.15.0/po/ug/kxmlgui5.po kxmlgui-5.18.0/po/ug/kxmlgui5.po --- kxmlgui-5.15.0/po/ug/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/ug/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji \n" "Language-Team: Uyghur Computer Science Association \n" @@ -18,14 +18,6 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 1.5.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "sahran.ug@gmail.com, gheyret@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -838,14 +830,24 @@ msgid "None" msgstr "يوق" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "باسقان كۇنۇپكىنى Qt دا ئىشلەتكىلى بولمايدۇ." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "ئىشلەتكىلى بولمايدىغان كۇنۇپكا" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "ئابدۇقادىر ئابلىز, غەيرەت كەنجى" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "sahran.ug@gmail.com, gheyret@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "قورال بالدىقى قوشۇلدى" diff -Nru kxmlgui-5.15.0/po/uk/kxmlgui5.po kxmlgui-5.18.0/po/uk/kxmlgui5.po --- kxmlgui-5.15.0/po/uk/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/uk/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: kxmlgui5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-22 18:51+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" @@ -23,14 +23,6 @@ "Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "о. Іван Петрущак,Юрій Чорноіван" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "fr.ivan@ukrainian-orthodox.org,yurchor@ukr.net" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -848,14 +840,24 @@ msgid "None" msgstr "Немає" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Клавіша, яку ви тільки-но використали, не підтримується Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Непідтримувана клавіша" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "о. Іван Петрущак,Юрій Чорноіван" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "fr.ivan@ukrainian-orthodox.org,yurchor@ukr.net" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Додати до пенала" diff -Nru kxmlgui-5.15.0/po/uz/kxmlgui5.po kxmlgui-5.18.0/po/uz/kxmlgui5.po --- kxmlgui-5.15.0/po/uz/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/uz/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2008-05-30 17:29+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -17,14 +17,6 @@ "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Mashrab Quvatov" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kmashrab@uni-bremen.de" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -901,15 +893,25 @@ msgid "None" msgstr "Yoʻq" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy msgid "Unsupported Key" msgstr "Ishonchsiz" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Mashrab Quvatov" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kmashrab@uni-bremen.de" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/uz@cyrillic/kxmlgui5.po kxmlgui-5.18.0/po/uz@cyrillic/kxmlgui5.po --- kxmlgui-5.15.0/po/uz@cyrillic/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/uz@cyrillic/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2009-10-17 00:34+0200\n" "Last-Translator: Mashrab Kuvatov \n" "Language-Team: Uzbek \n" @@ -17,14 +17,6 @@ "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Машраб Қуватов" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kmashrab@uni-bremen.de" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -891,15 +883,25 @@ msgid "None" msgstr "Йўқ" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy msgid "Unsupported Key" msgstr "Ишончсиз" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Машраб Қуватов" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kmashrab@uni-bremen.de" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/vi/kxmlgui5.po kxmlgui-5.18.0/po/vi/kxmlgui5.po --- kxmlgui-5.15.0/po/vi/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/vi/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+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" @@ -19,14 +19,6 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Nhóm Việt hoá KDE" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kde-l10n-vi@kde.org" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -840,14 +832,24 @@ msgid "None" msgstr "Không" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Phím bạn vừa nhấn không được hỗ trợ bởi Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Phím không hỗ trợ" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Nhóm Việt hoá KDE" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kde-l10n-vi@kde.org" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Thêm vào thanh công cụ" diff -Nru kxmlgui-5.15.0/po/wa/kxmlgui5.po kxmlgui-5.18.0/po/wa/kxmlgui5.po --- kxmlgui-5.15.0/po/wa/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/wa/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2012-07-04 17:33+0200\n" "Last-Translator: Jean Cayron \n" "Language-Team: Walloon \n" @@ -22,14 +22,6 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Poedit-Language: Walloon\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Lorint Hendschel,Pablo Saratxaga,Djan Cayron" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "laurent.hendschel@skynet.be,pablo@walon.org,jean.cayron@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -824,14 +816,24 @@ msgid "None" msgstr "Nolu" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Li tape ki vos vnoz d' tchôkî n' est nén sopoirtêye pa Qt." -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "Tape nén sopoirtêye" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Lorint Hendschel,Pablo Saratxaga,Djan Cayron" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "laurent.hendschel@skynet.be,pablo@walon.org,jean.cayron@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "Radjouter al båre ås usteyes" diff -Nru kxmlgui-5.15.0/po/xh/kxmlgui5.po kxmlgui-5.18.0/po/xh/kxmlgui5.po --- kxmlgui-5.15.0/po/xh/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/xh/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2002-12-13 17:20SAST\n" "Last-Translator: Lwandle Mgidlana \n" "Language-Team: Xhosa \n" @@ -23,16 +23,6 @@ "X-Generator: KBabel 1.0beta2\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, fuzzy -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Igama elitsha lenginginya." - -#, fuzzy -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "Igama elitsha lenginginya." - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -894,15 +884,27 @@ msgid "None" msgstr "Akukho nanye" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy msgid "Unsupported Key" msgstr "Engenasihloko" +#: kmainwindow.cpp:208 +#, fuzzy +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Igama elitsha lenginginya." + +#: kmainwindow.cpp:209 +#, fuzzy +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "Igama elitsha lenginginya." + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/zh_CN/kxmlgui5.po kxmlgui-5.18.0/po/zh_CN/kxmlgui5.po --- kxmlgui-5.15.0/po/zh_CN/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/zh_CN/kxmlgui5.po 2016-01-02 16:54:49.000000000 +0000 @@ -14,9 +14,9 @@ msgstr "" "Project-Id-Version: kdelibs4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2015-09-22 09:57+0000\n" -"PO-Revision-Date: 2015-08-11 11:56UTC-0800\n" -"Last-Translator: Weng Xuetian \n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" +"PO-Revision-Date: 2015-11-04 09:44-0800\n" +"Last-Translator: Weng Xuetian \n" "Language-Team: Chinese \n" "Language: zh_CN\n" "MIME-Version: 1.0\n" @@ -25,14 +25,6 @@ "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 2.0\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "KDE 中国, Feng Chao" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "kde-china@kde.org, chaofeng111@gmail.com" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -777,14 +769,24 @@ msgid "None" msgstr "无" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "Qt 尚不支持您刚才按下的键。" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "不支持的键" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "KDE 中国, Feng Chao" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "kde-china@kde.org, chaofeng111@gmail.com" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "添加到工具栏" @@ -863,10 +865,8 @@ msgstr "导出方案..." #: kshortcutschemeseditor.cpp:86 -#, fuzzy -#| msgid "Export Scheme..." msgid "Import Scheme..." -msgstr "导出方案..." +msgstr "导入方案..." #: kshortcutschemeseditor.cpp:102 msgid "Name for New Scheme" @@ -894,23 +894,16 @@ "请注意此操作不会删除任何系统全局的快捷键方案。" #: kshortcutschemeseditor.cpp:168 -#, fuzzy -#| msgid "Shortcuts" msgid "Export Shortcuts" -msgstr "快捷键" +msgstr "导出快捷键" #: kshortcutschemeseditor.cpp:168 kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgctxt "header for an applications shortcut list" -#| msgid "Shortcuts for %1" msgid "Shortcuts (*.shortcuts)" -msgstr "%1 的快捷键" +msgstr "快捷键 (*.shortcuts)" #: kshortcutschemeseditor.cpp:179 -#, fuzzy -#| msgid "Shortcuts" msgid "Import Shortcuts" -msgstr "快捷键" +msgstr "导入快捷键" #: kshortcutsdialog.cpp:85 msgid "" diff -Nru kxmlgui-5.15.0/po/zh_HK/kxmlgui5.po kxmlgui-5.18.0/po/zh_HK/kxmlgui5.po --- kxmlgui-5.15.0/po/zh_HK/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/zh_HK/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2006-01-04 13:32+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -35,21 +35,6 @@ "X-Generator: KBabel 1.3\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "" -"Chih-Wei Huang,Kenduest Lee,Jouston Huang (Jiun-Jeng Huang),Kenduest Lee," -"Wang Jian,Anthony Fok,Yuan-Chen Cheng,Wang Jian,Funda Wang,Sarah Smith,Xiong " -"Jiang,Kao Chia-Lin,Stanley Wong" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "" -"cwhuang@linux.org.tw,kenduest@i18n.linux.org.tw,jouston@housediy.com," -"kenduest@i18n.linux.org.tw,lark@linux.net.cn,anthony@thizlinux.com," -"ycheng@slat.org,lark@linux.ustc.edu.cn,fundawang@en2china.com,sarahs@redhat." -"com,jxiong@offtopic.org,acelan@linux.org.tw,stanley18fan0k@yahoo.com.hk" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -893,16 +878,33 @@ msgid "None" msgstr "無" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 #, fuzzy #| msgid "Untrusted" msgid "Unsupported Key" msgstr "不可信的" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "" +"Chih-Wei Huang,Kenduest Lee,Jouston Huang (Jiun-Jeng Huang),Kenduest Lee," +"Wang Jian,Anthony Fok,Yuan-Chen Cheng,Wang Jian,Funda Wang,Sarah Smith,Xiong " +"Jiang,Kao Chia-Lin,Stanley Wong" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "" +"cwhuang@linux.org.tw,kenduest@i18n.linux.org.tw,jouston@housediy.com," +"kenduest@i18n.linux.org.tw,lark@linux.net.cn,anthony@thizlinux.com," +"ycheng@slat.org,lark@linux.ustc.edu.cn,fundawang@en2china.com,sarahs@redhat." +"com,jxiong@offtopic.org,acelan@linux.org.tw,stanley18fan0k@yahoo.com.hk" + #: kmenumenuhandler_p.cpp:50 #, fuzzy msgid "Add to Toolbar" diff -Nru kxmlgui-5.15.0/po/zh_TW/kxmlgui5.po kxmlgui-5.18.0/po/zh_TW/kxmlgui5.po --- kxmlgui-5.15.0/po/zh_TW/kxmlgui5.po 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/po/zh_TW/kxmlgui5.po 2016-01-02 16:54:49.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-09-22 09:57+0000\n" +"POT-Creation-Date: 2015-11-27 03:25+0000\n" "PO-Revision-Date: 2015-09-02 15:38+0800\n" "Last-Translator: Franklin\n" "Language-Team: Chinese Traditional \n" @@ -26,14 +26,6 @@ "X-Generator: Lokalize 1.5\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "Franklin Weng" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "franklin@goodhorse.idv.tw" - #: kaboutapplicationdialog.cpp:81 khelpmenu.cpp:271 #, kde-format msgid "About %1" @@ -781,14 +773,24 @@ msgid "None" msgstr "無" -#: kkeysequencewidget.cpp:706 +#: kkeysequencewidget.cpp:712 msgid "The key you just pressed is not supported by Qt." msgstr "您剛才按的鍵並未被 Qt 所支援。" -#: kkeysequencewidget.cpp:707 +#: kkeysequencewidget.cpp:713 msgid "Unsupported Key" msgstr "不支援的按鍵。" +#: kmainwindow.cpp:208 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Franklin Weng" + +#: kmainwindow.cpp:209 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "franklin@goodhorse.idv.tw" + #: kmenumenuhandler_p.cpp:50 msgid "Add to Toolbar" msgstr "新增到工具列" diff -Nru kxmlgui-5.15.0/src/CMakeLists.txt kxmlgui-5.18.0/src/CMakeLists.txt --- kxmlgui-5.15.0/src/CMakeLists.txt 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/CMakeLists.txt 2016-01-02 16:54:49.000000000 +0000 @@ -54,6 +54,9 @@ kcheckaccelerators.cpp ) +# add the resource file +qt5_add_resources(kxmlgui_SRCS kxmlgui.qrc) + ecm_qt_declare_logging_category(kxmlgui_SRCS HEADER debug.h IDENTIFIER DEBUG_KXMLGUI CATEGORY_NAME kf5.kxmlgui) set(kxmlgui_UI @@ -79,6 +82,7 @@ PRIVATE Qt5::Network #QNetworkAccessManager in kaboutapplicationpersonmodel_p Qt5::PrintSupport #QPrinter in kshortcutseditor + KF5::CoreAddons #KAboutData KF5::WidgetsAddons KF5::ItemViews #KWidgetItemDelegate in KAboutApplicationPersonListDelegate KF5::I18n #i18n and i18nc in many places @@ -128,13 +132,9 @@ DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/KXmlGui COMPONENT Devel ) +# install this file to be compatible, it is bundled in the resource file, too install( FILES ui_standards.rc DESTINATION ${KDE_INSTALL_CONFDIR}/ui ) -install(FILES - aboutkde.png - thumb_frame.png - DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kxmlgui/pics ) - include(ECMGeneratePriFile) ecm_generate_pri_file(BASE_NAME KXmlGui LIB_NAME KF5XmlGui DEPS "dbus xml widgets KConfigCore KConfigWidgets" FILENAME_VAR PRI_FILENAME INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/KXmlGui) install(FILES ${PRI_FILENAME} DESTINATION ${ECM_MKSPECS_INSTALL_DIR}) diff -Nru kxmlgui-5.15.0/src/kaboutapplicationdialog.cpp kxmlgui-5.18.0/src/kaboutapplicationdialog.cpp --- kxmlgui-5.15.0/src/kaboutapplicationdialog.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kaboutapplicationdialog.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -113,7 +113,7 @@ } if (!aboutData.homepage().isEmpty()) { - aboutPageText += QLatin1Char('\n') + QString::fromLatin1("%1").arg(aboutData.homepage()) + QLatin1Char('\n'); + aboutPageText += QLatin1Char('\n') + QStringLiteral("%1").arg(aboutData.homepage()) + QLatin1Char('\n'); } aboutPageText = aboutPageText.trimmed(); @@ -132,7 +132,7 @@ const KAboutLicense &license = aboutData.licenses().at(i); QLabel *showLicenseLabel = new QLabel; - showLicenseLabel->setText(QString::fromLatin1("%2").arg(QString::number(i), + showLicenseLabel->setText(QStringLiteral("%2").arg(QString::number(i), i18n("License: %1", license.name(KAboutLicense::FullName)))); showLicenseLabel->setTextInteractionFlags(Qt::TextBrowserInteraction); connect(showLicenseLabel, SIGNAL(linkActivated(QString)), q, SLOT(_k_showLicense(QString))); diff -Nru kxmlgui-5.15.0/src/kaboutapplicationpersonlistdelegate_p.cpp kxmlgui-5.18.0/src/kaboutapplicationpersonlistdelegate_p.cpp --- kxmlgui-5.15.0/src/kaboutapplicationpersonlistdelegate_p.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kaboutapplicationpersonlistdelegate_p.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -125,7 +125,7 @@ action = mainLinks->actions().at(EmailAction); action->setToolTip(i18nc("Action to send an email to a contributor", "Email contributor\n%1", profile.email())); - action->setData(QString::fromLatin1("mailto:%1").arg(profile.email())); + action->setData(QStringLiteral("mailto:%1").arg(profile.email())); action->setVisible(true); } if (!profile.homepage().isEmpty()) { @@ -233,7 +233,7 @@ painter->drawPixmap(point, pixmap); QPoint framePoint(point.x() - 5, point.y() - 5); - QPixmap framePixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kf5/kxmlgui/pics/thumb_frame.png"))); + QPixmap framePixmap(QStringLiteral(":/kxmlgui5/thumb_frame.png")); painter->drawPixmap(framePoint, framePixmap.scaled(pixmap.width() + 10, pixmap.height() + 10)); } } diff -Nru kxmlgui-5.15.0/src/kaboutapplicationpersonmodel_p.cpp kxmlgui-5.18.0/src/kaboutapplicationpersonmodel_p.cpp --- kxmlgui-5.15.0/src/kaboutapplicationpersonmodel_p.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kaboutapplicationpersonmodel_p.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -40,7 +40,7 @@ , m_providerUrl(providerUrl) { if (m_providerUrl.isEmpty()) { - m_providerUrl = QString::fromLatin1("https://api.opendesktop.org/v1/"); + m_providerUrl = QStringLiteral("https://api.opendesktop.org/v1/"); } bool hasOcsUsernames = false; diff -Nru kxmlgui-5.15.0/src/kaboutkdedialog_p.cpp kxmlgui-5.18.0/src/kaboutkdedialog_p.cpp --- kxmlgui-5.15.0/src/kaboutkdedialog_p.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kaboutkdedialog_p.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -136,7 +136,7 @@ tabWidget->addTab(support, i18n("&Support KDE")); QLabel *image = new QLabel; - image->setPixmap(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kf5/kxmlgui/pics/aboutkde.png"))); + image->setPixmap(QStringLiteral(":/kxmlgui5/aboutkde.png")); QHBoxLayout *midLayout = new QHBoxLayout; midLayout->addWidget(image); diff -Nru kxmlgui-5.15.0/src/kbugreport.cpp kxmlgui-5.18.0/src/kbugreport.cpp --- kxmlgui-5.15.0/src/kbugreport.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kbugreport.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -198,8 +198,8 @@ if (d->m_strVersion.isEmpty()) { d->m_strVersion = i18n("no version set (programmer error)"); } - d->kde_version = QString::fromLatin1(KXMLGUI_VERSION_STRING); - d->kde_version += QStringLiteral(", ") + QString::fromLatin1(XMLGUI_DISTRIBUTION_TEXT); + d->kde_version = QStringLiteral(KXMLGUI_VERSION_STRING); + d->kde_version += QStringLiteral(", ") + QLatin1String(XMLGUI_DISTRIBUTION_TEXT); if (!d->submitBugWeb) { d->m_strVersion += QLatin1Char(' ') + d->kde_version; } @@ -219,7 +219,7 @@ tmpLabel = new QLabel(i18n("Compiler:"), this); glay->addWidget(tmpLabel, ++row, 0); - tmpLabel = new QLabel(QString::fromLatin1(XMLGUI_COMPILER_VERSION), this); + tmpLabel = new QLabel(QLatin1String(XMLGUI_COMPILER_VERSION), this); tmpLabel->setTextInteractionFlags(Qt::TextBrowserInteraction); glay->addWidget(tmpLabel, row, 1, 1, 2); @@ -324,7 +324,7 @@ { url = QUrl(QStringLiteral("https://bugs.kde.org/enter_bug.cgi")); QUrlQuery query; - query.addQueryItem(QStringLiteral("format"), QLatin1String("guided")); // use the guided form + query.addQueryItem(QStringLiteral("format"), QStringLiteral("guided")); // use the guided form // the string format is product/component, where component is optional QStringList list = appcombo->currentText().split(QLatin1Char('/')); @@ -375,7 +375,7 @@ } m_process = new QProcess; QObject::connect(m_process, SIGNAL(finished(int,QProcess::ExitStatus)), q, SLOT(_k_slotSetFrom())); - m_process->start(QString::fromLatin1("kcmshell5"), QStringList() << QString::fromLatin1("kcm_useraccount")); + m_process->start(QStringLiteral("kcmshell5"), QStringList() << QLatin1String("kcm_useraccount")); if (!m_process->waitForStarted()) { //qDebug() << "Couldn't start kcmshell5.."; delete m_process; @@ -398,7 +398,7 @@ } else { QString name = emailSettings.getSetting(KEMailSettings::RealName); if (!name.isEmpty()) { - fromaddr = name + QString::fromLatin1(" <") + fromaddr + QString::fromLatin1(">"); + fromaddr = name + QLatin1String(" <") + fromaddr + QLatin1String(">"); } } m_from->setText(fromaddr); @@ -480,7 +480,7 @@ // Prepend the pseudo-headers to the contents of the mail QString severity = d->severityButtons[d->currentSeverity()]->objectName(); QString appname = d->appcombo->currentText(); - QString os = QString::fromLatin1("OS: %1 (%2)\n"). + QString os = QStringLiteral("OS: %1 (%2)\n"). arg(QStringLiteral(XMLGUI_COMPILING_OS)). arg(QStringLiteral(XMLGUI_DISTRIBUTION_TEXT)); QString bodyText; @@ -499,23 +499,23 @@ } if (severity == QStringLiteral("i18n") && QLocale().language() != QLocale::system().language()) { // Case 1 : i18n bug - QString package = QString::fromLatin1("i18n_%1").arg(QLocale::languageToString(QLocale().language())); + QString package = QStringLiteral("i18n_%1").arg(QLocale::languageToString(QLocale().language())); package = package.replace(QLatin1Char('_'), QLatin1Char('-')); - return QString::fromLatin1("Package: %1").arg(package) + - QString::fromLatin1("\n" + return QStringLiteral("Package: %1").arg(package) + + QStringLiteral("\n" "Application: %1\n" // not really i18n's version, so better here IMHO "Version: %2\n").arg(appname).arg(d->m_strVersion) + - os + QString::fromLatin1("\n") + bodyText; + os + QLatin1String("\n") + bodyText; } else { appname = appname.replace(QLatin1Char('_'), QLatin1Char('-')); // Case 2 : normal bug - return QString::fromLatin1("Package: %1\n" + return QStringLiteral("Package: %1\n" "Version: %2\n" "Severity: %3\n") .arg(appname).arg(d->m_strVersion).arg(severity) + - QString::fromLatin1("Compiler: %1\n").arg(QStringLiteral(XMLGUI_COMPILER_VERSION)) + - os + QString::fromLatin1("\n") + bodyText; + QStringLiteral("Compiler: %1\n").arg(QStringLiteral(XMLGUI_COMPILER_VERSION)) + + os + QLatin1String("\n") + bodyText; } } @@ -533,7 +533,7 @@ QProcess proc; QStringList args; - args << QStringLiteral("--subject") << d->m_subject->text() << QLatin1String("--recipient") << recipient; + args << QStringLiteral("--subject") << d->m_subject->text() << QStringLiteral("--recipient") << recipient; proc.start(command, args); //qDebug() << command << args; if (!proc.waitForStarted()) { diff -Nru kxmlgui-5.15.0/src/kedittoolbar.cpp kxmlgui-5.18.0/src/kedittoolbar.cpp --- kxmlgui-5.15.0/src/kedittoolbar.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kedittoolbar.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -932,7 +932,7 @@ if (menuElement.isNull()) { continue; } - menuElement.setAttribute(QStringLiteral("noMerge"), QLatin1String("1")); + menuElement.setAttribute(QStringLiteral("noMerge"), QStringLiteral("1")); } //qDebug() << (*it).domDocument().toString(); @@ -1083,12 +1083,12 @@ QObject::connect(m_upAction, SIGNAL(clicked()), m_widget, SLOT(slotUpButton())); m_insertAction = new QToolButton(m_widget); - m_insertAction->setIcon(QIcon::fromTheme(QApplication::isRightToLeft() ? QStringLiteral("go-previous") : QLatin1String("go-next"))); + m_insertAction->setIcon(QIcon::fromTheme(QApplication::isRightToLeft() ? QStringLiteral("go-previous") : QStringLiteral("go-next"))); m_insertAction->setEnabled(false); QObject::connect(m_insertAction, SIGNAL(clicked()), m_widget, SLOT(slotInsertButton())); m_removeAction = new QToolButton(m_widget); - m_removeAction->setIcon(QIcon::fromTheme(QApplication::isRightToLeft() ? QStringLiteral("go-next") : QLatin1String("go-previous"))); + m_removeAction->setIcon(QIcon::fromTheme(QApplication::isRightToLeft() ? QStringLiteral("go-next") : QStringLiteral("go-previous"))); m_removeAction->setEnabled(false); QObject::connect(m_removeAction, SIGNAL(clicked()), m_widget, SLOT(slotRemoveButton())); @@ -1451,7 +1451,7 @@ } // and set this container as a noMerge - m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QLatin1String("1")); + m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QStringLiteral("1")); // update the local doc updateLocal(m_currentToolBarElem); @@ -1473,7 +1473,7 @@ m_currentToolBarElem.removeChild(elem); // and set this container as a noMerge - m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QLatin1String("1")); + m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QStringLiteral("1")); // update the local doc updateLocal(m_currentToolBarElem); @@ -1527,7 +1527,7 @@ } // and set this container as a noMerge - m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QLatin1String("1")); + m_currentToolBarElem.setAttribute(QStringLiteral("noMerge"), QStringLiteral("1")); // update the local doc updateLocal(m_currentToolBarElem); @@ -1666,10 +1666,10 @@ QDomElement act_elem = KXMLGUIFactory::findActionByName(elem, item->internalName(), true /*create*/); Q_ASSERT(!act_elem.isNull()); if (iconTextChanged) { - act_elem.setAttribute(QString::fromLatin1("iconText"), iconText); + act_elem.setAttribute(QStringLiteral("iconText"), iconText); } if (hiddenChanged) { - act_elem.setAttribute(QString::fromLatin1("priority"), hidden ? QAction::LowPriority : QAction::NormalPriority); + act_elem.setAttribute(QStringLiteral("priority"), hidden ? QAction::LowPriority : QAction::NormalPriority); } // we're modified, so let this change diff -Nru kxmlgui-5.15.0/src/kkeysequencewidget.cpp kxmlgui-5.18.0/src/kkeysequencewidget.cpp --- kxmlgui-5.15.0/src/kkeysequencewidget.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kkeysequencewidget.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -692,6 +692,12 @@ return true; } + if (d->isRecording && e->type() == QEvent::ContextMenu) { + // is caused by Qt::Key_Menu + e->accept(); + return true; + } + return QPushButton::event(e); } @@ -736,7 +742,6 @@ case Qt::Key_Meta: case Qt::Key_Super_L: case Qt::Key_Super_R: - case Qt::Key_Menu: //unused (yes, but why?) d->controlModifierlessTimout(); d->updateShortcutDisplay(); break; diff -Nru kxmlgui-5.15.0/src/kmainwindow.cpp kxmlgui-5.18.0/src/kmainwindow.cpp --- kxmlgui-5.15.0/src/kmainwindow.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kmainwindow.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -154,7 +154,7 @@ QString localFilePath = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + QLatin1Char('/') + config->name(); if (QFile::exists(localFilePath)) { QStringList discard; - discard << QLatin1String("rm"); + discard << QStringLiteral("rm"); discard << localFilePath; sm.setDiscardCommand(discard); } @@ -179,11 +179,6 @@ void KMainWindowPrivate::init(KMainWindow *_q) { - // We set allow quit to true when the first mainwindow is created, so that when the refcounting - // reaches 0 the application can quit. We don't want this to happen before the first mainwindow - // is created, otherwise running a job in main would exit the app too early. - QCoreApplication::setQuitLockEnabled(true); - q = _q; q->setAnimated(q->style()->styleHint(QStyle::SH_Widget_Animate, 0, q)); @@ -203,6 +198,19 @@ sMemberList()->append(q); + // If application is translated, load translator information for use in + // KAboutApplicationDialog or other getters. The context and messages below + // both must be exactly as listed, and are forced to be loaded from the + // application's own message catalog instead of kxmlgui's. + KAboutData aboutData(KAboutData::applicationData()); + if (aboutData.translators().isEmpty()) { + aboutData.setTranslator( + i18ndc(Q_NULLPTR, "NAME OF TRANSLATORS", "Your names"), + i18ndc(Q_NULLPTR, "EMAIL OF TRANSLATORS", "Your emails")); + + KAboutData::setApplicationData(aboutData); + } + settingsDirty = false; autoSaveSettings = false; autoSaveWindowSize = true; // for compatibility @@ -233,7 +241,7 @@ static inline bool isValidDBusObjectPathCharacter(const QChar &c) { - register ushort u = c.unicode(); + ushort u = c.unicode(); return (u >= QLatin1Char('a') && u <= QLatin1Char('z')) || (u >= QLatin1Char('A') && u <= QLatin1Char('Z')) || (u >= QLatin1Char('0') && u <= QLatin1Char('9')) diff -Nru kxmlgui-5.15.0/src/kmainwindow.h kxmlgui-5.18.0/src/kmainwindow.h --- kxmlgui-5.15.0/src/kmainwindow.h 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kmainwindow.h 2016-01-02 16:54:49.000000000 +0000 @@ -131,6 +131,12 @@ * kmw->setObjectName(...); * \endcode * + * Since the KDE Frameworks 5.16 release, KMainWindow will also enter information regarding + * the application's translators by default, using KAboutData::setTranslator(). This only occurs + * if no translators are already assigned in KAboutData (see KAboutData::setTranslator() for + * details -- the auto-assignment here uses the same translated strings as specified for that + * function). + * * IMPORTANT: For session management and window management to work * properly, all main windows in the application should have a * different name. If you don't do it, KMainWindow will create @@ -323,7 +329,7 @@ * "virtual QSize sizeHint() const;" to specify a default size rather * than letting QWidget::adjust use the default size of 0x0. */ - void setAutoSaveSettings(const QString &groupName = QLatin1String("MainWindow"), + void setAutoSaveSettings(const QString &groupName = QStringLiteral("MainWindow"), bool saveWindowSize = true); /** diff -Nru kxmlgui-5.15.0/src/ksendbugmail/main.cpp kxmlgui-5.18.0/src/ksendbugmail/main.cpp --- kxmlgui-5.15.0/src/ksendbugmail/main.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/ksendbugmail/main.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -75,8 +75,8 @@ { QCoreApplication a(argc, argv); - a.setApplicationName("ksendbugmail"); - a.setApplicationVersion("1.0"); + a.setApplicationName(QStringLiteral("ksendbugmail")); + a.setApplicationVersion(QStringLiteral("1.0")); KLocalizedString::setApplicationDomain("kxmlgui5"); @@ -88,14 +88,14 @@ parser.addVersionOption(); parser.setApplicationDescription(i18n("Sends a bug report by email.")); parser.addHelpOption(); - parser.addOption(QCommandLineOption(QStringList() << "subject", i18n("The subject line of the email."), "argument")); - parser.addOption(QCommandLineOption(QStringList() << "recipient", i18n("The email address to send the bug report to."), "argument", "submit@bugs.kde.org")); + parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("subject"), i18n("The subject line of the email."), QStringLiteral("argument"))); + parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("recipient"), i18n("The email address to send the bug report to."), QStringLiteral("argument"), QStringLiteral("submit@bugs.kde.org"))); parser.process(a); - recipient = parser.value("recipient"); - subject = parser.value("subject"); + recipient = parser.value(QStringLiteral("recipient")); + subject = parser.value(QStringLiteral("subject")); } if (recipient.isEmpty()) { - recipient = "submit@bugs.kde.org"; + recipient = QStringLiteral("submit@bugs.kde.org"); } else { if (recipient.at(0) == '\'') { recipient = recipient.mid(1).left(recipient.length() - 2); @@ -104,7 +104,7 @@ // qDebug() << "recp" << recipient; if (subject.isEmpty()) { - subject = "(no subject)"; + subject = QStringLiteral("(no subject)"); } else { if (subject.at(0) == '\'') { subject = subject.mid(1).left(subject.length() - 2); @@ -125,7 +125,7 @@ if (!fromaddr.isEmpty()) { QString name = emailConfig.getSetting(KEMailSettings::RealName); if (!name.isEmpty()) { - fromaddr = name + QLatin1String(" <") + fromaddr + QString::fromLatin1(">"); + fromaddr = name + QLatin1String(" <") + fromaddr + QLatin1String(">"); } } else { fromaddr = SystemInformation::userName(); @@ -136,7 +136,7 @@ QString server = emailConfig.getSetting(KEMailSettings::OutServer); if (server.isEmpty()) { - server = QLatin1String("bugs.kde.org"); + server = QStringLiteral("bugs.kde.org"); } SMTP *sm = new SMTP; @@ -149,7 +149,7 @@ sm->setSenderAddress(fromaddr); sm->setRecipientAddress(recipient); sm->setMessageSubject(subject); - sm->setMessageHeader(QString::fromLatin1("From: %1\r\nTo: %2\r\n").arg(fromaddr).arg(QString(recipient))); + sm->setMessageHeader(QStringLiteral("From: %1\r\nTo: %2\r\n").arg(fromaddr).arg(QString(recipient))); sm->setMessageBody(text); sm->sendMessage(); diff -Nru kxmlgui-5.15.0/src/ksendbugmail/main.h kxmlgui-5.18.0/src/ksendbugmail/main.h --- kxmlgui-5.15.0/src/ksendbugmail/main.h 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/ksendbugmail/main.h 2016-01-02 16:54:49.000000000 +0000 @@ -30,7 +30,7 @@ public: BugMailer(SMTP *s) : QObject(0), sm(s) { - setObjectName("mailer"); + setObjectName(QStringLiteral("mailer")); } public Q_SLOTS: diff -Nru kxmlgui-5.15.0/src/ksendbugmail/smtp.cpp kxmlgui-5.18.0/src/ksendbugmail/smtp.cpp --- kxmlgui-5.15.0/src/ksendbugmail/smtp.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/ksendbugmail/smtp.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -32,11 +32,11 @@ hostPort = port; timeOut = timeout * 1000; - senderAddress = "user@example.net"; - recipientAddress = "user@example.net"; - messageSubject = "(no subject)"; - messageBody = "empty"; - messageHeader = ""; + senderAddress = QStringLiteral("user@example.net"); + recipientAddress = QStringLiteral("user@example.net"); + messageSubject = QStringLiteral("(no subject)"); + messageBody = QStringLiteral("empty"); + messageHeader = QLatin1String(""); connected = false; finished = false; @@ -47,7 +47,7 @@ domainName = QHostInfo::localDomainName(); if (domainName.isEmpty()) { - domainName = "somemachine.example.net"; + domainName = QStringLiteral("somemachine.example.net"); } // qDebug() << "SMTP object created"; @@ -152,7 +152,7 @@ // qDebug() << "state was == Finished\n"; finished = false; state = In; - writeString = QString::fromLatin1("helo %1\r\n").arg(domainName); + writeString = QStringLiteral("helo %1\r\n").arg(domainName); sock->write(writeString.toLatin1().constData(), writeString.length()); } if (connected) { @@ -276,7 +276,7 @@ switch (stat) { case Greet: //220 state = In; - writeString = QString::fromLatin1("helo %1\r\n").arg(domainName); + writeString = QStringLiteral("helo %1\r\n").arg(domainName); // qDebug() << "out: " << writeString; sock->write(writeString.toLatin1().constData(), writeString.length()); break; @@ -287,19 +287,19 @@ switch (state) { case In: state = Ready; - writeString = QString::fromLatin1("mail from: %1\r\n").arg(senderAddress); + writeString = QStringLiteral("mail from: %1\r\n").arg(senderAddress); // qDebug() << "out: " << writeString; sock->write(writeString.toLatin1().constData(), writeString.length()); break; case Ready: state = SentFrom; - writeString = QString::fromLatin1("rcpt to: %1\r\n").arg(recipientAddress); + writeString = QStringLiteral("rcpt to: %1\r\n").arg(recipientAddress); // qDebug() << "out: " << writeString; sock->write(writeString.toLatin1().constData(), writeString.length()); break; case SentFrom: state = SentTo; - writeString = QLatin1String("data\r\n"); + writeString = QStringLiteral("data\r\n"); // qDebug() << "out: " << writeString; sock->write(writeString.toLatin1().constData(), writeString.length()); break; @@ -318,9 +318,9 @@ break; case ReadyData: //354 state = Data; - writeString = QString::fromLatin1("Subject: %1\r\n").arg(messageSubject); + writeString = QStringLiteral("Subject: %1\r\n").arg(messageSubject); writeString += messageHeader; - writeString += "\r\n"; + writeString += QLatin1String("\r\n"); writeString += messageBody; writeString += QLatin1String(".\r\n"); // qDebug() << "out: " << writeString; diff -Nru kxmlgui-5.15.0/src/kshortcutschemeshelper.cpp kxmlgui-5.18.0/src/kshortcutschemeshelper.cpp --- kxmlgui-5.15.0/src/kshortcutschemeshelper.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kshortcutschemeshelper.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -56,7 +56,7 @@ } QDomDocument doc; QDomElement docElem = doc.createElement(QStringLiteral("kpartgui")); - docElem.setAttribute(QStringLiteral("version"), QLatin1String("1")); + docElem.setAttribute(QStringLiteral("version"), QStringLiteral("1")); docElem.setAttribute(QStringLiteral("name"), client->componentName()); doc.appendChild(docElem); QDomElement elem = doc.createElement(QStringLiteral("ActionProperties")); diff -Nru kxmlgui-5.15.0/src/kshortcutsdialog.cpp kxmlgui-5.18.0/src/kshortcutsdialog.cpp --- kxmlgui-5.15.0/src/kshortcutsdialog.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kshortcutsdialog.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -127,7 +127,7 @@ const bool isVisible = m_schemeEditor->isVisible(); m_schemeEditor->setVisible(!isVisible); - m_detailsButton->setText(i18n("&Details") + (isVisible ? QStringLiteral(" >>") : QLatin1String(" <<"))); + m_detailsButton->setText(i18n("&Details") + (isVisible ? QStringLiteral(" >>") : QStringLiteral(" <<"))); } void save() diff -Nru kxmlgui-5.15.0/src/kswitchlanguagedialog_p.cpp kxmlgui-5.18.0/src/kswitchlanguagedialog_p.cpp --- kxmlgui-5.15.0/src/kswitchlanguagedialog_p.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kswitchlanguagedialog_p.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -51,7 +51,7 @@ configDir.mkpath(QStringLiteral(".")); } - return QSettingsPtr(new QSettings(configPath + QStringLiteral("/klanguageoverridesrc"), QSettings::NativeFormat)); + return QSettingsPtr(new QSettings(configPath + QStringLiteral("/klanguageoverridesrc"), QSettings::IniFormat)); } static QByteArray getApplicationSpecificLanguage(const QByteArray &defaultCode = QByteArray()) diff -Nru kxmlgui-5.15.0/src/ktoolbar.cpp kxmlgui-5.18.0/src/ktoolbar.cpp --- kxmlgui-5.15.0/src/ktoolbar.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/ktoolbar.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -1041,11 +1041,11 @@ { Q_ASSERT(!current.isNull()); - current.setAttribute(QStringLiteral("tempXml"), QLatin1String("true")); + current.setAttribute(QStringLiteral("tempXml"), QStringLiteral("true")); - current.setAttribute(QStringLiteral("noMerge"), QLatin1String("1")); + current.setAttribute(QStringLiteral("noMerge"), QStringLiteral("1")); current.setAttribute(QStringLiteral("position"), d->getPositionAsString().toLower()); - current.setAttribute(QStringLiteral("hidden"), isHidden() ? QLatin1String("true") : QLatin1String("false")); + current.setAttribute(QStringLiteral("hidden"), isHidden() ? QStringLiteral("true") : QStringLiteral("false")); const int currentIconSize = iconSize().width(); if (currentIconSize == d->iconSizeSettings.defaultValue()) { diff -Nru kxmlgui-5.15.0/src/kxmlguiclient.cpp kxmlgui-5.18.0/src/kxmlguiclient.cpp --- kxmlgui-5.15.0/src/kxmlguiclient.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kxmlguiclient.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -49,9 +49,9 @@ m_parent(0L), m_builder(0L) { - m_textTagNames.append(QLatin1String("text")); - m_textTagNames.append(QLatin1String("Text")); - m_textTagNames.append(QLatin1String("title")); + m_textTagNames.append(QStringLiteral("text")); + m_textTagNames.append(QStringLiteral("Text")); + m_textTagNames.append(QStringLiteral("title")); } ~KXMLGUIClientPrivate() { @@ -199,15 +199,20 @@ } } -void KXMLGUIClient::loadStandardsXmlFile() +QString KXMLGUIClient::standardsXmlFileLocation() { - const QString file = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QStringLiteral("ui/ui_standards.rc")); + QString file = QStandardPaths::locate(QStandardPaths::GenericConfigLocation, QStringLiteral("ui/ui_standards.rc")); if (file.isEmpty()) { - qWarning() << "ui/ui_standards.rc not found in" << QStandardPaths::standardLocations(QStandardPaths::GenericConfigLocation); - } else { - const QString doc = KXMLGUIFactory::readConfigFile(file); - setXML(doc); + // fallback to resource, to allow to use the rc file compiled into this framework, must exist! + file = QStringLiteral(":/kxmlgui5/ui_standards.rc"); + Q_ASSERT(QFile::exists(file)); } + return file; +} + +void KXMLGUIClient::loadStandardsXmlFile() +{ + setXML(KXMLGUIFactory::readConfigFile(standardsXmlFileLocation())); } void KXMLGUIClient::setXMLFile(const QString &_file, bool merge, bool setXMLDoc) diff -Nru kxmlgui-5.15.0/src/kxmlguiclient.h kxmlgui-5.18.0/src/kxmlguiclient.h --- kxmlgui-5.15.0/src/kxmlguiclient.h 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kxmlguiclient.h 2016-01-02 16:54:49.000000000 +0000 @@ -341,6 +341,13 @@ virtual void setXMLFile(const QString &file, bool merge = false, bool setXMLDoc = true); /** + * Return the full path to the ui_standards.rc, might return a resource path. + * @return full path to ui_standards.rc, always non-empty. + * @since 5.16 + */ + static QString standardsXmlFileLocation(); + + /** * Load the ui_standards.rc file. Usually followed by setXMLFile(xmlFile, true), for merging. * @since 4.6 */ diff -Nru kxmlgui-5.15.0/src/kxmlguifactory.cpp kxmlgui-5.18.0/src/kxmlguifactory.cpp --- kxmlgui-5.15.0/src/kxmlguifactory.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kxmlguifactory.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -359,7 +359,7 @@ QDomElement e = doc.documentElement().firstChildElement(); for (; !e.isNull(); e = e.nextSiblingElement()) { if (QString::compare(e.tagName(), tagActionProp, Qt::CaseInsensitive) == 0 - && (e.attribute(QStringLiteral("scheme"), QLatin1String("Default")) == schemeName)) { + && (e.attribute(QStringLiteral("scheme"), QStringLiteral("Default")) == schemeName)) { return e; } } diff -Nru kxmlgui-5.15.0/src/kxmlguifactory_p.cpp kxmlgui-5.18.0/src/kxmlguifactory_p.cpp --- kxmlgui-5.15.0/src/kxmlguifactory_p.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/src/kxmlguifactory_p.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -240,7 +240,7 @@ void ContainerNode::plugActionList(BuildState &state, const MergingIndexList::Iterator &mergingIdxIt) { - static const QString &tagActionList = QString::fromLatin1("actionlist"); + static const QString &tagActionList = QLatin1String("actionlist"); MergingIndex mergingIdx = *mergingIdxIt; @@ -286,7 +286,7 @@ void ContainerNode::unplugActionList(BuildState &state, const MergingIndexList::Iterator &mergingIdxIt) { - static const QString &tagActionList = QString::fromLatin1("actionlist"); + static const QString &tagActionList = QLatin1String("actionlist"); MergingIndex mergingIdx = *mergingIdxIt; diff -Nru kxmlgui-5.15.0/src/kxmlgui.qrc kxmlgui-5.18.0/src/kxmlgui.qrc --- kxmlgui-5.15.0/src/kxmlgui.qrc 1970-01-01 00:00:00.000000000 +0000 +++ kxmlgui-5.18.0/src/kxmlgui.qrc 2016-01-02 16:54:49.000000000 +0000 @@ -0,0 +1,8 @@ + + + + ui_standards.rc + aboutkde.png + thumb_frame.png + + diff -Nru kxmlgui-5.15.0/tests/CMakeLists.txt kxmlgui-5.18.0/tests/CMakeLists.txt --- kxmlgui-5.15.0/tests/CMakeLists.txt 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/tests/CMakeLists.txt 2016-01-02 16:54:49.000000000 +0000 @@ -6,7 +6,7 @@ macro(xmlgui_executable_tests) foreach(_testname ${ARGN}) add_executable(${_testname} ${_testname}.cpp) - target_link_libraries(${_testname} Qt5::Test KF5::WidgetsAddons KF5::I18n KF5::XmlGui) + target_link_libraries(${_testname} Qt5::Test KF5::CoreAddons KF5::WidgetsAddons KF5::I18n KF5::XmlGui) ecm_mark_as_test(${_testname}) endforeach(_testname) endmacro() diff -Nru kxmlgui-5.15.0/tests/kxmlguitest.cpp kxmlgui-5.18.0/tests/kxmlguitest.cpp --- kxmlgui-5.15.0/tests/kxmlguitest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/tests/kxmlguitest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -54,9 +54,9 @@ KXMLGUIFactory *factory = new KXMLGUIFactory(builder); Client *shell = new Client; - shell->setComponentName(QStringLiteral("konqueror"), QLatin1String("Konqueror")); + shell->setComponentName(QStringLiteral("konqueror"), QStringLiteral("Konqueror")); - a = new QAction(QIcon::fromTheme(QStringLiteral("view-split-left-right")), QLatin1String("Split"), shell); + a = new QAction(QIcon::fromTheme(QStringLiteral("view-split-left-right")), QStringLiteral("Split"), shell); shell->actionCollection()->addAction(QStringLiteral("splitviewh"), a); shell->setXMLFile(QFINDTESTDATA("kxmlguitest_shell.rc")); @@ -65,9 +65,9 @@ Client *part = new Client; - a = new QAction(QIcon::fromTheme(QStringLiteral("zoom-out")), QLatin1String("decfont"), part); + a = new QAction(QIcon::fromTheme(QStringLiteral("zoom-out")), QStringLiteral("decfont"), part); part->actionCollection()->addAction(QStringLiteral("decFontSizes"), a); - a = new QAction(QIcon::fromTheme(QStringLiteral("security-low")), QLatin1String("sec"), part); + a = new QAction(QIcon::fromTheme(QStringLiteral("security-low")), QStringLiteral("sec"), part); part->actionCollection()->addAction(QStringLiteral("security"), a); part->actionCollection()->setDefaultShortcuts(a, QList() << Qt::ALT + Qt::Key_1); a->connect(a, SIGNAL(triggered(bool)), part, SLOT(slotSec())); diff -Nru kxmlgui-5.15.0/tests/kxmlguiwindowtest.cpp kxmlgui-5.18.0/tests/kxmlguiwindowtest.cpp --- kxmlgui-5.15.0/tests/kxmlguiwindowtest.cpp 2015-10-05 08:26:49.000000000 +0000 +++ kxmlgui-5.18.0/tests/kxmlguiwindowtest.cpp 2016-01-02 16:54:49.000000000 +0000 @@ -58,7 +58,7 @@ void MainWindow::slotTest() { - KMessageBox::information(0, QStringLiteral("Test"), QLatin1String("Test")); + KMessageBox::information(0, QStringLiteral("Test"), QStringLiteral("Test")); } void MainWindow::slotCreate()