Compare commits

..

152 Commits

Author SHA1 Message Date
Vlad Zahorodnii af9b3dd54e 3rdparty: Reformat xcursor.{h,c}
CCBUG: 489241

(cherry picked from commit e678ebef29)
2024-06-27 10:33:01 +03:00
Vlad Zahorodnii 5d94ce9eac utils: Load Xcursor themes using QFile
This improves the integration of the XcursorTheme class with the rest of
the Qt ecosystem, for example it should be possible to load cursor themes
from Qt resources.

BUG: 489241

(cherry picked from commit 586a775d5b)
2024-06-27 10:32:37 +03:00
Vlad Zahorodnii 7527a9099c 3rdparty: Drop xcursor write hook
It's unused.

CCBUG: 489241

(cherry picked from commit d655b5a994)
2024-06-27 10:32:05 +03:00
l10n daemon script 75662deab3 GIT_SILENT Sync po/docbooks with svn 2024-06-27 03:08:01 +00:00
l10n daemon script 6697db2caf SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-27 03:02:59 +00:00
Oliver Beard 1177a88092 plugins/hidecursor: Set minimum to allow disabling hiding cursor on inactivity; set maximum
These changes are brought from master/6.2 into 6.1 to allow disabling hiding cursor on inactivity (setting to 0), and to have a more reasonable maximum of 60 seconds rather than the default QSlider 99.
2024-06-27 00:38:15 +01:00
Akseli Lahtinen 9b7e0b70fb WindowHeapDelegate: Label text background
Give label text background color to make it easier to distinct from the background.


BUG:483016


(cherry picked from commit 07dcede820)

840a43da WindowHeapDelegate: add a light background to the delegate item
fcb80fc7 Set background color for label only
41e9c231 Fix formatting
9487e36b Remove id
2fc1d80c Use contentWidth instead of width
70bbe672 Don't draw caption on top of icon
f1463d35 Use largeSpacing for label topmargin
0484872f Use pc3 label
0ad87b1f Use qualified access
20d47f83 Dont set the background to highlight color
df823831 Remove z's, use contentHeight
2310a19d remove unneeded property

Co-authored-by: Akseli Lahtinen <akselmo@akselmo.dev>
2024-06-26 16:47:14 +00:00
Xaver Hugl 21d8ac7885 plugins/backgroundcontrast,blur: correct support checks
On Xorg, the effects need support for OpenGL blits, but on Wayland, the
screen texture can be used instead
2024-06-26 15:37:43 +02:00
Xaver Hugl a95a2196f3 opengl/glframebuffer: handle missing support for blits on Wayland
If OpenGL blits aren't supported, we can still copy the area by sampling the
texture for the screen on Wayland

BUG: 484193
2024-06-26 15:37:42 +02:00
Xaver Hugl 40a2dd823b opengl: glBufferStorage is not supported on GL ES by default
CCBUG: 484193
2024-06-26 15:37:41 +02:00
l10n daemon script b3ef2d7c3f SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-26 03:02:17 +00:00
Xaver Hugl d2cbdbab30 core/renderloop: assume high render times if the last frame has been a while ago
This helps avoid some frame drops after the GPU may have went into a lower power
state. While this isn't generally noticeable, avoiding this makes noticing and
debugging actually relevant frame drops easier

CCBUG: 488843


(cherry picked from commit c5fb21fd8b)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-25 16:57:35 +00:00
Jonathan Riddell 4eeb5c8ba6 update version for new release 2024-06-25 17:45:28 +01:00
Xaver Hugl b819606a74 opengl/eglcontext: bail out early if we can't use complex shaders
Some old hardware is very limited in the amount of instructions it can support.
In order to not have KWin fail to composite, reject using hardware acceleration
in this case and fall back to llvmpipe or QPainter

BUG: 482868


(cherry picked from commit 5a0ecdba33)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-25 13:59:13 +00:00
Vlad Zahorodnii 56dd3b6e56 scripting: Add a temporary workaround to fix build without global shortcuts
(cherry picked from commit 44ea9ee959)
2024-06-25 11:07:11 +03:00
Vlad Zahorodnii 8daf620cb5 scripting: Port gesture handlers to native gesture apis
If a SwipeGesture or a PinchGesture is cancelled, the associated QAction
is going to be triggered. It is against the expectations of the gesture
handlers.

In order to address that, this ports the gesture handlers to the native
gesture apis, which expose whether the gesture has been started or cancelled
better.

(cherry picked from commit 059f66af9a)
2024-06-25 11:07:04 +03:00
Vlad Zahorodnii ab94922e32 scene: Drop ItemRendererOpenGL::RenderNode::scale
It's unused.

(cherry picked from commit c958a75e2b)
2024-06-25 10:13:00 +03:00
Alik Aslanyan 7578f70b40 tiling: Add fallback path for the first Polonium tile
After  a new code path was triggered during Workspace::rearrange call.
When first Polonium window opens on any screen, there is no active tile yet.
This forces geometry calculation in Window::checkWorkspacePosition -> Window::ensureSpecialStateGeometry
To return empty QRect, which depending on the screen arrangement will move window to the other screen.

This confuses Polonium plugin, as it receives wrong outputChanged signal in scripting API.

BUG: 488898
Signed-off-by: Alik Aslanyan <inline0@pm.me>
(cherry picked from commit 47ee47dcc8)
2024-06-25 09:34:22 +03:00
Vlad Zahorodnii 04113ac0cf plugins/shakecursor: Harden cursor theme loading logic
The currently used cursor theme can be different from the configured one.
For example, if the configured theme cannot be used.

In order to ensure that that case is handled well, this change makes the
shake cursor plugin uses the same cursor theme as PointerInputRedirection.

(cherry picked from commit a97c748d1c)
2024-06-25 09:01:13 +03:00
Vlad Zahorodnii d53689ed96 utils: Fix XCURSOR_PATH envvar parsing
The XCURSOR_PATH environment variable can contain "~/.icons". Unfortunately,
QDir does not expand the tilda, we need to do it ourselves.

(cherry picked from commit 1384a8d3fd)
2024-06-25 09:01:04 +03:00
Vlad Zahorodnii 78658d02ff plugins/shakecursor: Include high resolution breeze cursor themes
(cherry picked from commit d6b3baec8f)
2024-06-25 09:00:52 +03:00
Vlad Zahorodnii 0754376c68 utils: Allow specifying XCursor theme search paths
(cherry picked from commit 53221fd43f)
2024-06-25 09:00:45 +03:00
Vlad Zahorodnii d8b98ea98b plugins/shakecursor: Display default cursor shape
At the moment, the shake cursor respects the current cursor shape. But
there are couple of drawbacks behind doing it: the first is that it's
very likely that the cursor pixmap has low resolution, the second is
the cursor can be hidden client-side.

This change makes the shake cursor plugin load the Xcursor theme with
a high enough size and display the default cursor shape regardless of
what the client has set in order to address the two aforementioned issues.

(cherry picked from commit 28b396f44c)
2024-06-25 09:00:37 +03:00
Vlad Zahorodnii a4313d6c4e Make FocusChain ignore closed windows
At the moment, the FocusChain has Q_ASSERT()s to prevent inserting closed
windows back into the focus chain. It makes sense on paper. But, there
are code paths that could still hypothetically call FocusChain::update(),
they are harmless except the logic in the FocusChain.

So instead this change makes the FocusChain ignore closed windows, i.e.
take a more defensive approach. There are a few reasons why it's
worthwhile doing: the first is that it would prevent inserting closed
windows back into the focus chain in release builds and potentially even
back into the stack, debugging such crashes is absolutely no fun; the
second is that it would be preferred to avoid sprinkling random
isDeleted() checks in the Window code here and there and thus making
the code harder to follow.


(cherry picked from commit 6a2bc79dae)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-25 05:39:36 +00:00
Vlad Zahorodnii ccb651effe opengl: Remove code that prints gl platform details
It's printed whenever any opengl context is created, which can flood the
logs. On the other hand, this information is also included in the support
information, which we often ask in the bug reports.

BUG: 489000


(cherry picked from commit ad4e27f5ef)

0003063b opengl: Remove code that print gl platform details

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-25 05:24:46 +00:00
Xaver Hugl 9e01058663 core/renderloop: also log the predicted render time
It can be used to better judge why a frame was dropped


(cherry picked from commit 03eb688818)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-24 19:25:56 +00:00
Vlad Zahorodnii bc677cdbe9 plugins/screencast: test creating a dmabuf with the real modifier list
The test isn't useful if it tests different parameters than we're actually using


(cherry picked from commit 21a0ae31b7)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-24 15:06:42 +00:00
Xaver Hugl 060db4cc7c core/renderloop: log frame statistics into a file
Data like target vs. actual pageflip time, and render times is often needed for
debugging or optimizing render time predictions, so this commit makes KWin print
that information to a file in the home directory whenever KWIN_LOG_PERFORMANCE_DATA
is set.

CCBUG: 488843


(cherry picked from commit a169114fee)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-24 13:40:07 +00:00
Aleix Pol 3cb7642fed plugins/slidingpopups: adopt input panels from when they're added
Now that they will be shown and hidden in the proper state, we can set
up the input panel slide as the window gets added and ignore the
geometry changes that it will have in its lifetime.
2024-06-24 15:07:09 +02:00
Aleix Pol c339df8d66 inputpanelv1window: polish window states
Do not markAsMapped an unpositioned panel, it would confuse the sliding
popups effect and force it to figure out its state in creative ways.
Mark the panel window as hidden as it gets destroyed.
2024-06-24 15:07:09 +02:00
Vlad Zahorodnii a95716c51e backends/drm: Fix DrmCrtc::queryCurrentMode() accidentally resetting m_crtc to null
Otherwise kwin will likely crash.


(cherry picked from commit 1dbef2d5ed)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-24 11:53:54 +00:00
l10n daemon script 22af2eeb1d SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-22 03:08:16 +00:00
Vlad Zahorodnii 24c9ed3bde plugins/glide: Subdivide window quad grid
The way the glide effect works is that it takes 2D geometry and applies
the perspective projection to it on the CPU side. The reason we do it is
that the scene is 2D.

However, this leaves us with the well known problem where a texture
that's mapped to a trapezoid won't be correctly interpolated along the
diagonal.

It can addressed by performing a perspective division in the fragment
shader, but given the way the effect is structured, it's off the table. So
instead subdivide the window grid.

BUG: 488840


(cherry picked from commit 7eb9f75af2)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-21 13:05:02 +00:00
Xaver Hugl 2cc826067a plugins/zoom: do colorspace conversions between the screen textures
Otherwise colors and especially brightness levels can be quite wrong when
the textures are used on a different screen

BUG: 488839


(cherry picked from commit 9293df2681)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-21 12:34:13 +00:00
Vlad Zahorodnii adcb15c4de Add closed window guards in X11Window::doSetXYZ() methods
It won't hurt to have them.


(cherry picked from commit 16f6473f56)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-21 05:50:17 +00:00
l10n daemon script 717cda80e2 GIT_SILENT Sync po/docbooks with svn 2024-06-21 03:01:35 +00:00
Vlad Zahorodnii 64f1455b11 plugins/shakecursor: Ignore animation speed
From the user perspective, shaking cursor is not perceived as an
animation, so let's ignore the global animation speed factor.

BUG: 488813


(cherry picked from commit 9276d28b3d)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-20 19:41:21 +00:00
Xaver Hugl b90a5346de wayland_server: create a new screen locker connection when the greeter gets restarted
Otherwise, Wayland objects and protocol errors can cause the new instance to not start


(cherry picked from commit 92f1fabe5b)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-20 12:40:23 +00:00
David Redondo b33b6c1935 plugins/eis: Make input capture activation ids unsigned
The portal API is specified with unsigned ids. Let's make them
unsigned all the way through.


(cherry picked from commit 1a916293dc)

Co-authored-by: David Redondo <kde@david-redondo.de>
2024-06-19 12:11:23 +00:00
Xaver Hugl ed1bb6c6f0 autotests: add Xwayland scale changes to the output changes test
CCBUG: 487409
(cherry picked from commit e16069ae77)
2024-06-18 15:24:39 +02:00
Xaver Hugl c0e3b67107 workspace: also update xwayland scale when not changing the output order
(cherry picked from commit 4f5fce8b7a)
2024-06-18 15:24:35 +02:00
Jonathan Riddell 77c9368f89 update version for new release 2024-06-18 11:38:45 +00:00
David Redondo fd1de65a85 Sync xwayland eavesdropping default in kwin.kcfg
Amends a136a159f9 which changed the value in the kcfg file that the kcm reads, KWin uses options.kcfg
4f322e24d3 changed the in code default but this will be later overriden when loading the options. 


(cherry picked from commit 1b1af29de9)

Co-authored-by: David Redondo <kde@david-redondo.de>
2024-06-18 07:51:19 +00:00
l10n daemon script c590686cb0 GIT_SILENT Sync po/docbooks with svn 2024-06-18 03:09:27 +00:00
Vlad Zahorodnii 5d94f3a99b Remove code that updates the focus chain in Window::setSkipTaskbar()
skipsTaskbar() doesn't influence whether the window wants input.


(cherry picked from commit 7fca508619)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-17 20:20:49 +00:00
Vlad Zahorodnii 2abba236ba Get rid of extra string allocations in src/inputmethod.cpp
(cherry picked from commit 0fc6c6800e)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-17 19:55:26 +00:00
Vlad Zahorodnii 28fd18e642 wayland: Fix buffer ref'ing in org_kde_kwin_shadow.commit
In case the current state and the pending state have the same buffer for
a particular side or a corner, that buffer can be prematurely released
because the buffer in the current state is unreferenced first.

The ref/unref order should be vice versa to ensure that the GraphicsBuffer
is not released prematurely.


(cherry picked from commit 1a7c94b692)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-17 12:10:47 +00:00
l10n daemon script 7b879c7712 GIT_SILENT Sync po/docbooks with svn 2024-06-17 03:11:05 +00:00
l10n daemon script 4b1ecec1b8 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-17 03:04:06 +00:00
Xaver Hugl a095407e7b backends/drm: don't do direct scanout when HDR brightness isn't 1
Otherwise the brightness multiplier doesn't get applied


(cherry picked from commit 178d49093c)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-16 18:57:03 +00:00
l10n daemon script 5b792753cf GIT_SILENT Sync po/docbooks with svn 2024-06-16 03:02:20 +00:00
l10n daemon script 3e8a687c55 GIT_SILENT Sync po/docbooks with svn 2024-06-15 03:00:54 +00:00
Vlad Zahorodnii f74d75d1e0 plugins/nightlight: Guard against invalid timings in the config
Morning and evening timings should be ordered correctly. When computing
the daylight duration, that ternary operator should not be needed and it
hides other bugs.


(cherry picked from commit 786b3ffbae)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-14 15:20:41 +00:00
Vlad Zahorodnii 61ad593b9d plugins/nightlight: Remove premature optimization in updateTransitionTimings()
There are a couple of reasons why it's worth removing it:

- it's error prone. If one forgets to pass correct "force" flag, night
  light will break
- it contributes some complexity
- updateTransitionTimings() is not called in any hot path and the code
  that calculates the position of the Sun is not resource intensive


(cherry picked from commit 07f266e7c7)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-14 14:36:52 +00:00
Vlad Zahorodnii c5bd3e059e plugins/screencast: Check compositing type
Screencasting only works with OpenGL compositing at the moment.

(cherry picked from commit 5fe9e9c756)
2024-06-14 16:07:20 +03:00
Vlad Zahorodnii 4aa024cdb2 plugins/nightlight: Make Night Light more robust to QTimer firing slightly earlier
Currently, resetSlowUpdateTimers() will start a timer that will pass
m_next.first as the current time to resetSlowUpdateTimers(). This kind
of works, but there are more code paths where updateTransitionTimings()
can be called.

This change hardens updateTransitionTimings() against the current time
being very close to the start of the next transition by introducing a
time fudge factor.

If we are currently 1 second away from the start of the next transition,
then it is assumed that that transition has been reached, and we need
to calculate the timings of a transition after that.


(cherry picked from commit fef2bfb93f)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-14 12:25:42 +00:00
Vlad Zahorodnii cc741eaf4d Make Window::closeWindow() noop if the window is already closed
The surface handle can be dropped by that time. Also, there is no point
to ask the client to close the window again if it's already closed.


(cherry picked from commit ad98069618)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-14 11:45:48 +00:00
David Redondo 6745be3092 Also wake up screens on tablet interactions
BUG:451359
FIXED-IN:6.1.1


(cherry picked from commit c2141dc4ef)

Co-authored-by: David Redondo <kde@david-redondo.de>
2024-06-14 07:05:49 +00:00
Vlad Zahorodnii 94d5925629 plugins/nightlight: Ensure the target temperature remains within reasonable bounds
The interpolated temperature can get out of the bounds of [target1, target2]
if the current time is slightly earlier than m_prev.first, which can be
unexpected. This change addresses that by adding a relevant guard.

(cherry picked from commit f46174453d)
2024-06-14 06:50:48 +00:00
l10n daemon script 4229b19946 GIT_SILENT Sync po/docbooks with svn 2024-06-14 03:04:56 +00:00
Vlad Zahorodnii 83fc982391 Avoid sending X11 sync request if new logical geometry doesn't change the device geometry
There are two mechanisms to throttle ConfigureNotify events during
interactive resize:

- either using XSync
- or by a dummy QTimer

The QTimer approach is pretty straightforward: the wm configures the
window, blocks the interactive resize operation and arms a timer to
unblock it some time later in the future.

With the xsync approach, the wm sends an xsync request, makes a
call to XConfigureWindow(), and blocks interactive resize until
the xsync request is acked by the client. When the client sees the
ConfigureNotify event, it is going to repaint and ack the xsync request.
When the xsync request is acked, the wm will apply new geometry and
unblock interactive resize.

After the scaling changes, the logical geometry can have some fractional
part, which gets rounded when configuring the X windows. Due to that,
it's possible to encounter the case where the logical geometry changes,
but the native/device geometry does not due to std::round(). In that
case, the wm should not send an xsync request because the client won't
ack it because the device geometry has not changed.

BUG: 488223
(cherry picked from commit 21a45c2700)
2024-06-13 11:46:43 +03:00
Vlad Zahorodnii cb5dd01c0d autotests: Add a missing mock definition of Xcb::toXNative(QRectF)
(cherry picked from commit 4db2742e96)
2024-06-13 11:46:36 +03:00
Sam James b9ec66615f
watchdog: add includes for geteuid
05a3e2bad9 added `geteuid` use but didn't
add the needed headers. This works by chance on libstdc++ systems via
transitive includes, but it doesn't work on libc++ systems, as reported
downstream in Gentoo at https://bugs.gentoo.org/933120.

(cherry picked from commit 31a3961c4c)
2024-06-13 01:42:04 +01:00
Vlad Zahorodnii 80eed7459d wayland: Remove unnecessary wl_surface resource check
The lifetime of SurfaceInterface matches the lifetime of the corresponding
wl_resource.

(cherry picked from commit c2ca1cc33d)
2024-06-12 16:54:00 +03:00
Vlad Zahorodnii 450225a3bd wayland: Clean up action matching connections when the target dnd surface dies
(cherry picked from commit 8fb3348600)
2024-06-12 16:53:53 +03:00
Vlad Zahorodnii c28a1355f2 wayland: Fix a crash in dnd action matching
In order to match dnd actions, we need both a data source and a data
offer. If the preferred actions of either change, then a new dnd
must be chosen.

The code that sets up the monitoring of the preferred actions of the
data offer sets the correct receiver context object (data source).

But the code that sets up the monitoring of the preferred actions of
the data source uses the data source as the receiver context object,
however we would like to break the matchOffers connection when either
the data source or the data offer is destroyed.

(cherry picked from commit 877d220bfe)
2024-06-12 16:53:46 +03:00
Vlad Zahorodnii 98e8ea5479 Fix registering touch screen edge actions after the screen edge has been reserved
After the screen edge is reserved, the touch screen gestures will be
registered or unregistered when the Edge::activatesForTouchGesture()
signal is emitted.

On the other hand, Edge::reserveTouch() lacks code to emit that signal,
which results in touch screen gesture not working if the same screen
edge is reserved both for pointer and touch input.

BUG: 451349


(cherry picked from commit 6be238e622)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-12 12:42:43 +00:00
Xaver Hugl daf4d58276 backends/drm: set scaling mode to full aspect with generated modes on internal displays
While the scaling mode has caused some issues with external displays, we've had several
reports that using "unify outputs" has caused the internal display to no longer show
anything, as it changes to an unsupported mode. This sets the scaling mode so that the
driver handles the scaling internally, instead of leaving it up to the panel, and it only
does so on internal displays with generated modes, to minimize the risk of further breakage.

BUG: 488111


(cherry picked from commit 35a7e30952)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-12 12:12:53 +00:00
Vlad Zahorodnii 3d7a0b9027 x11window: enable startSystemMove/Resize which is triggered from touch events
Signed-off-by: Jie Liu <liujie01@kylinos.cn>


(cherry picked from commit 131c5399b3)

Co-authored-by: Jie Liu <liujie01@kylinos.cn>
2024-06-12 06:47:29 +00:00
l10n daemon script 768b3eb1ee GIT_SILENT Sync po/docbooks with svn 2024-06-12 03:10:51 +00:00
Jonathan Riddell bd0f1c039f update version for new release 2024-06-11 20:51:10 +00:00
Jonathan Riddell e9f8e4e064 update version for new release 2024-06-11 20:39:53 +00:00
Vlad Zahorodnii 2f3d759ed4 plugins/screencast: Preserve modifier order
The SPA_FORMAT_VIDEO_modifier property has the following format:

    preferred_value,alternative1,alternative2,...

The preferred value is usually the same as the first alternative value.
It can also happen that the modifier list the compositor has supplied is
not good either and it contains duplicate entries, specifically
`DRM_FORMAT_MOD_INVALID` to indicate that modifier-less buffers are
supported.

In order to deal with that, the screencast plugin removes the
duplicates by sorting the modifier list and then using std::unique().

That is not good, there is no written rule that the order of the
modifiers passed to the graphics buffer allocator matters but it
typically does, some drivers in mesa assume that the modifiers are
sorted in the preference order. The graphics buffer allocator might be
also very lazy and just look at the first supplied modifier instead of
wisely choosing the best modifier.

This change makes the ScreenCastStream remove the duplicate modifiers
in a more conservative fashion preserving the relative order of the
modifiers. It also removes an extra `{DRM_FORMAT_MOD_INVALID}` because
this kind of thing should be dictated by the render backend.


(cherry picked from commit 64b02cf464)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-11 15:38:42 +00:00
l10n daemon script aaa20b5a98 GIT_SILENT Sync po/docbooks with svn 2024-06-11 03:08:01 +00:00
Vlad Zahorodnii 4b3f6a4312 Prevent potentially adding closed windows to the attention chain
CCBUG: 486693


(cherry picked from commit cd2d5b07d5)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-10 13:31:30 +00:00
Vlad Zahorodnii 587b99588e wayland: Initialize xdg-toplevel size hints to 0,0
QSize() initializes the width and the height to -1x-1 by default.

(cherry picked from commit cfbee55c2a)
2024-06-10 15:39:43 +03:00
Vlad Zahorodnii dde2a56f73 wayland: Fix one dimensional size constraints
QSize::isEmpty() will return true if either dimension is 0. On the other
hand, given the current language in the spec, it seems like the client
is allowed to set size constraints per dimension.

BUG: 488260
(cherry picked from commit 61332caa20)
2024-06-10 15:39:36 +03:00
Xaver Hugl ea83fc0052 core/renderbackend: check for the renderloop being deleted
Output frames can outlive the output they were created for, so the render loop
might also be deleted by the time the output frame is destroyed or presented

BUG: 487701


(cherry picked from commit 0c5ee47892)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-10 12:01:34 +00:00
Vlad Zahorodnii f3156532bc wayland: Drop unused global from interface blacklist
This was deleted when we added pipewire support


(cherry picked from commit 4b58f6c207)

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
2024-06-10 08:16:36 +00:00
l10n daemon script d5ba7e181d GIT_SILENT Sync po/docbooks with svn 2024-06-10 03:41:57 +00:00
l10n daemon script 252d0215e6 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-10 03:23:09 +00:00
l10n daemon script 12d49c3ce7 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-09 02:59:58 +00:00
l10n daemon script 964260d0e5 GIT_SILENT Sync po/docbooks with svn 2024-06-08 03:08:32 +00:00
Xaver Hugl c4d4d3afaa workspace: restrict showing windows because HideUtilityWindowsForInactive=false to actual utility windows
BUG: 413549


(cherry picked from commit a6a85466cd)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-07 19:15:23 +00:00
Xaver Hugl 15ffcda06e placement: if a window can't be placed maximized, place it centered
It's closer to what maximized does than minimal overlapping

BUG: 438572


(cherry picked from commit f6540283d5)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-07 18:53:03 +00:00
Vlad Zahorodnii 35b3fc0bb1 plugins/nightlight: Fix current time changing after updating transitions
When the slow update timer fires, it's going to pass m_next.first as the
current time in order to calculate the next transition timings. After
the timings have been calculated, the slow update timer will be started
with an interval of "todayNow.msecsTo(m_next.first)". Since todayNow
is a reference to m_next.first, the time diff will be 0, which will
throw off the night light manager. To fix that, make a copy of m_next.first
and then pass the copy as the current date time to resetSlowUpdateTimers().

BUG: 487901


(cherry picked from commit 83502e29a9)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-07 15:27:20 +00:00
Xaver Hugl c0ca013175 workspace,window: don't elevate windows during electric border tiling / maximizing
Instead, move the outline below the window, so that the visual order of things stays the
same. This also fixes a visual glitch, where the outline is visible for a moment after
maximization, and is above the no-longer-elevated window

BUG: 436466
BUG: 354741


(cherry picked from commit b2ff465490)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-07 13:27:14 +00:00
Xaver Hugl 5db1cae615 backends/x11/standalone: add a nullptr check in the vblank handler
It can be called without a previous presentation in some cases

BUG: 488112


(cherry picked from commit 3bf97e87e5)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-07 00:44:45 +00:00
Xaver Hugl 1d936cf69d window: use the correct output when electric border quick tiling
BUG: 487844


(cherry picked from commit 0cd6f5cd06)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-06 16:53:53 +00:00
Xaver Hugl c778c909f1 disable the systemd watchdog by default
It wrongly kills KWin after s2idle on some systems

BUG: 487851
2024-06-06 16:13:53 +00:00
Xaver Hugl 8dfcd59361 core/renderloop: don't do triple buffering with vrr or tearing
While in theory it could be useful with both, I'm not sure that it makes sense
in practice, and the current triple buffering logic doesn't support it.

BUG: 487605


(cherry picked from commit 76739f1f2f)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-05 19:39:21 +00:00
Xaver Hugl 2334f4eaaf backends/drm: enable pipelines for VR headsets
Otherwise, the pipeline state from an earlier hotplug scenario can leave
the pipeline disabled and without a CRTC, which means leasing the output
will fail

BUG: 487938
FIXED-IN: 6.1.0
(cherry picked from commit a167657214)
2024-06-05 15:22:43 +02:00
Xaver Hugl 970c5f6ebb autotests/drm: disable testModeset
It only works with the assumption that outputs are enabled by default, which
is not the case anymore

(cherry picked from commit 47d873db94)
2024-06-05 15:22:42 +02:00
l10n daemon script e8572dfac2 GIT_SILENT Sync po/docbooks with svn 2024-06-05 03:48:20 +00:00
Xaver Hugl 80895dc465 outputconfigurationstore: split user configured and automatically set modes
If the mode the user has previously set through KScreen isn't available, this falls
back to a different mode without overwriting the user preference. If on the next
hotplug, the desired mode is available again, it then gets chosen instead of the
fallback

BUG: 484037


(cherry picked from commit 8c25784070)

Co-authored-by: Xaver Hugl <xaver.hugl@gmail.com>
2024-06-04 14:07:09 +00:00
Xaver Hugl 298cd5271f backends/drm: reset edid if the property is zero
Otherwise, a display without any EDID might be recognized as a display
that was previously connected to the same connector

(cherry picked from commit c9627dc60f)
2024-06-04 14:43:41 +02:00
Vlad Zahorodnii 3e9c2a06f3 backends/libinput: Destroy Connection in correct thread
(cherry picked from commit eea79bddd8)
2024-06-04 14:34:54 +03:00
Vlad Zahorodnii 77c17bba7c Explicitly destroy WaylandServer in ApplicationWayland destructor
Otherwise the WaylandServer will be destroyed when QCoreAppplication is
gone, which is too late.

(cherry picked from commit 7622921de6)
2024-06-04 14:34:41 +03:00
Vlad Zahorodnii eed9f8bd4a Create WaylandServer after backends
Move WaylandServer after backends so it's less tempting to use WaylandServer
in low level components.

(cherry picked from commit b4822389c3)
2024-06-04 14:34:29 +03:00
Vlad Zahorodnii f304c9e8f4 autotests: Destroy WaylandServer before Application
(cherry picked from commit d048f9aad8)
2024-06-04 14:34:12 +03:00
Vlad Zahorodnii 902e3c2a78 core: Check that GraphicsBuffer references change on the main thread
(cherry picked from commit 79238b06cf)
2024-06-04 14:34:03 +03:00
Vlad Zahorodnii f283838dde Remove orphan shortcuts for desktop grid and expose effects
BUG:487974


(cherry picked from commit a56b16e2ff)

Co-authored-by: Niccolò Venerandi <niccolo@venerandi.com>
2024-06-04 11:17:38 +00:00
David Edmundson a22a8eb122 effects: Do not call RHI QQuickRenderControl methods when using software rendering
As per the docs:
Note: This function does not need to be, and must not be, called when
using the software adaptation of Qt Quick.

This sets up RHI on the render control, which in turn sets RHI on the
window, which shouldn't exist when using software rendering.

BUG: 482663
BUG: 486078


(cherry picked from commit 8c149bb6b7)

a6826049 effects: Do not call RHI QQuickRenderControl methods when using software rendering

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
2024-06-04 08:36:30 +00:00
l10n daemon script 878bf9172f GIT_SILENT Sync po/docbooks with svn 2024-06-04 02:58:01 +00:00
Vlad Zahorodnii e1bb824eb5 Improve handling of closed windows
A layer shell window can request a screen edge without having a chance
to map the surface. In that case, no Workspace::windowRemoved() signal
is not going to be emitted because no surface has been mapped. Perhaps
it needs some re-wiring, but on the other hand, it is also more reasonable
to monitor Window::closed() signal.

With this change, the ScreenEdges manager will reject any request to
reserve a screen edge for a closed window. And in addition to that,
the ScreenEdges will unreserve screen edges when the window is closed
rather than when the window is unmapped.

CCBUG: 485318


(cherry picked from commit cadf16b12e)

1fb3e1a9 Improve handling of closed windows

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-03 14:55:01 +00:00
Vlad Zahorodnii e02367fdc7 plugins/screencast: Stop frame rate throttling timer when stream is paused
Hypothetically, m_pendingFrame can be armed when the stream is paused.
It is undesired to call recordFrame() in that case.


(cherry picked from commit 01a9eb2327)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-06-03 13:04:48 +00:00
David Edmundson b1af25bf90 xwayland: Avoid crash if processing keys after xwayland is disconnected
Whilst the XWayland input filter only runs whilst XWayland is running
there is hypothetical window between the wayland connection to xwayland
being disconnected and handleXwaylandFinished, the process exiting. This
should be guarded correctly.

BUG: 480925


(cherry picked from commit 79ef1be57b)

d55383db xwayland: Avoid crash if processing keys after xwayland is disconnected
3d6e0510 Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
2024-06-03 10:24:18 +00:00
Vlad Zahorodnii 0a52a461c3 xwayland: Initiate x-to-wayland dnd only if the seat permits it
This is mainly to avoid creating lingering m_currentDrag object if
SeatInterface::startDrag() refuses to start a dnd session.

(cherry picked from commit 8b843e647c)
2024-06-03 13:11:16 +03:00
Vlad Zahorodnii e2d32445ab wayland: Refuse starting dnd if there's another dnd session in progress
If a new drag and drop session is started while there is already one
existing, it's possible to end up in a situation where the
SeatInterface::dragEnded signal is emitted the second time when one of
the data sources is destroyed.

CCBUG: 460374
(cherry picked from commit ee4cf67371)
2024-06-03 13:11:07 +03:00
David Edmundson 6b0fb5e3ae wayland: Only load HiddenPreviews options in X11
HiddenPreviews was a hack to not inform X11 that windows were minimised,
so that their previews kept working.

On wayland the user facing setting is not visible but the value is
loaded which is a bad combination.

CCBUG: 415286


(cherry picked from commit 1c3a987d74)

2cb8a700 wayland: Only load HiddenPreviews options in X11
2024-06-03 09:34:27 +00:00
David Edmundson 60e2b59dad effects: Disable showing desktop when starting any fullscreen effect
Fullscreen effects typically will show all the windows, when the effect
ends having the windows disappear doesn't really work.
From a user point of view any full screen effect is a new task, we want
to cancel any preivous task.

BUG: 487299

(cherry picked from commit 5d90f232bd)
2024-06-02 11:12:22 +00:00
l10n daemon script 0754d00f0e SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-06-02 02:54:41 +00:00
l10n daemon script 5911940b28 GIT_SILENT Sync po/docbooks with svn 2024-06-01 03:01:05 +00:00
Vlad Zahorodnii c747f9c3a7 core: Disable Qt RHI pipeline cache
The Qt pipeline cache causes a disk sync on every load and save of a
QQuickWindow. This causes a stutter under high disk usage.

The gains from this cache are minimal on our simple scenes on PC
hardware. Especially given mesa has it's own cache, profiling on my
personal laptop showed the pipeline as being 0ms.

There is an upstream patch at
https://codereview.qt-project.org/c/qt/qtdeclarative/+/564411 .
QSaveFile still has a sync, but that should only be hit for the first
non-cached run. I'm also adding a flag to QSaveFile to fix the QML cache
and first run case. 

Tested via running kwin with `strace -e
inject=fdatasync:delay_enter=10000000` to simulate a slow flush.

BUG: 487043


(cherry picked from commit f700de56f8)

ac5aeb67 core: Disable Qt RHI pipeline cache

Co-authored-by: David Edmundson <kde@davidedmundson.co.uk>
2024-05-31 18:06:07 +00:00
Vlad Zahorodnii 3d9c8429c9 plugins/startupfeedback: Don't show bouncing cursor if cursor is invisible
BUG: 482566


(cherry picked from commit 40839e3347)

Co-authored-by: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
2024-05-31 15:14:43 +00:00
Vlad Zahorodnii 1e3bdaf841 kcms/decoration: Use "grab" and "grabbing" cursor to communicate dnd state
(cherry picked from commit 2ca81bbe32)
2024-05-31 17:34:29 +03:00
Vlad Zahorodnii 78c3aa13b3 Use "grabbing" cursor during interactive move
BUG: 483305
(cherry picked from commit d7772031b1)
2024-05-31 17:34:21 +03:00
Xaver Hugl 14172ffb8e opengl/openglcontext: correct the check for glMapBufferRange support
It's also supported with OpenGL ES 3.0

(cherry picked from commit 1195936a68)
2024-05-31 14:28:32 +02:00
Xaver Hugl 049d9db879 opengl/openglcontext: correct the check for buffer storage support
BUG: 487777
(cherry picked from commit f4f0660dbb)
2024-05-31 14:28:26 +02:00
l10n daemon script e846d011b9 GIT_SILENT Sync po/docbooks with svn 2024-05-31 03:28:54 +00:00
l10n daemon script b13ae60344 SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-05-30 03:04:49 +00:00
David Redondo 0e9b0fd404 Unset suspended state of windows that are marked for offscreen rendering
Otherwise some clients will not render anything even though we are
sending frame callbacks.
BUG:487702
FIXED-IN:6.1


(cherry picked from commit cefcdf7db5)
2024-05-29 14:54:23 +00:00
Xaver Hugl bc40f0fe60 core/renderloop: honor repaint scheduling requests from effects with vrr
Until effects are converted to schedule repaints on the item they're modifying,
we need to allow repaint scheduling from nullptr items, and handle repaints on
the (cursor) render layers to still be filtered out

BUG: 487480


(cherry picked from commit 2cf36e640f)
2024-05-29 13:14:26 +00:00
Vlad Zahorodnii 45124b63f6 Forbid activating override redirect windows
BUG: 486026


(cherry picked from commit 64ddeff3bd)
2024-05-29 11:04:31 +00:00
Łukasz Patron c4eb7f3418 scripting: Filter out windows with isClient=false in WindowModel
These windows render as empty boxes and opening them crashes the KWin.
Also, the same check is present in TabBox.

BUG: 486182


(cherry picked from commit ce57af62ec)

26d347e2 scripting: Filter out windows with isClient=false in WindowModel
2024-05-29 10:51:57 +00:00
David Redondo 97f90794ff autotests/test_xkb: Do not expect fail in fixed Qt versions
(cherry picked from commit ba7b23c41d)
2024-05-29 10:29:26 +00:00
l10n daemon script 098b76b151 GIT_SILENT Sync po/docbooks with svn 2024-05-29 03:56:32 +00:00
Vlad Zahorodnii 2899a011f8 qpa: Guard against failing to get a swapchain in platform opengl context
QOpenGLContextPrivate::setCurrentContext() was dropped because the
platform opengl context no longer uses QOpenGLFramebufferObject, which
needed QOpenGLContext::currentContext().


(cherry picked from commit 1d05f98e4b)
2024-05-28 14:08:18 +00:00
David Redondo 20191ffaa1 Use di_info_get_serial to fetch the serial number from EDID
This will also look at the "product serial string" in addition
to the actual serial number. The former is what we use elsewhere
in Plasma like the kscreen kcm.
BUG:485015
FIXED-IN:6.1


(cherry picked from commit ec1ebb6fb8)
2024-05-28 13:36:05 +00:00
l10n daemon script 354b72d800 GIT_SILENT Sync po/docbooks with svn 2024-05-28 03:02:32 +00:00
Xaver Hugl 77850217f9 core/renderloop: make repaint scheduling more robust against wrong render time estimations
When the render time estimation is much higher than the real render time, and triple buffering is
enabled, the previous logic would schedule frames multiple vblanks in advance, which could drop the
effective refresh rate by more than is necessary. This commit limits it to the second vblank after
the current time, which ensures that we hit the full refresh rate even when render time prediction
is wrong
2024-05-28 01:36:47 +02:00
Xaver Hugl ed445ede2a backends/drm: delay atomic commits until the time they're meant for
Otherwise, if render time prediction and actual render time are very different,
a lot of frames get dropped and in some cases more frames than is useful are
rendered, creating stutter instead of only unnecessary latency

BUG: 487605
2024-05-28 01:36:47 +02:00
Vlad Zahorodnii cc5dd48af3 xwayland: Fix dnd position with hidpi
(cherry picked from commit 447994581b)
2024-05-27 20:13:52 +00:00
Vlad Zahorodnii 3361d718ac Avoid using QMouseEvent in processDecorationButtonPress()
BUG: 480864
(cherry picked from commit b0ccacc983)
2024-05-27 20:13:52 +00:00
Vlad Zahorodnii 2f64b1182a Ignore button release events when double clicking
One could check that the double click timer is still active.

(cherry picked from commit fa351403ef)
2024-05-27 20:13:52 +00:00
Vlad Zahorodnii 0df9cf4f15 Revert "effects: Use unique device for replaying events to QQuickView"
It broke overview.

This reverts commit 862dae455a.

(cherry picked from commit a76ae07ee1)
2024-05-27 20:13:52 +00:00
Yifan Zhu 0c1f545d6b xkb: support converting Qt keys to keysyms
QXkbCommon::toKeysym doesn't correctly handle the case where a single Qt
key map to multiple keysyms.

BUG: 482847


(cherry picked from commit 09d4f3fda3)
2024-05-27 18:43:07 +00:00
Xaver Hugl 0d88d8ff66 wayland/linuxdrmsyncobjv1: don't emit a protocol error for unmapping a surface
(cherry picked from commit 5e122cb6c0)
2024-05-27 16:13:32 +00:00
Alois Wohlschlager 255cc9c579 window: consistently use normal keyboard modifiers for tiling
A bad rebase in commit 43e5f17547 inadvertedly
reverted half of the fix from 1f1c54ca6c. As a
result, custom tiling would appear broken again for keyboard layouts where caps
lock is achieved by pressing both shift keys at the same time. Reapply the half
of the fix that went missing.


(cherry picked from commit ae376766ef)
2024-05-27 10:06:01 +00:00
David Edmundson 0ecc01d08a effects: Use unique device for replaying events to QQuickView
When a new mouse event is made it updates the global position of that
device. This causes issues if a mouse event is forwarded with an
adjusted position then used afterwards.

`QPointingDevice::primaryPointingDevice` creates a new pointer device
internally if the seat name does not exist. It is then shared between
future usages.

BUG: 480864


(cherry picked from commit 862dae455a)
2024-05-27 09:55:17 +00:00
Xaver Hugl edcd8c9f3f cmake: bump required plasma-wayland-protocols version
(cherry picked from commit 3f0627172d)
2024-05-27 09:11:17 +00:00
David Edmundson a5e101b7d7 autotests: Improve autotests for window scaling
(cherry picked from commit 73425b13a4)
2024-05-27 08:45:29 +00:00
Vlad Zahorodnii da90a81243 Properly update move resize output when the move resize geometry changes
setMoveResizeGeometry() should be used so the preferred buffer scale and
transform are updated.


(cherry picked from commit cc031839db)
2024-05-27 07:37:08 +00:00
l10n daemon script 3aa3579816 GIT_SILENT Sync po/docbooks with svn 2024-05-27 03:07:21 +00:00
l10n daemon script 6442b2473c GIT_SILENT Sync po/docbooks with svn 2024-05-26 03:03:04 +00:00
l10n daemon script 20c89ff6de SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-05-26 02:57:00 +00:00
l10n daemon script 66341f3979 GIT_SILENT Sync po/docbooks with svn 2024-05-25 03:13:54 +00:00
l10n daemon script 395bf399da SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2024-05-25 03:08:32 +00:00
Xaver Hugl 192232e8d1 backends/drm: allow up to two composited frames to be pending at the same time
This should improve responsiveness on setups where rendering each frame takes longer
than the refresh cycle of the display.

BUG: 452119
CCBUG: 454098
2024-05-24 17:59:32 +02:00
Xaver Hugl 71628fa9c1 core/renderloop: support triple buffering
When rendering a frame takes longer than a refresh period, allow rendering to
happen before the previous frame is presented. This way the effective refresh
rate is increased, without increasing latency or impacting frame pacing more
than necessary
2024-05-24 17:59:32 +02:00
Xaver Hugl 2ab11fcb29 backends/drm: store OutputFrames in the commit objects
That way, multiple frames in flight can be tracked correctly
2024-05-24 17:59:32 +02:00
Xaver Hugl c3b43f26fb backends: move output refresh duration to compositor 2024-05-24 17:59:32 +02:00
452 changed files with 25914 additions and 24919 deletions

View File

@ -1,13 +1,12 @@
cmake_minimum_required(VERSION 3.16)
set(PROJECT_VERSION "6.1.80") # Handled by release scripts
set(PROJECT_VERSION "6.1.2") # Handled by release scripts
project(KWin VERSION ${PROJECT_VERSION})
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
@ -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)

View File

@ -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)
@ -396,32 +394,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"

View File

@ -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)

View File

@ -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;

View File

@ -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),

View File

@ -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),

View File

@ -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.

View File

@ -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));

View File

@ -3,10 +3,11 @@ Description=KDE Window Manager
PartOf=graphical-session.target
[Service]
Type=notify-reload
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kwin_wayland_wrapper --xwayland
BusName=org.kde.KWinWrapper
Slice=session.slice
WatchdogSec=15s
NotifyAccess=all
WatchdogSignal=SIGHUP
# the watchdog is disabled because of issues with s2idle and hibernate: https://github.com/systemd/systemd/issues/9538
# Type=notify-reload
# WatchdogSec=15s
# NotifyAccess=all
# WatchdogSignal=SIGHUP

View File

@ -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"

File diff suppressed because it is too large Load Diff

View File

@ -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"
@ -330,7 +330,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 +581,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 +638,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 +1279,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, "

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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 ""

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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"

View File

@ -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"

View File

@ -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

View File

@ -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"

View File

@ -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>, каб дадаць"

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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, "

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -8,8 +8,8 @@ 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: 2024-05-30 16:57+0200\n"
"Last-Translator: Mincho Kondarev <mkondarev@yahoo.de>\n"
"Language-Team: Bulgarian <kde-i18n-doc@kde.org>\n"
"Language: bg\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
#, 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;\">Без: </"
@ -1280,20 +1306,3 @@ msgstr ""
"\") </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."
#~ msgstr ""
#~ "Ако отметката е включена, помощните прозорци на неактивните програми, "
#~ "като ленти за задачи, откачащи се менюта и др., ще бъдат скривани, когато "
#~ "програмата (главния прозорец) не е активен. Когато програмата стане "
#~ "активна, те ще се показват обратно."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Скриване на помощните прозорци на неактивните програми"

File diff suppressed because it is too large Load Diff

View File

@ -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 "&সক্রিয় স্ক্রীন মাউস অনুসরণ করে"

File diff suppressed because it is too large Load Diff

View File

@ -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 "রুণা ভট্টাচার্য্য"

File diff suppressed because it is too large Load Diff

View File

@ -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"

File diff suppressed because it is too large Load Diff

View File

@ -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 "

File diff suppressed because it is too large Load Diff

View File

@ -128,19 +128,3 @@ msgstr "%1 ms"
#, kde-format
msgid "Show desktop layout indicators"
msgstr "Mostra els indicadors de la disposició dels escriptoris"
#~ msgid "1 Row"
#~ msgid_plural "%1 Rows"
#~ msgstr[0] "1 fila"
#~ msgstr[1] "%1 files"
#~ msgctxt "@action:button"
#~ msgid "Add"
#~ msgstr "Afegeix"
#~ msgid ""
#~ "This module lets you configure the navigation, number and layout of "
#~ "virtual desktops."
#~ msgstr ""
#~ "Aquest mòdul permet configurar la navegació, el nombre i la disposició "
#~ "dels escriptoris virtuals."

View File

@ -997,6 +997,3 @@ msgstr "(%1, %2)"
msgctxt "(x, y) coordinates separator in size/position"
msgid "x"
msgstr "x"
#~ msgid "Set window type"
#~ msgstr "Estableix el tipus de finestra"

View File

@ -28,6 +28,3 @@ msgstr "Sense"
#, kde-format
msgid "Do not use any virtual keyboard"
msgstr "No usar cap teclat virtual"
#~ msgid "This module lets you choose the virtual keyboard to use."
#~ msgstr "Aquest mòdul permet triar el teclat virtual a usar."

View File

@ -126,27 +126,3 @@ msgstr "Sempre"
#, kde-format
msgid "Re-enable OpenGL detection"
msgstr "Torna a activar la detecció de l'OpenGL"
#~ msgid "Latency:"
#~ msgstr "Latència:"
#~ msgid "Force lowest latency (may cause dropped frames)"
#~ msgstr "Força una latència més baixa (pot provocar la pèrdua de fotogrames)"
#~ msgid "Prefer lower latency"
#~ msgstr "Prefereix una latència baixa"
#~ msgid "Balance of latency and smoothness"
#~ msgstr "Equilibri entre latència i suavitat"
#~ msgid "Prefer smoother animations"
#~ msgstr "Prefereix animacions més suaus"
#~ msgid "Force smoothest animations"
#~ msgstr "Força animacions més suaus"
#~ msgid ""
#~ "Reduce latency by allowing screen tearing artifacts in fullscreen windows"
#~ msgstr ""
#~ "Redueix la latència permetent defectes d'esquinçament pantalla en "
#~ "finestres a pantalla completa"

View File

@ -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"
@ -1284,34 +1311,3 @@ msgstr ""
"pestanyes («Alt+Tab»)</em> entren en contradicció amb la política i no "
"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, "
#~ "the active screen is the screen containing the focused window."
#~ msgstr ""
#~ "Quan aquesta opció està activada, la pantalla activa (p. ex. a on "
#~ "apareixen les noves finestres) és la pantalla amb el punter del ratolí. "
#~ "Quan està desactivada, la pantalla activa és la pantalla amb la finestra "
#~ "enfocada."
#~ msgid "Active screen follows &mouse"
#~ msgstr "La finestra activa segueix el &ratolí"

File diff suppressed because it is too large Load Diff

View File

@ -127,21 +127,3 @@ msgstr "Sempre"
#, kde-format
msgid "Re-enable OpenGL detection"
msgstr "Torna a activar la detecció d'OpenGL"
#~ msgid "Latency:"
#~ msgstr "Latència:"
#~ msgid "Force lowest latency (may cause dropped frames)"
#~ msgstr "Força una latència més baixa (pot provocar la pèrdua de fotogrames)"
#~ msgid "Prefer lower latency"
#~ msgstr "Preferix una latència baixa"
#~ msgid "Balance of latency and smoothness"
#~ msgstr "Equilibri entre latència i suavitat"
#~ msgid "Prefer smoother animations"
#~ msgstr "Preferix animacions més suaus"
#~ msgid "Force smoothest animations"
#~ msgstr "Força animacions més suaus"

View File

@ -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

View File

@ -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

View File

@ -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 ""

View File

@ -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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -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"

File diff suppressed because it is too large Load Diff

View File

@ -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 "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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 "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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 "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -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, "

File diff suppressed because it is too large Load Diff

View File

@ -18,7 +18,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-02 18:17+0300\n"
"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
"Language-Team: Finnish <kde-i18n-doc@kde.org>\n"
@ -336,7 +336,7 @@ msgstr "Lisää peittävyyttä"
#. 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
@ -590,20 +590,47 @@ msgid ""
"Allow apps to remember the positions of their own windows, if they support it"
msgstr "Salli sitä tukevien sovellusten muistaa omien ikkunoittensa sijainnit"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
#: advanced.ui:123
#, kde-format
msgid "&Special windows:"
msgstr "&Erikoisikkunat:"
# ”Apuikkuna” yhtenäisyyden vuoksi: seuraavassa id:ssä oli jo näin
#. 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 ""
"Kun käytössä, passiivisten sovellusten apuikkunat (työkaluikkuna, "
"poistovalikot…) piilotetaan, ja näytetään vasta sovelluksen taas "
"aktivoiduttua. Huomaa, että sovellusten tulee merkitä ikkunansa oikeaan "
"ikkunatyyppiin, jotta ominaisuus toimisi."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Piilota passiivisten sovellusten apuikkunat"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#: advanced.ui:143
#, kde-format
msgid "Virtual Desktop behavior:"
msgstr "Virtuaalityöpöydän toiminta:"
#. 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 "Aktivoitaessa ikkuna toisella virtuaalityöpöydällä:"
#. 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 "
@ -622,13 +649,13 @@ msgstr ""
"saa ikkunan siirtymään aktiiviselle virtuaalityöpöydälle.</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 "Vaihda sille virtuaalityöpöydälle"
#. 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 "Tuo ikkuna nykyiselle virtuaalityöpöydälle"
@ -1279,24 +1306,6 @@ msgstr ""
"mieluummin käytäntöä <em>kohdistus seuraa osoitinta hiiren ensisijaisuus</"
"em>!"
#~ msgid "&Special windows:"
#~ msgstr "&Erikoisikkunat:"
# ”Apuikkuna” yhtenäisyyden vuoksi: seuraavassa id:ssä oli jo näin
#~ 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 ""
#~ "Kun käytössä, passiivisten sovellusten apuikkunat (työkaluikkuna, "
#~ "poistovalikot…) piilotetaan, ja näytetään vasta sovelluksen taas "
#~ "aktivoiduttua. Huomaa, että sovellusten tulee merkitä ikkunansa oikeaan "
#~ "ikkunatyyppiin, jotta ominaisuus toimisi."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Piilota passiivisten sovellusten apuikkunat"
#~ msgid ""
#~ "When this option is enabled, the active screen (where new windows appear, "
#~ "for example) is the screen containing the mouse pointer. When disabled, "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2024-05-06 16:26+0200\n"
"Last-Translator: Xavier Besnard <xavier.besnard@kde.org>\n"
"Language-Team: French <French <kde-francophone@kde.org>>\n"
@ -346,7 +346,7 @@ msgstr "Augmenter l'opacité"
#. 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,47 @@ msgstr ""
"Permettre aux applications le prenant en charge de se rappeler la position "
"de leurs fenêtres"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
#: advanced.ui:123
#, kde-format
msgid "&Special windows:"
msgstr "Fenêtres &spéciales :"
#. 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 ""
"Lorsque cette option est sélectionnée, les fenêtres d'utilitaires (fenêtres "
"d'outils, menus séparés, etc.) des applications inactives seront cachées et "
"ne se ré-afficheront que lorsque celles-ci redeviennent actives. Veuillez "
"noter que les applications devront appliquer une marque spécifique sur "
"chacune de leurs fenêtres d'utilitaires pour que cela fonctionne."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Cacher les fenêtres d'utilitaires pour les applications inactives"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#: advanced.ui:143
#, kde-format
msgid "Virtual Desktop behavior:"
msgstr "Comportement du bureau virtuel :"
#. 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 "Lors de l'activation d'une fenêtre sur un bureau virtuel différent :"
#. 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 "
@ -639,13 +666,13 @@ msgstr ""
"transfert de la fenêtre vers le bureau virtuel actif. </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 "Basculer vers ce bureau virtuel"
#. 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 "Déplacer une fenêtre vers le bureau virtuel courant"
@ -1309,25 +1336,6 @@ msgstr ""
"fonctionneront pas. Vous aimerez très probablement utiliser <em>Le focus "
"suit la souris (Précédence de la souris)</em> à la place !"
#~ msgid "&Special windows:"
#~ msgstr "Fenêtres &spéciales :"
#~ 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 ""
#~ "Lorsque cette option est sélectionnée, les fenêtres d'utilitaires "
#~ "(fenêtres d'outils, menus séparés, etc.) des applications inactives "
#~ "seront cachées et ne se ré-afficheront que lorsque celles-ci redeviennent "
#~ "actives. Veuillez noter que les applications devront appliquer une marque "
#~ "spécifique sur chacune de leurs fenêtres d'utilitaires pour que cela "
#~ "fonctionne."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Cacher les fenêtres d'utilitaires pour les applications 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, "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2010-07-13 12:09+0100\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frysk <kde-i18n-fry@kde.org>\n"
@ -344,7 +344,7 @@ msgstr "Trochsichtichheid wizigje"
#. 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 "Finsters"
#. 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 ""
"Wannear ynskeakele sille helpfinsters (arkfinster, ôfskuormenu's,...) fan "
"net aktive finsters ferstoppe wurde en allinne te sjen wêzen as it programma "
"aktyf wurdt. Tink derom dat programma's de finsters moatte markearje mei de "
"juste finstertype om dizze funksje goed wurkje te litten."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Helpfinsters fan net aktive programma's ferstopje"
#. 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 ""
@ -1332,25 +1359,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "Finsters"
#~ 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 ""
#~ "Wannear ynskeakele sille helpfinsters (arkfinster, ôfskuormenu's,...) fan "
#~ "net aktive finsters ferstoppe wurde en allinne te sjen wêzen as it "
#~ "programma aktyf wurdt. Tink derom dat programma's de finsters moatte "
#~ "markearje mei de juste finstertype om dizze funksje goed wurkje te litten."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Helpfinsters fan net aktive programma's ferstopje"
#, fuzzy
#~| msgid ""
#~| "When this option is enabled, the active Xinerama screen (where new "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2004-12-03 14:52-0500\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@ -349,7 +349,7 @@ msgstr "Ardaigh an Teimhneacht"
#. 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
@ -628,20 +628,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 "Windows"
msgid "&Special windows:"
msgstr "Fuinneoga"
#. 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 ""
"Leis an rogha seo, cuirfear fuinneoga áirithe (fuinneoga uirlise, roghchláir "
"stróicthe, ...) d'fheidhmchláir neamhghníomhacha i bhfolach agus ní "
"thaispeánfar iad go dtí go n-éireoidh an feidhmchlár gníomhach. Tabhair faoi "
"deara go gcaithfidh feidhmchláir na fuinneoga a mharcáil leis an gcineál cuí "
"fuinneoige chun an ghné seo a oibriú mar is ceart."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Folaigh fuinneoga áirge d'fheidhmchláir neamhghníomhacha"
#. 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 "
@ -654,13 +682,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 ""
@ -1337,26 +1365,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "Fuinneoga"
#~ 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 ""
#~ "Leis an rogha seo, cuirfear fuinneoga áirithe (fuinneoga uirlise, "
#~ "roghchláir stróicthe, ...) d'fheidhmchláir neamhghníomhacha i bhfolach "
#~ "agus ní thaispeánfar iad go dtí go n-éireoidh an feidhmchlár gníomhach. "
#~ "Tabhair faoi deara go gcaithfidh feidhmchláir na fuinneoga a mharcáil "
#~ "leis an gcineál cuí fuinneoige chun an ghné seo a oibriú mar is ceart."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Folaigh fuinneoga áirge d'fheidhmchláir neamhghníomhacha"
#, fuzzy
#~| msgid ""
#~| "When this option is enabled, the active Xinerama screen (where new "

File diff suppressed because it is too large Load Diff

View File

@ -13,7 +13,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-10-31 06:26+0100\n"
"Last-Translator: Adrián Chaves (Gallaecio) <adrian@chaves.io>\n"
"Language-Team: Galician <proxecto@trasno.gal>\n"
@ -334,7 +334,7 @@ msgstr "Aumentar a opacidade"
#. 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 @@ msgid ""
"Allow apps to remember the positions of their own windows, if they support it"
msgstr "Permitir ás aplicacións lembrar a posición das súas xanelas, se poden."
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
#: advanced.ui:123
#, kde-format
msgid "&Special windows:"
msgstr "Xanelas e&speciais:"
#. 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 ""
"Cando se sinale, as xanelas de utilidade (xanelas de ferramentas, menús "
"desprendíbeis …) das aplicacións inactivas amosaranse só cando a aplicación "
"se active. Lembre que as aplicacións deben etiquetar as xanelas co tipo "
"axeitado para que esta funcionalidade funcione."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Agochar as xanelas de utilidades das aplicacións inactivas."
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#: advanced.ui:143
#, kde-format
msgid "Virtual Desktop behavior:"
msgstr "Comportamento dos escritorios virtuais:"
#. 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 "Ao activar unha xanela noutro escritorio virtual:"
#. 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 ""
"salte ao escritorio virtual 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 a xanela ao escritorio virtual actual"
@ -1279,23 +1305,6 @@ msgstr ""
"máis probábel é que prefira <em>Foco tras o rato (precedencia do rato)</em> "
"en vez de isto!"
#~ msgid "&Special windows:"
#~ msgstr "Xanelas e&speciais:"
#~ 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 ""
#~ "Cando se sinale, as xanelas de utilidade (xanelas de ferramentas, menús "
#~ "desprendíbeis …) das aplicacións inactivas amosaranse só cando a "
#~ "aplicación se active. Lembre que as aplicacións deben etiquetar as "
#~ "xanelas co tipo axeitado para que esta funcionalidade funcione."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Agochar as xanelas de utilidades das aplicacións 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, "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2008-09-30 11:17+0530\n"
"Last-Translator: Sweta Kothari <swkothar@redhat.com>\n"
"Language-Team: Gujarati\n"
@ -316,7 +316,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
@ -540,20 +540,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 "
@ -566,13 +589,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 ""
@ -1156,11 +1179,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "વિન્ડો"
#~ msgctxt "NAME OF TRANSLATORS"
#~ msgid "Your names"
#~ msgstr "શ્ર્વેતા કોઠારી"

File diff suppressed because it is too large Load Diff

View File

@ -19,7 +19,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-04-08 18:45+0300\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: צוות התרגום של KDE ישראל\n"
@ -337,7 +337,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 +581,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 +638,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 "העברת החלון לשולחן העבודה הווירטואלי הנוכחי"
@ -1243,22 +1268,6 @@ msgstr ""
"+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."
#~ 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, "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2021-08-21 16:25+0530\n"
"Last-Translator: Raghavendra Kamath <raghu@raghukamath.com>\n"
"Language-Team: kde-hindi\n"
@ -345,7 +345,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
@ -591,20 +591,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 "
@ -617,13 +640,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 ""
@ -1240,14 +1263,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 "रविशंकर श्रीवास्तव, जी. करूणाकर"

File diff suppressed because it is too large Load Diff

View File

@ -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: 2009-02-09 18:43+0530\n"
"Last-Translator: Ravishankar Shrivastava <raviratlami@aol.in>\n"
"Language-Team: Hindi <kde-i18n-doc@lists.kde.org>\n"
@ -345,7 +345,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
@ -588,20 +588,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 "
@ -614,13 +637,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 ""
@ -1234,14 +1257,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "विंडोज"
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "अक्रिय अनुपरयोग मन बर यूटिलिटि विंडो लुकाव."
#~ msgid "Active screen follows &mouse"
#~ msgstr "सक्रिय स्क्रीन मुसुआ के पीछू रहिही (&m)"

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: kcmkwm 0\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: 2011-03-04 19:01+0100\n"
"Last-Translator: Marko Dimjasevic <marko@dimjasevic.net>\n"
"Language-Team: Croatian <kde-croatia-list@lists.sourceforge.net>\n"
@ -347,7 +347,7 @@ msgstr "Promijeni neprozirnost"
#. 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
@ -626,20 +626,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 "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 ""
"Kada je uključena, uslužni prozori (alatni prozori, nevezane izbornike…) "
"nekativnih aplikacija će biti sakriveni i prikazani samo kada aplikacija "
"postane aktivna. Imajte na umu da aplikacije moraju imati ispravno označene "
"tipove prozora, kako bi ova značajka radila."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Sakrij uslužne prozore u neaktivnim aplikacijama"
#. 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 "
@ -652,13 +679,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 ""
@ -1327,25 +1354,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "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 ""
#~ "Kada je uključena, uslužni prozori (alatni prozori, nevezane izbornike…) "
#~ "nekativnih aplikacija će biti sakriveni i prikazani samo kada aplikacija "
#~ "postane aktivna. Imajte na umu da aplikacije moraju imati ispravno "
#~ "označene tipove prozora, kako bi ova značajka radila."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Sakrij uslužne prozore u neaktivnim aplikacijama"
#, fuzzy
#~| msgid ""
#~| "When this option is enabled, the active Xinerama screen (where new "

File diff suppressed because it is too large Load Diff

View File

@ -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: 2008-11-27 23:55+0100\n"
"Last-Translator: Eduard Werner <edi.werner@gmx.de>\n"
"Language-Team: en_US <kde-i18n-doc@lists.kde.org>\n"
@ -348,7 +348,7 @@ msgstr "Opaknosć změnić"
#. 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
@ -580,20 +580,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 "Wokna"
#. 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 "
@ -606,13 +629,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 ""
@ -1196,11 +1219,6 @@ msgid ""
"follows mouse (mouse precedence)</em> instead!"
msgstr ""
#, fuzzy
#~| msgid "Windows"
#~ msgid "&Special windows:"
#~ msgstr "Wokna"
#~ msgid "Window Behavior Configuration Module"
#~ msgstr "Konfiguraciski modul za zadźerženje woknow"

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: KDE 4.2\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-12 11:50+0100\n"
"Last-Translator: Kristof Kiszel <ulysses@fsf.hu>\n"
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
@ -332,7 +332,7 @@ msgstr "Átlátszatlanság növelése"
#. 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
@ -586,20 +586,46 @@ msgid ""
"Allow apps to remember the positions of their own windows, if they support it"
msgstr "Az alkalmazások megjegyezhetik az ablakaik pozícióját, ha támogatják"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
#: advanced.ui:123
#, kde-format
msgid "&Special windows:"
msgstr "&Speciális ablakok:"
#. 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 ""
"Ha be van kapcsolva, az eszközablakok és leválasztott menük el lesznek "
"rejtve inaktív alkalmazásoknál és csak akkor jelennek meg újra, ha az "
"alkalmazás aktívvá válik. Ez a funkció csak azokra az ablakokra vonatkozik, "
"amelyeket az alkalmazás eszköztípusúnak jelölt meg."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Az eszközablakok elrejtése inaktív alkalmazásoknál"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#: advanced.ui:143
#, kde-format
msgid "Virtual Desktop behavior:"
msgstr "Virtuális asztal működése:"
#. 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 "Ablak aktiválásakor egy másik virtuális asztalon:"
#. 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 "
@ -619,13 +645,13 @@ msgstr ""
"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 "Váltás arra a virtuális asztalra"
#. 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 "Ablak áthozása a jelenlegi virtuális asztalra"
@ -1275,23 +1301,6 @@ msgstr ""
"és nem fog működni. Valószínűleg inkább a <em>Fókuszálás egérkövetéssel - "
"Egérprecedencia</em> az Önnek való!"
#~ msgid "&Special windows:"
#~ msgstr "&Speciális ablakok:"
#~ 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 ""
#~ "Ha be van kapcsolva, az eszközablakok és leválasztott menük el lesznek "
#~ "rejtve inaktív alkalmazásoknál és csak akkor jelennek meg újra, ha az "
#~ "alkalmazás aktívvá válik. Ez a funkció csak azokra az ablakokra "
#~ "vonatkozik, amelyeket az alkalmazás eszköztípusúnak jelölt meg."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Az eszközablakok elrejtése inaktív alkalmazásoknál"
#~ msgid ""
#~ "When this option is enabled, the active screen (where new windows appear, "
#~ "for example) is the screen containing the mouse pointer. When disabled, "

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \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-04-18 11:29+0200\n"
"Last-Translator: giovanni <g.sora@tiscali.it>\n"
"Language-Team: Interlingua <kde-i18n-doc@kde.org>\n"
@ -327,7 +327,7 @@ msgstr "Augmenta opacitate"
#. 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
@ -583,20 +583,47 @@ msgstr ""
"Permitte a apps de memorar le positiones de lor proprie fenestras, si illos "
"supporta lo"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#. i18n: ectx: property (text), widget (QLabel, specialWindowsLabel)
#: advanced.ui:123
#, kde-format
msgid "&Special windows:"
msgstr "Fenestras &Special:"
#. 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 ""
"Quando active, fenestras de utilitate (fenestras de instrumentos, menus de "
"laceration,...) de applicationes inactive essera celate e los essera "
"monstrate solmente quando le application deveni active. Tu nota que "
"applicationes ha de marcar fenestras con le proprie typo de fenestra usque "
"iste characteristica functiona."
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HideUtilityWindowsForInactive)
#: advanced.ui:136
#, kde-format
msgid "Hide utility windows for inactive applications"
msgstr "Cela fenestras de utilitate pro inactive applicationes"
#. i18n: ectx: property (text), widget (QLabel, activationDesktopPolicyLabel)
#: advanced.ui:143
#, kde-format
msgid "Virtual Desktop behavior:"
msgstr "Comportamento de Scriptorio 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 "Quando activar un fenestra sur un Scriptorio Virtual differente:"
#. 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 "
@ -616,13 +643,13 @@ msgstr ""
"saltara al Scriptorio Virtual active. </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 "Commuta a quel Scriptorio 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 "Porta fenestra al Scriptorio Virtual currente"
@ -1276,24 +1303,6 @@ msgstr ""
"functionara.Probabilmente tu volerea usar in su loco <em>Foco seque mus - "
"Precedentia de mus</em>!"
#~ msgid "&Special windows:"
#~ msgstr "Fenestras &Special:"
#~ 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 ""
#~ "Quando active, fenestras de utilitate (fenestras de instrumentos, menus "
#~ "de laceration,...) de applicationes inactive essera celate e los essera "
#~ "monstrate solmente quando le application deveni active. Tu nota que "
#~ "applicationes ha de marcar fenestras con le proprie typo de fenestra "
#~ "usque iste characteristica functiona."
#~ msgid "Hide utility windows for inactive applications"
#~ msgstr "Cela fenestras de utilitate pro inactive applicationes"
#~ msgid ""
#~ "When this option is enabled, the active screen (where new windows appear, "
#~ "for example) is the screen containing the mouse pointer. When disabled, "

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More