Compare commits
No commits in common. "master" and "v6.0.90" have entirely different histories.
autotests
po
as
be@latin
csb
|
@ -7,7 +7,6 @@ set(CMAKE_C_STANDARD 99)
|
|||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
set(PROJECT_DEP_VERSION "6.1.1")
|
||||
set(QT_MIN_VERSION "6.6.0")
|
||||
set(KF6_MIN_VERSION "6.2.0")
|
||||
set(KDE_COMPILERSETTINGS_LEVEL "5.82")
|
||||
|
@ -49,8 +48,6 @@ option(KWIN_BUILD_NOTIFICATIONS "Enable building of KWin with knotifications sup
|
|||
option(KWIN_BUILD_SCREENLOCKER "Enable building of KWin lockscreen functionality" ON)
|
||||
option(KWIN_BUILD_TABBOX "Enable building of KWin Tabbox functionality" ON)
|
||||
option(KWIN_BUILD_X11 "Enable building kwin_x11 and Xwayland support" ON)
|
||||
option(KWIN_BUILD_GLOBALSHORTCUTS "Enable building of KWin with global shortcuts support" ON)
|
||||
option(KWIN_BUILD_RUNNERS "Enable building of KWin with krunner support" ON)
|
||||
|
||||
find_package(Qt6 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
|
||||
Concurrent
|
||||
|
@ -114,14 +111,14 @@ set_package_properties(Threads PROPERTIES
|
|||
TYPE REQUIRED
|
||||
)
|
||||
|
||||
find_package(KWayland ${PROJECT_DEP_VERSION} CONFIG)
|
||||
find_package(KWayland ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(KWayland PROPERTIES
|
||||
PURPOSE "Required to build wayland platform plugin and tests"
|
||||
TYPE REQUIRED
|
||||
)
|
||||
|
||||
# optional frameworks
|
||||
find_package(PlasmaActivities ${PROJECT_DEP_VERSION} CONFIG)
|
||||
find_package(PlasmaActivities ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(PlasmaActivities PROPERTIES
|
||||
PURPOSE "Enable building of KWin with kactivities support"
|
||||
TYPE OPTIONAL
|
||||
|
@ -141,14 +138,14 @@ set_package_properties(KF6Kirigami PROPERTIES
|
|||
PURPOSE "Required at runtime for several QML effects"
|
||||
TYPE RUNTIME
|
||||
)
|
||||
find_package(Plasma ${PROJECT_DEP_VERSION} CONFIG)
|
||||
find_package(Plasma ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(Plasma PROPERTIES
|
||||
DESCRIPTION "A QtQuick based components set"
|
||||
PURPOSE "Required at runtime for several QML effects"
|
||||
TYPE RUNTIME
|
||||
)
|
||||
|
||||
find_package(KDecoration2 ${PROJECT_DEP_VERSION} CONFIG)
|
||||
find_package(KDecoration2 ${PROJECT_VERSION} CONFIG)
|
||||
set_package_properties(KDecoration2 PROPERTIES
|
||||
TYPE REQUIRED
|
||||
PURPOSE "Required for server side decoration support"
|
||||
|
@ -192,16 +189,24 @@ if (epoxy_HAS_GLX)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main() {
|
||||
const int size = 10;
|
||||
int fd = memfd_create(\"test\", MFD_CLOEXEC | MFD_ALLOW_SEALING);
|
||||
ftruncate(fd, size);
|
||||
fcntl(fd, F_ADD_SEALS, F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE | F_SEAL_SEAL);
|
||||
mmap(nullptr, size, PROT_WRITE, MAP_SHARED, fd, 0);
|
||||
}" HAVE_MEMFD)
|
||||
|
||||
find_package(Wayland 1.22)
|
||||
set_package_properties(Wayland PROPERTIES
|
||||
TYPE REQUIRED
|
||||
PURPOSE "Required for building KWin with Wayland support"
|
||||
)
|
||||
if (Wayland_VERSION VERSION_GREATER_EQUAL 1.23)
|
||||
set(HAVE_WL_DISPLAY_SET_DEFAULT_MAX_BUFFER_SIZE 1)
|
||||
else()
|
||||
set(HAVE_WL_DISPLAY_SET_DEFAULT_MAX_BUFFER_SIZE 0)
|
||||
endif()
|
||||
|
||||
find_package(WaylandProtocols 1.34)
|
||||
set_package_properties(WaylandProtocols PROPERTIES
|
||||
|
@ -210,7 +215,7 @@ set_package_properties(WaylandProtocols PROPERTIES
|
|||
URL "https://gitlab.freedesktop.org/wayland/wayland-protocols/"
|
||||
)
|
||||
|
||||
find_package(PlasmaWaylandProtocols 1.13.0 CONFIG)
|
||||
find_package(PlasmaWaylandProtocols 1.9.0 CONFIG)
|
||||
set_package_properties(PlasmaWaylandProtocols PROPERTIES
|
||||
TYPE REQUIRED
|
||||
PURPOSE "Collection of Plasma-specific Wayland protocols"
|
||||
|
@ -372,16 +377,36 @@ set(HAVE_ACCESSIBILITY ${QAccessibilityClient6_FOUND})
|
|||
pkg_check_modules(libsystemd IMPORTED_TARGET libsystemd)
|
||||
add_feature_info(libsystemd libsystemd_FOUND "Required for setting up the service watchdog")
|
||||
|
||||
option(KWIN_BUILD_GLOBALSHORTCUTS "Enable building of KWin with global shortcuts support" ON)
|
||||
if(KWIN_BUILD_GLOBALSHORTCUTS)
|
||||
find_package(KGlobalAccelD REQUIRED)
|
||||
endif()
|
||||
|
||||
pkg_check_modules(libdisplayinfo IMPORTED_TARGET display-info)
|
||||
if (NOT libdisplayinfo_FOUND)
|
||||
pkg_check_modules(libdisplayinfo REQUIRED IMPORTED_TARGET libdisplay-info)
|
||||
endif()
|
||||
add_feature_info(libdisplayinfo libdisplayinfo_FOUND "EDID and DisplayID library: https://gitlab.freedesktop.org/emersion/libdisplay-info")
|
||||
|
||||
ecm_find_qmlmodule(QtQuick 2.3)
|
||||
ecm_find_qmlmodule(QtQuick.Controls 2.15)
|
||||
ecm_find_qmlmodule(QtQuick.Layouts 1.3)
|
||||
ecm_find_qmlmodule(QtQuick.Window 2.1)
|
||||
ecm_find_qmlmodule(QtMultimedia 5.0)
|
||||
ecm_find_qmlmodule(org.kde.kquickcontrolsaddons 2.0)
|
||||
ecm_find_qmlmodule(org.kde.plasma.core 2.0)
|
||||
ecm_find_qmlmodule(org.kde.plasma.components 2.0)
|
||||
|
||||
########### configure tests ###############
|
||||
cmake_dependent_option(KWIN_BUILD_ACTIVITIES "Enable building of KWin with kactivities support" ON "PlasmaActivities_FOUND" OFF)
|
||||
option(KWIN_BUILD_RUNNERS "Enable building of KWin with krunner support" ON)
|
||||
cmake_dependent_option(KWIN_BUILD_EIS "Enable building KWin with libeis support" ON "Libeis-1.0_FOUND" OFF)
|
||||
|
||||
check_symbol_exists(SCHED_RESET_ON_FORK "sched.h" HAVE_SCHED_RESET_ON_FORK)
|
||||
add_feature_info("SCHED_RESET_ON_FORK"
|
||||
HAVE_SCHED_RESET_ON_FORK
|
||||
"Required for running kwin_wayland with real-time scheduling")
|
||||
|
||||
|
||||
pkg_check_modules(PipeWire IMPORTED_TARGET libpipewire-0.3>=0.3.29)
|
||||
add_feature_info(PipeWire PipeWire_FOUND "Required for Wayland screencasting")
|
||||
|
||||
|
@ -397,17 +422,7 @@ if (KWIN_BUILD_SCREENLOCKER)
|
|||
)
|
||||
endif()
|
||||
|
||||
ecm_find_qmlmodule(QtQuick 2.3)
|
||||
ecm_find_qmlmodule(QtQuick.Controls 2.15)
|
||||
ecm_find_qmlmodule(QtQuick.Layouts 1.3)
|
||||
ecm_find_qmlmodule(QtQuick.Window 2.1)
|
||||
ecm_find_qmlmodule(QtMultimedia 5.0)
|
||||
ecm_find_qmlmodule(org.kde.kquickcontrolsaddons 2.0)
|
||||
ecm_find_qmlmodule(org.kde.plasma.core 2.0)
|
||||
ecm_find_qmlmodule(org.kde.plasma.components 2.0)
|
||||
|
||||
cmake_dependent_option(KWIN_BUILD_ACTIVITIES "Enable building of KWin with kactivities support" ON "PlasmaActivities_FOUND" OFF)
|
||||
cmake_dependent_option(KWIN_BUILD_EIS "Enable building KWin with libeis support" ON "Libeis-1.0_FOUND" OFF)
|
||||
########### global ###############
|
||||
|
||||
include_directories(BEFORE
|
||||
${CMAKE_CURRENT_BINARY_DIR}/src/wayland
|
||||
|
@ -415,24 +430,6 @@ include_directories(BEFORE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src
|
||||
)
|
||||
|
||||
check_symbol_exists(SCHED_RESET_ON_FORK "sched.h" HAVE_SCHED_RESET_ON_FORK)
|
||||
add_feature_info("SCHED_RESET_ON_FORK"
|
||||
HAVE_SCHED_RESET_ON_FORK
|
||||
"Required for running kwin_wayland with real-time scheduling")
|
||||
|
||||
check_cxx_source_compiles("
|
||||
#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main() {
|
||||
const int size = 10;
|
||||
int fd = memfd_create(\"test\", MFD_CLOEXEC | MFD_ALLOW_SEALING);
|
||||
ftruncate(fd, size);
|
||||
fcntl(fd, F_ADD_SEALS, F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE | F_SEAL_SEAL);
|
||||
mmap(nullptr, size, PROT_WRITE, MAP_SHARED, fd, 0);
|
||||
}" HAVE_MEMFD)
|
||||
|
||||
check_cxx_compiler_flag(-Wno-unused-parameter COMPILER_UNUSED_PARAMETER_SUPPORTED)
|
||||
if (COMPILER_UNUSED_PARAMETER_SUPPORTED)
|
||||
add_compile_options(-Wno-unused-parameter)
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include <QSignalSpy>
|
||||
#include <QSize>
|
||||
#include <QTest>
|
||||
|
||||
|
@ -71,7 +70,6 @@ private Q_SLOTS:
|
|||
void testConnectorLifetime();
|
||||
void testModeset_data();
|
||||
void testModeset();
|
||||
void testVrrChange();
|
||||
};
|
||||
|
||||
static void verifyCleanup(MockGpu *mockGpu)
|
||||
|
@ -366,8 +364,6 @@ void DrmTest::testModeset_data()
|
|||
|
||||
void DrmTest::testModeset()
|
||||
{
|
||||
// to reenable, make this part of an integration test, so that kwinApp() isn't nullptr
|
||||
QSKIP("this test needs output pipelines to be enabled by default, which is no longer the case");
|
||||
// test if doing a modeset would succeed
|
||||
QFETCH(int, AMS);
|
||||
const auto mockGpu = findPrimaryDevice(5);
|
||||
|
@ -396,32 +392,5 @@ void DrmTest::testModeset()
|
|||
verifyCleanup(mockGpu.get());
|
||||
}
|
||||
|
||||
void DrmTest::testVrrChange()
|
||||
{
|
||||
const auto mockGpu = findPrimaryDevice(5);
|
||||
mockGpu->deviceCaps[MOCKDRM_DEVICE_CAP_ATOMIC] = 1;
|
||||
|
||||
const auto conn = std::make_shared<MockConnector>(mockGpu.get());
|
||||
conn->setVrrCapable(false);
|
||||
mockGpu->connectors.push_back(conn);
|
||||
|
||||
const auto session = Session::create(Session::Type::Noop);
|
||||
const auto backend = std::make_unique<DrmBackend>(session.get());
|
||||
const auto renderBackend = backend->createQPainterBackend();
|
||||
auto gpu = std::make_unique<DrmGpu>(backend.get(), mockGpu->fd, DrmDevice::open(mockGpu->devNode));
|
||||
|
||||
QVERIFY(gpu->updateOutputs());
|
||||
const auto output = gpu->drmOutputs().front();
|
||||
QVERIFY(!(output->capabilities() & Output::Capability::Vrr));
|
||||
|
||||
QSignalSpy capsChanged(output, &Output::capabilitiesChanged);
|
||||
|
||||
conn->setVrrCapable(true);
|
||||
QVERIFY(gpu->updateOutputs());
|
||||
QCOMPARE(gpu->drmOutputs().front(), output);
|
||||
QCOMPARE(capsChanged.count(), 1);
|
||||
QVERIFY(output->capabilities() & Output::Capability::Vrr);
|
||||
}
|
||||
|
||||
QTEST_GUILESS_MAIN(DrmTest)
|
||||
#include "drmTest.moc"
|
||||
|
|
|
@ -212,14 +212,6 @@ void MockConnector::addMode(uint32_t width, uint32_t height, float refreshRate,
|
|||
free(modeInfo);
|
||||
}
|
||||
|
||||
void MockConnector::setVrrCapable(bool cap)
|
||||
{
|
||||
auto &prop = *std::ranges::find_if(props, [](const auto &prop) {
|
||||
return prop.name == "vrr_capable";
|
||||
});
|
||||
prop.value = cap ? 1 : 0;
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
MockCrtc::MockCrtc(MockGpu *gpu, const std::shared_ptr<MockPlane> &legacyPlane, int pipeIndex, int gamma_size)
|
||||
|
|
|
@ -71,7 +71,6 @@ public:
|
|||
~MockConnector() = default;
|
||||
|
||||
void addMode(uint32_t width, uint32_t height, float refreshRate, bool preferred = false);
|
||||
void setVrrCapable(bool cap);
|
||||
|
||||
drmModeConnection connection;
|
||||
uint32_t type;
|
||||
|
|
|
@ -144,7 +144,7 @@ integrationTest(NAME testActivation SRCS activation_test.cpp)
|
|||
integrationTest(NAME testInputMethod SRCS inputmethod_test.cpp LIBS XKB::XKB)
|
||||
integrationTest(NAME testScreens SRCS screens_test.cpp)
|
||||
integrationTest(NAME testScreenEdges SRCS screenedges_test.cpp LIBS XCB::ICCCM)
|
||||
integrationTest(NAME testOutputChanges SRCS outputchanges_test.cpp LIBS XCB::ICCCM)
|
||||
integrationTest(NAME testOutputChanges SRCS outputchanges_test.cpp)
|
||||
integrationTest(NAME testTiles SRCS tiles_test.cpp)
|
||||
integrationTest(NAME testFractionalScaling SRCS fractional_scaling_test.cpp)
|
||||
integrationTest(NAME testMoveResize SRCS move_resize_window_test.cpp LIBS XCB::ICCCM)
|
||||
|
|
|
@ -94,6 +94,8 @@ void TestButtonRebind::testKey()
|
|||
// 0x119 is Qt::ExtraButton7
|
||||
Test::pointerButtonPressed(0x119, timestamp++);
|
||||
|
||||
QEXPECT_FAIL("delete", "https://bugreports.qt.io/browse/QTBUG-123135", Abort);
|
||||
QEXPECT_FAIL("keypad delete", "https://bugreports.qt.io/browse/QTBUG-123135", Abort);
|
||||
QVERIFY(keyChangedSpy.wait());
|
||||
QFETCH(QList<quint32>, expectedKeys);
|
||||
QCOMPARE(keyChangedSpy.count(), expectedKeys.count());
|
||||
|
|
|
@ -42,8 +42,7 @@ private Q_SLOTS:
|
|||
void init();
|
||||
void cleanup();
|
||||
|
||||
void testToplevel();
|
||||
void testPopup();
|
||||
void testShow();
|
||||
};
|
||||
|
||||
void TestFractionalScale::initTestCase()
|
||||
|
@ -88,73 +87,20 @@ void TestFractionalScale::cleanup()
|
|||
Test::destroyWaylandConnection();
|
||||
}
|
||||
|
||||
void TestFractionalScale::testToplevel()
|
||||
void TestFractionalScale::testShow()
|
||||
{
|
||||
std::unique_ptr<KWayland::Client::Surface> surface(Test::createSurface());
|
||||
std::unique_ptr<Test::FractionalScaleV1> fractionalScale(Test::createFractionalScaleV1(surface.get()));
|
||||
QSignalSpy fractionalScaleChanged(fractionalScale.get(), &Test::FractionalScaleV1::preferredScaleChanged);
|
||||
std::unique_ptr<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.get()));
|
||||
|
||||
// above call commits the surface and blocks for the configure event. We should have received the scale already
|
||||
// We are sent the value in 120ths
|
||||
QCOMPARE(fractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(fractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
QCOMPARE(fractionalScale->preferredScale(), 1.25 * 120);
|
||||
|
||||
auto window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
||||
QCOMPARE(fractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(fractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
QVERIFY(window);
|
||||
|
||||
// move to screen 2
|
||||
window->move(QPoint(1280, 0));
|
||||
|
||||
QVERIFY(Test::waylandSync());
|
||||
QCOMPARE(fractionalScaleChanged.count(), 2);
|
||||
QCOMPARE(fractionalScale->preferredScale(), std::round(2.0 * 120));
|
||||
}
|
||||
|
||||
void TestFractionalScale::testPopup()
|
||||
{
|
||||
std::unique_ptr<KWayland::Client::Surface> toplevelSurface(Test::createSurface());
|
||||
std::unique_ptr<Test::FractionalScaleV1> toplevelFractionalScale(Test::createFractionalScaleV1(toplevelSurface.get()));
|
||||
QSignalSpy toplevelFractionalScaleChanged(toplevelFractionalScale.get(), &Test::FractionalScaleV1::preferredScaleChanged);
|
||||
std::unique_ptr<Test::XdgToplevel> toplevel(Test::createXdgToplevelSurface(toplevelSurface.get()));
|
||||
|
||||
// above call commits the surface and blocks for the configure event. We should have received the scale already
|
||||
// We are sent the value in 120ths
|
||||
QCOMPARE(toplevelFractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(toplevelFractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
|
||||
auto toplevelWindow = Test::renderAndWaitForShown(toplevelSurface.get(), QSize(100, 50), Qt::blue);
|
||||
QVERIFY(toplevelWindow);
|
||||
QCOMPARE(toplevelFractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(toplevelFractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
|
||||
std::unique_ptr<KWayland::Client::Surface> popupSurface(Test::createSurface());
|
||||
std::unique_ptr<Test::FractionalScaleV1> popupFractionalScale(Test::createFractionalScaleV1(popupSurface.get()));
|
||||
QSignalSpy popupFractionalScaleChanged(popupFractionalScale.get(), &Test::FractionalScaleV1::preferredScaleChanged);
|
||||
std::unique_ptr<Test::XdgPositioner> positioner(Test::createXdgPositioner());
|
||||
positioner->set_size(10, 10);
|
||||
positioner->set_anchor_rect(10, 10, 10, 10);
|
||||
std::unique_ptr<Test::XdgPopup> popup(Test::createXdgPopupSurface(popupSurface.get(), toplevel->xdgSurface(), positioner.get()));
|
||||
|
||||
// above call commits the surface and blocks for the configure event. We should have received the scale already
|
||||
// We are sent the value in 120ths
|
||||
QCOMPARE(popupFractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(popupFractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
|
||||
auto popupWindow = Test::renderAndWaitForShown(popupSurface.get(), QSize(10, 10), Qt::cyan);
|
||||
QVERIFY(popupWindow);
|
||||
QCOMPARE(popupFractionalScaleChanged.count(), 1);
|
||||
QCOMPARE(popupFractionalScale->preferredScale(), std::round(1.25 * 120));
|
||||
|
||||
// move the parent to screen 2
|
||||
toplevelWindow->move(QPoint(1280, 0));
|
||||
|
||||
QVERIFY(Test::waylandSync());
|
||||
QCOMPARE(toplevelFractionalScaleChanged.count(), 2);
|
||||
QCOMPARE(toplevelFractionalScale->preferredScale(), std::round(2.0 * 120));
|
||||
QCOMPARE(popupFractionalScaleChanged.count(), 2);
|
||||
QCOMPARE(popupFractionalScale->preferredScale(), std::round(2.0 * 120));
|
||||
QCOMPARE(fractionalScale->preferredScale(), 1.25 * 120);
|
||||
}
|
||||
|
||||
WAYLANDTEST_MAIN(TestFractionalScale)
|
||||
|
|
|
@ -95,7 +95,7 @@ WaylandTestApplication::WaylandTestApplication(OperationMode mode, int &argc, ch
|
|||
|
||||
setSession(Session::create(Session::Type::Noop));
|
||||
setOutputBackend(std::make_unique<VirtualBackend>());
|
||||
m_waylandServer.reset(WaylandServer::create());
|
||||
WaylandServer::create(this);
|
||||
setProcessStartupEnvironment(QProcessEnvironment::systemEnvironment());
|
||||
}
|
||||
|
||||
|
@ -116,7 +116,6 @@ WaylandTestApplication::~WaylandTestApplication()
|
|||
destroyInputMethod();
|
||||
destroyCompositor();
|
||||
destroyInput();
|
||||
m_waylandServer.reset();
|
||||
}
|
||||
|
||||
void WaylandTestApplication::createVirtualInputDevices()
|
||||
|
@ -239,11 +238,7 @@ int Test::FractionalScaleV1::preferredScale()
|
|||
|
||||
void Test::FractionalScaleV1::wp_fractional_scale_v1_preferred_scale(uint32_t scale)
|
||||
{
|
||||
if (m_preferredScale == scale) {
|
||||
return;
|
||||
}
|
||||
m_preferredScale = scale;
|
||||
Q_EMIT preferredScaleChanged();
|
||||
}
|
||||
|
||||
void Test::setOutputConfig(const QList<QRect> &geometries)
|
||||
|
|
|
@ -73,9 +73,6 @@ class ScreencastingV1;
|
|||
|
||||
namespace KWin
|
||||
{
|
||||
|
||||
class WaylandServer;
|
||||
|
||||
#if KWIN_BUILD_X11
|
||||
namespace Xwl
|
||||
{
|
||||
|
@ -116,8 +113,6 @@ private:
|
|||
|
||||
void createVirtualInputDevices();
|
||||
void destroyVirtualInputDevices();
|
||||
|
||||
std::unique_ptr<WaylandServer> m_waylandServer;
|
||||
#if KWIN_BUILD_X11
|
||||
std::unique_ptr<Xwl::Xwayland> m_xwayland;
|
||||
#endif
|
||||
|
@ -511,11 +506,8 @@ public:
|
|||
protected:
|
||||
void wp_fractional_scale_v1_preferred_scale(uint32_t scale) override;
|
||||
|
||||
Q_SIGNALS:
|
||||
void preferredScaleChanged();
|
||||
|
||||
private:
|
||||
uint m_preferredScale = 120;
|
||||
int m_preferredScale = 120;
|
||||
};
|
||||
|
||||
class ScreenEdgeManagerV1 : public QObject, public QtWayland::kde_screen_edge_manager_v1
|
||||
|
|
|
@ -80,8 +80,7 @@ void NoGlobalShortcutsTest::initTestCase()
|
|||
{
|
||||
qRegisterMetaType<KWin::ElectricBorder>("ElectricBorder");
|
||||
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
||||
kwinApp()->setSupportsGlobalShortcuts(false);
|
||||
QVERIFY(waylandServer()->init(s_socketName));
|
||||
QVERIFY(waylandServer()->init(s_socketName, KWin::WaylandServer::InitializationFlag::NoGlobalShortcuts));
|
||||
Test::setOutputConfig({
|
||||
QRect(0, 0, 1280, 1024),
|
||||
QRect(1280, 0, 1280, 1024),
|
||||
|
|
|
@ -14,11 +14,8 @@
|
|||
#include "wayland_server.h"
|
||||
#include "window.h"
|
||||
#include "workspace.h"
|
||||
#include "x11window.h"
|
||||
|
||||
#include <KWayland/Client/surface.h>
|
||||
#include <netwm.h>
|
||||
#include <xcb/xcb_icccm.h>
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
|
@ -54,7 +51,6 @@ private Q_SLOTS:
|
|||
void testInvalidGeometryRestoreAfterEnablingOutput();
|
||||
void testMaximizedWindowDoesntDisappear_data();
|
||||
void testMaximizedWindowDoesntDisappear();
|
||||
void testXwaylandScaleChange();
|
||||
|
||||
void testWindowNotRestoredAfterMovingWindowAndEnablingOutput();
|
||||
void testLaptopLidClosed();
|
||||
|
@ -1008,80 +1004,6 @@ void OutputChangesTest::testLaptopLidClosed()
|
|||
input()->removeInputDevice(lidSwitch.get());
|
||||
}
|
||||
|
||||
static X11Window *createX11Window(xcb_connection_t *connection, const QRect &geometry, std::function<void(xcb_window_t)> setup = {})
|
||||
{
|
||||
xcb_window_t windowId = xcb_generate_id(connection);
|
||||
xcb_create_window(connection, XCB_COPY_FROM_PARENT, windowId, rootWindow(),
|
||||
geometry.x(),
|
||||
geometry.y(),
|
||||
geometry.width(),
|
||||
geometry.height(),
|
||||
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, 0, nullptr);
|
||||
|
||||
xcb_size_hints_t hints;
|
||||
memset(&hints, 0, sizeof(hints));
|
||||
xcb_icccm_size_hints_set_position(&hints, 1, geometry.x(), geometry.y());
|
||||
xcb_icccm_size_hints_set_size(&hints, 1, geometry.width(), geometry.height());
|
||||
xcb_icccm_set_wm_normal_hints(connection, windowId, &hints);
|
||||
|
||||
if (setup) {
|
||||
setup(windowId);
|
||||
}
|
||||
|
||||
xcb_map_window(connection, windowId);
|
||||
xcb_flush(connection);
|
||||
|
||||
QSignalSpy windowCreatedSpy(workspace(), &Workspace::windowAdded);
|
||||
if (!windowCreatedSpy.wait()) {
|
||||
return nullptr;
|
||||
}
|
||||
return windowCreatedSpy.last().first().value<X11Window *>();
|
||||
}
|
||||
|
||||
void OutputChangesTest::testXwaylandScaleChange()
|
||||
{
|
||||
Test::setOutputConfig({
|
||||
QRect(0, 0, 1280, 1024),
|
||||
QRect(1280, 0, 1280, 1024),
|
||||
});
|
||||
const auto outputs = workspace()->outputs();
|
||||
|
||||
{
|
||||
OutputConfiguration config;
|
||||
config.changeSet(outputs[0])->scale = 2;
|
||||
config.changeSet(outputs[1])->scale = 1;
|
||||
workspace()->applyOutputConfiguration(config);
|
||||
}
|
||||
QCOMPARE(kwinApp()->xwaylandScale(), 2);
|
||||
|
||||
Test::XcbConnectionPtr c = Test::createX11Connection();
|
||||
QVERIFY(!xcb_connection_has_error(c.get()));
|
||||
X11Window *window = createX11Window(c.get(), QRect(0, 0, 100, 200));
|
||||
const QRectF originalGeometry = window->frameGeometry();
|
||||
|
||||
// disable the left output -> window gets moved to the right output
|
||||
{
|
||||
OutputConfiguration config;
|
||||
config.changeSet(outputs[0])->enabled = false;
|
||||
workspace()->applyOutputConfiguration(config);
|
||||
}
|
||||
|
||||
// the window should still have logical size of 100, 200
|
||||
QCOMPARE(kwinApp()->xwaylandScale(), 1);
|
||||
QCOMPARE(window->frameGeometry().size(), originalGeometry.size());
|
||||
|
||||
// enable the left output again
|
||||
{
|
||||
OutputConfiguration config;
|
||||
config.changeSet(outputs[0])->enabled = true;
|
||||
workspace()->applyOutputConfiguration(config);
|
||||
}
|
||||
|
||||
// the window should be back in its original geometry
|
||||
QCOMPARE(kwinApp()->xwaylandScale(), 2);
|
||||
QCOMPARE(window->frameGeometry(), originalGeometry);
|
||||
}
|
||||
|
||||
} // namespace KWin
|
||||
|
||||
WAYLANDTEST_MAIN(KWin::OutputChangesTest)
|
||||
|
|
|
@ -114,7 +114,7 @@ void TransientPlacementTest::testXdgPopup_data()
|
|||
.anchor = Test::XdgPositioner::anchor_none,
|
||||
.gravity = Test::XdgPositioner::gravity_bottom_right,
|
||||
};
|
||||
QTest::newRow("anchorCenter") << QSize(500, 500) << QPoint(300, 300) << layoutAnchorCenter << QRect(550, 550, 200, 200);
|
||||
QTest::newRow("anchorCentre") << QSize(500, 500) << QPoint(300, 300) << layoutAnchorCenter << QRect(550, 550, 200, 200);
|
||||
|
||||
const PopupLayout layoutAnchorTopLeft{
|
||||
.anchorRect = QRect(50, 50, 400, 400),
|
||||
|
@ -189,7 +189,7 @@ void TransientPlacementTest::testXdgPopup_data()
|
|||
.anchor = Test::XdgPositioner::anchor_bottom_right,
|
||||
.gravity = Test::XdgPositioner::gravity_none,
|
||||
};
|
||||
QTest::newRow("gravityCenter") << QSize(500, 500) << QPoint(300, 300) << layoutGravityCenter << QRect(650, 650, 200, 200);
|
||||
QTest::newRow("gravityCentre") << QSize(500, 500) << QPoint(300, 300) << layoutGravityCenter << QRect(650, 650, 200, 200);
|
||||
|
||||
const PopupLayout layoutGravityTopLeft{
|
||||
.anchorRect = QRect(50, 50, 400, 400),
|
||||
|
|
|
@ -2831,7 +2831,7 @@ void TestXdgShellWindowRules::testScreenDontAffect()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(0)->name());
|
||||
|
||||
// The user can still move the window to another screen.
|
||||
m_window->sendToOutput(outputs.at(1));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(1));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
destroyTestWindow();
|
||||
|
@ -2850,7 +2850,7 @@ void TestXdgShellWindowRules::testScreenApply()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// The user can move the window to another screen.
|
||||
m_window->sendToOutput(outputs.at(0));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(0));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(0)->name());
|
||||
|
||||
destroyTestWindow();
|
||||
|
@ -2868,7 +2868,7 @@ void TestXdgShellWindowRules::testScreenRemember()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(0)->name());
|
||||
|
||||
// Move the window to the second screen.
|
||||
m_window->sendToOutput(outputs.at(1));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(1));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// Close and reopen the window.
|
||||
|
@ -2895,7 +2895,7 @@ void TestXdgShellWindowRules::testScreenForce()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// User should not be able to move the window to another screen.
|
||||
m_window->sendToOutput(outputs.at(0));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(0));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// Disable the output where the window is on, so the window is moved the other screen
|
||||
|
@ -2937,7 +2937,7 @@ void TestXdgShellWindowRules::testScreenApplyNow()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// The user can move the window to another screen.
|
||||
m_window->sendToOutput(outputs.at(0));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(0));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(0)->name());
|
||||
|
||||
// The rule should not be applied again.
|
||||
|
@ -2959,7 +2959,7 @@ void TestXdgShellWindowRules::testScreenForceTemporarily()
|
|||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// User is not allowed to move it
|
||||
m_window->sendToOutput(outputs.at(0));
|
||||
workspace()->sendWindowToOutput(m_window, outputs.at(0));
|
||||
QCOMPARE(m_window->output()->name(), outputs.at(1)->name());
|
||||
|
||||
// Close and reopen the window.
|
||||
|
|
|
@ -481,7 +481,7 @@ void TestXdgShellWindow::testSendFullScreenWindowToAnotherOutput()
|
|||
QCOMPARE(window->output(), outputs[0]);
|
||||
|
||||
// Send the window to another output.
|
||||
window->sendToOutput(outputs[1]);
|
||||
workspace()->sendWindowToOutput(window, outputs[1]);
|
||||
QCOMPARE(window->isFullScreen(), true);
|
||||
QCOMPARE(window->frameGeometry(), QRectF(1280, 0, 1280, 1024));
|
||||
QCOMPARE(window->fullscreenGeometryRestore(), QRectF(1280 + 10, 20, 100, 50));
|
||||
|
@ -1795,7 +1795,7 @@ void TestXdgShellWindow::testSendMaximizedWindowToAnotherOutput()
|
|||
QCOMPARE(window->output(), outputs[0]);
|
||||
|
||||
// Send the window to another output.
|
||||
window->sendToOutput(outputs[1]);
|
||||
workspace()->sendWindowToOutput(window, outputs[1]);
|
||||
QCOMPARE(window->maximizeMode(), MaximizeFull);
|
||||
QCOMPARE(window->frameGeometry(), QRectF(1280, 0, 1280, 1024));
|
||||
QCOMPARE(window->geometryRestore(), QRectF(1280 + 10, 20, 100, 50));
|
||||
|
|
|
@ -19,8 +19,6 @@ class XkbTest : public QObject
|
|||
private Q_SLOTS:
|
||||
void testToQtKey_data();
|
||||
void testToQtKey();
|
||||
void testFromQtKey_data();
|
||||
void testFromQtKey();
|
||||
};
|
||||
|
||||
// from kwindowsystem/src/platforms/xcb/kkeyserver.cpp
|
||||
|
@ -500,31 +498,5 @@ void XkbTest::testToQtKey()
|
|||
QTEST(xkb.toQtKey(keySym), "qt");
|
||||
}
|
||||
|
||||
void XkbTest::testFromQtKey_data()
|
||||
{
|
||||
QTest::addColumn<xkb_keysym_t>("keySym");
|
||||
QTest::addColumn<int>("keyQt");
|
||||
for (std::size_t i = 0; i < sizeof(g_rgQtToSymX) / sizeof(TransKey); i++) {
|
||||
const QByteArray row = QByteArray::number(g_rgQtToSymX[i].keySymX, 16);
|
||||
QTest::newRow(row.constData()) << g_rgQtToSymX[i].keySymX << (g_rgQtToSymX[i].keySymQt | g_rgQtToSymX[i].modifiers).toCombined();
|
||||
}
|
||||
}
|
||||
|
||||
void XkbTest::testFromQtKey()
|
||||
{
|
||||
Xkb xkb;
|
||||
QFETCH(xkb_keysym_t, keySym);
|
||||
QFETCH(int, keyQt);
|
||||
QList<xkb_keysym_t> keys = xkb.keysymsFromQtKey(keyQt);
|
||||
|
||||
QEXPECT_FAIL(QByteArray::number(XKB_KEY_Hyper_L, 16), "keysymsFromQtKey doesn't map hyper to meta", Continue);
|
||||
QEXPECT_FAIL(QByteArray::number(XKB_KEY_Hyper_R, 16), "keysymsFromQtKey doesn't map hyper to meta", Continue);
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 7, 1)
|
||||
QEXPECT_FAIL(QByteArray::number(XKB_KEY_KP_Equal, 16), "KP_Equal is not correctly identified as keypad key in Qt 6.7.0; fixed in 6.7.1: https://codereview.qt-project.org/c/qt/qtbase/+/546889", Continue);
|
||||
#endif
|
||||
|
||||
QVERIFY(keys.contains(keySym));
|
||||
}
|
||||
|
||||
QTEST_MAIN(XkbTest)
|
||||
#include "test_xkb.moc"
|
||||
|
|
|
@ -17,11 +17,6 @@ uint32_t Xcb::toXNative(qreal value)
|
|||
return value;
|
||||
}
|
||||
|
||||
QRect Xcb::toXNative(const QRectF &rect)
|
||||
{
|
||||
return rect.toRect();
|
||||
}
|
||||
|
||||
qreal Xcb::fromXNative(int value)
|
||||
{
|
||||
return value;
|
||||
|
|
|
@ -16,10 +16,5 @@ target_sources(kwin-6.0-remove-breeze-tabbox-default PRIVATE kwin-6.0-remove-bre
|
|||
target_link_libraries(kwin-6.0-remove-breeze-tabbox-default PRIVATE KF6::ConfigCore)
|
||||
install(TARGETS kwin-6.0-remove-breeze-tabbox-default DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
add_executable(kwin-6.1-remove-gridview-expose-shortcuts)
|
||||
target_sources(kwin-6.1-remove-gridview-expose-shortcuts PRIVATE kwin-6.1-remove-gridview-expose-shortcuts.cpp)
|
||||
target_link_libraries(kwin-6.1-remove-gridview-expose-shortcuts PRIVATE KF6::GlobalAccel)
|
||||
install(TARGETS kwin-6.1-remove-gridview-expose-shortcuts DESTINATION ${KDE_INSTALL_LIBDIR}/kconf_update_bin/)
|
||||
|
||||
install(FILES kwin.upd
|
||||
DESTINATION ${KDE_INSTALL_KCONFUPDATEDIR})
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
/*
|
||||
SPDX-FileCopyrightText: 2023 Marco Martin <mart@kde.org>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
#include <KGlobalAccel>
|
||||
|
||||
#include <QAction>
|
||||
#include <QGuiApplication>
|
||||
#include <QStandardPaths>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QGuiApplication app(argc, argv);
|
||||
|
||||
const QStringList actionNames{
|
||||
QStringLiteral("ShowDesktopGrid"),
|
||||
QStringLiteral("Expose"),
|
||||
QStringLiteral("ExposeAll"),
|
||||
QStringLiteral("ExposeClass"),
|
||||
QStringLiteral("ExposeClassCurrentDesktop"),
|
||||
};
|
||||
|
||||
for (const QString &actionName : actionNames) {
|
||||
QAction action;
|
||||
action.setObjectName(actionName);
|
||||
action.setProperty("componentName", QStringLiteral("kwin"));
|
||||
action.setProperty("componentDisplayName", QStringLiteral("KWin"));
|
||||
KGlobalAccel::self()->setShortcut(&action, {QKeySequence()}, KGlobalAccel::NoAutoloading);
|
||||
KGlobalAccel::self()->removeAllShortcuts(&action);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -14,7 +14,3 @@ Script=kwin-6.0-delete-desktop-switching-shortcuts
|
|||
# Delete old tabbox defaults
|
||||
Id=kwin-6.0-remove-breeze-tabbox-default
|
||||
Script=kwin-6.0-remove-breeze-tabbox-default
|
||||
|
||||
# Delete old gridview and expose defaults
|
||||
Id=kwin-6.1-remove-gridview-expose-shortcuts
|
||||
Script=kwin-6.1-remove-gridview-expose-shortcuts
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm stable\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2005-11-25 19:56+0200\n"
|
||||
"Last-Translator: Kobus Venter <kabousv@therugby.co.za>\n"
|
||||
"Language-Team: AFRIKAANS <translate-discuss-af@lists.sourceforge.net>\n"
|
||||
|
@ -346,7 +346,7 @@ msgstr "Verander Opacity"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -625,20 +625,47 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "Vensters"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Wanneer hierdie aktief is, sal nutsvensters (gereedskap vensters, afskeur "
|
||||
"kieslyste,...) van onaktiewe programme weg gesteek word. Hulle sal net gewys "
|
||||
"word wanneer die program aktief word. Die program moet die vensters met die "
|
||||
"regte tipe merk vir hierdie eienskap om te werk."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Steek nutsvensters van onaktiewe programme weg"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -651,13 +678,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1328,25 +1355,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Vensters"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Wanneer hierdie aktief is, sal nutsvensters (gereedskap vensters, afskeur "
|
||||
#~ "kieslyste,...) van onaktiewe programme weg gesteek word. Hulle sal net "
|
||||
#~ "gewys word wanneer die program aktief word. Die program moet die vensters "
|
||||
#~ "met die regte tipe merk vir hierdie eienskap om te werk."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Steek nutsvensters van onaktiewe programme weg"
|
||||
|
||||
#~ msgctxt "NAME OF TRANSLATORS"
|
||||
#~ msgid "Your names"
|
||||
#~ msgstr "Kobus Venter"
|
||||
|
|
459
po/af/kwin.po
459
po/af/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: ui/Effect.qml:97
|
||||
#, kde-format
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 22.12.3\n"
|
||||
|
||||
#: module.cpp:49
|
||||
#, kde-format
|
||||
|
|
|
@ -18,6 +18,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
|
|
|
@ -24,6 +24,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#: declarative-plugin/buttonsmodel.cpp:56
|
||||
#, kde-format
|
||||
|
|
|
@ -18,6 +18,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#: kcmrules.cpp:228
|
||||
#, kde-format
|
||||
|
@ -728,7 +729,7 @@ msgstr "على النافذة الرئيسية"
|
|||
#: rulesmodel.cpp:892
|
||||
#, kde-format
|
||||
msgid "None"
|
||||
msgstr "بلا"
|
||||
msgstr "لا شيء"
|
||||
|
||||
#: rulesmodel.cpp:893
|
||||
#, kde-format
|
||||
|
@ -748,7 +749,7 @@ msgstr "عالي"
|
|||
#: rulesmodel.cpp:896
|
||||
#, kde-format
|
||||
msgid "Extreme"
|
||||
msgstr "القصوى"
|
||||
msgstr "قصوى"
|
||||
|
||||
#: rulesmodel.cpp:923
|
||||
#, kde-format
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#: layoutpreview.cpp:127
|
||||
#, kde-format
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#: ui/main.qml:32
|
||||
#, kde-format
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 21.07.70\n"
|
||||
|
||||
#: kcmvirtualkeyboard.cpp:61
|
||||
#, kde-format
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
|
|
|
@ -20,6 +20,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 21.12.3\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"
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 23.08.1\n"
|
||||
|
||||
#: main.cpp:151 touch.cpp:118
|
||||
#, kde-format
|
||||
|
|
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-12-22 11:14+0400\n"
|
||||
"Last-Translator: Zayed Al-Saidi <zayed.alsaidi@gmail.com>\n"
|
||||
"Language-Team: ar\n"
|
||||
|
@ -22,6 +22,7 @@ msgstr ""
|
|||
"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"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1)
|
||||
#: actions.ui:17
|
||||
|
@ -330,7 +331,7 @@ msgstr "زِد الشّفافيّة"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -581,20 +582,45 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr "اسمح للتطبيقات بتذكر مواضع النوافذ الخاصة بها ، إذا كانت تدعمها"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "ال&نوافذ الخاصة:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"عند تشغيلها ، ستخفى نوافذ الأدوات (نوافذ الأدوات ، القوائم الممزقة ، ...) "
|
||||
"للتطبيقات غير النشطة ولن تظهر إلا عندما يصبح التطبيق نشطًا. لاحظ أن التطبيقات "
|
||||
"يجب أن تحدد النوافذ بنوع النافذة المناسب حتى تعمل هذه الميزة."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "اخفِ نوافذ المساعدة للتطبيقات الخاملة"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "سلوك سطح المكتب الافتراضي:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "عند تنشيط نافذة على سطح مكتب أخر:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -613,13 +639,13 @@ msgstr ""
|
|||
"p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "بدّل إلى ذلك المكتب"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "اجلب النافذة إلى سطح المكتب الحالي"
|
||||
|
@ -1254,22 +1280,6 @@ msgstr ""
|
|||
"التنشيط ولن تعمل. من المحتمل جدًا أنك تريد استخدام <em> التركيز يتبع الفأرة "
|
||||
"(أولوية الفأرة) </em> بدلاً من ذلك!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "ال&نوافذ الخاصة:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "عند تشغيلها ، ستخفى نوافذ الأدوات (نوافذ الأدوات ، القوائم الممزقة ، ...) "
|
||||
#~ "للتطبيقات غير النشطة ولن تظهر إلا عندما يصبح التطبيق نشطًا. لاحظ أن "
|
||||
#~ "التطبيقات يجب أن تحدد النوافذ بنوع النافذة المناسب حتى تعمل هذه الميزة."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "اخفِ نوافذ المساعدة للتطبيقات الخاملة"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
485
po/ar/kwin.po
485
po/ar/kwin.po
File diff suppressed because it is too large
Load Diff
459
po/as/kwin.po
459
po/as/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2023-11-07 21:27+0100\n"
|
||||
"Last-Translator: Enol P. <enolp@softastur.org>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -312,7 +312,7 @@ msgstr ""
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -528,20 +528,42 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -554,13 +576,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
|
470
po/ast/kwin.po
470
po/ast/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-10-18 00:03+0400\n"
|
||||
"Last-Translator: Kheyyam <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani <kde-i18n-doc@kde.org>\n"
|
||||
|
@ -327,7 +327,7 @@ msgstr "Şəffaflığı artırmaq"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -613,20 +613,46 @@ msgstr ""
|
|||
"Dəstəklədiyi halda, tətbiqlərin öz pəncərələrinin yerlərini yadda "
|
||||
"saxlamasına icazə vermək"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Xüsusi pəncərələr:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Bu parametr aktiv edildikdə köməkçi pəncərərələr (alətlər paneli, ayrılmış "
|
||||
"menyular...) qeyri-aktiv tətbiqlər üçün gizlədiləcəkdir. Qeyd: Bu "
|
||||
"xüsusiyyətlərin düzgün işləməsi üçün tətbiqlərin, pəncərələri doğru şəkildə "
|
||||
"quraşdırmaları lazımdır."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Qeyri-aktiv tətbiqlərin köməkçi pəncərələrini gizlətmək."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Virtual iş masası davranışları:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Başqa iş masasındakı pəncərəyə keçid zamanı:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -645,13 +671,13 @@ msgstr ""
|
|||
"pəncərəni aktiv virtual işa masasına köçürəcək. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Bu virtual iş masasına keçid"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Pəncərəni bu virtual iş masasına köçür"
|
||||
|
@ -1298,23 +1324,6 @@ msgstr ""
|
|||
"ziddir və işləməz. Bunun əvəzinə siz <em>Fokus siçanı izləyir (siçanın "
|
||||
"üstünlüyü)</em>variantını işlətmək istəyə bilərsiniz."
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Xüsusi pəncərələr:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Bu parametr aktiv edildikdə köməkçi pəncərərələr (alətlər paneli, "
|
||||
#~ "ayrılmış menyular...) qeyri-aktiv tətbiqlər üçün gizlədiləcəkdir. Qeyd: "
|
||||
#~ "Bu xüsusiyyətlərin düzgün işləməsi üçün tətbiqlərin, pəncərələri doğru "
|
||||
#~ "şəkildə quraşdırmaları lazımdır."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Qeyri-aktiv tətbiqlərin köməkçi pəncərələrini gizlətmək."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
464
po/az/kwin.po
464
po/az/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-12-07 01:42+0000\n"
|
||||
"PO-Revision-Date: 2024-02-27 07:45\n"
|
||||
"PO-Revision-Date: 2024-02-11 18:54\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-01-14 00:38+0000\n"
|
||||
"PO-Revision-Date: 2024-02-27 07:45\n"
|
||||
"PO-Revision-Date: 2024-02-11 18:54\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
|
|
@ -5,7 +5,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-12 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-06-11 08:11\n"
|
||||
"PO-Revision-Date: 2024-02-11 18:54\n"
|
||||
"Last-Translator: Darafei Praliaskouski <komzpa@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -62,13 +62,14 @@ msgstr "Не ўдалося атрымаць звесткі пра сродак
|
|||
#, kde-format
|
||||
msgctxt "@text:label Number of rows, label associated to a number input field"
|
||||
msgid "Rows:"
|
||||
msgstr "Радкі:"
|
||||
msgstr ""
|
||||
|
||||
#: ui/main.qml:54
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "New Desktop"
|
||||
msgctxt "@action:button"
|
||||
msgid "Add Desktop"
|
||||
msgstr "Дадаць працоўны стол"
|
||||
msgstr "Новы працоўны стол"
|
||||
|
||||
#: ui/main.qml:118
|
||||
#, kde-format
|
||||
|
|
|
@ -6,7 +6,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-02-10 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-02-27 07:45\n"
|
||||
"PO-Revision-Date: 2024-02-22 13:34\n"
|
||||
"Last-Translator: Darafei Praliaskouski <komzpa@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
|
|
@ -6,7 +6,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-13 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-06-11 08:11\n"
|
||||
"PO-Revision-Date: 2024-02-23 13:34\n"
|
||||
"Last-Translator: Darafei Praliaskouski <komzpa@licei2.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -844,7 +844,9 @@ msgid "No rules for specific windows are currently set"
|
|||
msgstr "На дадзены момант няма правіл для пэўных акон"
|
||||
|
||||
#: ui/main.qml:89
|
||||
#, kde-kuit-format
|
||||
#, fuzzy, kde-kuit-format
|
||||
#| msgctxt "@info"
|
||||
#| msgid "Click the <interface>Add New…</interface> button below to add some"
|
||||
msgctxt "@info"
|
||||
msgid "Click <interface>Add New…</interface> to add some"
|
||||
msgstr "Пстрыкніце па кнопцы <interface>Дадаць...</interface>, каб дадаць"
|
||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-02-29 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-06-11 08:11\n"
|
||||
"PO-Revision-Date: 2024-02-22 13:34\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -44,9 +44,10 @@ msgid "Alternative"
|
|||
msgstr "Альтэрнатыўны"
|
||||
|
||||
#: main.cpp:69
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Get New Task Switchers..."
|
||||
msgid "Get New Task Switchers…"
|
||||
msgstr "Атрымаць новыя сродкі пераключэння задач…"
|
||||
msgstr "Атрымаць новыя сродкі пераключэння задач..."
|
||||
|
||||
#: main.cpp:83
|
||||
#, kde-format
|
||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-09 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-06-11 08:11\n"
|
||||
"PO-Revision-Date: 2024-02-23 01:30\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -57,7 +57,8 @@ msgid "Never"
|
|||
msgstr "Ніколі"
|
||||
|
||||
#: ui/main.qml:55
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Only Meta, Control, Alt, and Shift keys"
|
||||
msgid "Only Meta, Control, Alt and Shift keys"
|
||||
msgstr "Толькі Meta, Control, Alt, Shift"
|
||||
|
||||
|
@ -77,7 +78,7 @@ msgstr "Заўсёды"
|
|||
#: ui/main.qml:78
|
||||
#, kde-format
|
||||
msgid "Additionally include mouse buttons"
|
||||
msgstr "Уключаючы кнопкі мышы"
|
||||
msgstr ""
|
||||
|
||||
#: ui/main.qml:89
|
||||
#, kde-format
|
||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2023-04-20 02:25+0000\n"
|
||||
"PO-Revision-Date: 2024-06-01 17:50\n"
|
||||
"PO-Revision-Date: 2024-02-11 18:54\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -88,7 +88,7 @@ msgstr "Каманда распрацоўвання KWin"
|
|||
#, kde-format
|
||||
msgctxt "Error message"
|
||||
msgid "Could not locate package metadata"
|
||||
msgstr "Не ўдалося знайсці метаданыя пакета"
|
||||
msgstr "Не ўдалося знайсці метаданыя пакунка"
|
||||
|
||||
#: genericscriptedconfig.cpp:77
|
||||
#, kde-format
|
||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
|||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-09 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-02-27 07:45\n"
|
||||
"PO-Revision-Date: 2024-02-22 13:35\n"
|
||||
"Last-Translator: Zmicier <zmicerturok@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
|
@ -80,7 +80,7 @@ msgstr "Агляд"
|
|||
#: main.cpp:166 touch.cpp:133
|
||||
#, kde-format
|
||||
msgid "Grid"
|
||||
msgstr "Сетка"
|
||||
msgstr ""
|
||||
|
||||
#: main.cpp:168 touch.cpp:135
|
||||
#, kde-format
|
||||
|
|
|
@ -4,7 +4,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: fc57ad16a28d02dea100ceb1c60de14e\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-02-11 18:54\n"
|
||||
"Last-Translator: Darafei Praliaskouski <komzpa@licei2.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
|
@ -333,7 +333,7 @@ msgstr "Павылічыць непразрыстасць"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -588,20 +588,46 @@ msgstr ""
|
|||
"Дазволіць праграмам запамінаць пазіцыю сваіх акон, калі яны падтрымліваюць "
|
||||
"гэтую функцыю"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Адмысловыя вокны:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Калі параметр уключаны, службовыя вокны (вокны інструментаў, адасобленыя "
|
||||
"меню,...) неактыўных праграм будуць хавацца, і будуць паказвацца толькі "
|
||||
"тады, калі праграма стане актыўнай. Звярніце ўвагу, што для таго, каб гэтая "
|
||||
"функцыя працавала, праграмы мусяць пазначаць вокны адпаведным тыпам."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Хаваць службовыя вокны неактыўных праграм"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Паводзіны віртуальных працоўных сталоў:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Пры актывацыі акна на іншым віртуальным працоўным стале:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -621,13 +647,13 @@ msgstr ""
|
|||
"актыўны віртуальны працоўны стол. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Пераключэнне на віртуальны працоўны стол мэтавага акна"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Перанос на бягучы віртуальны працоўны стол"
|
||||
|
@ -1279,23 +1305,6 @@ msgstr ""
|
|||
"і не будуць працаваць. Напэўна, вам патрэбна <em>Факусавацца ўслед за мышшу "
|
||||
"(прыярытэт мышы)</em>!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Адмысловыя вокны:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Калі параметр уключаны, службовыя вокны (вокны інструментаў, адасобленыя "
|
||||
#~ "меню,...) неактыўных праграм будуць хавацца, і будуць паказвацца толькі "
|
||||
#~ "тады, калі праграма стане актыўнай. Звярніце ўвагу, што для таго, каб "
|
||||
#~ "гэтая функцыя працавала, праграмы мусяць пазначаць вокны адпаведным тыпам."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Хаваць службовыя вокны неактыўных праграм"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
499
po/be/kwin.po
499
po/be/kwin.po
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -125,3 +125,12 @@ msgstr "%1 ms"
|
|||
#, kde-format
|
||||
msgid "Show desktop layout indicators"
|
||||
msgstr "Показване на индикатори за подредба на работния плот"
|
||||
|
||||
#~ msgid "1 Row"
|
||||
#~ msgid_plural "%1 Rows"
|
||||
#~ msgstr[0] "1 ред"
|
||||
#~ msgstr[1] "%1 Редове"
|
||||
|
||||
#~ msgctxt "@action:button"
|
||||
#~ msgid "Add"
|
||||
#~ msgstr "Добавяне"
|
||||
|
|
|
@ -80,3 +80,6 @@ msgstr ""
|
|||
"системата до тази на X11 като позволява на злонамерен софтуер да краде "
|
||||
"пароли и да шпионира текста, който въвеждате. Уверете се, че разбирате и "
|
||||
"приемате този риск."
|
||||
|
||||
#~ msgid "Only non-character keys"
|
||||
#~ msgstr "Само не-словни символи"
|
||||
|
|
|
@ -3,20 +3,20 @@
|
|||
#
|
||||
# Zlatko Popov <zlatkopopov@fsa-bg.org>, 2006, 2007, 2008.
|
||||
# Yasen Pramatarov <yasen@lindeas.com>, 2009.
|
||||
# SPDX-FileCopyrightText: 2022, 2024 Mincho Kondarev <mkondarev@yahoo.de>
|
||||
# Mincho Kondarev <mkondarev@yahoo.de>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-05-30 20:40+0200\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-12-05 00:26+0100\n"
|
||||
"Last-Translator: Mincho Kondarev <mkondarev@yahoo.de>\n"
|
||||
"Language-Team: Bulgarian <kde-i18n-doc@kde.org>\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 24.05.0\n"
|
||||
"X-Generator: Lokalize 22.08.3\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1)
|
||||
|
@ -326,7 +326,7 @@ msgstr "Увеличаване на непрозрачността"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -582,20 +582,46 @@ msgstr ""
|
|||
"Позволяване на приложенията, ако поддържат функцията, да запомнят позициите "
|
||||
"на собствените си прозорци"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Специални прозорци:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Ако отметката е включена, помощните прозорци на неактивните програми, като "
|
||||
"ленти за задачи, откачащи се менюта и др., ще бъдат скривани, когато "
|
||||
"програмата (главния прозорец) не е активен. Когато програмата стане активна, "
|
||||
"те ще се показват обратно."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Скриване на помощните прозорци на неактивните програми"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Поведение на виртуален работен плот:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "При активиране на прозорец на друг виртуален работен плот:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -608,20 +634,20 @@ msgid ""
|
|||
msgstr ""
|
||||
"<html><head/><body><p>Тази настройка контролира какво се случва, когато се "
|
||||
"активира отворен прозорец, който се намира на виртуален работен плот, "
|
||||
"различен от текущия.</p><p><span style=\" font-style:italic;\">Превключване "
|
||||
"различен от текущия. </p><p><span style=\" font-style:italic;\">Превключване "
|
||||
"към другия виртуален работен плот</span> ще превключи към виртуалния работен "
|
||||
"плот, на който се намира прозореца.</p><p><span style=\" font-style:italic;"
|
||||
"плот, на който се намира прозореца. </p><p><span style=\" font-style:italic;"
|
||||
"\">Преместване на прозореца в текущия виртуален работен плот</span> ще "
|
||||
"премести прозореца в активния виртуален работен плот.</p></body></html>"
|
||||
"премести прозореца в активния виртуален работен плот. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Превключване към другия виртуален работен плот"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Преместване на прозореца в текущия виртуален работен плот"
|
||||
|
@ -738,7 +764,7 @@ msgstr ""
|
|||
"активиране на нови прозорци. (Забележка: Тази функция не работи с <span "
|
||||
"style=\" font-style:italic;\">Фокус под мишката </span> или <span style=\" "
|
||||
"font-style:italic;\"> Фокусиране стриктно под мишката </span> политики за "
|
||||
"фокусиране.) </p><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-"
|
||||
"фокусиране.) </p><ul style=\"margin-top: 0px; margin-bottom: 0px; margin-"
|
||||
"left: 0px; margin-right: 0px; -qt-list-indent: 1;\"><li style=\" margin-"
|
||||
"top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-"
|
||||
"indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Без: </"
|
||||
|
@ -761,7 +787,7 @@ msgstr ""
|
|||
"li><li style=\" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-"
|
||||
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:"
|
||||
"italic;\">Екстремно:</span> Всички прозорците трябва да бъдат активирани "
|
||||
"изрично от потребителя. </li></ul><p> Прозорци, които са предотвратени от "
|
||||
"изрично от потребителя. </li> </ul> <p> Прозорци, които са предотвратени от "
|
||||
"отнемане на фокус, са маркирани като изискващи внимание, което по "
|
||||
"подразбиране означава, че записът им в лентата на задачите ще бъде маркиран. "
|
||||
"Това може да бъде променено в контролния модул за известия.</p></body></html>"
|
||||
|
@ -1258,7 +1284,7 @@ msgid ""
|
|||
"precedence)</em> instead!"
|
||||
msgstr ""
|
||||
"<em> Фокус под мишката: </em> Фокусът винаги остава върху прозореца под "
|
||||
"мишка. <br/><strong> Предупреждение: </strong><em> Предотвратяване на "
|
||||
"мишка. <br/> <strong> Предупреждение: </strong> <em> Предотвратяване на "
|
||||
"отнемане на фокус </em> и<em> комбинацията (\"Alt + Tab\") </em> противоречи "
|
||||
"на политиката и няма да работят. Много вероятно, вместо това, ще искате да "
|
||||
"използвате <em> Фокусът следва мишката (предимство на мишката) </em>!"
|
||||
|
@ -1275,25 +1301,20 @@ msgid ""
|
|||
msgstr ""
|
||||
"<em> Фокусиране стриктно под мишката: </em> Фокусът винаги е върху прозореца "
|
||||
"под мишката (при съмнение никъде) много прилича на поведението на фокуса в "
|
||||
"неуправлявана среда на X11. <br/><strong> Предупреждение: </strong><em> "
|
||||
"неуправлявана среда на X11. <br/> <strong> Предупреждение: </strong> <em> "
|
||||
"Предотвратяване на отнемане на фокус </em> и <em> комбинацията (\"Alt + Tab"
|
||||
"\") </em> противоречат на политика за активиране и няма да работят. Най-"
|
||||
"вероятно, вместо това, ще искате да използвате <em> Фокусът следва мишка "
|
||||
"(предимство на мишката) </em>!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Специални прозорци:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
#~ "the active screen is the screen containing the focused window."
|
||||
#~ msgstr ""
|
||||
#~ "Ако отметката е включена, помощните прозорци на неактивните програми, "
|
||||
#~ "като ленти за задачи, откачащи се менюта и др., ще бъдат скривани, когато "
|
||||
#~ "програмата (главния прозорец) не е активен. Когато програмата стане "
|
||||
#~ "активна, те ще се показват обратно."
|
||||
#~ "Когато тази опция е активирана, активният екран е екранът, съдържащ "
|
||||
#~ "показалеца на мишката (там например се появяват новите прозорци) . Когато "
|
||||
#~ "е деактивиран, активният екран е екранът, съдържащ фокусирания прозорец."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Скриване на помощните прозорци на неактивните програми"
|
||||
#~ msgid "Active screen follows &mouse"
|
||||
#~ msgstr "Активният екран следва &мишката"
|
||||
|
|
508
po/bg/kwin.po
508
po/bg/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2010-06-01 10:33-0700\n"
|
||||
"Last-Translator: Deepayan Sarkar <deepayan.sarkar@gmail.com>\n"
|
||||
"Language-Team: Bengali <kde-translation@bengalinux.org>\n"
|
||||
|
@ -343,7 +343,7 @@ msgstr "স্বচ্ছতা বদলাও"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -598,20 +598,43 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "উইন্ডোসমূহ"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -624,13 +647,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1271,11 +1294,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "উইন্ডোসমূহ"
|
||||
|
||||
#~ msgid "Active screen follows &mouse"
|
||||
#~ msgstr "&সক্রিয় স্ক্রীন মাউস অনুসরণ করে"
|
||||
|
||||
|
|
461
po/bn/kwin.po
461
po/bn/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2009-01-07 16:17+0530\n"
|
||||
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
||||
"Language-Team: Bengali INDIA <fedora-trans-bn_IN@redhat.com>\n"
|
||||
|
@ -326,7 +326,7 @@ msgstr ""
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -554,20 +554,43 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "উইন্ডো"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "নিষ্ক্রিয় অ্যাপ্লিকেশনের ক্ষেত্রে সহায়ক উইন্ডো বন্ধ করা হবে"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -580,13 +603,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1177,14 +1200,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "উইন্ডো"
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "নিষ্ক্রিয় অ্যাপ্লিকেশনের ক্ষেত্রে সহায়ক উইন্ডো বন্ধ করা হবে"
|
||||
|
||||
#~ msgctxt "NAME OF TRANSLATORS"
|
||||
#~ msgid "Your names"
|
||||
#~ msgstr "রুণা ভট্টাচার্য্য"
|
||||
|
|
460
po/bn_IN/kwin.po
460
po/bn_IN/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm-1.1\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2004-07-08 22:32+0200\n"
|
||||
"Last-Translator: Jañ-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>\n"
|
||||
"Language-Team: Brezhoneg <Suav.Icb@wanadoo.fr>\n"
|
||||
|
@ -322,7 +322,7 @@ msgstr "Divoullded"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -551,20 +551,43 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "Prenester"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -577,13 +600,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1172,11 +1195,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Prenester"
|
||||
|
||||
#~ msgctxt "NAME OF TRANSLATORS"
|
||||
#~ msgid "Your names"
|
||||
#~ msgstr "Thierry Vignaud, Jañ-Mai Drapier"
|
||||
|
|
459
po/br/kwin.po
459
po/br/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2013-10-18 20:17+0000\n"
|
||||
"Last-Translator: Samir Ribić <Unknown>\n"
|
||||
"Language-Team: Bosnian <bs@li.org>\n"
|
||||
|
@ -349,7 +349,7 @@ msgstr "Učini manje prozirnim"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -637,20 +637,47 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Special Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "Specijalni prozori"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Kada je uključeno, pomoćni prozori (prozor s alatkama, izdvojeni meniji) "
|
||||
"neaktivne aplikacije će biti skriveni i prikazani samo kada aplikacija "
|
||||
"postane aktivna. Aplikacije trebaju označiti prozore odgovarajućim tipom, da "
|
||||
"bi ova osobina radila."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Sakrij pomoćne prozore za neaktivne aplikacije"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -663,13 +690,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1417,25 +1444,6 @@ msgstr ""
|
|||
"Možda želite koristiti<br>\n"
|
||||
"<i>Fokus prati miša - prioritet mišem</i> umjesto toga!"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Special Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Specijalni prozori"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Kada je uključeno, pomoćni prozori (prozor s alatkama, izdvojeni meniji) "
|
||||
#~ "neaktivne aplikacije će biti skriveni i prikazani samo kada aplikacija "
|
||||
#~ "postane aktivna. Aplikacije trebaju označiti prozore odgovarajućim tipom, "
|
||||
#~ "da bi ova osobina radila."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Sakrij pomoćne prozore za neaktivne aplikacije"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "When this option is enabled, the active Xinerama screen (where new "
|
||||
|
|
471
po/bs/kwin.po
471
po/bs/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2023-09-20 21:23+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
|
@ -336,7 +336,7 @@ msgstr "Augmenta l'opacitat"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -591,21 +591,48 @@ msgid ""
|
|||
msgstr ""
|
||||
"Permet que les aplicacions recordin la posició de les seves pròpies finestres"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "Finestres e&specials:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Quan està activat, les finestres d'utilitat (finestres d'eines, menús "
|
||||
"escapçats...) de les aplicacions inactives s'ocultaran i només es mostraran "
|
||||
"quan l'aplicació esdevingui activa. Cal tenir present que les aplicacions "
|
||||
"han de marcar les finestres amb el tipus de finestra correcte perquè "
|
||||
"funcioni aquesta característica."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Oculta les finestres d'utilitat per a les aplicacions inactives"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Comportament dels escriptoris virtuals:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "En activar una finestra en un escriptori virtual diferent:"
|
||||
|
||||
# NdT: "Switch to that Virtual Desktop" vol dir que es canvia a l'altre escriptori virtual (no a l'actual com implica «aquest»), per això, ho tradueixo com a «aquell». En cas de canviar-ho, també cal canviar la doc (kcontrol_windowbehavior.po).
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -625,13 +652,13 @@ msgstr ""
|
|||
"virtual actiu. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Canvia a aquell escriptori virtual"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Trasllada la finestra a l'escriptori virtual actual"
|
||||
|
@ -1285,24 +1312,6 @@ msgstr ""
|
|||
"funcionaran. En el seu lloc, segurament voldreu usar el <em>Focus segueix el "
|
||||
"ratolí (prioritat al ratolí)</em>."
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Finestres e&specials:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Quan està activat, les finestres d'utilitat (finestres d'eines, menús "
|
||||
#~ "escapçats...) de les aplicacions inactives s'ocultaran i només es "
|
||||
#~ "mostraran quan l'aplicació esdevingui activa. Cal tenir present que les "
|
||||
#~ "aplicacions han de marcar les finestres amb el tipus de finestra correcte "
|
||||
#~ "perquè funcioni aquesta característica."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Oculta les finestres d'utilitat per a les aplicacions inactives"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
470
po/ca/kwin.po
470
po/ca/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2023-09-20 21:23+0200\n"
|
||||
"Last-Translator: Josep M. Ferrer <txemaq@gmail.com>\n"
|
||||
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
|
||||
|
@ -336,7 +336,7 @@ msgstr "Augmenta l'opacitat"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -591,21 +591,48 @@ msgid ""
|
|||
msgstr ""
|
||||
"Permet que les aplicacions recorden la posició de les seues pròpies finestres"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "Finestres e&specials:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Quan es marca, les finestres d'utilitat (finestres d'eines, menús "
|
||||
"escapçats…) de les aplicacions inactives s'ocultaran i només es mostraran "
|
||||
"quan l'aplicació esdevinga activa. Cal tindre present que les aplicacions "
|
||||
"han de marcar les finestres amb el tipus de finestra correcte perquè "
|
||||
"funcione esta característica."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Oculta les finestres d'utilitat per a les aplicacions inactives"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Comportament dels escriptoris virtuals:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "En activar una finestra en un escriptori virtual diferent:"
|
||||
|
||||
# NdT: "Switch to that Virtual Desktop" vol dir que es canvia a l'altre escriptori virtual (no a l'actual com implica «aquest»), per això, ho tradueixo com a «aquell». En cas de canviar-ho, també cal canviar la doc (kcontrol_windowbehavior.po).
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -625,13 +652,13 @@ msgstr ""
|
|||
"virtual actiu. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Canvia a aquell escriptori virtual"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Trasllada la finestra a l'escriptori virtual actual"
|
||||
|
@ -1283,21 +1310,3 @@ msgstr ""
|
|||
"<em>quadro de pestanyes («Alt+Tab»)</em> entren en contradicció amb la "
|
||||
"política i no funcionaran. En el seu lloc, segurament voldreu utilitzar el "
|
||||
"<em>Focus seguix el ratolí (prioritat al ratolí)</em>."
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Finestres e&specials:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Quan es marca, les finestres d'utilitat (finestres d'eines, menús "
|
||||
#~ "escapçats…) de les aplicacions inactives s'ocultaran i només es mostraran "
|
||||
#~ "quan l'aplicació esdevinga activa. Cal tindre present que les aplicacions "
|
||||
#~ "han de marcar les finestres amb el tipus de finestra correcte perquè "
|
||||
#~ "funcione esta característica."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Oculta les finestres d'utilitat per a les aplicacions inactives"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"Project-Id-Version: kcmkwinrules\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-13 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-06-18 16:10+0200\n"
|
||||
"PO-Revision-Date: 2024-04-30 15:29+0200\n"
|
||||
"Last-Translator: Vit Pelcak <vpelcak@suse.cz>\n"
|
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\n"
|
||||
"Language: cs\n"
|
||||
|
@ -18,7 +18,7 @@ msgstr ""
|
|||
"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 24.05.1\n"
|
||||
"X-Generator: Lokalize 24.02.2\n"
|
||||
"X-Language: cs_CZ\n"
|
||||
"X-Source-Language: en_US\n"
|
||||
|
||||
|
@ -780,7 +780,7 @@ msgstr ""
|
|||
#: ui/main.qml:101
|
||||
#, kde-format
|
||||
msgid "Unselect All"
|
||||
msgstr "Zrušit výběr všeho"
|
||||
msgstr "Zrušit výběr"
|
||||
|
||||
#: ui/main.qml:101
|
||||
#, kde-format
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# Lukáš Tinkl <lukas@kde.org>, 2010, 2012.
|
||||
# Jan Holíček <jan.holicek@gmail.com>, 2010.
|
||||
# Vít Pelčák <vit@pelcak.org>, 2011, 2012, 2019, 2023.
|
||||
# SPDX-FileCopyrightText: 2024 Vit Pelcak <vit@pelcak.org>
|
||||
# SPDX-FileCopyrightText: 2024 Vit Pelcak <vpelcak@suse.cz>
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
|
|
|
@ -3,22 +3,22 @@
|
|||
# Vít Pelčák <vit@pelcak.org>, 2010, 2011, 2012, 2013, 2014, 2015, 2017, 2019, 2020.
|
||||
# Lukáš Tinkl <ltinkl@redhat.com>, 2010, 2011.
|
||||
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012.
|
||||
# SPDX-FileCopyrightText: 2021, 2022, 2023, 2024 Vit Pelcak <vit@pelcak.org>
|
||||
# Vit Pelcak <vit@pelcak.org>, 2021, 2022, 2023.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-06-20 16:26+0200\n"
|
||||
"Last-Translator: Vit Pelcak <vpelcak@suse.cz>\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2023-01-04 15:17+0100\n"
|
||||
"Last-Translator: Vit Pelcak <vit@pelcak.org>\n"
|
||||
"Language-Team: Czech <kde-i18n-doc@kde.org>\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 24.05.1\n"
|
||||
"X-Generator: Lokalize 22.12.1\n"
|
||||
"X-Language: cs_CZ\n"
|
||||
"X-Source-Language: en_US\n"
|
||||
|
||||
|
@ -329,7 +329,7 @@ msgstr "Zvýšit krytí"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -554,20 +554,46 @@ msgid ""
|
|||
msgstr ""
|
||||
"Povolit aplikacím zapamatovat si pozice vlastních oken, pokud to podporují"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Speciální okna:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Pokud je zapnuto, pomocná okna (nástrojová okna, vytržené nabídky, ...) "
|
||||
"neaktivních aplikací budou skryta a zobrazena, pouze pokud se aplikace stane "
|
||||
"aktivní. Všimněte si, že aplikace musejí tuto funkci správně implementovat a "
|
||||
"označit taková okna."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Skrýt nástrojová okna neaktivních aplikací"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Chování virtuální plochy:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Při aktivování okna na jiné virtuální ploše:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -580,13 +606,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Přepnout do této virtuální plochy"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Přesunout okno do této virtuální plochy"
|
||||
|
@ -595,7 +621,7 @@ msgstr "Přesunout okno do této virtuální plochy"
|
|||
#: focus.ui:22
|
||||
#, kde-format
|
||||
msgid "Window &activation policy:"
|
||||
msgstr "Pravidla &aktivace okna:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, windowFocusPolicy)
|
||||
#: focus.ui:32
|
||||
|
@ -1039,7 +1065,7 @@ msgstr ""
|
|||
#: moving.ui:20
|
||||
#, kde-format
|
||||
msgid "Screen &edge snap zone:"
|
||||
msgstr "Oblast přichyc&ení k okraji obrazovky:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_BorderSnapZone)
|
||||
#: moving.ui:30
|
||||
|
|
493
po/cs/kwin.po
493
po/cs/kwin.po
File diff suppressed because it is too large
Load Diff
462
po/csb/kwin.po
462
po/csb/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2004-07-04 13:05+0100\n"
|
||||
"Last-Translator: KD at KGyfieithu <kyfieithu@dotmon.com>\n"
|
||||
"Language-Team: Cymraeg <cy@li.org>\n"
|
||||
|
@ -346,7 +346,7 @@ msgstr "Didreiddiad"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -598,20 +598,43 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "Ffenestri"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -624,13 +647,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1274,11 +1297,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Ffenestri"
|
||||
|
||||
#~ msgctxt "NAME OF TRANSLATORS"
|
||||
#~ msgid "Your names"
|
||||
#~ msgstr "Owain Green,KGyfieithu,KD"
|
||||
|
|
459
po/cy/kwin.po
459
po/cy/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2020-02-08 15:20+0100\n"
|
||||
"Last-Translator: Martin Schlander <mschlander@opensuse.org>\n"
|
||||
"Language-Team: Danish <kde-i18n-doc@kde.org>\n"
|
||||
|
@ -329,7 +329,7 @@ msgstr "Forøg ugennemsigtighed"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -606,20 +606,46 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Specielle vinduer:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Når dette er slået til, skjules midlertidige vinduer (værktøjsvinduer, "
|
||||
"afrevne menuer, ...) for inaktive programmer og vises kun når programmet "
|
||||
"bliver aktivt. Bemærk at programmer skal markere vinduerne med den rigtige "
|
||||
"vinduestype for at funktionen skal virke."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Skjul midlertidige vinduer for inaktive programmer"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -632,13 +658,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1368,23 +1394,6 @@ msgstr ""
|
|||
"Du vil sikkert hellere bruge<br>\n"
|
||||
"<i>Fokus følger musen - musen har forrang</i> i stedet for!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Specielle vinduer:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Når dette er slået til, skjules midlertidige vinduer (værktøjsvinduer, "
|
||||
#~ "afrevne menuer, ...) for inaktive programmer og vises kun når programmet "
|
||||
#~ "bliver aktivt. Bemærk at programmer skal markere vinduerne med den "
|
||||
#~ "rigtige vinduestype for at funktionen skal virke."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Skjul midlertidige vinduer for inaktive programmer"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "When this option is enabled, the active Xinerama screen (where new "
|
||||
|
|
466
po/da/kwin.po
466
po/da/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -4,21 +4,20 @@
|
|||
# Frederik Schwarzer <schwarzer@kde.org>, 2012, 2016, 2020, 2022.
|
||||
# Frank Steinmetzger <dev-kde@felsenfleischer.de>, 2022.
|
||||
# Jannick Kuhr <opensource@kuhr.org>, 2023.
|
||||
# SPDX-FileCopyrightText: 2024 Nicolai Weitkemper <kontakt@nicolaiweitkemper.de>
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwinscreenedges\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-09 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-06-02 12:35+0200\n"
|
||||
"Last-Translator: Alois Spitzbart <spitz234@hotmail.com>\n"
|
||||
"PO-Revision-Date: 2023-02-20 22:00+0100\n"
|
||||
"Last-Translator: Jannick Kuhr <opensource@kuhr.org>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\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 24.05.0\n"
|
||||
"X-Generator: Lokalize 23.08.4\n"
|
||||
|
||||
#: main.cpp:151 touch.cpp:118
|
||||
#, kde-format
|
||||
|
@ -134,7 +133,7 @@ msgstr "Verhalten:"
|
|||
#: main.ui:108
|
||||
#, kde-format
|
||||
msgid "Remain active when windows are fullscreen"
|
||||
msgstr "Aktiviert bleiben, wenn Fenster im Vollbildmodus angezeigt werden"
|
||||
msgstr "Aktiviert bleiben, wenn Fenser im Vollbildmodus angezeigt werden"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, electricBorderCornerRatioLabel)
|
||||
#: main.ui:115
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2023-04-16 14:03+0200\n"
|
||||
"Last-Translator: Frederik Schwarzer <schwarzer@kde.org>\n"
|
||||
"Language-Team: German <kde-i18n-de@kde.org>\n"
|
||||
|
@ -332,7 +332,7 @@ msgstr "Deckkraft vergrößern"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -594,21 +594,46 @@ msgstr ""
|
|||
"Anwendungen erlauben, die Position ihrer eigenen Fenster zu speichern, wenn "
|
||||
"sie das unterstützen"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "Be&sondere Fenster:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Wenn diese Einstellung aktiviert ist, werden Dienstprogrammfenster "
|
||||
"(Werkzeugfenster, schwebende Menüs, ...) nur angezeigt, wenn das zugehörige "
|
||||
"Hauptfenster aktiv ist."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Werkzeugfenster von inaktiven Programmen ausblenden"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Verhalten virtueller Arbeitsflächen:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
"Wenn ein Fenster auf einer anderen virtuellen Arbeitsfläche aktiviert wird:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -621,13 +646,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Zu dieser virtuellen Arbeitsfläche wechseln"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Fenster auf aktuelle virtuelle Arbeitsfläche holen"
|
||||
|
@ -1291,22 +1316,6 @@ msgstr ""
|
|||
"Regelung und werden nicht funktionieren.Sie sollten stattdessen besser "
|
||||
"<em>Aktivierung bei Mauskontakt – Vorrang für Maus</em> verwenden."
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Be&sondere Fenster:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Wenn diese Einstellung aktiviert ist, werden Dienstprogrammfenster "
|
||||
#~ "(Werkzeugfenster, schwebende Menüs, ...) nur angezeigt, wenn das "
|
||||
#~ "zugehörige Hauptfenster aktiv ist."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Werkzeugfenster von inaktiven Programmen ausblenden"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
464
po/de/kwin.po
464
po/de/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -17,7 +17,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2015-02-08 11:48+0200\n"
|
||||
"Last-Translator: Dimitris Kardarakos <dimkard@gmail.com>\n"
|
||||
"Language-Team: Greek <kde-i18n-el@kde.org>\n"
|
||||
|
@ -356,7 +356,7 @@ msgstr "Αύξηση αδιαφάνειας"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -650,20 +650,48 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Special Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "Ειδικά παράθυρα"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Όταν ενεργοποιηθεί, τα βοηθητικά παράθυρα (παράθυρα εργαλείων, αναπτυγμένα "
|
||||
"μενού,...) των μη ενεργών εφαρμογών δε θα είναι ορατά και θα εμφανιστούν "
|
||||
"μόνο όταν ενεργοποιηθούν οι εφαρμογές. Σημειώστε ότι οι εφαρμογές θα πρέπει "
|
||||
"να μαρκάρουν τα παράθυρα με τον κατάλληλο τύπο παραθύρου για να λειτουργήσει "
|
||||
"αυτό το χαρακτηριστικό."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Απόκρυψη βοηθητικών παραθύρων για μη ενεργές εφαρμογές"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -676,13 +704,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1451,26 +1479,6 @@ msgstr ""
|
|||
"Αντί αυτής ίσως να θέλετε να χρησιμοποιήσετε την πολιτική<br>\n"
|
||||
"<i>Η εστίαση ακολουθεί το ποντίκι - Το ποντίκι έχει προτεραιότητα</i>!"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Special Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Ειδικά παράθυρα"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Όταν ενεργοποιηθεί, τα βοηθητικά παράθυρα (παράθυρα εργαλείων, "
|
||||
#~ "αναπτυγμένα μενού,...) των μη ενεργών εφαρμογών δε θα είναι ορατά και θα "
|
||||
#~ "εμφανιστούν μόνο όταν ενεργοποιηθούν οι εφαρμογές. Σημειώστε ότι οι "
|
||||
#~ "εφαρμογές θα πρέπει να μαρκάρουν τα παράθυρα με τον κατάλληλο τύπο "
|
||||
#~ "παραθύρου για να λειτουργήσει αυτό το χαρακτηριστικό."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Απόκρυψη βοηθητικών παραθύρων για μη ενεργές εφαρμογές"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "When this option is enabled, the active Xinerama screen (where new "
|
||||
|
|
462
po/el/kwin.po
462
po/el/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -4,21 +4,21 @@
|
|||
#
|
||||
# Malcolm Hunter <malcolm.hunter@gmx.co.uk>, 2008.
|
||||
# Andrew Coles <andrew_coles@yahoo.co.uk>, 2009, 2010.
|
||||
# SPDX-FileCopyrightText: 2014, 2018, 2019, 2021, 2022, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2014, 2018, 2019, 2021, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcm_kwindesktop\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-12 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:44+0100\n"
|
||||
"PO-Revision-Date: 2022-12-31 17:40+0000\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language-Team: British English <kde-l10n-en_gb@kde.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 24.02.2\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#, kde-format
|
||||
msgctxt "NAME OF TRANSLATORS"
|
||||
|
@ -54,16 +54,18 @@ msgid "There was an error requesting information from the compositor."
|
|||
msgstr "There was an error requesting information from the compositor."
|
||||
|
||||
#: ui/main.qml:26
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Rows:"
|
||||
msgctxt "@text:label Number of rows, label associated to a number input field"
|
||||
msgid "Rows:"
|
||||
msgstr "Rows:"
|
||||
|
||||
#: ui/main.qml:54
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "New Desktop"
|
||||
msgctxt "@action:button"
|
||||
msgid "Add Desktop"
|
||||
msgstr "Add Desktop"
|
||||
msgstr "New Desktop"
|
||||
|
||||
#: ui/main.qml:118
|
||||
#, kde-format
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
#
|
||||
# Malcolm Hunter <malcolm.hunter@gmx.co.uk>, 2003, 2004, 2008.
|
||||
# Andrew Coles <andrew_coles@yahoo.co.uk>, 2004, 2005, 2009, 2010.
|
||||
# SPDX-FileCopyrightText: 2014, 2015, 2018, 2019, 2020, 2021, 2023, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2014, 2015, 2018, 2019, 2020, 2021, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwindecoration\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-02-10 00:40+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:44+0100\n"
|
||||
"PO-Revision-Date: 2023-04-08 11:02+0100\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language: en_GB\n"
|
||||
|
@ -17,7 +17,7 @@ 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 24.02.2\n"
|
||||
"X-Generator: Lokalize 23.03.70\n"
|
||||
|
||||
#: declarative-plugin/buttonsmodel.cpp:56
|
||||
#, kde-format
|
||||
|
@ -72,7 +72,7 @@ msgstr "Keep above other windows"
|
|||
#: declarative-plugin/buttonsmodel.cpp:76
|
||||
#, kde-format
|
||||
msgid "Spacer"
|
||||
msgstr "Spacer"
|
||||
msgstr ""
|
||||
|
||||
#: kcm.cpp:177
|
||||
#, kde-format
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
#
|
||||
# Andrew Coles <andrew_coles@yahoo.co.uk>, 2004, 2005, 2009, 2010.
|
||||
# Malcolm Hunter <malcolm.hunter@gmx.co.uk>, 2005, 2008.
|
||||
# SPDX-FileCopyrightText: 2014, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2014, 2015, 2017, 2018, 2019, 2020, 2021, 2022, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwinrules\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-13 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:46+0100\n"
|
||||
"PO-Revision-Date: 2023-06-17 12:06+0100\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language: en_GB\n"
|
||||
|
@ -17,7 +17,7 @@ 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 24.02.2\n"
|
||||
"X-Generator: Lokalize 23.03.70\n"
|
||||
|
||||
#: kcmrules.cpp:228
|
||||
#, kde-format
|
||||
|
@ -582,12 +582,12 @@ msgstr "Block compositing"
|
|||
#: rulesmodel.cpp:719
|
||||
#, kde-format
|
||||
msgid "Layer"
|
||||
msgstr "Layer"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:725
|
||||
#, kde-format
|
||||
msgid "Adaptive Sync"
|
||||
msgstr "Adaptive Sync"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:777
|
||||
#, kde-format
|
||||
|
@ -759,37 +759,38 @@ msgstr "Extreme"
|
|||
#: rulesmodel.cpp:923
|
||||
#, kde-format
|
||||
msgid "Below"
|
||||
msgstr "Below"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:925
|
||||
#, kde-format
|
||||
msgid "Above"
|
||||
msgstr "Above"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:926
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Position"
|
||||
msgid "Notification"
|
||||
msgstr "Notification"
|
||||
msgstr "Position"
|
||||
|
||||
#: rulesmodel.cpp:928
|
||||
#, kde-format
|
||||
msgid "Popup"
|
||||
msgstr "Popup"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:929
|
||||
#, kde-format
|
||||
msgid "Critical Notification"
|
||||
msgstr "Critical Notification"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:930
|
||||
#, kde-format
|
||||
msgid "OSD"
|
||||
msgstr "OSD"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:931
|
||||
#, kde-format
|
||||
msgid "Overlay"
|
||||
msgstr "Overlay"
|
||||
msgstr ""
|
||||
|
||||
#: rulesmodel.cpp:956
|
||||
#, kde-format
|
||||
|
@ -837,10 +838,12 @@ msgid "No rules for specific windows are currently set"
|
|||
msgstr "No rules for specific windows are currently set"
|
||||
|
||||
#: ui/main.qml:89
|
||||
#, kde-kuit-format
|
||||
#, fuzzy, kde-kuit-format
|
||||
#| msgctxt "@info"
|
||||
#| msgid "Click the <interface>Add New…</interface> button below to add some"
|
||||
msgctxt "@info"
|
||||
msgid "Click <interface>Add New…</interface> to add some"
|
||||
msgstr "Click <interface>Add New…</interface> to add some"
|
||||
msgstr "Click the <interface>Add New…</interface> button below to add some"
|
||||
|
||||
#: ui/main.qml:97
|
||||
#, kde-format
|
||||
|
|
|
@ -2,21 +2,21 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Andrew Coles <andrew_coles@yahoo.co.uk>, 2009, 2010.
|
||||
# SPDX-FileCopyrightText: 2014, 2018, 2022, 2023, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2014, 2018, 2022, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-02-29 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:44+0100\n"
|
||||
"PO-Revision-Date: 2023-02-27 20:40+0000\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language-Team: British English <kde-l10n-en_gb@kde.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 24.02.2\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#: layoutpreview.cpp:127
|
||||
#, kde-format
|
||||
|
@ -40,9 +40,10 @@ msgid "Alternative"
|
|||
msgstr "Alternative"
|
||||
|
||||
#: main.cpp:69
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Get New Task Switchers..."
|
||||
msgid "Get New Task Switchers…"
|
||||
msgstr "Get New Task Switchers…"
|
||||
msgstr "Get New Task Switchers..."
|
||||
|
||||
#: main.cpp:83
|
||||
#, kde-format
|
||||
|
@ -59,9 +60,10 @@ msgstr "Content"
|
|||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, showDesktop)
|
||||
#: main.ui:41
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Include \"Show Desktop\" icon"
|
||||
msgid "Include \"Show Desktop\" entry"
|
||||
msgstr "Include \"Show Desktop\" entry"
|
||||
msgstr "Include \"Show Desktop\" icon"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, switchingModeCombo)
|
||||
#: main.ui:55
|
||||
|
|
|
@ -1,24 +1,30 @@
|
|||
# Copyright (C) 2024 This file is copyright:
|
||||
# Copyright (C) YEAR This file is copyright:
|
||||
# This file is distributed under the same license as the kwin package.
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2022, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-09 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:45+0100\n"
|
||||
"PO-Revision-Date: 2022-12-31 17:43+0000\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language-Team: British English <kde-l10n-en_gb@kde.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 24.02.2\n"
|
||||
"X-Generator: Lokalize 21.12.3\n"
|
||||
|
||||
#: ui/main.qml:32
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid ""
|
||||
#| "Legacy X11 apps require the ability to read keystrokes typed in other "
|
||||
#| "apps for features that are activated using global keyboard shortcuts. "
|
||||
#| "This is disabled by default for security reasons. If you need to use such "
|
||||
#| "apps, you can choose your preferred balance of security and functionality "
|
||||
#| "here."
|
||||
msgid ""
|
||||
"Some legacy X11 apps require the ability to read keystrokes typed in other "
|
||||
"apps for certain features, such as handling global keyboard shortcuts. This "
|
||||
|
@ -27,12 +33,10 @@ msgid ""
|
|||
"need to use such apps, you can choose your preferred balance of security and "
|
||||
"functionality here."
|
||||
msgstr ""
|
||||
"Some legacy X11 apps require the ability to read keystrokes typed in other "
|
||||
"apps for certain features, such as handling global keyboard shortcuts. This "
|
||||
"is allowed by default. However other features may require the ability to "
|
||||
"read all keys, and this is disabled by default for security reasons. If you "
|
||||
"need to use such apps, you can choose your preferred balance of security and "
|
||||
"functionality here."
|
||||
"Legacy X11 apps require the ability to read keystrokes typed in other apps "
|
||||
"for features that are activated using global keyboard shortcuts. This is "
|
||||
"disabled by default for security reasons. If you need to use such apps, you "
|
||||
"can choose your preferred balance of security and functionality here."
|
||||
|
||||
#: ui/main.qml:48
|
||||
#, kde-format
|
||||
|
@ -45,16 +49,17 @@ msgid "Never"
|
|||
msgstr "Never"
|
||||
|
||||
#: ui/main.qml:55
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Only Meta, Control, Alt, and Shift keys"
|
||||
msgid "Only Meta, Control, Alt and Shift keys"
|
||||
msgstr "Only Meta, Control, Alt and Shift keys"
|
||||
msgstr "Only Meta, Control, Alt, and Shift keys"
|
||||
|
||||
#: ui/main.qml:61
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "All keys, but only while Meta, Ctrl, Alt, or Shift keys are pressed"
|
||||
msgid ""
|
||||
"As above, plus any key typed while the Control, Alt, or Meta keys are pressed"
|
||||
msgstr ""
|
||||
"As above, plus any key typed while the Control, Alt, or Meta keys are pressed"
|
||||
msgstr "All keys, but only while Meta, Ctrl, Alt, or Shift keys are pressed"
|
||||
|
||||
#: ui/main.qml:68
|
||||
#, kde-format
|
||||
|
@ -64,7 +69,7 @@ msgstr "Always"
|
|||
#: ui/main.qml:78
|
||||
#, kde-format
|
||||
msgid "Additionally include mouse buttons"
|
||||
msgstr "Additionally include mouse buttons"
|
||||
msgstr ""
|
||||
|
||||
#: ui/main.qml:89
|
||||
#, kde-format
|
||||
|
|
|
@ -2,21 +2,21 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Andrew Coles <andrew_coles@yahoo.co.uk>, 2009, 2010.
|
||||
# SPDX-FileCopyrightText: 2014, 2016, 2017, 2019, 2021, 2022, 2024 Steve Allewell <steve.allewell@gmail.com>
|
||||
# Steve Allewell <steve.allewell@gmail.com>, 2014, 2016, 2017, 2019, 2021, 2022.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: kcmkwinscreenedges\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-03-09 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-05-24 16:46+0100\n"
|
||||
"PO-Revision-Date: 2022-07-22 16:20+0100\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English\n"
|
||||
"Language-Team: British English <kde-l10n-en_gb@kde.org>\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Lokalize 24.02.2\n"
|
||||
"X-Generator: Lokalize 22.04.3\n"
|
||||
|
||||
#: main.cpp:151 touch.cpp:118
|
||||
#, kde-format
|
||||
|
@ -69,14 +69,15 @@ msgid "%1 - Current Application"
|
|||
msgstr "%1 - Current Application"
|
||||
|
||||
#: main.cpp:165 touch.cpp:132
|
||||
#, kde-format
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Toggle Overview"
|
||||
msgid "Overview"
|
||||
msgstr "Overview"
|
||||
msgstr "Toggle Overview"
|
||||
|
||||
#: main.cpp:166 touch.cpp:133
|
||||
#, kde-format
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
msgstr ""
|
||||
|
||||
#: main.cpp:168 touch.cpp:135
|
||||
#, kde-format
|
||||
|
@ -234,7 +235,7 @@ msgstr "&Reactivation delay:"
|
|||
#: main.ui:270
|
||||
#, kde-format
|
||||
msgid "&Corner barrier:"
|
||||
msgstr "&Corner barrier:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_CornerBarrier)
|
||||
#: main.ui:280
|
||||
|
@ -246,24 +247,19 @@ msgid ""
|
|||
"interface elements like maximized windows' close buttons when using multiple "
|
||||
"screens."
|
||||
msgstr ""
|
||||
"Here you can enable or disable the virtual corner barrier between screens. "
|
||||
"The barrier prevents the cursor from moving to another screen when it is "
|
||||
"already touching a screen corner. This makes it easier to trigger user "
|
||||
"interface elements like maximised windows' close buttons when using multiple "
|
||||
"screens."
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_CornerBarrier)
|
||||
#: main.ui:283
|
||||
#, kde-format
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Prevents cursors from crossing at screen corners."
|
||||
msgstr "Prevents cursors from crossing at screen corners."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, EdgeBarrierLabel)
|
||||
#: main.ui:290
|
||||
#, kde-format
|
||||
msgid "&Edge barrier:"
|
||||
msgstr "&Edge barrier:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_EdgeBarrier)
|
||||
#: main.ui:300
|
||||
|
@ -275,30 +271,25 @@ msgid ""
|
|||
"interface elements like Plasma Panels that are located on an edge between "
|
||||
"screens."
|
||||
msgstr ""
|
||||
"Here you can set size of the edge barrier between different screens. The "
|
||||
"barrier adds additional distance you have to move your pointer before it "
|
||||
"crosses the edge onto the other screen. This makes it easier to access user "
|
||||
"interface elements like Plasma Panels that are located on an edge between "
|
||||
"screens."
|
||||
|
||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_EdgeBarrier)
|
||||
#: main.ui:303
|
||||
#, kde-format
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Additional distance cursor needs to travel to cross screen edges."
|
||||
msgstr "Additional distance cursor needs to travel to cross screen edges."
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (specialValueText), widget (QSpinBox, kcfg_EdgeBarrier)
|
||||
#: main.ui:306
|
||||
#, kde-format
|
||||
msgid "None"
|
||||
msgstr "None"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_EdgeBarrier)
|
||||
#: main.ui:309
|
||||
#, kde-format
|
||||
msgid " px"
|
||||
msgstr " px"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, label_1)
|
||||
#: touch.ui:17
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-12-31 17:41+0000\n"
|
||||
"Last-Translator: Steve Allewell <steve.allewell@gmail.com>\n"
|
||||
"Language-Team: British English <kde-l10n-en_gb@kde.org>\n"
|
||||
|
@ -326,7 +326,7 @@ msgstr "Increase opacity"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -580,20 +580,46 @@ msgid ""
|
|||
msgstr ""
|
||||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Special windows:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Hide utility windows for inactive applications"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Virtual Desktop behaviour:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "When activating a window on a different Virtual Desktop:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -613,13 +639,13 @@ msgstr ""
|
|||
"Desktop. </p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Switch to that Virtual Desktop"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Bring window to current Virtual Desktop"
|
||||
|
@ -1262,23 +1288,6 @@ msgstr ""
|
|||
"activation policy and will not work. You very likely want to use <em>Focus "
|
||||
"follows mouse (mouse precedence)</em> instead!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Special windows:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Hide utility windows for inactive applications"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
665
po/en_GB/kwin.po
665
po/en_GB/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-01-07 21:26+0100\n"
|
||||
"Last-Translator: Oliver Kellogg <olivermkellogg@gmail.com>\n"
|
||||
"Language-Team: Esperanto <kde-i18n-eo@kde.org>\n"
|
||||
|
@ -327,7 +327,7 @@ msgstr "Pliigi opakecon"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -581,20 +581,46 @@ msgstr ""
|
|||
"Permesu al aplikaĵoj memori la poziciojn de siaj propraj fenestroj, se ili "
|
||||
"subtenas ĝin"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Specialaj fenestroj:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Kiam ebligita, fenestroj de utilaĵoj (ilofenestroj, malfiksitaj menuoj,...) "
|
||||
"de neaktivaj aplikaĵoj estos kaŝitaj kaj nur montriĝos kiam la aplikaĵo "
|
||||
"aktiviĝas. Notu, aplikaĵoj devas indiki akurate siajn utilaĵajn fenestrajn "
|
||||
"tipojn."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Kaŝi fenestrojn de utilaĵoj por neaktivaj aplikaĵoj"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Konduto de Virtuala Labortablo:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Kiam vi aktivigas fenestron sur malsama Virtuala Labortablo:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -614,13 +640,13 @@ msgstr ""
|
|||
"</p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Ŝanĝi al tiu Virtuala Labortablo"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Alporti fenestron al nuna Virtuala Labortablo"
|
||||
|
@ -1262,23 +1288,6 @@ msgstr ""
|
|||
"politikon kaj ne funkcios. Vi tre verŝajne volas uzi <em>Foku sekvas muson "
|
||||
"(musan prioritaton)</em> anstataŭe!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Specialaj fenestroj:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Kiam ebligita, fenestroj de utilaĵoj (ilofenestroj, malfiksitaj "
|
||||
#~ "menuoj,...) de neaktivaj aplikaĵoj estos kaŝitaj kaj nur montriĝos kiam "
|
||||
#~ "la aplikaĵo aktiviĝas. Notu, aplikaĵoj devas indiki akurate siajn "
|
||||
#~ "utilaĵajn fenestrajn tipojn."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Kaŝi fenestrojn de utilaĵoj por neaktivaj aplikaĵoj"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
473
po/eo/kwin.po
473
po/eo/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -20,7 +20,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-12-03 12:06+0100\n"
|
||||
"Last-Translator: Eloy Cuadra <ecuadra@eloihr.net>\n"
|
||||
"Language-Team: Spanish <kde-l10n-es@kde.org>\n"
|
||||
|
@ -343,7 +343,7 @@ msgstr "Aumentar opacidad"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -599,20 +599,47 @@ msgstr ""
|
|||
"Permitir que las aplicaciones recuerden las posiciones de sus ventanas, si "
|
||||
"lo permiten"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "Ventanas e&speciales:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Cuando se activa, las ventanas de utilidades (herramientas de ventana, menús "
|
||||
"despegados...) de aplicaciones inactivas se ocultarán y se mostrarán solo "
|
||||
"cuando la aplicación se active. Advierta que las aplicaciones deben marcar "
|
||||
"las ventanas con el tipo de ventana adecuada para que esta prestación "
|
||||
"funcione."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Ocultar la ventana de utilidades para aplicaciones inactivas"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Comportamiento del escritorio virtual:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Al activar una ventana en un escritorio virtual distinto:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -632,13 +659,13 @@ msgstr ""
|
|||
"actual.</p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Cambiar a ese escritorio virtual"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Traer la ventana al escritorio virtual actual"
|
||||
|
@ -1293,24 +1320,6 @@ msgstr ""
|
|||
"em> contradicen esta política y no funcionarán. Es muy probable que prefiera "
|
||||
"usar <em>El foco sigue al ratón (el ratón tiene prioridad)</em> en su lugar."
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Ventanas e&speciales:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Cuando se activa, las ventanas de utilidades (herramientas de ventana, "
|
||||
#~ "menús despegados...) de aplicaciones inactivas se ocultarán y se "
|
||||
#~ "mostrarán solo cuando la aplicación se active. Advierta que las "
|
||||
#~ "aplicaciones deben marcar las ventanas con el tipo de ventana adecuada "
|
||||
#~ "para que esta prestación funcione."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Ocultar la ventana de utilidades para aplicaciones inactivas"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
471
po/es/kwin.po
471
po/es/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2020-10-27 21:33+0100\n"
|
||||
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
|
||||
"Language-Team: Estonian <>\n"
|
||||
|
@ -329,7 +329,7 @@ msgstr "Vähendab läbipaistvust"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -612,20 +612,47 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr "Ühilduvatel rakendustel lubatakse mäletada oma akende asukohti"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "&Spetsiaalaknad:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Sisselülitamise korral peidetakse mitteaktiivse rakenduse lisaaknad "
|
||||
"(tööriistaaknad, eraldatud menüüd jms.) ning neid näidatakse uuesti alles "
|
||||
"siis, kui rakendus taas aktiivseks muutub. Arvesta, et selleks peavad ka "
|
||||
"rakendused oma lisaaknaid korrektse tüübiga märgistama, muidu see võimalus "
|
||||
"ei toimi."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Mitteaktiivsete rakenduste lisaaknad peidetakse"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -638,13 +665,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1294,24 +1321,6 @@ msgstr ""
|
|||
"on sellega vastuolus ning ei tööta. Pigem on usutav, et soovid kasutada "
|
||||
"hoopis valikut <em>fookus järgib hiirt (eelistus hiirel)</em>!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "&Spetsiaalaknad:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Sisselülitamise korral peidetakse mitteaktiivse rakenduse lisaaknad "
|
||||
#~ "(tööriistaaknad, eraldatud menüüd jms.) ning neid näidatakse uuesti alles "
|
||||
#~ "siis, kui rakendus taas aktiivseks muutub. Arvesta, et selleks peavad ka "
|
||||
#~ "rakendused oma lisaaknaid korrektse tüübiga märgistama, muidu see "
|
||||
#~ "võimalus ei toimi."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Mitteaktiivsete rakenduste lisaaknad peidetakse"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "When this option is enabled, the active Xinerama screen (where new "
|
||||
|
|
466
po/et/kwin.po
466
po/et/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -14,7 +14,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kwin\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2022-12-03 15:48+0100\n"
|
||||
"Last-Translator: Iñigo Salvador Azurmendi <xalba@ni.eus>\n"
|
||||
"Language-Team: Basque <kde-i18n-eu@kde.org>\n"
|
||||
|
@ -332,7 +332,7 @@ msgstr "Handitu opakutasuna"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, kde-format
|
||||
|
@ -587,20 +587,46 @@ msgstr ""
|
|||
"Onartu aplikazioek beren leihoen kokapena gogoratzea, hori egitea onartzen "
|
||||
"badute"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, kde-format
|
||||
msgid "&Special windows:"
|
||||
msgstr "Leiho &bereziak:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"Piztuta dagoenean, aplikazio inaktiboen utilitate leihoak (tresna leihoak, "
|
||||
"menu hedagarriak...) ezkutatuko dira eta bistaratuko dira aplikazioa berriz "
|
||||
"aktiboa denean. Ohar zaitez aplikaziok haien leihoei dagozkien motekin "
|
||||
"markatu behar dituztela, hau funtziona dadin."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "Ezkutatu utilitate leihoak aktiboan ez dauden aplikazioetarako"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr "Alegiazko mahaigainaren jokabidea:"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr "Alegiazko beste mahaigain batean leiho bat aktibatzean:"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -620,13 +646,13 @@ msgstr ""
|
|||
"p></body></html>"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr "Aldatu alegiazko mahai horretara"
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr "Ekarri leihoa uneko alegiazko mahaigainera"
|
||||
|
@ -1274,23 +1300,6 @@ msgstr ""
|
|||
"kontraesankorrak dira eta ez dira ibiliko. Ziur aski, <em>Fokuak saguari "
|
||||
"jarraitzen dio (Saguak lehentasuna)</em> erabili nahiko duzu honen ordez!"
|
||||
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "Leiho &bereziak:"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "Piztuta dagoenean, aplikazio inaktiboen utilitate leihoak (tresna "
|
||||
#~ "leihoak, menu hedagarriak...) ezkutatuko dira eta bistaratuko dira "
|
||||
#~ "aplikazioa berriz aktiboa denean. Ohar zaitez aplikaziok haien leihoei "
|
||||
#~ "dagozkien motekin markatu behar dituztela, hau funtziona dadin."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "Ezkutatu utilitate leihoak aktiboan ez dauden aplikazioetarako"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
#~ "for example) is the screen containing the mouse pointer. When disabled, "
|
||||
|
|
494
po/eu/kwin.po
494
po/eu/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: kcmkwm\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-06-08 00:40+0000\n"
|
||||
"POT-Creation-Date: 2024-02-06 00:39+0000\n"
|
||||
"PO-Revision-Date: 2007-09-06 12:44+0330\n"
|
||||
"Last-Translator: Nazanin Kazemi <kazemi@itland.ir>\n"
|
||||
"Language-Team: Persian <kde-i18n-fa@kde.org>\n"
|
||||
|
@ -344,7 +344,7 @@ msgstr "تغییر تاری"
|
|||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar2)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandActiveTitlebar3)
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_CommandInactiveTitlebar3)
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:154
|
||||
#: actions.ui:310 actions.ui:380 actions.ui:450 actions.ui:505 advanced.ui:174
|
||||
#: mouse.ui:80 mouse.ui:132 mouse.ui:271 mouse.ui:333 mouse.ui:386 mouse.ui:448
|
||||
#: mouse.ui:501 mouse.ui:563
|
||||
#, fuzzy, kde-format
|
||||
|
@ -624,20 +624,47 @@ msgid ""
|
|||
"Allow apps to remember the positions of their own windows, if they support it"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
|
||||
#: advanced.ui:123
|
||||
#, fuzzy, kde-format
|
||||
#| msgid "Windows"
|
||||
msgid "&Special windows:"
|
||||
msgstr "پنجرهها"
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:133
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
"inactive applications will be hidden and will be shown only when the "
|
||||
"application becomes active. Note that applications have to mark the windows "
|
||||
"with the proper window type for this feature to work."
|
||||
msgstr ""
|
||||
"زمانی که روشن شد، پنجرههای سودمند )پنجرههای ابزار، گزینگان جداشده..."
|
||||
"( کاربردهای غیرفعال، فقط زمانی که کاربرد فعال میشود مخفی و آشکار میشوند. "
|
||||
"نکته این که کاربردها باید پنجرهها را با نوع مناسبی از پنجره برای این ویژگی "
|
||||
"نشاندار کنند، تا کار کند."
|
||||
|
||||
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
|
||||
#: advanced.ui:136
|
||||
#, kde-format
|
||||
msgid "Hide utility windows for inactive applications"
|
||||
msgstr "مخفی کردن پنجرههای سودمند برای کاربردهای غیرفعال"
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
|
||||
#: advanced.ui:143
|
||||
#, kde-format
|
||||
msgid "Virtual Desktop behavior:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyDescriptionLabel)
|
||||
#: advanced.ui:133
|
||||
#: advanced.ui:153
|
||||
#, kde-format
|
||||
msgid "When activating a window on a different Virtual Desktop:"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:140
|
||||
#: advanced.ui:160
|
||||
#, kde-format
|
||||
msgid ""
|
||||
"<html><head/><body><p>This setting controls what happens when an open window "
|
||||
|
@ -650,13 +677,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:144
|
||||
#: advanced.ui:164
|
||||
#, kde-format
|
||||
msgid "Switch to that Virtual Desktop"
|
||||
msgstr ""
|
||||
|
||||
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ActivationDesktopPolicy)
|
||||
#: advanced.ui:149
|
||||
#: advanced.ui:169
|
||||
#, kde-format
|
||||
msgid "Bring window to current Virtual Desktop"
|
||||
msgstr ""
|
||||
|
@ -1330,25 +1357,6 @@ msgid ""
|
|||
"follows mouse (mouse precedence)</em> instead!"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Windows"
|
||||
#~ msgid "&Special windows:"
|
||||
#~ msgstr "پنجرهها"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When turned on, utility windows (tool windows, torn-off menus,...) of "
|
||||
#~ "inactive applications will be hidden and will be shown only when the "
|
||||
#~ "application becomes active. Note that applications have to mark the "
|
||||
#~ "windows with the proper window type for this feature to work."
|
||||
#~ msgstr ""
|
||||
#~ "زمانی که روشن شد، پنجرههای سودمند )پنجرههای ابزار، گزینگان جداشده..."
|
||||
#~ "( کاربردهای غیرفعال، فقط زمانی که کاربرد فعال میشود مخفی و آشکار میشوند. "
|
||||
#~ "نکته این که کاربردها باید پنجرهها را با نوع مناسبی از پنجره برای این "
|
||||
#~ "ویژگی نشاندار کنند، تا کار کند."
|
||||
|
||||
#~ msgid "Hide utility windows for inactive applications"
|
||||
#~ msgstr "مخفی کردن پنجرههای سودمند برای کاربردهای غیرفعال"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid ""
|
||||
#~ "When this option is enabled, the active screen (where new windows appear, "
|
||||
|
|
459
po/fa/kwin.po
459
po/fa/kwin.po
File diff suppressed because it is too large
Load Diff
|
@ -14,7 +14,7 @@ msgstr ""
|
|||
"Project-Id-Version: kcmkwinrules\n"
|
||||
"Report-Msgid-Bugs-To: https://bugs.kde.org\n"
|
||||
"POT-Creation-Date: 2024-05-13 00:39+0000\n"
|
||||
"PO-Revision-Date: 2024-04-18 17:30+0300\n"
|
||||
"PO-Revision-Date: 2024-02-14 18:52+0200\n"
|
||||
"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
|
||||
"Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
|
||||
"Language: fi\n"
|
||||
|
@ -842,10 +842,14 @@ msgid "No rules for specific windows are currently set"
|
|||
msgstr "Toistaiseksi ei ikkunakohtaisia sääntöjä"
|
||||
|
||||
#: ui/main.qml:89
|
||||
#, kde-kuit-format
|
||||
#, fuzzy, kde-kuit-format
|
||||
#| msgctxt "@info"
|
||||
#| msgid "Click the <interface>Add New…</interface> button below to add some"
|
||||
msgctxt "@info"
|
||||
msgid "Click <interface>Add New…</interface> to add some"
|
||||
msgstr "Lisää sääntöjä napsauttamalla <interface>Lisää uusi…</interface> alta"
|
||||
msgstr ""
|
||||
"Lisää sääntöjä napsauttamalla alta <interface>Lisää uusi…</interface> -"
|
||||
"painiketta"
|
||||
|
||||
#: ui/main.qml:97
|
||||
#, kde-format
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue