diff --git a/local/recipes/kde/kdecoration/source.tar b/local/recipes/kde/kdecoration/source.tar index 7276890686..d7d22945a4 100644 Binary files a/local/recipes/kde/kdecoration/source.tar and b/local/recipes/kde/kdecoration/source.tar differ diff --git a/local/recipes/kde/kdecoration/source/.gitlab-ci.yml b/local/recipes/kde/kdecoration/source/.gitlab-ci.yml index f6e2f69c03..5df13dfdab 100644 --- a/local/recipes/kde/kdecoration/source/.gitlab-ci.yml +++ b/local/recipes/kde/kdecoration/source/.gitlab-ci.yml @@ -6,3 +6,6 @@ include: file: - /gitlab-templates/linux-qt6.yml - /gitlab-templates/freebsd-qt6.yml + - /gitlab-templates/xml-lint.yml + - /gitlab-templates/yaml-lint.yml + - /gitlab-templates/linux-qt6-next.yml diff --git a/local/recipes/kde/kdecoration/source/.kde-ci.yml b/local/recipes/kde/kdecoration/source/.kde-ci.yml index 915f993392..cb8cee1953 100644 --- a/local/recipes/kde/kdecoration/source/.kde-ci.yml +++ b/local/recipes/kde/kdecoration/source/.kde-ci.yml @@ -2,9 +2,10 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['@all'] - 'require': + - 'on': ['@all'] + 'require': 'frameworks/extra-cmake-modules': '@latest-kf6' 'frameworks/ki18n': '@latest-kf6' Options: - require-passing-tests-on: [ 'Linux', 'FreeBSD'] + require-passing-tests-on: ['Linux', 'FreeBSD'] + enable-lsan: True diff --git a/local/recipes/kde/kdecoration/source/.redbear-src-version b/local/recipes/kde/kdecoration/source/.redbear-src-version new file mode 100644 index 0000000000..2dd517aa61 --- /dev/null +++ b/local/recipes/kde/kdecoration/source/.redbear-src-version @@ -0,0 +1 @@ +6.7.2 diff --git a/local/recipes/kde/kdecoration/source/CMakeLists.txt b/local/recipes/kde/kdecoration/source/CMakeLists.txt index 4913233127..7fca2e37e3 100644 --- a/local/recipes/kde/kdecoration/source/CMakeLists.txt +++ b/local/recipes/kde/kdecoration/source/CMakeLists.txt @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) project(decoration-api) -set(PROJECT_VERSION "6.3.4") +set(PROJECT_VERSION "6.7.2") set(PROJECT_VERSION_MAJOR 6) -set(QT_MIN_VERSION "6.7.0") -set(KF6_MIN_VERSION "6.10.0") +set(QT_MIN_VERSION "6.10.0") +set(KF6_MIN_VERSION "6.26.0") set(KDE_COMPILERSETTINGS_LEVEL "5.82") set(CMAKE_CXX_STANDARD 20) @@ -37,7 +37,7 @@ ecm_setup_version(${PROJECT_VERSION} VARIABLE_PREFIX KDECORATION3 find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui - + Test ) # require at least gcc 4.8 @@ -52,8 +52,8 @@ set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of deprec set(KDECORATION3_INCLUDEDIR "${KDE_INSTALL_INCLUDEDIR}/KDecoration3") find_package(KF6I18n ${KF6_MIN_VERSION} CONFIG REQUIRED) -ecm_set_disabled_deprecation_versions(QT 5.15.2 - KF 5.240.0 +ecm_set_disabled_deprecation_versions(QT 6.2.0 + KF 6.12.0 ) add_definitions(-DQT_NO_KEYWORDS) @@ -90,4 +90,4 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kdecoration3_version.h feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -#ki18n_install(po) +ki18n_install(po) diff --git a/local/recipes/kde/kdecoration/source/autotests/decorationbuttontest.cpp b/local/recipes/kde/kdecoration/source/autotests/decorationbuttontest.cpp index 2df5d9aa1c..53bc1d7287 100644 --- a/local/recipes/kde/kdecoration/source/autotests/decorationbuttontest.cpp +++ b/local/recipes/kde/kdecoration/source/autotests/decorationbuttontest.cpp @@ -172,7 +172,7 @@ void DecorationButtonTest::testEnabled() // now let's send it a hover entered event QSignalSpy hoveredChangedSpy(&button, &KDecoration3::DecorationButton::hoveredChanged); QVERIFY(hoveredChangedSpy.isValid()); - QHoverEvent event(QEvent::HoverEnter, QPointF(1, 1), QPointF(-1, -1)); + QHoverEvent event(QEvent::HoverEnter, QPointF(1, 1), QPointF(1, 1), QPointF(-1, -1)); event.setAccepted(false); button.event(&event); QCOMPARE(event.isAccepted(), false); @@ -228,7 +228,7 @@ void DecorationButtonTest::testPressIgnore() QFETCH(QPoint, clickPos); QFETCH(Qt::MouseButton, mouseButton); - QMouseEvent pressEvent(QEvent::MouseButtonPress, clickPos, mouseButton, mouseButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, clickPos, clickPos, mouseButton, mouseButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QTEST(pressEvent.isAccepted(), "expectedAccepted"); @@ -271,7 +271,7 @@ void DecorationButtonTest::testReleaseIgnore() QSignalSpy clickedSpy(&button, &KDecoration3::DecorationButton::clicked); QVERIFY(clickedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPoint(0, 0), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPoint(0, 0), QPointF(0, 0), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -287,7 +287,7 @@ void DecorationButtonTest::testReleaseIgnore() QFETCH(QPoint, clickPos); QFETCH(Qt::MouseButton, mouseButton); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, clickPos, mouseButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, clickPos, clickPos, mouseButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QTEST(releaseEvent.isAccepted(), "expectedAccepted"); @@ -329,7 +329,7 @@ void DecorationButtonTest::testHoverEnterIgnore() button.setVisible(visible); QFETCH(QPoint, enterPos); - QHoverEvent enterEvent(QEvent::HoverEnter, enterPos, QPoint()); + QHoverEvent enterEvent(QEvent::HoverEnter, enterPos, enterPos, QPoint()); enterEvent.setAccepted(false); button.event(&enterEvent); QCOMPARE(enterEvent.isAccepted(), false); @@ -340,7 +340,7 @@ void DecorationButtonTest::testHoverEnterIgnore() // send a HoverLeft event should not be processed button.setEnabled(true); button.setVisible(true); - QHoverEvent leftEvent(QEvent::HoverLeave, QPoint(20, 20), enterPos); + QHoverEvent leftEvent(QEvent::HoverLeave, QPoint(20, 20), QPointF(20, 20), enterPos); leftEvent.setAccepted(false); button.event(&leftEvent); QCOMPARE(leftEvent.isAccepted(), false); @@ -376,7 +376,7 @@ void DecorationButtonTest::testHoverLeaveIgnore() QSignalSpy pointerLeavedSpy(&button, &KDecoration3::DecorationButton::pointerLeft); QVERIFY(pointerLeavedSpy.isValid()); - QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPoint()); + QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPoint(0, 0), QPoint()); enterEvent.setAccepted(false); button.event(&enterEvent); QCOMPARE(enterEvent.isAccepted(), true); @@ -391,7 +391,7 @@ void DecorationButtonTest::testHoverLeaveIgnore() button.setVisible(visible); QFETCH(QPoint, leavePos); - QHoverEvent leftEvent(QEvent::HoverLeave, leavePos, QPoint(0, 0)); + QHoverEvent leftEvent(QEvent::HoverLeave, leavePos, leavePos, QPoint(0, 0)); leftEvent.setAccepted(false); button.event(&leftEvent); QCOMPARE(leftEvent.isAccepted(), false); @@ -419,7 +419,7 @@ void DecorationButtonTest::testHover() QSignalSpy pointerLeavedSpy(&button, &KDecoration3::DecorationButton::pointerLeft); QVERIFY(pointerLeavedSpy.isValid()); - QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPoint()); + QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPointF(0, 0), QPoint()); enterEvent.setAccepted(false); button.event(&enterEvent); QCOMPARE(enterEvent.isAccepted(), true); @@ -429,12 +429,12 @@ void DecorationButtonTest::testHover() QCOMPARE(hoveredChangedSpy.last().first().toBool(), true); // send in a hovermove event - it's passed through, but not used - QHoverEvent moveEvent(QEvent::HoverMove, QPoint(5, 0), QPoint(0, 0)); + QHoverEvent moveEvent(QEvent::HoverMove, QPoint(5, 0), QPoint(5, 0), QPoint(0, 0)); moveEvent.setAccepted(false); button.event(&moveEvent); QCOMPARE(moveEvent.isAccepted(), false); - QHoverEvent leftEvent(QEvent::HoverLeave, QPointF(10.1, 0.0), QPointF(0, 0)); + QHoverEvent leftEvent(QEvent::HoverLeave, QPointF(10.1, 0.0), QPointF(10.1, 0.0), QPointF(0, 0)); leftEvent.setAccepted(false); button.event(&leftEvent); QCOMPARE(leftEvent.isAccepted(), true); @@ -473,7 +473,7 @@ void DecorationButtonTest::testMouseMove() QSignalSpy pointerLeavedSpy(&button, &KDecoration3::DecorationButton::pointerLeft); QVERIFY(pointerLeavedSpy.isValid()); - QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPoint()); + QHoverEvent enterEvent(QEvent::HoverEnter, QPoint(0, 0), QPoint(0, 0), QPoint()); enterEvent.setAccepted(false); button.event(&enterEvent); QCOMPARE(enterEvent.isAccepted(), true); @@ -487,7 +487,7 @@ void DecorationButtonTest::testMouseMove() button.setVisible(visible); QFETCH(QPointF, movePos); - QMouseEvent mouseMoveEvent(QEvent::MouseMove, movePos, Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent mouseMoveEvent(QEvent::MouseMove, movePos, movePos, Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); mouseMoveEvent.setAccepted(false); button.event(&mouseMoveEvent); QTEST(mouseMoveEvent.isAccepted(), "expectedAccepted"); @@ -497,7 +497,7 @@ void DecorationButtonTest::testMouseMove() QCOMPARE(hoveredChangedSpy.last().first().toBool(), button.isHovered()); // explicit further move event outside of button - QMouseEvent mouseMoveEvent2(QEvent::MouseMove, QPoint(50, 50), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent mouseMoveEvent2(QEvent::MouseMove, QPoint(50, 50), QPoint(50, 50), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); mouseMoveEvent2.setAccepted(false); button.event(&mouseMoveEvent2); QTEST(mouseMoveEvent2.isAccepted(), "expectedHovered"); @@ -538,7 +538,7 @@ void DecorationButtonTest::testClose() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -550,7 +550,7 @@ void DecorationButtonTest::testClose() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -599,7 +599,7 @@ void DecorationButtonTest::testMinimize() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -611,7 +611,7 @@ void DecorationButtonTest::testMinimize() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -660,7 +660,7 @@ void DecorationButtonTest::testQuickHelp() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -672,7 +672,7 @@ void DecorationButtonTest::testQuickHelp() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -712,7 +712,7 @@ void DecorationButtonTest::testKeepAbove() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -724,7 +724,7 @@ void DecorationButtonTest::testKeepAbove() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -775,7 +775,7 @@ void DecorationButtonTest::testKeepBelow() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -787,7 +787,7 @@ void DecorationButtonTest::testKeepBelow() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -848,7 +848,7 @@ void DecorationButtonTest::testShade() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -860,7 +860,7 @@ void DecorationButtonTest::testShade() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -925,7 +925,7 @@ void DecorationButtonTest::testMaximize() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent leftPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent leftPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); leftPressEvent.setAccepted(false); button.event(&leftPressEvent); QCOMPARE(leftPressEvent.isAccepted(), true); @@ -937,7 +937,7 @@ void DecorationButtonTest::testMaximize() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent leftReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent leftReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); leftReleaseEvent.setAccepted(false); button.event(&leftReleaseEvent); QCOMPARE(leftReleaseEvent.isAccepted(), true); @@ -963,19 +963,19 @@ void DecorationButtonTest::testMaximize() QCOMPARE(button.isChecked(), false); // test the other buttons - QMouseEvent rightPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::RightButton, Qt::RightButton, Qt::NoModifier); + QMouseEvent rightPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::RightButton, Qt::RightButton, Qt::NoModifier); rightPressEvent.setAccepted(false); button.event(&rightPressEvent); QCOMPARE(rightPressEvent.isAccepted(), true); QCOMPARE(button.isPressed(), true); - QMouseEvent middlePressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::MiddleButton, Qt::MiddleButton, Qt::NoModifier); + QMouseEvent middlePressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::MiddleButton, Qt::MiddleButton, Qt::NoModifier); middlePressEvent.setAccepted(false); button.event(&middlePressEvent); QCOMPARE(middlePressEvent.isAccepted(), true); QCOMPARE(button.isPressed(), true); - QMouseEvent middleReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::MiddleButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent middleReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::MiddleButton, Qt::NoButton, Qt::NoModifier); middleReleaseEvent.setAccepted(false); button.event(&middleReleaseEvent); QCOMPARE(middleReleaseEvent.isAccepted(), true); @@ -986,7 +986,7 @@ void DecorationButtonTest::testMaximize() QCOMPARE(client->isMaximizedHorizontally(), true); QCOMPARE(client->isMaximizedVertically(), false); - QMouseEvent rightReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::RightButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent rightReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::RightButton, Qt::NoButton, Qt::NoModifier); rightReleaseEvent.setAccepted(false); button.event(&rightReleaseEvent); QCOMPARE(rightReleaseEvent.isAccepted(), true); @@ -1041,7 +1041,7 @@ void DecorationButtonTest::testOnAllDesktops() QSignalSpy pressedChangedSpy(&button, &KDecoration3::DecorationButton::pressedChanged); QVERIFY(pressedChangedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -1053,7 +1053,7 @@ void DecorationButtonTest::testOnAllDesktops() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -1098,7 +1098,7 @@ void DecorationButtonTest::testMenu() QSignalSpy menuRequestedSpy(client, &MockWindow::menuRequested); QVERIFY(menuRequestedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -1110,7 +1110,7 @@ void DecorationButtonTest::testMenu() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -1155,11 +1155,11 @@ void DecorationButtonTest::testMenuDoubleClick() QSignalSpy menuRequestedSpy(client, &MockWindow::menuRequested); QVERIFY(menuRequestedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -1186,11 +1186,11 @@ void DecorationButtonTest::testMenuDoubleClick() QCOMPARE(menuRequestedSpy.count(), 0); // a double click of right button shouldn't trigger the double click event - QMouseEvent rightPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::RightButton, Qt::RightButton, Qt::NoModifier); + QMouseEvent rightPressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::RightButton, Qt::RightButton, Qt::NoModifier); rightPressEvent.setAccepted(false); button.event(&rightPressEvent); QCOMPARE(rightPressEvent.isAccepted(), true); - QMouseEvent rightReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::RightButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent rightReleaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::RightButton, Qt::NoButton, Qt::NoModifier); rightReleaseEvent.setAccepted(false); button.event(&rightReleaseEvent); QCOMPARE(rightReleaseEvent.isAccepted(), true); @@ -1240,7 +1240,7 @@ void DecorationButtonTest::testMenuPressAndHold() QVERIFY(clickedSpy.isValid()); // send a press event - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -1252,7 +1252,7 @@ void DecorationButtonTest::testMenuPressAndHold() QCOMPARE(clickedSpy.count(), 1); // send release event - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); @@ -1310,7 +1310,7 @@ void DecorationButtonTest::testApplicationMenu() QSignalSpy applicationMenuRequestedSpy(client, &MockWindow::applicationMenuRequested); QVERIFY(applicationMenuRequestedSpy.isValid()); - QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent pressEvent(QEvent::MouseButtonPress, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); pressEvent.setAccepted(false); button.event(&pressEvent); QCOMPARE(pressEvent.isAccepted(), true); @@ -1322,7 +1322,7 @@ void DecorationButtonTest::testApplicationMenu() QCOMPARE(pressedChangedSpy.count(), 1); QCOMPARE(pressedChangedSpy.first().first().toBool(), true); - QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPointF(5, 5), QPointF(5, 5), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); releaseEvent.setAccepted(false); button.event(&releaseEvent); QCOMPARE(releaseEvent.isAccepted(), true); diff --git a/local/recipes/kde/kdecoration/source/autotests/decorationtest.cpp b/local/recipes/kde/kdecoration/source/autotests/decorationtest.cpp index b6693d9198..0a196b857a 100644 --- a/local/recipes/kde/kdecoration/source/autotests/decorationtest.cpp +++ b/local/recipes/kde/kdecoration/source/autotests/decorationtest.cpp @@ -132,14 +132,14 @@ void DecorationTest::testSection() QSignalSpy spy(&deco, &KDecoration3::Decoration::sectionUnderMouseChanged); QVERIFY(spy.isValid()); QFETCH(QPoint, pos); - QHoverEvent event(QEvent::HoverMove, QPointF(pos), QPointF(pos)); + QHoverEvent event(QEvent::HoverMove, QPointF(pos), QPointF(pos), QPointF(pos)); QCoreApplication::sendEvent(&deco, &event); QFETCH(Qt::WindowFrameSection, expected); QCOMPARE(deco.sectionUnderMouse(), expected); QCOMPARE(spy.count(), 1); QCOMPARE(spy.first().first().value(), expected); - QHoverEvent event2(QEvent::HoverMove, QPointF(50, 50), QPointF(50, 50)); + QHoverEvent event2(QEvent::HoverMove, QPointF(50, 50), QPointF(50, 50), QPointF(50, 50)); QCoreApplication::sendEvent(&deco, &event2); QCOMPARE(deco.sectionUnderMouse(), Qt::NoSection); QCOMPARE(spy.count(), 2); diff --git a/local/recipes/kde/kdecoration/source/autotests/mocksettings.cpp b/local/recipes/kde/kdecoration/source/autotests/mocksettings.cpp index 98cd69fad3..779851c1f3 100644 --- a/local/recipes/kde/kdecoration/source/autotests/mocksettings.cpp +++ b/local/recipes/kde/kdecoration/source/autotests/mocksettings.cpp @@ -7,7 +7,7 @@ #include "../src/decorationsettings.h" MockSettings::MockSettings(KDecoration3::DecorationSettings *parent) - : DecorationSettingsPrivate(parent) + : DecorationSettingsPrivateV2(parent) { } @@ -41,6 +41,11 @@ bool MockSettings::isOnAllDesktopsAvailable() const return m_onAllDesktopsAvailable; } +bool MockSettings::isAlwaysShowExcludeFromCapture() const +{ + return m_alwaysShowExcludeFromCapture; +} + void MockSettings::setOnAllDesktopsAvailabe(bool set) { if (m_onAllDesktopsAvailable == set) { @@ -58,3 +63,12 @@ void MockSettings::setCloseOnDoubleClickOnMenu(bool set) m_closeDoubleClickOnMenu = set; Q_EMIT decorationSettings()->closeOnDoubleClickOnMenuChanged(m_closeDoubleClickOnMenu); } + +void MockSettings::setAlwaysShowExcludeFromCapture(bool set) +{ + if (m_alwaysShowExcludeFromCapture == set) { + return; + } + m_alwaysShowExcludeFromCapture = set; + Q_EMIT decorationSettings()->alwaysShowExcludeFromCaptureChanged(m_alwaysShowExcludeFromCapture); +} diff --git a/local/recipes/kde/kdecoration/source/autotests/mocksettings.h b/local/recipes/kde/kdecoration/source/autotests/mocksettings.h index 9f6cbb41b5..2fe5a28185 100644 --- a/local/recipes/kde/kdecoration/source/autotests/mocksettings.h +++ b/local/recipes/kde/kdecoration/source/autotests/mocksettings.h @@ -7,7 +7,7 @@ #include "../src/private/decorationsettingsprivate.h" -class MockSettings : public KDecoration3::DecorationSettingsPrivate +class MockSettings : public KDecoration3::DecorationSettingsPrivateV2 { public: explicit MockSettings(KDecoration3::DecorationSettings *parent); @@ -18,11 +18,14 @@ public: bool isAlphaChannelSupported() const override; bool isCloseOnDoubleClickOnMenu() const override; bool isOnAllDesktopsAvailable() const override; + bool isAlwaysShowExcludeFromCapture() const override; void setOnAllDesktopsAvailabe(bool set); void setCloseOnDoubleClickOnMenu(bool set); + void setAlwaysShowExcludeFromCapture(bool set); private: bool m_onAllDesktopsAvailable = false; bool m_closeDoubleClickOnMenu = false; + bool m_alwaysShowExcludeFromCapture = false; }; diff --git a/local/recipes/kde/kdecoration/source/autotests/mockwindow.cpp b/local/recipes/kde/kdecoration/source/autotests/mockwindow.cpp index 78f93cc35d..eeedae073f 100644 --- a/local/recipes/kde/kdecoration/source/autotests/mockwindow.cpp +++ b/local/recipes/kde/kdecoration/source/autotests/mockwindow.cpp @@ -10,7 +10,7 @@ MockWindow::MockWindow(KDecoration3::DecoratedWindow *client, KDecoration3::Decoration *decoration) : QObject() - , DecoratedWindowPrivateV2(client, decoration) + , DecoratedWindowPrivateV4(client, decoration) { } @@ -54,6 +54,11 @@ bool MockWindow::isKeepBelow() const return m_keepBelow; } +bool MockWindow::isExcludedFromCapture() const +{ + return m_excludeFromCapture; +} + bool MockWindow::isMaximizeable() const { return m_maximizable; @@ -196,6 +201,12 @@ void MockWindow::requestToggleKeepBelow() Q_EMIT window()->keepBelowChanged(m_keepBelow); } +void MockWindow::requestToggleExcludeFromCapture() +{ + m_excludeFromCapture = !m_excludeFromCapture; + Q_EMIT window()->excludeFromCaptureChanged(m_excludeFromCapture); +} + void MockWindow::requestToggleOnAllDesktops() { m_onAllDesktops = !m_onAllDesktops; @@ -299,4 +310,10 @@ QString MockWindow::applicationMenuObjectPath() const return QString(); } +void MockWindow::popup(const KDecoration3::Positioner &positioner, QMenu *menu) +{ + Q_UNUSED(positioner) + Q_UNUSED(menu) +} + #include "moc_mockwindow.cpp" diff --git a/local/recipes/kde/kdecoration/source/autotests/mockwindow.h b/local/recipes/kde/kdecoration/source/autotests/mockwindow.h index 053d26132a..30d3d74f49 100644 --- a/local/recipes/kde/kdecoration/source/autotests/mockwindow.h +++ b/local/recipes/kde/kdecoration/source/autotests/mockwindow.h @@ -9,7 +9,7 @@ #include -class MockWindow : public QObject, public KDecoration3::DecoratedWindowPrivateV2 +class MockWindow : public QObject, public KDecoration3::DecoratedWindowPrivateV4 { Q_OBJECT public: @@ -23,6 +23,7 @@ public: bool isCloseable() const override; bool isKeepAbove() const override; bool isKeepBelow() const override; + bool isExcludedFromCapture() const override; bool isMaximizeable() const override; bool isMaximized() const override; bool isMaximizedHorizontally() const override; @@ -46,6 +47,7 @@ public: void requestShowApplicationMenu(const QRect &rect, int actionId) override; void requestToggleKeepAbove() override; void requestToggleKeepBelow() override; + void requestToggleExcludeFromCapture() override; void requestToggleOnAllDesktops() override; void requestToggleShade() override; void requestShowToolTip(const QString &text) override; @@ -57,8 +59,8 @@ public: qreal nextScale() const override; QString applicationMenuServiceName() const override; QString applicationMenuObjectPath() const override; - void showApplicationMenu(int actionId) override; + void popup(const KDecoration3::Positioner &positioner, QMenu *menu) override; void setCloseable(bool set); void setMinimizable(bool set); @@ -82,6 +84,7 @@ private: bool m_contextHelp = false; bool m_keepAbove = false; bool m_keepBelow = false; + bool m_excludeFromCapture = false; bool m_shadeable = false; bool m_shaded = false; bool m_maximizable = false; diff --git a/local/recipes/kde/kdecoration/source/po/ar/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ar/kdecoration.po index d1f9cfd02e..b61bb40acf 100644 --- a/local/recipes/kde/kdecoration/source/po/ar/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ar/kdecoration.po @@ -1,13 +1,13 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kdecoration package. +# SPDX-FileCopyrightText: 2023, 2025, 2026 Zayed Al-Saidi # -# Zayed Al-Saidi , 2023. msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2023-03-16 12:41+0400\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-14 07:49+0400\n" "Last-Translator: Zayed Al-Saidi \n" "Language-Team: ar\n" "Language: ar\n" @@ -15,79 +15,96 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Lokalize 23.08.5\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "إجراءات أكثر لهذه النافذة" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "قائمة النافذة" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "قائمة التّطبيق" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "على سطح مكتب واحد" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "على كلّ أسطح المكتب" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "صغّر" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "استعد" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "كبّر" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "أغلق" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "مساعدة السياقية" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "ألغ التظليل" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "ظلل" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "لا تبقها أسفل النوافذ الأخرى" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "أبقها أسفل النوافذ الأخرى" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "لا تبقها أعلى النوافذ الأخرى" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "أبقها أعلى النوافذ الأخرى" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "النافذة مخفية عن تسجيل الشاشة. اضغط عليها لإظهارها." + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "أخفِ من تسجيل الشاشة" + +#~ msgid "More actions for this window" +#~ msgstr "إجراءات أكثر لهذه النافذة" diff --git a/local/recipes/kde/kdecoration/source/po/ast/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ast/kdecoration.po index e0427abc64..7b3fa180e7 100644 --- a/local/recipes/kde/kdecoration/source/po/ast/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ast/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2023-05-03 23:37+0200\n" "Last-Translator: Enol P. \n" "Language-Team: \n" @@ -17,77 +17,90 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 23.04.0\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" diff --git a/local/recipes/kde/kdecoration/source/po/az/kdecoration.po b/local/recipes/kde/kdecoration/source/po/az/kdecoration.po index 578deabfb6..66bbbe79c7 100644 --- a/local/recipes/kde/kdecoration/source/po/az/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/az/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2022-07-03 13:56+0400\n" "Last-Translator: Kheyyam \n" "Language-Team: Azerbaijani \n" @@ -17,81 +17,97 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 22.04.2\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Bu pəncərə üçün daha çox əməllər" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Tətbiq menyusu" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "İş masasında" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Bütün İş Masalarında" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Kiçiltmək" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Bərpa etmək" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Tam açmaq" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Bağlamaq" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Uyğun kömək" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Kölgəsiz" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Kölgə" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Digər pəncərələrin altında tutmamaq" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Digər pəncərələrin altında tutmaq" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Digər pəncərələrin üzərində tutmamaq" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Digər pəncərələrin üzərində tutmaq" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Bu pəncərə üçün daha çox əməllər" + #~ msgid "Menu" #~ msgstr "Menyu" diff --git a/local/recipes/kde/kdecoration/source/po/bg/kdecoration.po b/local/recipes/kde/kdecoration/source/po/bg/kdecoration.po index 894391c648..c669f228ea 100644 --- a/local/recipes/kde/kdecoration/source/po/bg/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/bg/kdecoration.po @@ -1,93 +1,106 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kdecoration package. # -# Mincho Kondarev , 2022. +# SPDX-FileCopyrightText: 2022, 2025, 2026 Mincho Kondarev msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2022-05-20 19:35+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-19 20:09+0100\n" "Last-Translator: Mincho Kondarev \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 22.04.0\n" +"X-Generator: Lokalize 26.03.70\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Допълнителни действия за този прозорец" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Меню на прозореца" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Меню на приложение" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "На един работен плот" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "На всички работни плотове" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Минимизиране" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Възстановяване" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Максимизиране" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Затваряне" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Контекстна помощ" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Разгъване" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Сгъване" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Без задържане под другите прозорци" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Задържане под другите прозорците" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Без задържане над другите прозорци" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Задържане над другите прозорци" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "Прозорецът е скрит от Screencast. Натиснете, за да го направите видим." + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Скриване от предаване на екрана" diff --git a/local/recipes/kde/kdecoration/source/po/ca/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ca/kdecoration.po index b77859da78..bafee35cc5 100644 --- a/local/recipes/kde/kdecoration/source/po/ca/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ca/kdecoration.po @@ -1,98 +1,113 @@ # Translation of kdecoration.po to Catalan -# Copyright (C) 2018-2021 This_file_is_part_of_KDE +# Copyright (C) 2018-2026 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. # -# Josep M. Ferrer , 2018. -# Empar Montoro Martín , 2019. -# Antoni Bella Pérez , 2021. +# SPDX-FileCopyrightText: 2018, 2025, 2026 Josep M. Ferrer +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín +# SPDX-FileCopyrightText: 2021 Antoni Bella Pérez msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-05 16:55+0200\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-13 12:45+0100\n" +"Last-Translator: Josep M. Ferrer \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" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 25.04.0\n" "X-Accelerator-Marker: &\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Més accions per a aquesta finestra" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menú de finestra" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menú d'aplicacions" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "A un escriptori" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "A tots els escriptoris" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimitza" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaura" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximitza" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Tanca" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Ajuda contextual" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Desplega" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Plega" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "No mantinguis per sota de les altres finestres" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Mantén per sota de les altres finestres" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "No mantinguis al damunt de les altres finestres" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Mantén al damunt de les altres finestres" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"La finestra està oculta per als vídeos de captura de pantalla. Premeu per a " +"fer-la visible" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Oculta dels vídeos de captura de pantalla" diff --git a/local/recipes/kde/kdecoration/source/po/ca@valencia/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ca@valencia/kdecoration.po index 71a013aa63..a839d95625 100644 --- a/local/recipes/kde/kdecoration/source/po/ca@valencia/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ca@valencia/kdecoration.po @@ -1,98 +1,113 @@ # Translation of kdecoration.po to Catalan (Valencian) -# Copyright (C) 2018-2021 This_file_is_part_of_KDE +# Copyright (C) 2018-2026 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. # -# Josep M. Ferrer , 2018. -# Empar Montoro Martín , 2019. -# Antoni Bella Pérez , 2021. +# SPDX-FileCopyrightText: 2018, 2025, 2026 Josep M. Ferrer +# SPDX-FileCopyrightText: 2019 Empar Montoro Martín +# SPDX-FileCopyrightText: 2021 Antoni Bella Pérez msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-05 16:55+0200\n" -"Last-Translator: Antoni Bella Pérez \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-13 12:45+0100\n" +"Last-Translator: Josep M. Ferrer \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" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 25.04.0\n" "X-Accelerator-Marker: &\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Més accions per a esta finestra" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menú de la finestra" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menú d'aplicacions" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "A un escriptori" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "A tots els escriptoris" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimitza" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaura" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximitza" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Tanca" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Ajuda contextual" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Desplega" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Plega" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "No mantinges per davall de les altres finestres" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Mantín per davall de les altres finestres" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "No mantinges al damunt de les altres finestres" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Mantín al damunt de les altres finestres" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"La finestra està oculta per als vídeos de captura de pantalla. Premeu per a " +"fer-la visible" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Oculta dels vídeos de captura de pantalla" diff --git a/local/recipes/kde/kdecoration/source/po/cs/kdecoration.po b/local/recipes/kde/kdecoration/source/po/cs/kdecoration.po index 50e1655ad2..01e77d3e29 100644 --- a/local/recipes/kde/kdecoration/source/po/cs/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/cs/kdecoration.po @@ -1,93 +1,107 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Vit Pelcak , 2018, 2020, 2021. +# SPDX-FileCopyrightText: 2018, 2020, 2021, 2025, 2026 Vit Pelcak +# SPDX-FileCopyrightText: 2026 Libor Filípek # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-13 13:38+0200\n" -"Last-Translator: Vit Pelcak \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-04-06 21:34+0200\n" +"Last-Translator: Libor Filípek \n" +"Language-Team: \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 21.04.0\n" +"X-Generator: Lokalize 25.12.3\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Více činností pro toto okno" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Nabídka Okno" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Nabídka aplikací" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Na pracovní ploše" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Na všech plochách" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimalizovat" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Obnovit" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximalizovat" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Zavřít" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kontextová nápověda" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Rozbalit" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Sbalit" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Neponechat pod ostatními okny" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Ponechat pod ostatními okny" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Neponechat nad jinými okny" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Podržet nad jinými okny" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "Okno je ve sdílení obrazovky skryté. Stisknutím tlačítka jej zobrazíte" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Skrýt ze sdílení obrazovky" diff --git a/local/recipes/kde/kdecoration/source/po/da/kdecoration.po b/local/recipes/kde/kdecoration/source/po/da/kdecoration.po index 4aa090ecd4..bcd0b47592 100644 --- a/local/recipes/kde/kdecoration/source/po/da/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/da/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2019-05-07 13:23+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" @@ -17,83 +17,96 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Programmenu" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "På et skrivebord" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "På alle skriveborde" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimér" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Genskab" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maksimér" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Luk" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Sammenhængsafhængig hjælp" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Skyg ikke" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Skyg" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, fuzzy, kde-format #| msgid "Don't keep below" msgid "Don't keep below other windows" msgstr "Hold ikke under" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, fuzzy, kde-format #| msgid "Don't keep above" msgid "Don't keep above other windows" msgstr "Hold ikke over" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/de/kdecoration.po b/local/recipes/kde/kdecoration/source/po/de/kdecoration.po index 867838ec57..cf8e3d6c37 100644 --- a/local/recipes/kde/kdecoration/source/po/de/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/de/kdecoration.po @@ -1,97 +1,117 @@ -# Copyright (C) YEAR This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. -# -# Frederik Schwarzer , 2018. -# Burkhard Lück , 2018, 2021. +# Copyright (C) 2025 This_file_is_part_of_KDE +# This file is distributed under the same license as the kdecoration package. +# SPDX-FileCopyrightText: 2018 Frederik Schwarzer +# SPDX-FileCopyrightText: 2018, 2021 Burkhard Lück +# SPDX-FileCopyrightText: 2025 Alexander Becker +# SPDX-FileCopyrightText: 2026 Philipp Kiemle msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-05 05:59+0200\n" -"Last-Translator: Burkhard Lück \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-05-11 21:31+0200\n" +"Last-Translator: Philipp Kiemle \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" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 25.12.3\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Weitere Aktionen für dieses Fenster" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Fenstermenü" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Anwendungsmenü" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Auf einer Arbeitsfläche" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Auf allen Arbeitsflächen" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimieren" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Wiederherstellen" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximieren" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Schließen" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kontexthilfe" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" -msgstr "Einrollen rückgängig" +msgstr "Ausrollen" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Einrollen" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Nicht hinter anderen Fenstern halten" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Fenster im Hintergrund halten" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Nicht vor anderen Fenstern halten" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Fenster im Vordergrund halten" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"Das Fenster ist vor der Bildschirmaufzeichnung verborgen. Klicken, um es " +"sichtbar zu machen" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Vor Bildschirmaufzeichnung verbergen" + +#~ msgid "More actions for this window" +#~ msgstr "Weitere Aktionen für dieses Fenster" + #~ msgid "Menu" #~ msgstr "Menü" diff --git a/local/recipes/kde/kdecoration/source/po/el/kdecoration.po b/local/recipes/kde/kdecoration/source/po/el/kdecoration.po index 84ea067a5a..74933be244 100644 --- a/local/recipes/kde/kdecoration/source/po/el/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/el/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2021-06-14 16:27+0300\n" "Last-Translator: Stelios \n" "Language-Team: Greek \n" @@ -17,81 +17,97 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 20.04.2\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Περισσότερες ενέργειες για αυτό το παράθυρο" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Μενού εφαρμογής" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Σε μία επιφάνεια εργασίας" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Σε όλες τις επιφάνειες εργασίας" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Ελαχιστοποίηση" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Επαναφορά" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Μεγιστοποίηση" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Κλείσιμο" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Βοήθεια στο κείμενο" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Αναίρεση σκίασης" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Σκίαση" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Να μη μείνει κάτω από άλλα παράθυρα" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Να μείνει κάτω από άλλα παράθυρα" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Να μη μείνει πάνω από άλλα παράθυρα" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Να μείνει πάνω από άλλα παράθυρα" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Περισσότερες ενέργειες για αυτό το παράθυρο" + #~ msgid "Menu" #~ msgstr "Μενού" diff --git a/local/recipes/kde/kdecoration/source/po/en_GB/kdecoration.po b/local/recipes/kde/kdecoration/source/po/en_GB/kdecoration.po index 3faba435e8..a621e7ac1a 100644 --- a/local/recipes/kde/kdecoration/source/po/en_GB/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/en_GB/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2021-06-12 14:20+0100\n" "Last-Translator: Steve Allewell \n" "Language-Team: British English \n" @@ -17,81 +17,97 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 21.04.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "More actions for this window" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Application menu" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "On one desktop" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "On all desktops" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimise" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restore" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximise" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Close" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Context help" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Unshade" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Shade" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Do not keep below other windows" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Keep below other windows" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Do not keep above other windows" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Keep above other windows" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "More actions for this window" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/eo/kdecoration.po b/local/recipes/kde/kdecoration/source/po/eo/kdecoration.po index 68b3acb73f..f7c006e43b 100644 --- a/local/recipes/kde/kdecoration/source/po/eo/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/eo/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2023-04-28 23:02+0100\n" "Last-Translator: Oliver Kellogg \n" "Language-Team: Esperanto \n" @@ -16,77 +16,93 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Pliaj agoj por ĉi tiu fenestro" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Aplikaĵa menuo" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Sur unu labortablo" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Sur ĉiuj labortabloj" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimumigi" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaŭri" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maksimumigi" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Fermi" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kunteksta helpo" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Malombrigi" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Ombrigi" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Ne teni sub aliaj fenestroj" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Teni sub aliaj fenestroj" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Ne teni super aliaj fenestroj" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Teni super aliaj fenestroj" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Pliaj agoj por ĉi tiu fenestro" diff --git a/local/recipes/kde/kdecoration/source/po/es/kdecoration.po b/local/recipes/kde/kdecoration/source/po/es/kdecoration.po index 7ea82330cd..420b2d3e10 100644 --- a/local/recipes/kde/kdecoration/source/po/es/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/es/kdecoration.po @@ -1,15 +1,15 @@ # Spanish translations for kdecoration.po package. -# Copyright (C) 2018 This_file_is_part_of_KDE -# This file is distributed under the same license as the PACKAGE package. -# +# Copyright (C) 2018-2026 This file is copyright: +# This file is distributed under the same license as the kdecoration package. # Automatically generated, 2018. -# Eloy Cuadra , 2018, 2021. +# +# SPDX-FileCopyrightText: 2018, 2021, 2025, 2026 Eloy Cuadra msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-05 12:13+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-14 12:19+0100\n" "Last-Translator: Eloy Cuadra \n" "Language-Team: Spanish \n" "Language: es\n" @@ -17,88 +17,94 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 21.04.0\n" +"X-Generator: Lokalize 25.12.0\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Más acciones para esta ventana" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menú de la ventana" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menú de la aplicación" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "En un escritorio" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "En todos los escritorios" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimizar" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaurar" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximizar" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Cerrar" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Ayuda de contexto" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Desenrollar" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Enrollar" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "No mantener por debajo de otras ventanas" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Mantener por debajo de otras ventanas" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "No mantener por encima de otras ventanas" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Mantener por encima de otras ventanas" -#~ msgid "Menu" -#~ msgstr "Menú" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"La ventana se oculta en videocapturas de pantalla. Pulse para hacerla " +"visible." -#~ msgid "Keep below" -#~ msgstr "Mantener por debajo" - -#~ msgid "Keep above" -#~ msgstr "Mantener por encima" +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Ocultar en videocaptura de pantalla" diff --git a/local/recipes/kde/kdecoration/source/po/et/kdecoration.po b/local/recipes/kde/kdecoration/source/po/et/kdecoration.po index 3b2949d972..6ed7dab399 100644 --- a/local/recipes/kde/kdecoration/source/po/et/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/et/kdecoration.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2019-11-08 21:30+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" @@ -17,83 +17,96 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 19.08.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Rakenduste menüü" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Ühel töölaual" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Kõigil töölaudadel" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimeeri" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Taasta" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maksimeeri" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Sulge" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kontekstiabi" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Keri lahti" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Keri kokku" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, fuzzy, kde-format #| msgid "Don't keep below" msgid "Don't keep below other windows" msgstr "Ära hoia teiste all" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, fuzzy, kde-format #| msgid "Don't keep above" msgid "Don't keep above other windows" msgstr "Ära hoia teiste peal" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + #~ msgid "Menu" #~ msgstr "Menüü" diff --git a/local/recipes/kde/kdecoration/source/po/eu/kdecoration.po b/local/recipes/kde/kdecoration/source/po/eu/kdecoration.po index 1ce6b5a347..b164bdc4d9 100644 --- a/local/recipes/kde/kdecoration/source/po/eu/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/eu/kdecoration.po @@ -1,17 +1,17 @@ # Translation for kdecoration.po to Euskara/Basque (eu). # Copyright (C) 2018, Free Software Foundation, Inc. -# Copyright (C) 2019-2021, This file is copyright: +# Copyright (C) 2019-2026 This file is copyright: # This file is distributed under the same license as kdecoration package. -# KDE euskaratzeko proiektuko arduraduna . +# SPDX-FileCopyrightText: 2025, 2026 KDE euskaratzeko proiektuaren arduraduna # # Translators: -# Iñigo Salvador Azurmendi , 2018, 2021. +# Iñigo Salvador Azurmendi , 2018, 2021, 2025, 2026. msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-07-26 19:57+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-24 15:40+0100\n" "Last-Translator: Iñigo Salvador Azurmendi \n" "Language-Team: Basque \n" "Language: eu\n" @@ -19,83 +19,99 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 21.04.3\n" +"X-Generator: Lokalize 25.12.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Leiho honetarako ekintza gehiago" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Leihoaren menua" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Aplikazio-menua" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Mahaigain bakarrean" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Mahaigain guztietan" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimizatu" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Lehengoratu" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximizatu" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Itxi" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Testuinguru-laguntza" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Zabaldu" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Bildu" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Ez eutsi beste leihoen azpian" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Eutsi beste leihoen azpian" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Ez eutsi beste leihoen gainean" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Eutsi beste leiho batzuen gainean" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "Leihoa pantaila-grabaziotik ezkutatuta dago. Sakatu ikusgai egiteko" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Ezkutatu pantaila-grabaziotik" + +#~ msgid "More actions for this window" +#~ msgstr "Leiho honetarako ekintza gehiago" + #~ msgid "Menu" #~ msgstr "Menua" diff --git a/local/recipes/kde/kdecoration/source/po/fi/kdecoration.po b/local/recipes/kde/kdecoration/source/po/fi/kdecoration.po index 61cb9faf81..39a22da6b1 100644 --- a/local/recipes/kde/kdecoration/source/po/fi/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/fi/kdecoration.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Tommi Nieminen , 2018, 2021. +# SPDX-FileCopyrightText: 2018, 2021, 2025 Tommi Nieminen # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-07 11:01+0300\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2025-07-07 20:57+0300\n" "Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -15,82 +15,99 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 23.08.5\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Lisää toimintoja tälle ikkunalle" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Ikkunavalikko" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Sovellusvalikko" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Yhdellä työpöydällä" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Kaikilla työpöydillä" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Pienennä" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Palauta" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Suurenna" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Sulje" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kontekstiohje" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Avaa rullaus" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Rullaa" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Älä pidä muiden ikkunoiden alla" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Pidä muiden ikkunoiden alla" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Älä pidä muiden ikkunoiden yllä" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Pidä muiden ikkunoiden yllä" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Lisää toimintoja tälle ikkunalle" + #~ msgid "Menu" #~ msgstr "Valikko" diff --git a/local/recipes/kde/kdecoration/source/po/fr/kdecoration.po b/local/recipes/kde/kdecoration/source/po/fr/kdecoration.po index ac6926d8fe..e6457ad155 100644 --- a/local/recipes/kde/kdecoration/source/po/fr/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/fr/kdecoration.po @@ -1,98 +1,116 @@ +# SPDX-FileCopyrightText: 2021, 2025, 2026 Xavier Besnard # Yoann Laissus , 2018. -# Xavier Besnard , 2021. msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-05 13:56+0200\n" -"Last-Translator: Xavier Besnard \n" -"Language-Team: French \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-14 08:14+0100\n" +"Last-Translator: Xavier Besnard \n" +"Language-Team: \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 21.04.0\n" -"X-Environment: kde\n" "X-Accelerator-Marker: &\n" +"X-Environment: kde\n" +"X-Generator: Lokalize 25.12.1\n" "X-Text-Markup: kde4\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Plus d'actions pour cette fenêtre" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menu « Fenêtre »" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menu d'application" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Sur un seul bureau" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Sur tous les bureaux" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimiser" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaurer" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximiser" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Fermer" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Aide contextuelle" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Enlever l'ombrage" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Ombre" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Ne pas conserver en dessous des autres fenêtres" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Conserver en dessous des autres fenêtres" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Ne pas conserver en dessus des autres fenêtres" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Conserver en dessus des autres fenêtres" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"La fenêtre est masquée pour l'enregistrement vidéo. Veuillez appuyer pour la " +"rendre visible." + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Masquer de l'enregistrement vidéo" + +#~ msgid "More actions for this window" +#~ msgstr "Plus d'actions pour cette fenêtre" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/gl/kdecoration.po b/local/recipes/kde/kdecoration/source/po/gl/kdecoration.po index 16b5b38dce..84975d59b5 100644 --- a/local/recipes/kde/kdecoration/source/po/gl/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/gl/kdecoration.po @@ -1,97 +1,113 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Adrián Chaves (Gallaecio) , 2018, 2019, 2023. +# SPDX-FileCopyrightText: 2025 Adrián Chaves (Gallaecio) # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2023-04-28 17:26+0200\n" -"Last-Translator: Adrián Chaves (Gallaecio) \n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2025-06-19 09:38+0200\n" +"Last-Translator: Adrián Chaves (Gallaecio) \n" +"Language-Team: Proxecto Trasno (proxecto@trasno.gal)\n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.04.0\n" +"X-Generator: Lokalize 25.04.2\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Máis accións para esta xanela" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menú de xanela" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menú das aplicacións" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Nun escritorio" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "En todos os escritorios" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimizar" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restaurar" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximizar" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Pechar" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Axuda contextual" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Desenrolar" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Enrolar" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Non manter debaixo doutras xanelas" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Manter debaixo doutras xanelas" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Non manter enriba doutras xanelas" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Manter enriba doutras xanelas" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Máis accións para esta xanela" + #~ msgid "Menu" #~ msgstr "Menú" diff --git a/local/recipes/kde/kdecoration/source/po/he/kdecoration.po b/local/recipes/kde/kdecoration/source/po/he/kdecoration.po index f6fc1c6503..cbbabdc78e 100644 --- a/local/recipes/kde/kdecoration/source/po/he/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/he/kdecoration.po @@ -1,13 +1,13 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the kdecoration package. # -# SPDX-FileCopyrightText: 2024 Yaron Shahrabani +# SPDX-FileCopyrightText: 2024, 2025, 2026 Yaron Shahrabani msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2024-03-19 08:16+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-13 14:59+0200\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: צוות התרגום של KDE ישראל\n" "Language: he\n" @@ -16,79 +16,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Lokalize 23.08.5\n" +"X-Generator: Lokalize 25.12.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "פעולות נוספות לחלון הזה" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "תפריט חלון" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "תפריט היישום" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "בשולחן עבודה אחד" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "בכל שולחנות העבודה" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "מזעור" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "שחזור" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "הגדלה" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "סגירה" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "עזרה לפי הקשר" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "ביטול הצללה" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "הצללה" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "לא להסתיר מאחורי חלונות אחרים" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "להסתיר מאחורי חלונות אחרים" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "לא לקדם מעל חלונות אחרים" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "לקדם מעל חלונות אחרים" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "החלון מוסתר מהסרטת מסך. לחיצה תחשוף אותו להסרטה" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "הסתרה מהסרטת מסך" + +#~ msgid "More actions for this window" +#~ msgstr "פעולות נוספות לחלון הזה" diff --git a/local/recipes/kde/kdecoration/source/po/hi/kdecoration.po b/local/recipes/kde/kdecoration/source/po/hi/kdecoration.po index a94efadd0b..c341945114 100644 --- a/local/recipes/kde/kdecoration/source/po/hi/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/hi/kdecoration.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2021-06-29 17:56+0530\n" "Last-Translator: Raghavendra Kamath \n" "Language-Team: kde-hindi\n" @@ -18,80 +18,96 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Lokalize 21.04.2\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "इस विंडो के लिए और क्रियाएँ" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "अनुप्रयोग मेन्यू" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "एक डेस्कटॉप पर" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "सभी डेस्कटॉप पर" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "न्यूनतम" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "पुरानी स्तिथी में लाऐं" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "अधिकतम" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "बंद करें" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "प्रासंगिक सहायता" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "छाया हटाएँ" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "छाया" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "अन्य विंडो के नीचे न रखें" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "अन्य विंडो के नीचे रखें" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "अन्य विंडो के ऊपर न रखें" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "अन्य विंडो के ऊपर रखें" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "इस विंडो के लिए और क्रियाएँ" + #~ msgid "Menu" #~ msgstr "मेन्यू" diff --git a/local/recipes/kde/kdecoration/source/po/hu/kdecoration.po b/local/recipes/kde/kdecoration/source/po/hu/kdecoration.po index 98c47231b1..cec779f1e2 100644 --- a/local/recipes/kde/kdecoration/source/po/hu/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/hu/kdecoration.po @@ -1,14 +1,14 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kdecoration package. # # Kristóf Kiszel , 2019. -# Kristof Kiszel , 2021. +# SPDX-FileCopyrightText: 2021, 2025-2026 Kristof Kiszel msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-11-24 13:23+0100\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-05-30 21:27+0200\n" "Last-Translator: Kristof Kiszel \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -16,83 +16,101 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 21.08.3\n" +"X-Generator: Lokalize 26.04.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "További műveletek" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Ablakmenü" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Alkalmazásmenü" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Egy asztalon" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Az összes asztalra" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimalizálás" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Visszaállítás" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximalizálás" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Bezárás" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Helyi súgó" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Világosítás" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Árnyékolás" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Ne maradjon más ablakok alatt" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Maradjon más ablakok alatt" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Ne maradjon más ablakok fölött" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Maradjon más ablakok fölött" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"Az ablak nem jelenik meg a képernyőátjátszásban. Nyomja meg a láthatóvá " +"tételhez" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Elrejtés a képernyőátjátszásból" + +#~ msgid "More actions for this window" +#~ msgstr "További műveletek" + #~ msgid "Menu" #~ msgstr "Menü" diff --git a/local/recipes/kde/kdecoration/source/po/ia/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ia/kdecoration.po index 60653cbf45..ec70cbf498 100644 --- a/local/recipes/kde/kdecoration/source/po/ia/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ia/kdecoration.po @@ -1,97 +1,113 @@ -# Copyright (C) YEAR This file is copyright: +# Copyright (C) 2025 This file is copyright: # This file is distributed under the same license as the kdecoration package. # -# Giovanni Sora , 2019, 2020, 2021. +# SPDX-FileCopyrightText: 2019, 2020, 2021, 2025, 2026 Giovanni Sora msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-11 23:13+0100\n" -"Last-Translator: Giovanni Sora \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-19 12:34+0100\n" +"Last-Translator: giovanni \n" "Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 23.08.5\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Altere actiones per iste fenestra" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menu de fenestra" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menu de application" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Sur un scriptorio" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Super omne scriptorios" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimisa" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Restabili" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maximiza" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Claude" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Adjuta de contexto" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "De-Umbra" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Umbra" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Non mantene infra altere fenestras" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Mantene infra altere fenestras" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Non mantene supra altere fenestras" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Mantene supra altere fenestras" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "Le fenestra es celate ab Screencast.Pressa per facer lo visibile" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Cela ab Screencast" + +#~ msgid "More actions for this window" +#~ msgstr "Altere actiones per iste fenestra" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/id/kdecoration.po b/local/recipes/kde/kdecoration/source/po/id/kdecoration.po index 54f53b2cbe..e811c31b4a 100644 --- a/local/recipes/kde/kdecoration/source/po/id/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/id/kdecoration.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2022-09-27 17:54+0700\n" "Last-Translator: Wantoyèk \n" "Language-Team: Indonesian \n" @@ -18,81 +18,97 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 21.12.3\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Aksi selebihnya untuk jendela ini" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menu aplikasi" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Pada satu desktop" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Pada semua desktop" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimalkan" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Kembalikan" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maksimalkan" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Tutup" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Bantuan konteks" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Tak bertirai" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Tiraikan" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Jangan tetap di bawah jendela lainnya" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Tetap di bawah jendela lainnya" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Jangan tetap di atas jendela lainnya" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Tetap di atas jendela lainnya" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "Aksi selebihnya untuk jendela ini" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/is/kdecoration.po b/local/recipes/kde/kdecoration/source/po/is/kdecoration.po index 8da1019d21..0183397d47 100644 --- a/local/recipes/kde/kdecoration/source/po/is/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/is/kdecoration.po @@ -1,94 +1,112 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the kdecoration package. # -# Sveinn í Felli , 2023. +# SPDX-FileCopyrightText: 2023, 2025, 2026 Sveinn í Felli # SPDX-FileCopyrightText: 2024 Guðmundur Erlingsson msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2024-03-25 13:52+0000\n" -"Last-Translator: Guðmundur Erlingsson \n" -"Language-Team: Icelandic \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-15 16:30+0000\n" +"Last-Translator: Sveinn í Felli \n" +"Language-Team: Icelandic\n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 23.08.3\n" +"X-Generator: Lokalize 23.08.5\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Fleiri aðgerðir fyrir þennan glugga" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Gluggavalmynd" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Forritavalmynd" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Á einu skjáborði" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Á öllum skjáborðum" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Fela" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Endurheimta" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Fullstækka" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Loka" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Samhengishjálp" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Rúlla niður" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Rúlla upp" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Ekki hafa undir öðrum gluggum" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Hafa undir öðrum gluggum" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Ekki hafa yfir öðrum gluggum" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Hafa yfir öðrum gluggum" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"Glugginn er falinn frá skjávörpun (screencast). Ýttu til að gera hann " +"sýnilegan." + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Fela frá skjávörpun" + +#~ msgid "More actions for this window" +#~ msgstr "Fleiri aðgerðir fyrir þennan glugga" diff --git a/local/recipes/kde/kdecoration/source/po/it/kdecoration.po b/local/recipes/kde/kdecoration/source/po/it/kdecoration.po index 1a40bb1cea..5beeec9051 100644 --- a/local/recipes/kde/kdecoration/source/po/it/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/it/kdecoration.po @@ -1,97 +1,115 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the kdecoration package. -# Paolo Zamponi , 2018, 2021. +# SPDX-FileCopyrightText: 2018, 2021, 2025, 2026 Paolo Zamponi # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-12 08:49+0200\n" -"Last-Translator: Paolo Zamponi \n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-16 14:56+0100\n" +"Last-Translator: Paolo Zamponi \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 21.04.0\n" +"X-Generator: Lokalize 25.12.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Altre azioni per questa finestra" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Menu Finestra" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Menu dell'applicazione" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Su un desktop" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Su tutti i desktop" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimizza" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Ripristina" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Massimizza" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Chiudi" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Aiuto contestuale" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Srotola" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Arrotola" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Non tenere sotto le altre finestre" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Tieni sotto le altre finestre" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Non tenere sopra le altre finestre" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Tieni sopra le altre finestre" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"La finestra viene nascosta durante la registrazione. Premi per renderla " +"visibile" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Nascondi durante la registrazione" + +#~ msgid "More actions for this window" +#~ msgstr "Altre azioni per questa finestra" + #~ msgid "Menu" #~ msgstr "Menu" diff --git a/local/recipes/kde/kdecoration/source/po/ja/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ja/kdecoration.po index ce2f50131f..53937c3dbd 100644 --- a/local/recipes/kde/kdecoration/source/po/ja/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ja/kdecoration.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2023-05-18 00:36+0900\n" "Last-Translator: Ryuichi Yamada \n" "Language-Team: Japanese \n" @@ -17,77 +17,93 @@ msgstr "" "X-Text-Markup: kde4\n" "X-Generator: Lokalize 23.04.0\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "このウィンドウに対するその他のアクション" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "アプリケーションメニュー" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "一つのデスクトップに表示" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "すべてのデスクトップに表示" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "最小化" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "復元" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "最大化" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "閉じる" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "コンテキストヘルプ" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "シェード解除" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "シェード" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "他のウィンドウの下に保持しない" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "他のウィンドウより下に表示" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "他のウィンドウの上に保持しない" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "他のウィンドウより上に表示" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "" + +#~ msgid "More actions for this window" +#~ msgstr "このウィンドウに対するその他のアクション" diff --git a/local/recipes/kde/kdecoration/source/po/ka/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ka/kdecoration.po index 6744058416..de0fd97e91 100644 --- a/local/recipes/kde/kdecoration/source/po/ka/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ka/kdecoration.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2022-05-21 14:43+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-14 05:28+0100\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: Georgian \n" "Language: ka\n" @@ -16,79 +16,95 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.8\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "მეტი ქმედება ამ ფანჯრისთვის" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "ფანჯრის მენიუ" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "პროგრამის მენიუ" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "1 სამუშაო მაგიდაზე" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "ყველა სამუშაო მაგიდაზე" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "ჩაკეცვა" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "აღდგენა" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "გადიდება" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "დახურვა" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "კონტექსტური დახმარება" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "განჩრდილვა" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "დაჩრდილვა" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "დანარჩენი ფანჯრების ქვემოთ ქონის გამორთვა" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "დანარჩენი ფანჯრების ქვემოთ ქონა" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "დანარჩენი ფანჯრების ზემოთ ქონის გამორთვა" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "დანარჩენი ფანჯრების ზემოთ ქონა" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "ფანჯარა დამალულია ეკრანის გადაცემიდან. დააჭირეთ, რომ ის ხილული გახდეს" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "დამალვა ეკრანის გადაცემიდან" + +#~ msgid "More actions for this window" +#~ msgstr "მეტი ქმედება ამ ფანჯრისთვის" diff --git a/local/recipes/kde/kdecoration/source/po/ko/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ko/kdecoration.po index a465021b65..66b5e400a5 100644 --- a/local/recipes/kde/kdecoration/source/po/ko/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ko/kdecoration.po @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. -# Shinjo Park , 2018, 2020, 2021. +# SPDX-FileCopyrightText: 2018, 2020, 2021, 2025, 2026 Shinjo Park # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-05-16 21:48+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-02-04 00:24+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -15,83 +15,99 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 20.12.3\n" +"X-Generator: Lokalize 25.08.1\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "이 창의 더 많은 동작" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "창 메뉴" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "앱 메뉴" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "한 바탕 화면에만" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "모든 바탕 화면에 두기" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "최소화" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "복원" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "최대화" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "닫기" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "문맥 도움말" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "풀어 내리기" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "말아 올리기" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "다른 창 아래에 두지 않기" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "다른 창 아래에 두기" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "다른 창 위에 두지 않기" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "다른 창 위에 두기" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "이 창은 스크린캐스트에서 숨겨져 있습니다. 누르면 표시합니다" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "스크린캐스트에서 숨기기" + +#~ msgid "More actions for this window" +#~ msgstr "이 창의 더 많은 동작" + #~ msgid "Menu" #~ msgstr "메뉴" diff --git a/local/recipes/kde/kdecoration/source/po/lt/kdecoration.po b/local/recipes/kde/kdecoration/source/po/lt/kdecoration.po index b88c1e35c6..4cb054b6ed 100644 --- a/local/recipes/kde/kdecoration/source/po/lt/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/lt/kdecoration.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2021-06-15 22:43+0300\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-01-19 23:39+0200\n" "Last-Translator: Moo\n" "Language-Team: lt\n" "Language: lt\n" @@ -17,83 +17,100 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n%10>=2 && (n%100<10 || n" "%100>=20) ? 1 : n%10==0 || (n%100>10 && n%100<20) ? 2 : 3);\n" -"X-Generator: Poedit 3.0\n" +"X-Generator: Poedit 3.8\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Daugiau veiksmų šiam langui" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Lango meniu" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Programos meniu" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Viename darbalaukyje" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Visuose darbalaukiuose" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Suskleisti" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Grąžinti iš suskleidimo" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Išskleisti" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Užverti" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Kontekstinė pagalba" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Rodyti ne tik lango antraštės juostą" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Rodyti tik lango antraštės juostą" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Nelaikyti po kitais langais" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Laikyti po kitais langais" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Nelaikyti virš kitų langų" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Laikyti virš kitų langų" +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "" +"Langas yra paslėptas nuo filmavimo. Paspauskite norėdami padaryti jį matomą" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Slėpti, kai filmuojamas ekranas" + +#~ msgid "More actions for this window" +#~ msgstr "Daugiau veiksmų šiam langui" + #~ msgid "Menu" #~ msgstr "Meniu" diff --git a/local/recipes/kde/kdecoration/source/po/lv/kdecoration.po b/local/recipes/kde/kdecoration/source/po/lv/kdecoration.po index 3410bd69a6..aa391d82dd 100644 --- a/local/recipes/kde/kdecoration/source/po/lv/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/lv/kdecoration.po @@ -1,13 +1,13 @@ # Copyright (C) 2024 This file is copyright: # This file is distributed under the same license as the kdecoration package. # -# SPDX-FileCopyrightText: 2024 Toms Trasūns +# SPDX-FileCopyrightText: 2024, 2025, 2026 Toms Trasūns msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" -"PO-Revision-Date: 2024-01-27 12:55+0200\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" +"PO-Revision-Date: 2026-03-09 18:47+0200\n" "Last-Translator: Toms Trasūns \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -16,79 +16,95 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" -"X-Generator: Lokalize 23.08.4\n" +"X-Generator: Lokalize 25.12.2\n" -#: decorationbutton.cpp:303 +#: decorationbutton.cpp:325 #, kde-format -msgid "More actions for this window" -msgstr "Vairāk darbību šim logam" +msgctxt "" +"@info:tooltip The Name of the menu that appears when you click a window's " +"app icon" +msgid "Window menu" +msgstr "Loga izvēlne" -#: decorationbutton.cpp:305 +#: decorationbutton.cpp:327 #, kde-format msgid "Application menu" msgstr "Programmas izvēlne" -#: decorationbutton.cpp:308 +#: decorationbutton.cpp:330 #, kde-format msgid "On one desktop" msgstr "Uz vienas darbvirsmas" -#: decorationbutton.cpp:310 +#: decorationbutton.cpp:332 #, kde-format msgid "On all desktops" msgstr "Uz visām darbvirsmām" -#: decorationbutton.cpp:312 +#: decorationbutton.cpp:334 #, kde-format msgid "Minimize" msgstr "Minimizēt" -#: decorationbutton.cpp:315 +#: decorationbutton.cpp:337 #, kde-format msgid "Restore" msgstr "Atjaunot" -#: decorationbutton.cpp:317 +#: decorationbutton.cpp:339 #, kde-format msgid "Maximize" msgstr "Maksimizēt" -#: decorationbutton.cpp:319 +#: decorationbutton.cpp:341 #, kde-format msgid "Close" msgstr "Aizvērt" -#: decorationbutton.cpp:321 +#: decorationbutton.cpp:343 #, kde-format msgid "Context help" msgstr "Konteksta palīdzība" -#: decorationbutton.cpp:324 +#: decorationbutton.cpp:346 #, kde-format msgid "Unshade" msgstr "Atritināt" -#: decorationbutton.cpp:326 +#: decorationbutton.cpp:348 #, kde-format msgid "Shade" msgstr "Saritināt" -#: decorationbutton.cpp:329 +#: decorationbutton.cpp:351 #, kde-format msgid "Don't keep below other windows" msgstr "Neturēt zem citiem logiem" -#: decorationbutton.cpp:331 +#: decorationbutton.cpp:353 #, kde-format msgid "Keep below other windows" msgstr "Turēt zem citiem logiem" -#: decorationbutton.cpp:334 +#: decorationbutton.cpp:356 #, kde-format msgid "Don't keep above other windows" msgstr "Neturēt virs citiem logiem" -#: decorationbutton.cpp:336 +#: decorationbutton.cpp:358 #, kde-format msgid "Keep above other windows" msgstr "Turēt virs citiem logiem" + +#: decorationbutton.cpp:361 +#, kde-format +msgid "The window is hidden from Screencast. Press to make it visible" +msgstr "Logs ir paslēpts no loga uzņemšanas. Spiediet, lai padarītu to redzamu" + +#: decorationbutton.cpp:363 +#, kde-format +msgid "Hide from Screencast" +msgstr "Paslēpt no uzņemšanas" + +#~ msgid "More actions for this window" +#~ msgstr "Vairāk darbību šim logam" diff --git a/local/recipes/kde/kdecoration/source/po/ml/kdecoration.po b/local/recipes/kde/kdecoration/source/po/ml/kdecoration.po index 8a1cbbbc37..cc8064fee6 100644 --- a/local/recipes/kde/kdecoration/source/po/ml/kdecoration.po +++ b/local/recipes/kde/kdecoration/source/po/ml/kdecoration.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: kdecoration\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" -"POT-Creation-Date: 2024-02-10 00:40+0000\n" +"POT-Creation-Date: 2026-01-13 08:42+0000\n" "PO-Revision-Date: 2018-08-16 09:14+0200\n" "Last-Translator: Automatically generated\n" "Language-Team: Swathanthra|സ്വതന്ത്ര Malayalam|മലയാളം Computing|കമ്പ്യൂട്ടിങ്ങ്