Compare commits

..

136 Commits
46.2 ... 47.3

Author SHA1 Message Date
Florian Müllner
c815e506dd Bump version to 47.3
Update NEWS.
2025-01-12 21:59:15 +01:00
Florian Müllner
176206a38c places-menu: Remove left-over modeline
This one slipped through commit 253ddb864 ...

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/370>
(cherry picked from commit 83c41bad30)
2025-01-12 20:53:59 +00:00
Bartłomiej Piotrowski
72b2534790 ci: Switch to GNOME GitLab mirror of ci-templates
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/368>
(cherry picked from commit 0f69d7663b)
2025-01-12 20:53:59 +00:00
Florian Müllner
28ac6906c2 ci: Adapt to updated release module template
The release module moved into production now. The process changed
slightly with regard to the testing period, so we will have to
adapt the existing job a bit.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/367>
(cherry picked from commit 5d8d3601b4)
2025-01-12 20:53:59 +00:00
Florian Müllner
e30f634d08 ci: Move LINT_LOG variable out of global section
It is only used by the eslint job, so better define it there.

While at it, make sure the variable is quoted as that's considered
good practice (even when safe to use unquoted as in this case).

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/367>
(cherry picked from commit ea77b557e5)
2025-01-12 20:53:59 +00:00
Florian Müllner
aed90a3f6c ci: Use variable for meson build directory
This ensures that the value is consistent between jobs.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/367>
(cherry picked from commit 9f48149346)
2025-01-12 20:53:59 +00:00
Florian Müllner
7054010520 Revert "ci: Use meson introspect to generate artifact path"
The new release service that now moved into production expects
the tag to match the release version.

Instead of using the $VERSION-real pattern in case of error,
switch to a pre-push hook to hopefully prevent those errors
in the first place:

  https://gitlab.gnome.org/-/snippets/6710

This reverts commit 8c014a6b1d.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/367>
(cherry picked from commit 0d1b279a64)
2025-01-12 20:53:59 +00:00
Florian Müllner
cc3e2842a8 ci: Bump js image
gnome-shell switched to F41 for its JS image, follow suit.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/365>
(cherry picked from commit b30871d105)
2025-01-12 20:53:59 +00:00
Florian Müllner
f6d4e44ee4 workspace-indicator: Do not only exclude DESKTOP windows
There are other window types that should be excluded from workspace
previews, including more common ones like menus. Instead of checking
for a variety of window types, delegate the decision to mutter by
checking for the `skip-taskbar` property.

(The internal `skip-pager` property would be more apt in this case,
but as it only differs from `skip-taskbar` for X11 clients that
explicitly set one and not the other, it shouldn't matter in practice)

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/537
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/363>
(cherry picked from commit 77a11fd9cd)
2025-01-12 20:53:59 +00:00
Florian Müllner
bcf0be86af window-list: Untrack chrome while in overview
The window list is set up to track the monitor's fullscreen state.
Monitors are never considered in fullscreen while showing the overview,
so if shell's layout manager updates the fullscreen visibility after
we hid the bottom bar, it ends up being visible in the overview.

To avoid this, untrack the actor while the overview is visible.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/509
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/364>
(cherry picked from commit 981e8e42e2)
2025-01-12 20:53:59 +00:00
Florian Müllner
fb86b18cf1 window-list: Fix disconnecting window signals in context menu
Menus are not actors themselves, so they are not "destroyables" in
terms of automatic signal disconnection, with the result that we
currently leak window signals.

Fix this by using the menu's actor as tracked object, so the signals
are disconnected automatically when the actor is destroyed.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/474
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/362>
(cherry picked from commit 4a841dfd49)
2025-01-12 20:53:59 +00:00
Florian Müllner
6400be4a6c places-menu: Update fake mount operation source
gnome-shell now checks for an associated drive to automatically
cancel the operation on disconnect, so fake the corresponding
method. While at it, drop the `get_icon()` method that hasn't
been used for quite a while now.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/508
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/361>
(cherry picked from commit 8957f488dc)
2025-01-12 20:53:59 +00:00
Florian Müllner
b1f727fa34 places-menu: Catch errors during async operation
Uncaught errors in async functions don't provide a good stack, because
the unhandled promise rejection masks the error that triggered it.

While we already handle *expected* errors inside the function, make
sure we catch all errors to get useful stack information for unexpected
errors as well.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/361>
(cherry picked from commit e0b68a319e)
2025-01-12 20:53:59 +00:00
Yi-Jyun Pan
97d0a0e514 Update Chinese (Taiwan) translation 2025-01-12 15:59:38 +00:00
Florian Müllner
70e2a02e69 Bump version to 47.2
Update NEWS.
2024-11-25 16:14:41 +01:00
Florian Müllner
079daac9bb screenshot-window-sizer: Mention shortcut in description
Loosely based on the README entry, so users know how to actually use the
extension.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/541
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/358>
2024-11-25 15:43:54 +01:00
Florian Müllner
99d49c1800 places-menu: Inherit from PopupImageMenuItem
PopupImageMenuItems used to position the icon after the label,
so we ended up with our own icon+label items.

However the icon position was changed years ago in the shell, so
inherit from PopupImageMenuItem instead.

This does not only simplify the code a bit, but also pulls in
features we are currently missing, like a11y labelling.

Closes: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/542
(cherry picked from commit 568826e489)
2024-11-25 14:19:07 +01:00
Florian Müllner
95c4bc5d87 build: Sync check-version script with gnome-shell
The script was updated to not require appstream-util to check for
a corresponding release element in metainfo.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/354>
(cherry picked from commit 1218aee87f)
2024-11-25 14:18:56 +01:00
Florian Müllner
451a12d1fd cleanup: Use consistent line break style in meson.build
Either have all arguments on the same line, or have a separate
line for every argument (that is, don't special-case the first
arg).

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 265935e14b)
2024-11-25 14:18:35 +01:00
Florian Müllner
48b917ab86 cleanup: Fix indent errors in meson.build
We are supposed to use a 2-space indent, but some inconsistencies
sneaked in over time.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit b903618050)
2024-11-25 14:18:00 +01:00
Florian Müllner
d273dc4e59 cleanup: Always use dangling commas in meson.build
This is meson's default formatting, and matches what we already
do in JS.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 720933b08e)
2024-11-25 14:17:53 +01:00
Florian Müllner
683080441f cleanup: Use format strings in meson.build
Those are a bit more concise than ''.format(), and have been
in meson for a long time.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 85ee8829bf)
2024-11-25 14:17:45 +01:00
Florian Müllner
5bbf7f5c6c build: Use SPDX identifier for license
Meson strongly recommends to use SPDX identifiers for the license
string, and there's no reason for us to not do so.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 6df4905286)
2024-11-25 14:17:35 +01:00
Florian Müllner
f30990535f extensions: Remove modelines
We already include an .editorconfig that is supported by many
editors, including emacs, so no need to repeat an emacs-specific
modeline in every source file.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 253ddb8642)
2024-11-25 14:17:25 +01:00
Florian Müllner
d14885f96d Add .editorconfig
This should ensure that all editors which support
https://editorconfig.org/ use the correct indentation
with spaces (not tabs) by default.

This is hardly a full specification of our coding style,
but it's a correct subset and better than nothing.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/353>
(cherry picked from commit 0ca156a2b6)
2024-11-25 14:15:52 +01:00
Марко Костић
0a153b78f9 Update Serbian translation 2024-11-04 07:15:02 +00:00
Nathan Follens
598007f994 Update Dutch translation 2024-10-27 22:37:35 +00:00
Fabio Tomat
06caed8c0c Update Friulian translation 2024-10-20 20:01:51 +00:00
Florian Müllner
9991f90804 Bump version to 47.1
Update NEWS.
2024-10-18 21:54:13 +02:00
Florian Müllner
0bc77ef7c9 build: Rename meson_options.txt to meson.options
The name is a bit cleaner, and has been the preferred option(!)
since meson 1.1.

Mutter recently updated the name, so follow suite.

The meson version bump shouldn't be an issue, given that several
hard dependencies like mutter and glib already require higher
versions.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/349>
(cherry picked from commit 1088435120)
2024-10-18 19:15:44 +02:00
Florian Müllner
099b2eeb49 cleanup: Use null for nick/blurb in ParamSpecs
As they are only used by gstreamer for gst-inspect & other tools.
Projects like mutter and gtk have already completely dropped them,
so follow their lead.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/347>
(cherry picked from commit 46a4fa0976)
2024-10-18 19:15:02 +02:00
Florian Müllner
b13984a752 export-zips: Use --destdir instead of custom prefix
meson skips some steps like schema compilation when DESTDIR is
set, so this is slightly more efficient.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/345>
(cherry picked from commit 8f75ccae34)
2024-10-17 20:59:07 +02:00
Florian Müllner
67cdd0bea2 window-list: Remove outdated style
A long time ago, the window list used to embed the bottom message
tray, which caused notifications to inherit the window-list's
font style.

Since that's no longer the case, we have no business in messing
with notification styling, so stop doing that.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/338>
(cherry picked from commit f1671bc206)
2024-10-17 20:56:38 +02:00
Florian Müllner
87a849c5af window-list: Switch to Adw.SwitchRow
libadwaita fixed the actionable implementation of Adw.SwitchRow,
so can use the convenience widget instead of composing our own.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/341>
(cherry picked from commit 548d7659e1)
2024-10-17 20:56:26 +02:00
Florian Müllner
f0bff952be window-list: Remove superfluous bindings
The setting is already bound to the switch via the corresponding action,
no need to also set up a binding.

In fact, the second binding is actively harmful, as it keeps the
connection alive until dispose, so the setting is reset on
garbage collection.

Closes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/511

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/341>
(cherry picked from commit 0162644041)
2024-10-17 20:56:18 +02:00
Florian Müllner
b3ff771a1d window-list: Add missing action
Commit 24ba03fe9 added a new setting, but forgot to create the
corresponding action.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/341>
(cherry picked from commit 062a3d21ab)
2024-10-17 20:56:09 +02:00
Florian Müllner
3ef718d34c window-list: Fix active state
Commit c72b8b21 fixed the styling of the active window's button,
but missed that the `active` property uses the style information
as well.

Adjust it to use the correct actor when checking for the style class.

Closes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/529

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/342>
(cherry picked from commit a5a92026ac)
2024-10-17 20:55:59 +02:00
Florian Müllner
fb2d87c1da window-list: Fix minimized styling
Commit 039c66e7b7 wrapped the button in a container to
animate transitions, but didn't adjust the `.minimized`
styling to still apply to the button (where it is
expected) rather than the wrapper.

Fix this just like commit c72b8b21 did for the
`.focused` styling.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/342>
(cherry picked from commit 28fd210f28)
2024-10-17 20:55:52 +02:00
Florian Müllner
6d3fbceec9 classic: Add missing top bar indicators
The only intended difference from the regular session is that the
date menu moves to the right. However in the meantime, gnome-shell
added a couple more (usually hidden) indicators, but we never
updated the session mode definition.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/339>
(cherry picked from commit 81aade6659)
2024-10-17 20:55:43 +02:00
Florian Müllner
4da312040b window-list: Don't recreate icons on theme changes
All icons use `StIcon`, which already updates itself correctly
on icon theme changes.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/337>
(cherry picked from commit d43abe0869)
2024-10-17 20:55:22 +02:00
Florian Müllner
89276cc184 window-list: Small stylesheet cleanup
The light stylesheet duplicates some declarations, and the
last occurrence matches what we already inherit from the
dark stylesheet.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/337>
(cherry picked from commit 860c56f83e)
2024-10-17 20:55:07 +02:00
Florian Müllner
2716cb0b98 Bump version to 47.0
Update NEWS.
2024-09-14 18:48:33 +02:00
Irénée THIRION
6048971663 Update French translation 2024-09-12 13:06:50 +00:00
Rūdolfs Mazurs
04cab9954b Update Latvian translation 2024-09-10 19:45:49 +00:00
Dušan Kazik
cbb622a099 Update Slovak translation 2024-09-10 10:45:22 +00:00
Aefgh Threenine
f3b505867f Update Thai translation 2024-09-10 09:19:08 +00:00
Ask Hjorth Larsen
7bee509ecd Update Danish translation 2024-09-08 17:01:48 +00:00
Andi Chandler
b6ac158139 Update British English translation 2024-09-08 13:02:41 +00:00
Andika Triwidada
9af1a79434 Update Indonesian translation 2024-09-03 23:36:50 +00:00
Daniel
fa9e2dc71c Updated Spanish translation 2024-09-03 11:26:45 +02:00
Aurimas Černius
e94f10ac16 Update Lithuanian translation 2024-09-02 19:41:25 +00:00
Fran Dieguez
0319c6e8cb Update Galician translation 2024-09-02 18:16:21 +00:00
Alexander Shopov
fe1ae49dbe Update Bulgarian translation 2024-09-02 08:50:17 +00:00
twlvnn kraftwerk
353598e6d8 Update Bulgarian translation
(cherry picked from commit a99515feef)
2024-09-02 08:47:25 +00:00
Florian Müllner
36266e5a5a Bump version to 47.rc
Update NEWS.
2024-09-01 13:55:50 +02:00
Florian Müllner
f7a371c0bf ci: Update ci-fairy include 2024-09-01 13:55:50 +02:00
Sabri Ünal
018815d9e9 Update Turkish translation 2024-09-01 11:09:10 +00:00
Piotr Drąg
82fd82b30c Update Polish translation 2024-08-31 13:42:26 +00:00
Daniel Șerbănescu
26f5e23faa Update Romanian translation 2024-08-30 14:12:48 +00:00
Hugo Carvalho
0989cb3836 Update Portuguese translation 2024-08-30 10:28:12 +00:00
Changwoo Ryu
c55df7c239 Update Korean translation 2024-08-29 23:33:05 +00:00
Jürgen Benvenuti
9a840c437c Update German translation 2024-08-29 18:07:10 +00:00
Anders Jonsson
f33a833f7c Update Swedish translation 2024-08-29 11:18:17 +00:00
Quentin PAGÈS
7c284b6bdc Update Occitan translation 2024-08-27 08:35:49 +00:00
Rafael Fontenelle
6af5cbe4e0 Update Brazilian Portuguese translation 2024-08-26 15:50:33 +00:00
Danial Behzadi
5d6c2a3008 Update Persian translation 2024-08-26 08:50:08 +00:00
Asier Sarasua Garmendia
7ffe7b9aec Update Basque translation 2024-08-25 08:19:43 +00:00
Brage Fuglseth
2e912861f1 Update Norwegian Bokmål translation 2024-08-24 20:22:09 +00:00
Brage Fuglseth
f8ac973802 Update Norwegian Bokmål translation 2024-08-24 20:03:23 +00:00
Luming Zh
5bb15ae1cf Update Chinese (China) translation 2024-08-24 05:32:51 +00:00
Vasil Pupkin
34f379f6c7 Update Belarusian translation 2024-08-23 13:00:34 +00:00
Daniel Rusek
14d6920dd3 Update Czech translation 2024-08-23 12:32:38 +00:00
Jiri Grönroos
3d1c253369 Update Finnish translation 2024-08-23 11:07:46 +00:00
Yuri Chornoivan
b5dd68d6f2 Update Ukrainian translation 2024-08-23 09:33:47 +00:00
Jordi Mas i Hernandez
93c2c408be Update Catalan translation 2024-08-20 05:40:09 +00:00
Ekaterine Papava
c2c57c8e29 Update Georgian translation 2024-08-17 05:19:11 +00:00
Sophie Herold
9432ae260b doap: Remove marge-bot maintainer entry
marge-bot has had GNOME wide Developer access for a while, which should be sufficient.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/333>
2024-08-15 13:22:36 +00:00
Giannis Antypas
69f3132f4c Update Greek translation
(cherry picked from commit 7953cd130d)
2024-08-12 20:30:46 +00:00
Daniel Șerbănescu
4ccffbb27d Update Romanian translation
(cherry picked from commit 75b1ea879b)
2024-08-05 20:05:46 +00:00
Florian Müllner
8a9aa6a818 Bump version to 47.beta
Update NEWS.
2024-08-03 19:51:04 +02:00
Florian Müllner
017c6470b9 workspace-indicator: Re-fittsify workspace previews
For the window-list extension, it is important that the workspace
previews extend to the bottom edge for easier click targets.

That broke while merging the code with the workspace-indicator,
fix it again by moving the padding from the parent box into the
thumbnail children.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/327>
2024-07-31 15:01:08 +00:00
Florian Müllner
1e25fc1b5a status-icons: Add new extension
Based on an original "top-icons" extension by Adel Gadllah that
is no longer maintained.

The code has been heavily simplified and modernised, and adapted
to integrate into the top bar more seemlessly.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/194>
2024-07-31 14:42:55 +00:00
Jakub Steiner
e28215f38f window-list: Update styling
- Contemporary look. Fewer borders, thinner outlines for workspace indicators
- Lacks the designed unfocused window separators.
- Relies on https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/328

Fixes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/421

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/330>
2024-07-31 14:37:31 +00:00
Florian Müllner
8d06bc8b64 ci: Bump image
node occasionally fails with an "Illegal instruction" error,
which hopefully has been fixed by a package update.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/331>
2024-07-31 15:49:22 +02:00
Chao-Hsiung Liao
9e475cb279 Update Chinese (Taiwan) translation
(cherry picked from commit b89a93a4fc)
2024-07-24 10:26:16 +00:00
Sabri Ünal
cbbb2d2869 Update Turkish translation 2024-07-19 15:12:16 +00:00
Florian Müllner
c72b8b2122 window-list: Fix .focused styling
Commit 039c66e7b7 wrapped the button in a container to
animate transitions, but didn't adjust the `.focused`
styling to still apply to the button (where it is
expected) rather than the wrapper.

Fix that.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/328>
2024-07-13 00:11:19 +02:00
Florian Müllner
c302db7545 Bump version to 47.alpha
Update NEWS.
2024-06-29 14:11:12 +02:00
Florian Müllner
0554a8e97d window-list: Replace custom tooltip implementation
DashItemContainer already has support for showing a tooltip-like
label, so now that we use that for animating items, we can use
it for tooltips as well.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/325>
2024-06-29 13:43:55 +02:00
Florian Müllner
039c66e7b7 window-list: Animate buttons in and out
Buttons are currently added and removed from the list without
any transitions, which gives the list a "jumpy" feel. Instead,
do what we do elsewhere and smoothly animate additions and
removals by re-using the dash's ItemContainer class.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/325>
2024-06-29 13:43:55 +02:00
Florian Müllner
7eb00e350e window-list: Don't hide window button while unmanaging
This will allow to animate the transition.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/325>
2024-06-29 13:43:55 +02:00
Florian Müllner
f76f9e8220 window-list: Don't use homogeneous layout
We want all buttons in the window list to have the same size,
but that's already achieved via max/natural-width in the CSS.

Not enforcing the equal size via the layout manager will allow
buttons to temporarily have a different size when we start
animating additions and removals.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/325>
2024-06-29 13:13:12 +02:00
Balázs Úr
17c963b63f Update Hungarian translation 2024-06-28 14:25:44 +00:00
Yosef Or Boczko
5d45a697ce Update Hebrew translation 2024-06-28 07:34:33 +00:00
Милош Поповић
ef729f2d66 Update Serbian translation 2024-06-20 15:00:07 +00:00
Artur S0
1394e82bd0 Update Russian translation 2024-05-27 10:19:22 +00:00
Scrambled 777
9e61aaf08c Update Hindi translation 2024-05-25 17:17:19 +00:00
Florian Müllner
6ac76140a5 ci: Hook up release-module
In the future, the module will automate uploading the release
tarball. We already use the CI pipeline to generate the tarball,
so it's easy to hook up the module and provide some testing
before the module goes into production.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/324>
2024-05-24 15:18:59 +02:00
Florian Müllner
8c014a6b1d ci: Use meson introspect to generate artifact path
We currently assume that the `CI_COMMIT_TAG` variable matches the
version component of the generated dist tarball.

That is usually correct, but sometimes errors happen and a wrong
tag is pushed, and the real release uses something like "46.0-real".

Account for that by building the artifact path from `meson introspect`
and exporting it as environment variable.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/324>
2024-05-24 15:18:59 +02:00
Scrambled 777
2fe844f412 Update Hindi translation 2024-05-12 13:44:51 +00:00
Jose Riha
8185b43d54 Update Slovak translation
(cherry picked from commit 1219dfc144)
2024-05-11 22:19:20 +00:00
Hugo Carvalho
59ab3f834d Update Portuguese translation
(cherry picked from commit dd16556530)
2024-05-04 23:22:30 +00:00
Martin
8b6835c3d6 Update Slovenian translation 2024-05-01 22:12:17 +00:00
Florian Müllner
bb5bb70ac5 Update POTFILES.in
The file is now copied at build time from the workspace-indicator
extension.

Fixes: 0c42f162 ("window-list: Use actual copy of workspace-indicator")
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/321>
2024-04-29 16:49:30 +02:00
Florian Müllner
da90d365ec window-list: Use getter methods for events
The underlying structs were made opaque a while ago, so direct
access to the struct fields is no longer possible.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/320>
2024-04-26 15:22:16 +02:00
Florian Müllner
02ff72b2f0 apps-menu: Set label_actor of Category items
Category items are based on BaseMenuItem rather than MenuItem,
so the accessible relationship isn't set up automatically for us.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/319>
2024-04-25 14:42:53 +00:00
Jordi Mas i Hernandez
9c7a086870 Update Catalan translation 2024-04-25 11:53:01 +00:00
Florian Müllner
24ba03fe96 window-list: Expose workspace preview option
Now that we have the option, the window-list should expose it
in its preference window like the workspace-indicator.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
69d8d1a335 workspace-indicator: Make previews configurable
Now that previews scroll when there are too many workspaces,
there is no longer a reason for the 6-workspace limit.

However some users do prefer the menu, so rather than drop it,
turn it into a proper preference.

Closes
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/336

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
d495a2eed8 workspace-indicator: Also show previews in menu
Since the regular session also switched to horizontal workspaces,
using a vertical menu has been a bit awkward.

Now that our previews have become more flexible, we can use them
in the collapsed state as well as when embedded into the top bar.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
6b3990457e workspace-indicator: Stop handling vertical layouts
Both the regular session and GNOME classic use a horizontal layout
nowadays, so it doesn't seem worth to specifically handle vertical
layouts anymore.

The extension will still work when the layout is changed (by some
other extension), there will simply be a mismatch between horizontal
previews and the actual layout.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
099cff0b95 workspace-indicator: Support labels in previews
The space in the top bar is too limited to include the workspace
names. However we'll soon replace the textual menu with a preview
popover. We can use bigger previews there, so we can include the
names to not lose functionality with regards to the current menu.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
fac7fedfd3 workspace-indicator: Handle preview overflow
We currently avoid previews from overflowing in most setups by
artificially limiting them to a maximum of six workspaces.

Add some proper handling to also cover cases where space is more
limited, and to allow removing the restriction in the future.

For that, wrap the previews in an auto-scrolling scroll view
and add overflow indicators on each side.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
6ed1b56526 workspace-indicator: Split out WorkspacePreviews
The previews will become a bit more complex soon, so spit them out
into a dedicated class.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
a2ffb1238f workspace-indicator: Handle active indication in thumbnail
Meta.Workspace has had an `active` property for a while now, so
we can use a property binding instead of tracking the active
workspace ourselves.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
b55e7a4dc8 workspace-indicator: Simplify scroll handling
gnome-shell already includes a method for switching workspaces
via scroll events. Use that instead of implementing our own.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/316>
2024-04-24 14:23:22 +00:00
Florian Müllner
0c42f162d3 window-list: Use actual copy of workspace-indicator
We are now at a point where the code from the workspace-indicator
extension is usable from the window-list.

However instead of updating the copy, go one step further and
remove it altogether, and copy the required files at build time.

This ensures that future changes are picked up by both extensions
without duplicating any work.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
01a37c8f26 export-zips: Pick up non-default stylesheets
The window-list extension is about to import the workspace-indicator
stylesheet. Explicitly pack css files, so the stylesheet is included
in the bundle.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
5e88c7d891 workspace-indicator: Support light style
The window-list extension already includes light styling for
its copy of the workspace indicator. Just copy that over to
support the light variant here as well.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
af23a8491c workspace-indicator: Tweak preview style
Sync sizes and padding with the window-list previews.

Tone down the colors a bit, but less then the current window-list
style where workspaces blend too much into the background and
the selection is unclear.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
32a454f917 workspace-indicator: Include n-workspaces in status label
The two extensions currently use a slightly different label
in menu mode:
The workspace indicator uses the plain workspace number ("2"),
while the window list includes the number of workspaces ("2 / 4").

The additional information seem useful, as well as the slightly
bigger click/touch target, so copy the window-list behavior.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
63ff5b2ac1 workspace-indicator: Simplify getting status text
Currently the same method is used to get the label text for the
indicator itself and for the menu items.

A method that behaves significantly different depending on whether
a parameter is passed is confusing, so only deal with the indicator
label and directly use the mutter API to get the workspace names
for menu items.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
a9fff9861b workspace-indicator: Small cleanup
The code to update the menu labels is a bit cleaner in the
window-list extension, so use that.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
89a3daf9fe workspace-indicator: Only change top bar redirect when in top bar
While this is always the case for the workspace indicator, adding
the check will allow to use the same code in the window list.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
078a5a01ae workspace-indicator: Support showing tooltips above
The indicator is located in the top bar, so tooltips are always
shown below the previews. However supporting showing tooltips
above previews when space permits allows the same code to be
used in the copy that is included with the window-list extension.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
9c8c3495b6 workspace-indicator: Don't use menu section
We never added anything else to the menu, so we can just operate
on the entire menu instead of an intermediate section.

This removes another difference with the window-list copy.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
25e854dde8 workspace-indicator: Use existing property
We already track the current workspace index, use that
instead of getting it from the workspace manager again.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
64060ef4c5 workspace-indicator: Don't use SCHEMA/KEY constants
Each constant is only used once, so all they do is disconnect
the actual value from the code that uses it.

The copy in the window-list extension just uses the strings directly,
do the same here.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
9c97f01bc2 window-list: Handle changes to workspace menu
For now the menu is always set at construction time, however this
will change in the future. Prepare for that by handling the
`menu-set` signal, similar to the top bar.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
8693a8a74c window-list: Externally adjust workspace menu
In order to use a PanelMenu.Button in the bottom bar, we have
to tweak its menu a bit.

We currently handle this inside the indicator, but that means the
code diverges from the original code in the workspace-indicator
extension.

Avoid this by using a small subclass that handles the adjustments.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
47c12c6279 window-list: Override base style class
Apply the changes from the last commit to the workspace-indicator
copy, and override the base style class from the extension.

This will eventually allow us to share the exact same code between
the two extensions, but still use individual styling if necessary.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
e96015b9ea workspace-indicator: Allow overriding base style class
This will allow reusing the code from the window-list extension
without limiting the ability to specify styling that only applies
to one of the extensions.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
d3debab713 window-list: Use consistent style class prefix
This will eventually allow us to re-use the workspace-indicator
extension without changing anything but the used prefix.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
00045b7396 workspace-indicator: Use descendant style selectors
Add a style class to the indicator itself, and only select
descendant elements. This allows using the briefer class names
from the window-list extension without too much risk of conflicts.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
19877302a6 workspace-indicator: Move indicator code into separate file
Shortly after the window-list extension was added, it gained a
workspace switcher based on the workspace indicator extension.

Duplicating the code wasn't a big issue while the switcher was
a simple menu, but since it gained previews with a fair bit of
custom styling, syncing changes between the two extensions has
become tedious, in particular as the two copies have slightly
diverged over time.

In order to allow the two copies to converge again, the indicator
code needs to be separate from the extension boilerplate, so
split out the code into a separate module.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
2024-04-24 14:19:51 +00:00
Florian Müllner
56a74abb8a window-list: Use more appropriate fallback icon
'icon-missing' is not an actual icon name. It somewhat works
because an invalid icon name will fallback to the correct
'image-missing', however for apps the generic app icon is
a better fallback.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/315>
2024-04-24 14:10:41 +00:00
81 changed files with 4953 additions and 4909 deletions

17
.editorconfig Normal file
View File

@@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: 2024 Florian Müllner <fmuellner@gnome.org>
# SPDX-License-Identifier: CC0-1.0
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
trim_trailing_whitespace = true
[*.js]
indent_size = 4
[meson.build]
indent_size = 2

View File

@@ -3,10 +3,13 @@
# SPDX-License-Identifier: GPL-2.0-or-later # SPDX-License-Identifier: GPL-2.0-or-later
include: include:
- remote: 'https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/bbe5232986c9b98eb1efe62484e07216f7d1a4df/templates/fedora.yml' - remote: 'https://gitlab.gnome.org/Infrastructure/freedesktop-ci-templates/-/raw/bbe5232986c9b98eb1efe62484e07216f7d1a4df/templates/fedora.yml'
- remote: "https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/6f86b8bcb0cd5168c32779c4fea9a893c4a0c046/templates/ci-fairy.yml" - remote: "https://gitlab.gnome.org/Infrastructure/freedesktop-ci-templates/-/raw/bc70242ffb8402243e934659ecc1a2d1c89eca2b/templates/ci-fairy.yml"
- project: 'Infrastructure/openshift-images/gnome-release-service' - component: gitlab.gnome.org/GNOME/citemplates/release-service@master
file: '/ci-templates/release-module.yml' inputs:
job-stage: deploy
dist-job-name: fedora-dist-tarball
tarball-artifact-path: "$TARBALL_ARTIFACT_PATH"
stages: stages:
- pre_review - pre_review
@@ -16,7 +19,7 @@ stages:
- deploy - deploy
default: default:
image: registry.gitlab.gnome.org/gnome/gnome-shell/fedora/40:2024-02-23.0 image: registry.gitlab.gnome.org/gnome/gnome-shell/fedora/41:2024-10-18.0
# Cancel jobs if newer commits are pushed to the branch # Cancel jobs if newer commits are pushed to the branch
interruptible: true interruptible: true
# Auto-retry jobs in case of infra failures # Auto-retry jobs in case of infra failures
@@ -30,7 +33,8 @@ default:
variables: variables:
FDO_UPSTREAM_REPO: GNOME/gnome-shell-extensions FDO_UPSTREAM_REPO: GNOME/gnome-shell-extensions
LINT_LOG: "eslint-report.xml" MESON_BUILD_DIR: build
TARBALL_ARTIFACT_PATH: "${MESON_BUILD_DIR}/meson-dist/${CI_PROJECT_NAME}-${CI_COMMIT_TAG}.tar.xz"
workflow: workflow:
rules: rules:
@@ -108,14 +112,16 @@ js_check:
eslint: eslint:
stage: review stage: review
<<: *prereview_req <<: *prereview_req
variables:
LINT_LOG: "eslint-report.xml"
script: script:
- export NODE_PATH=$(npm root -g) - export NODE_PATH=$(npm root -g)
- ./.gitlab-ci/run-eslint --output-file ${LINT_LOG} --format junit --stdout - ./.gitlab-ci/run-eslint --output-file "$LINT_LOG" --format junit --stdout
artifacts: artifacts:
paths: paths:
- ${LINT_LOG} - "$LINT_LOG"
reports: reports:
junit: ${LINT_LOG} junit: "$LINT_LOG"
potfile_js_check: potfile_js_check:
stage: review stage: review
@@ -141,28 +147,13 @@ fedora-build:
stage: build stage: build
<<: *prereview_req <<: *prereview_req
script: script:
- meson setup build --werror -Dextension_set=all -Dclassic_mode=true - meson setup "$MESON_BUILD_DIR" --werror -Dextension_set=all -Dclassic_mode=true
- meson compile -C build - meson compile -C "$MESON_BUILD_DIR"
- meson test -C build - meson test -C "$MESON_BUILD_DIR"
- meson install -C build - meson install -C "$MESON_BUILD_DIR"
artifacts: artifacts:
paths: paths:
- build - "$MESON_BUILD_DIR"
fedora-distinfo:
stage: deploy
needs:
- fedora-build
script:
- .gitlab-ci/export-artifact-path build > dist.env
artifacts:
reports:
dotenv: dist.env
paths:
- build
- dist.env
rules:
- if: '$CI_COMMIT_TAG'
fedora-dist: fedora-dist:
stage: deploy stage: deploy
@@ -171,7 +162,7 @@ fedora-dist:
variables: variables:
GIT_SUBMODULE_STRATEGY: normal GIT_SUBMODULE_STRATEGY: normal
script: script:
- meson dist -C build - meson dist -C "$MESON_BUILD_DIR"
rules: rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"' - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
changes: changes:
@@ -180,21 +171,11 @@ fedora-dist:
fedora-dist-tarball: fedora-dist-tarball:
extends: fedora-dist extends: fedora-dist
needs:
- fedora-distinfo
artifacts: artifacts:
expose_as: 'Get tarball here' expose_as: 'Get tarball here'
name: "${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
when: always
paths: paths:
- $TARBALL_ARTIFACT_PATH - "$TARBALL_ARTIFACT_PATH"
reports:
dotenv: dist.env
rules:
- if: '$CI_COMMIT_TAG'
release-module:
stage: deploy
needs:
- fedora-dist-tarball
extends: .release-module
rules: rules:
- if: '$CI_COMMIT_TAG' - if: '$CI_COMMIT_TAG'

View File

@@ -1,21 +0,0 @@
#!/usr/bin/gjs -m
// SPDX-FileCopyrightText: 2024 Florian Müllner <fmuellner@gnome.org>
//
// SPDX-License-Identifier: GPL-2.0-or-later
import Gio from 'gi://Gio';
import {programArgs, programInvocationName, exit} from 'system';
const [buildDir] = programArgs;
if (!buildDir) {
printerr(`usage: ${programInvocationName} <build-dir>`);
exit(1);
}
const subprocess = Gio.Subprocess.new(
['meson', 'introspect', '--projectinfo', buildDir],
Gio.SubprocessFlags.STDOUT_PIPE);
const [, out] = subprocess.communicate_utf8(null, null);
const {descriptive_name, version} = JSON.parse(out);
print(`TARBALL_ARTIFACT_PATH=${buildDir}/meson-dist/${descriptive_name}-${version}.tar.xz`);

View File

@@ -20,9 +20,6 @@ need in gnome-shell.
Generally, we follow [GJS coding style][coding-style], which in short is: Generally, we follow [GJS coding style][coding-style], which in short is:
indent 4 spaces, no tabs, space after comma, no space after function call. indent 4 spaces, no tabs, space after comma, no space after function call.
The Emacs mode line for this
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
Imports should be at the top, in two groups, one for standard Imports should be at the top, in two groups, one for standard
imports (like imports.lang or imports.dbus) and introspection, imports (like imports.lang or imports.dbus) and introspection,
the other for Shell API. Within the same group, put everything the other for Shell API. Within the same group, put everything

88
NEWS
View File

@@ -1,15 +1,91 @@
46.2 47.3
==== ====
* apps-menu: Fix a11y of category labels [Florian; !319] * places-menu: Fix opening drives with mount operations [Florian; !361]
* window-list: Fix long-press support [Florian; !320] * window-list: Fix hiding when entering overview with gestures [Florian; !364]
* Misc. bug fixes and cleanups [Florian; !324] * workspace-indicator: Only show previews of regular windows [Florian; !363]
* Misc. bug fixes and cleanups [Florian, Bartłomiej; !362, !365, !367,
!368, !370]
Contributors:
Florian Müllner, Bartłomiej Piotrowski
Translators:
Yi-Jyun Pan [zh_TW]
47.2
====
* places-menu: Fix a11y labelling [Florian; #542]
* screenshot-window-sizer: Mention shortcut in description [Florian; !358]
* Misc. bug fixes and cleanups [Florian; !353, !354]
Contributors: Contributors:
Florian Müllner Florian Müllner
Translators: Translators:
Hugo Carvalho [pt], Jose Riha [sk], Jordi Mas i Hernandez [ca], Fabio Tomat [fur], Nathan Follens [nl], Марко Костић [sr]
Scrambled 777 [hi]
47.1
====
* classic: Add missing top-bar indicators [Florian; !339]
* window-list: Fix window state styling [Florian; !342]
* window-list: Fix "ignore-workspace" setting getting reset [Florian; !341]
* Misc. bug fixes and cleanups [Florian; !337, !338, !345, !347, !349]
Contributors:
Florian Müllner
47.0
====
Translators:
twlvnn kraftwerk [bg], Alexander Shopov [bg], Fran Dieguez [gl],
Aurimas Černius [lt], Daniel [es], Andika Triwidada [id],
Andi Chandler [en_GB], Ask Hjorth Larsen [da], Aefgh Threenine [th],
Dušan Kazik [sk], Rūdolfs Mazurs [lv], Irénée THIRION [fr]
47.rc
=====
* Misc. bug fixes and cleanups [Sophie; !333]
Contributors:
Sophie Herold
Translators:
Daniel Șerbănescu [ro], Giannis Antypas [el], Ekaterine Papava [ka],
Jordi Mas i Hernandez [ca], Yuri Chornoivan [uk], Jiri Grönroos [fi],
Daniel Rusek [cs], Vasil Pupkin [be], Luming Zh [zh_CN], Brage Fuglseth [nb],
Asier Sarasua Garmendia [eu], Danial Behzadi [fa], Rafael Fontenelle [pt_BR],
Quentin PAGÈS [oc], Anders Jonsson [sv], Jürgen Benvenuti [de],
Changwoo Ryu [ko], Hugo Carvalho [pt], Piotr Drąg [pl], Sabri Ünal [tr]
47.beta
=======
* window-list: Modernize styling [Jakub; !330]
* Include "status-icons" extension [Florian; !194]
* Misc. bug fixes and cleanups [Florian; !328, !331, !327]
Contributors:
Florian Müllner, Jakub Steiner
Translators:
Sabri Ünal [tr], Chao-Hsiung Liao [zh_TW]
47.alpha
========
* Improve workspace previews in window-list and workspace-indicator
[Florian; !307, !316]
* apps-menu: Fix a11y of category labels [Florian; !319]
* window-list: Fix long-press support [Florian; !320]
* window-list: Animate transitions [Florian; !325]
* Misc. bug fixes and cleanups [Florian; !315, !321, !324]
Contributors:
Florian Müllner
Translators:
Jordi Mas i Hernandez [ca], Martin [sl], Hugo Carvalho [pt], Jose Riha [sk],
Scrambled 777 [hi], Artur S0 [ru], Милош Поповић [sr], Yosef Or Boczko [he],
Balázs Úr [hu]
46.1 46.1
==== ====

View File

@@ -5,6 +5,6 @@
"enabledExtensions": [@CLASSIC_EXTENSIONS@], "enabledExtensions": [@CLASSIC_EXTENSIONS@],
"panel": { "left": ["activities"], "panel": { "left": ["activities"],
"center": [], "center": [],
"right": ["a11y", "keyboard", "dateMenu", "quickSettings"] "right": ["screenRecording", "screenSharing", "dwellClick", "a11y", "keyboard", "dateMenu", "quickSettings"]
} }
} }

View File

@@ -10,33 +10,33 @@ session_desktops = [
session_desktop_base + '-wayland', session_desktop_base + '-wayland',
] ]
foreach name: session_desktops foreach name : session_desktops
session_desktop = name + '.desktop' session_desktop = name + '.desktop'
if name.endswith('-xorg') if name.endswith('-xorg')
session_instdir = xsessiondir session_instdir = xsessiondir
elif name.endswith('-wayland') elif name.endswith('-wayland')
session_instdir = wlsessiondir session_instdir = wlsessiondir
else else
# FIXME: The same target can not be copied into two directories. # FIXME: The same target can not be copied into two directories.
# There is a workaround in meson/session-post-install.py until proper # There is a workaround in meson/session-post-install.py until proper
# solution arises: # solution arises:
# https://github.com/mesonbuild/meson/issues/2416 # https://github.com/mesonbuild/meson/issues/2416
session_instdir = xsessiondir session_instdir = xsessiondir
#session_instdir = [ xesssiondir, wlsessiondir ] #session_instdir = [ xesssiondir, wlsessiondir ]
endif endif
i18n.merge_file( i18n.merge_file(
input: session_desktop + '.in', input: session_desktop + '.in',
output: session_desktop, output: session_desktop,
po_dir: '../po', po_dir: '../po',
install: true, install: true,
install_dir: session_instdir, install_dir: session_instdir,
type: 'desktop' type: 'desktop',
) )
endforeach endforeach
classic_uuids = [] classic_uuids = []
foreach e : classic_extensions foreach e : classic_extensions
classic_uuids += e + uuid_suffix classic_uuids += e + uuid_suffix
endforeach endforeach
mode_conf = configuration_data() mode_conf = configuration_data()
@@ -47,7 +47,7 @@ configure_file(
input: mode_file + '.in', input: mode_file + '.in',
output: mode_file, output: mode_file,
configuration: mode_conf, configuration: mode_conf,
install_dir: modedir install_dir: modedir,
) )
classic_override = '00_org.gnome.shell.extensions.classic.gschema.override' classic_override = '00_org.gnome.shell.extensions.classic.gschema.override'

View File

@@ -8,16 +8,16 @@ srcdir=`dirname $0`
srcdir=`(cd $srcdir && pwd)` srcdir=`(cd $srcdir && pwd)`
builddir=`mktemp -p $srcdir -d _build.XXXXXX` || exit 1 builddir=`mktemp -p $srcdir -d _build.XXXXXX` || exit 1
installdir=`mktemp -p $srcdir -d _install.XXXXXX` || exit 1 destdir=`mktemp -p $srcdir -d _dest.XXXXXX` || exit 1
meson setup --prefix=$installdir -Dextension_set=all $srcdir $builddir meson setup --prefix=/usr -Dextension_set=all $srcdir $builddir
meson install -C $builddir meson install --destdir $destdir -C $builddir
rm -rf $srcdir/zip-files rm -rf $srcdir/zip-files
mkdir $srcdir/zip-files mkdir $srcdir/zip-files
extensiondir=$installdir/share/gnome-shell/extensions extensiondir=$destdir/usr/share/gnome-shell/extensions
schemadir=$installdir/share/glib-2.0/schemas schemadir=$destdir/usr/share/glib-2.0/schemas
for f in $extensiondir/*; do for f in $extensiondir/*; do
name=`basename ${f%%@*}` name=`basename ${f%%@*}`
@@ -39,7 +39,7 @@ for f in $extensiondir/*; do
fi fi
cp $srcdir/NEWS $srcdir/COPYING $f cp $srcdir/NEWS $srcdir/COPYING $f
sources=(NEWS COPYING $(cd $f; ls *.js)) sources=(NEWS COPYING $(cd $f; ls *.js *.css 2>/dev/null))
[ -d $f/icons ] && sources+=(icons) [ -d $f/icons ] && sources+=(icons)
@@ -50,4 +50,4 @@ for f in $extensiondir/*; do
done done
rm -rf $builddir rm -rf $builddir
rm -rf $installdir rm -rf $destdir

View File

@@ -5,7 +5,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
import Atk from 'gi://Atk'; import Atk from 'gi://Atk';
import Clutter from 'gi://Clutter'; import Clutter from 'gi://Clutter';
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';

View File

@@ -4,9 +4,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
// Start apps on custom workspaces
import Shell from 'gi://Shell'; import Shell from 'gi://Shell';
import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js'; import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js';

View File

@@ -3,9 +3,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
// Start apps on custom workspaces
import Adw from 'gi://Adw'; import Adw from 'gi://Adw';
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';
import GLib from 'gi://GLib'; import GLib from 'gi://GLib';
@@ -45,11 +42,11 @@ class NewItemModel extends GObject.Object {
class Rule extends GObject.Object { class Rule extends GObject.Object {
static [GObject.properties] = { static [GObject.properties] = {
'app-info': GObject.ParamSpec.object( 'app-info': GObject.ParamSpec.object(
'app-info', 'app-info', 'app-info', 'app-info', null, null,
GObject.ParamFlags.READWRITE, GObject.ParamFlags.READWRITE,
Gio.DesktopAppInfo), Gio.DesktopAppInfo),
'workspace': GObject.ParamSpec.uint( 'workspace': GObject.ParamSpec.uint(
'workspace', 'workspace', 'workspace', 'workspace', null, null,
GObject.ParamFlags.READWRITE, GObject.ParamFlags.READWRITE,
1, WORKSPACE_MAX, 1), 1, WORKSPACE_MAX, 1),
}; };
@@ -196,7 +193,7 @@ class AutoMoveSettingsWidget extends Adw.PreferencesGroup {
class WorkspaceSelector extends Gtk.Widget { class WorkspaceSelector extends Gtk.Widget {
static [GObject.properties] = { static [GObject.properties] = {
'number': GObject.ParamSpec.uint( 'number': GObject.ParamSpec.uint(
'number', 'number', 'number', 'number', null, null,
GObject.ParamFlags.READWRITE, GObject.ParamFlags.READWRITE,
1, WORKSPACE_MAX, 1), 1, WORKSPACE_MAX, 1),
}; };

View File

@@ -16,18 +16,20 @@ foreach e : enabled_extensions
metadata_conf.set('gschemaname', 'org.gnome.shell.extensions.' + e) metadata_conf.set('gschemaname', 'org.gnome.shell.extensions.' + e)
metadata_conf.set('gettext_domain', gettext_domain) metadata_conf.set('gettext_domain', gettext_domain)
metadata_conf.set('shell_current', shell_version) metadata_conf.set('shell_current', shell_version)
metadata_conf.set('url', 'https://gitlab.gnome.org/GNOME/gnome-shell-extensions') metadata_conf.set(
'url',
'https://gitlab.gnome.org/GNOME/gnome-shell-extensions',
)
extension_sources = files(e + '/extension.js') extension_sources = files(e + '/extension.js')
extension_data = [] extension_data = []
subdir(e) subdir(e)
install_data (extension_sources + extension_data, install_data(
install_dir: join_paths(extensiondir, uuid) extension_sources + extension_data,
install_dir: join_paths(extensiondir, uuid),
) )
endforeach endforeach
install_data (extension_schemas, install_data(extension_schemas, install_dir: schemadir)
install_dir: schemadir
)

View File

@@ -5,7 +5,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
import Clutter from 'gi://Clutter'; import Clutter from 'gi://Clutter';
import {Extension, InjectionManager} from 'resource:///org/gnome/shell/extensions/extension.js'; import {Extension, InjectionManager} from 'resource:///org/gnome/shell/extensions/extension.js';

View File

@@ -5,7 +5,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
import Clutter from 'gi://Clutter'; import Clutter from 'gi://Clutter';
import GObject from 'gi://GObject'; import GObject from 'gi://GObject';
import St from 'gi://St'; import St from 'gi://St';
@@ -20,32 +19,17 @@ import {PlacesManager} from './placeDisplay.js';
const N_ = x => x; const N_ = x => x;
const PLACE_ICON_SIZE = 16; class PlaceMenuItem extends PopupMenu.PopupImageMenuItem {
class PlaceMenuItem extends PopupMenu.PopupBaseMenuItem {
static { static {
GObject.registerClass(this); GObject.registerClass(this);
} }
constructor(info) { constructor(info) {
super({ super(info.name, info.icon, {
style_class: 'place-menu-item', style_class: 'place-menu-item',
}); });
this._info = info; this._info = info;
this._icon = new St.Icon({
gicon: info.icon,
icon_size: PLACE_ICON_SIZE,
});
this.add_child(this._icon);
this._label = new St.Label({
text: info.name,
x_expand: true,
y_align: Clutter.ActorAlign.CENTER,
});
this.add_child(this._label);
if (info.isRemovable()) { if (info.isRemovable()) {
this._ejectIcon = new St.Icon({ this._ejectIcon = new St.Icon({
icon_name: 'media-eject-symbolic', icon_name: 'media-eject-symbolic',
@@ -70,8 +54,8 @@ class PlaceMenuItem extends PopupMenu.PopupBaseMenuItem {
} }
_propertiesChanged(info) { _propertiesChanged(info) {
this._icon.gicon = info.icon; this.setIcon(info.icon);
this._label.text = info.name; this.label.text = info.name;
} }
} }

View File

@@ -6,7 +6,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';
import GLib from 'gi://GLib'; import GLib from 'gi://GLib';
import Shell from 'gi://Shell'; import Shell from 'gi://Shell';
@@ -61,15 +60,15 @@ class PlaceInfo extends EventEmitter {
return; return;
} }
let source = { const source = {
get_icon: () => this.icon, get_drive: () => null,
}; };
let op = new ShellMountOperation.ShellMountOperation(source); let op = new ShellMountOperation.ShellMountOperation(source);
try { try {
await this.file.mount_enclosing_volume(0, op.mountOp, null); await this.file.mount_enclosing_volume(0, op.mountOp, null);
if (tryMount) if (tryMount)
this._ensureMountAndLaunch(context, false); this._ensureMountAndLaunch(context, false).catch(logError);
} catch (e) { } catch (e) {
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.FAILED_HANDLED)) if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.FAILED_HANDLED))
Main.notifyError(_('Failed to mount volume for “%s”').format(this.name), e.message); Main.notifyError(_('Failed to mount volume for “%s”').format(this.name), e.message);
@@ -81,7 +80,7 @@ class PlaceInfo extends EventEmitter {
launch(timestamp) { launch(timestamp) {
let launchContext = global.create_app_launch_context(timestamp, -1); let launchContext = global.create_app_launch_context(timestamp, -1);
this._ensureMountAndLaunch(launchContext, true); this._ensureMountAndLaunch(launchContext, true).catch(logError);
} }
getIcon() { getIcon() {

View File

@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Screenshot Window Sizer", "name": "Screenshot Window Sizer",
"description": "Resize windows for GNOME Software screenshots", "description": "Resize windows for GNOME Software screenshots with Ctrl+Alt+s shortcut",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }

View File

@@ -0,0 +1,91 @@
// SPDX-FileCopyrightText: 2018 Adel Gadllah <adel.gadllah@gmail.com>
// SPDX-FileCopyrightText: 2018 Florian Müllner <fmuellner@gnome.org>
//
// SPDX-License-Identifier: GPL-2.0-or-later
import Clutter from 'gi://Clutter';
import Shell from 'gi://Shell';
import St from 'gi://St';
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
import {Button as PanelButton} from 'resource:///org/gnome/shell/ui/panelMenu.js';
const PANEL_ICON_SIZE = 16;
const STANDARD_TRAY_ICON_IMPLEMENTATIONS = [
'bluetooth-applet',
'gnome-sound-applet',
'nm-applet',
'gnome-power-manager',
'keyboard',
'a11y-keyboard',
'kbd-scrolllock',
'kbd-numlock',
'kbd-capslock',
'ibus-ui-gtk',
];
export default class SysTray {
constructor() {
this._icons = new Map();
this._tray = null;
}
_onTrayIconAdded(o, icon) {
let wmClass = icon.wm_class ? icon.wm_class.toLowerCase() : '';
if (STANDARD_TRAY_ICON_IMPLEMENTATIONS.includes(wmClass))
return;
let button = new PanelButton(0.5, null, true);
let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor;
let iconSize = PANEL_ICON_SIZE * scaleFactor;
icon.set({
width: iconSize,
height: iconSize,
x_align: Clutter.ActorAlign.CENTER,
y_align: Clutter.ActorAlign.CENTER,
});
let iconBin = new St.Widget({
layout_manager: new Clutter.BinLayout(),
style_class: 'system-status-icon',
});
iconBin.add_child(icon);
button.add_child(iconBin);
this._icons.set(icon, button);
button.connect('button-release-event',
(actor, event) => icon.click(event));
button.connect('key-press-event',
(actor, event) => icon.click(event));
const role = `${icon}`;
Main.panel.addToStatusArea(role, button);
}
_onTrayIconRemoved(o, icon) {
const button = this._icons.get(icon);
button?.destroy();
this._icons.delete(icon);
}
enable() {
this._tray = new Shell.TrayManager();
this._tray.connect('tray-icon-added',
this._onTrayIconAdded.bind(this));
this._tray.connect('tray-icon-removed',
this._onTrayIconRemoved.bind(this));
this._tray.manage_screen(Main.panel);
}
disable() {
this._icons.forEach(button => button.destroy());
this._icons.clear();
this._tray.unmanage_screen();
this._tray = null;
}
}

View File

@@ -0,0 +1,9 @@
# SPDX-FileCopyrightText: 2018 Florian Müllner <fmuellner@gnome.org>
#
# SPDX-License-Identifier: GPL-2.0-or-later
extension_data += configure_file(
input: metadata_name + '.in',
output: metadata_name,
configuration: metadata_conf
)

View File

@@ -0,0 +1,10 @@
{
"extension-id": "@extension_id@",
"uuid": "@uuid@",
"settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@",
"name": "Status Icons",
"description": "Show status icons in the top bar",
"shell-version": [ "@shell_current@" ],
"url": "@url@"
}

View File

@@ -5,9 +5,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
// Load shell theme from ~/.local/share/themes/name/gnome-shell
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';
import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js'; import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js';

View File

@@ -2,8 +2,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
// we use async/await here to not block the mainloop, not to parallelize // we use async/await here to not block the mainloop, not to parallelize
/* eslint-disable no-await-in-loop */ /* eslint-disable no-await-in-loop */

View File

@@ -19,15 +19,13 @@ import {Extension, gettext as _} from 'resource:///org/gnome/shell/extensions/ex
import * as DND from 'resource:///org/gnome/shell/ui/dnd.js'; import * as DND from 'resource:///org/gnome/shell/ui/dnd.js';
import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import * as Main from 'resource:///org/gnome/shell/ui/main.js';
import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js'; import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
import {DashItemContainer} from 'resource:///org/gnome/shell/ui/dash.js';
import {WorkspaceIndicator} from './workspaceIndicator.js'; import {WorkspaceIndicator} from './workspaceIndicator.js';
const ICON_TEXTURE_SIZE = 24; const ICON_TEXTURE_SIZE = 24;
const DND_ACTIVATE_TIMEOUT = 500; const DND_ACTIVATE_TIMEOUT = 500;
const TOOLTIP_OFFSET = 6;
const TOOLTIP_ANIMATION_TIME = 150;
const GroupingMode = { const GroupingMode = {
NEVER: 0, NEVER: 0,
AUTO: 1, AUTO: 1,
@@ -79,7 +77,7 @@ class WindowContextMenu extends PopupMenu.PopupMenu {
'notify::minimized', this._updateMinimizeItem.bind(this), 'notify::minimized', this._updateMinimizeItem.bind(this),
'notify::maximized-horizontally', this._updateMaximizeItem.bind(this), 'notify::maximized-horizontally', this._updateMaximizeItem.bind(this),
'notify::maximized-vertically', this._updateMaximizeItem.bind(this), 'notify::maximized-vertically', this._updateMaximizeItem.bind(this),
this); this.actor);
this._updateMinimizeItem(); this._updateMinimizeItem();
this._updateMaximizeItem(); this._updateMaximizeItem();
@@ -127,10 +125,6 @@ class WindowTitle extends St.BoxLayout {
this.label_actor.clutter_text.single_line_mode = true; this.label_actor.clutter_text.single_line_mode = true;
this.add_child(this.label_actor); this.add_child(this.label_actor);
this._textureCache = St.TextureCache.get_default();
this._textureCache.connectObject('icon-theme-changed',
() => this._updateIcon(), this);
this._metaWindow.connectObject( this._metaWindow.connectObject(
'notify::wm-class', 'notify::wm-class',
() => this._updateIcon(), GObject.ConnectFlags.AFTER, () => this._updateIcon(), GObject.ConnectFlags.AFTER,
@@ -165,20 +159,20 @@ class WindowTitle extends St.BoxLayout {
this._icon.child = app.create_icon_texture(ICON_TEXTURE_SIZE); this._icon.child = app.create_icon_texture(ICON_TEXTURE_SIZE);
} else { } else {
this._icon.child = new St.Icon({ this._icon.child = new St.Icon({
icon_name: 'icon-missing', icon_name: 'application-x-executable',
icon_size: ICON_TEXTURE_SIZE, icon_size: ICON_TEXTURE_SIZE,
}); });
} }
} }
} }
class BaseButton extends St.Button { class BaseButton extends DashItemContainer {
static { static {
GObject.registerClass({ GObject.registerClass({
GTypeFlags: GObject.TypeFlags.ABSTRACT, GTypeFlags: GObject.TypeFlags.ABSTRACT,
Properties: { Properties: {
'ignore-workspace': GObject.ParamSpec.boolean( 'ignore-workspace': GObject.ParamSpec.boolean(
'ignore-workspace', 'ignore-workspace', 'ignore-workspace', 'ignore-workspace', null, null,
GObject.ParamFlags.READWRITE, GObject.ParamFlags.READWRITE,
false), false),
}, },
@@ -186,12 +180,22 @@ class BaseButton extends St.Button {
} }
constructor(perMonitor, monitorIndex) { constructor(perMonitor, monitorIndex) {
super({ super();
this._button = new St.Button({
style_class: 'window-button', style_class: 'window-button',
can_focus: true, can_focus: true,
x_expand: true, x_expand: true,
button_mask: St.ButtonMask.ONE | St.ButtonMask.THREE, button_mask: St.ButtonMask.ONE | St.ButtonMask.THREE,
}); });
this.setChild(this._button);
this._button.connect('notify::hover', () => {
if (this._button.hover)
this.showLabel();
else
this.hideLabel();
});
this._perMonitor = perMonitor; this._perMonitor = perMonitor;
this._monitorIndex = monitorIndex; this._monitorIndex = monitorIndex;
@@ -199,7 +203,7 @@ class BaseButton extends St.Button {
this.connect('notify::allocation', this.connect('notify::allocation',
this._updateIconGeometry.bind(this)); this._updateIconGeometry.bind(this));
this.connect('clicked', this._onClicked.bind(this)); this._button.connect('clicked', this._onClicked.bind(this));
this.connect('destroy', this._onDestroy.bind(this)); this.connect('destroy', this._onDestroy.bind(this));
this.connect('popup-menu', this._onPopupMenu.bind(this)); this.connect('popup-menu', this._onPopupMenu.bind(this));
@@ -216,16 +220,10 @@ class BaseButton extends St.Button {
this._windowEnteredOrLeftMonitor.bind(this), this._windowEnteredOrLeftMonitor.bind(this),
this); this);
} }
this._tooltip = new Tooltip(this, {
style_class: 'dash-label',
visible: false,
});
Main.uiGroup.add_child(this._tooltip);
} }
get active() { get active() {
return this.has_style_class_name('focused'); return this._button.has_style_class_name('focused');
} }
// eslint-disable-next-line camelcase // eslint-disable-next-line camelcase
@@ -244,6 +242,18 @@ class BaseButton extends St.Button {
this._updateVisibility(); this._updateVisibility();
} }
showLabel() {
const [, , preferredTitleWidth] = this.label_actor.get_preferred_size();
const maxTitleWidth = this.label_actor.allocation.get_width();
const isTitleFullyShown = preferredTitleWidth <= maxTitleWidth;
const labelText = isTitleFullyShown
? '' : this.label_actor.text;
this.setLabelText(labelText);
super.showLabel();
}
_setLongPressTimeout() { _setLongPressTimeout() {
if (this._longPressTimeoutId) if (this._longPressTimeoutId)
return; return;
@@ -344,9 +354,9 @@ class BaseButton extends St.Button {
_updateStyle() { _updateStyle() {
if (this._isFocused()) if (this._isFocused())
this.add_style_class_name('focused'); this._button.add_style_class_name('focused');
else else
this.remove_style_class_name('focused'); this._button.remove_style_class_name('focused');
} }
_windowEnteredOrLeftMonitor(_metaDisplay, _monitorIndex, _metaWindow) { _windowEnteredOrLeftMonitor(_metaDisplay, _monitorIndex, _metaWindow) {
@@ -382,7 +392,6 @@ class BaseButton extends St.Button {
} }
_onDestroy() { _onDestroy() {
this._tooltip.destroy();
} }
} }
@@ -395,15 +404,17 @@ class WindowButton extends BaseButton {
super(perMonitor, monitorIndex); super(perMonitor, monitorIndex);
this.metaWindow = metaWindow; this.metaWindow = metaWindow;
this._unmanaging = false;
metaWindow.connectObject( metaWindow.connectObject(
'notify::skip-taskbar', () => this._updateVisibility(), 'notify::skip-taskbar', () => this._updateVisibility(),
'workspace-changed', () => this._updateVisibility(), 'workspace-changed', () => this._updateVisibility(),
'unmanaging', () => (this._unmanaging = true),
this); this);
this._updateVisibility(); this._updateVisibility();
this._windowTitle = new WindowTitle(this.metaWindow); this._windowTitle = new WindowTitle(this.metaWindow);
this.set_child(this._windowTitle); this._button.set_child(this._windowTitle);
this.label_actor = this._windowTitle.label_actor; this.label_actor = this._windowTitle.label_actor;
this._contextMenu = new WindowContextMenu(this, this.metaWindow); this._contextMenu = new WindowContextMenu(this, this.metaWindow);
@@ -438,9 +449,9 @@ class WindowButton extends BaseButton {
super._updateStyle(); super._updateStyle();
if (this.metaWindow.minimized) if (this.metaWindow.minimized)
this.add_style_class_name('minimized'); this._button.add_style_class_name('minimized');
else else
this.remove_style_class_name('minimized'); this._button.remove_style_class_name('minimized');
} }
_windowEnteredOrLeftMonitor(metaDisplay, monitorIndex, metaWindow) { _windowEnteredOrLeftMonitor(metaDisplay, monitorIndex, metaWindow) {
@@ -449,6 +460,9 @@ class WindowButton extends BaseButton {
} }
_updateVisibility() { _updateVisibility() {
if (this._unmanaging)
return;
this.visible = this._isWindowVisible(this.metaWindow); this.visible = this._isWindowVisible(this.metaWindow);
} }
@@ -532,7 +546,7 @@ class AppButton extends BaseButton {
this._updateVisibility(); this._updateVisibility();
let stack = new St.Widget({layout_manager: new Clutter.BinLayout()}); let stack = new St.Widget({layout_manager: new Clutter.BinLayout()});
this.set_child(stack); this._button.set_child(stack);
this._singleWindowTitle = new St.Bin({ this._singleWindowTitle = new St.Bin({
x_expand: true, x_expand: true,
@@ -573,11 +587,6 @@ class AppButton extends BaseButton {
this._appContextMenu.actor.hide(); this._appContextMenu.actor.hide();
Main.uiGroup.add_child(this._appContextMenu.actor); Main.uiGroup.add_child(this._appContextMenu.actor);
this._textureCache = St.TextureCache.get_default();
this._textureCache.connectObject('icon-theme-changed', () => {
this._icon.child = app.create_icon_texture(ICON_TEXTURE_SIZE);
}, this);
this.app.connectObject('windows-changed', this.app.connectObject('windows-changed',
() => this._windowsChanged(), this); () => this._windowsChanged(), this);
this._windowsChanged(); this._windowsChanged();
@@ -729,28 +738,24 @@ class WindowList extends St.Widget {
let box = new St.BoxLayout({x_expand: true, y_expand: true}); let box = new St.BoxLayout({x_expand: true, y_expand: true});
this.add_child(box); this.add_child(box);
let layout = new Clutter.BoxLayout({homogeneous: true}); this._windowList = new St.BoxLayout({
this._windowList = new St.Widget({
style_class: 'window-list', style_class: 'window-list',
reactive: true, reactive: true,
layout_manager: layout,
x_align: Clutter.ActorAlign.START, x_align: Clutter.ActorAlign.START,
x_expand: true, x_expand: true,
y_expand: true, y_expand: true,
}); });
box.add_child(this._windowList); box.add_child(this._windowList);
this._windowList.connect('style-changed', () => {
let node = this._windowList.get_theme_node();
let spacing = node.get_length('spacing');
this._windowList.layout_manager.spacing = spacing;
});
this._windowList.connect('scroll-event', this._onScrollEvent.bind(this)); this._windowList.connect('scroll-event', this._onScrollEvent.bind(this));
let indicatorsBox = new St.BoxLayout({x_align: Clutter.ActorAlign.END}); let indicatorsBox = new St.BoxLayout({x_align: Clutter.ActorAlign.END});
box.add_child(indicatorsBox); box.add_child(indicatorsBox);
this._workspaceIndicator = new WorkspaceIndicator(); this._workspaceIndicator = new BottomWorkspaceIndicator({
baseStyleClass: 'window-list-workspace-indicator',
settings,
});
indicatorsBox.add_child(this._workspaceIndicator.container); indicatorsBox.add_child(this._workspaceIndicator.container);
this._mutterSettings = new Gio.Settings({schema_id: 'org.gnome.mutter'}); this._mutterSettings = new Gio.Settings({schema_id: 'org.gnome.mutter'});
@@ -763,12 +768,15 @@ class WindowList extends St.Widget {
this._updateWorkspaceIndicatorVisibility(); this._updateWorkspaceIndicatorVisibility();
this._menuManager = new PopupMenu.PopupMenuManager(this); this._menuManager = new PopupMenu.PopupMenuManager(this);
this._menuManager.addMenu(this._workspaceIndicator.menu); this._workspaceIndicator.connectObject('menu-set',
() => this._onWorkspaceMenuSet(), this);
this._onWorkspaceMenuSet();
Main.layoutManager.addChrome(this, { const chromeOptions = {
affectsStruts: true, affectsStruts: true,
trackFullscreen: true, trackFullscreen: true,
}); };
Main.layoutManager.addChrome(this, chromeOptions);
Main.uiGroup.set_child_above_sibling(this, Main.layoutManager.panelBox); Main.uiGroup.set_child_above_sibling(this, Main.layoutManager.panelBox);
Main.ctrlAltTabManager.addGroup(this, _('Window List'), 'start-here-symbolic'); Main.ctrlAltTabManager.addGroup(this, _('Window List'), 'start-here-symbolic');
@@ -805,10 +813,12 @@ class WindowList extends St.Widget {
Main.overview.connectObject( Main.overview.connectObject(
'showing', () => { 'showing', () => {
Main.layoutManager.untrackChrome(this);
this.hide(); this.hide();
this._updateKeyboardAnchor(); this._updateKeyboardAnchor();
}, },
'hidden', () => { 'hidden', () => {
Main.layoutManager.trackChrome(this);
this.visible = !this._monitor.inFullscreen; this.visible = !this._monitor.inFullscreen;
this._updateKeyboardAnchor(); this._updateKeyboardAnchor();
}, this); }, this);
@@ -822,7 +832,7 @@ class WindowList extends St.Widget {
this._windowSignals = new Map(); this._windowSignals = new Map();
global.display.connectObject( global.display.connectObject(
'window-created', (dsp, win) => this._addWindow(win), this); 'window-created', (dsp, win) => this._addWindow(win, true), this);
Main.xdndHandler.connectObject( Main.xdndHandler.connectObject(
'drag-begin', () => this._monitorDrag(), 'drag-begin', () => this._monitorDrag(),
@@ -860,6 +870,11 @@ class WindowList extends St.Widget {
children[newActive].activate(); children[newActive].activate();
} }
_onWorkspaceMenuSet() {
if (this._workspaceIndicator.menu)
this._menuManager.addMenu(this._workspaceIndicator.menu);
}
_updatePosition() { _updatePosition() {
this.set_position( this.set_position(
this._monitor.x, this._monitor.x,
@@ -934,14 +949,14 @@ class WindowList extends St.Widget {
w2.metaWindow.get_stable_sequence(); w2.metaWindow.get_stable_sequence();
}); });
for (let i = 0; i < windows.length; i++) for (let i = 0; i < windows.length; i++)
this._addWindow(windows[i].metaWindow); this._addWindow(windows[i].metaWindow, false);
} else { } else {
let apps = this._appSystem.get_running().sort((a1, a2) => { let apps = this._appSystem.get_running().sort((a1, a2) => {
return _getAppStableSequence(a1) - return _getAppStableSequence(a1) -
_getAppStableSequence(a2); _getAppStableSequence(a2);
}); });
for (let i = 0; i < apps.length; i++) for (let i = 0; i < apps.length; i++)
this._addApp(apps[i]); this._addApp(apps[i], false);
} }
} }
@@ -955,26 +970,26 @@ class WindowList extends St.Widget {
return; return;
if (app.state === Shell.AppState.RUNNING) if (app.state === Shell.AppState.RUNNING)
this._addApp(app); this._addApp(app, true);
else if (app.state === Shell.AppState.STOPPED) else if (app.state === Shell.AppState.STOPPED)
this._removeApp(app); this._removeApp(app);
} }
_addApp(app) { _addApp(app, animate) {
let button = new AppButton(app, this._perMonitor, this._monitor.index); let button = new AppButton(app, this._perMonitor, this._monitor.index);
this._settings.bind('display-all-workspaces', this._settings.bind('display-all-workspaces',
button, 'ignore-workspace', Gio.SettingsBindFlags.GET); button, 'ignore-workspace', Gio.SettingsBindFlags.GET);
this._windowList.add_child(button); this._windowList.add_child(button);
button.show(animate);
} }
_removeApp(app) { _removeApp(app) {
let children = this._windowList.get_children(); let children = this._windowList.get_children();
let child = children.find(c => c.app === app); let child = children.find(c => c.app === app);
if (child) child?.animateOutAndDestroy();
child.destroy();
} }
_addWindow(win) { _addWindow(win, animate) {
if (!this._grouped) if (!this._grouped)
this._checkGrouping(); this._checkGrouping();
@@ -992,6 +1007,7 @@ class WindowList extends St.Widget {
this._settings.bind('display-all-workspaces', this._settings.bind('display-all-workspaces',
button, 'ignore-workspace', Gio.SettingsBindFlags.GET); button, 'ignore-workspace', Gio.SettingsBindFlags.GET);
this._windowList.add_child(button); this._windowList.add_child(button);
button.show(animate);
} }
_removeWindow(win) { _removeWindow(win) {
@@ -1008,8 +1024,7 @@ class WindowList extends St.Widget {
let children = this._windowList.get_children(); let children = this._windowList.get_children();
let child = children.find(c => c.metaWindow === win); let child = children.find(c => c.metaWindow === win);
if (child) child?.animateOutAndDestroy();
child.destroy();
} }
_monitorDrag() { _monitorDrag() {
@@ -1080,6 +1095,28 @@ class WindowList extends St.Widget {
} }
} }
class BottomWorkspaceIndicator extends WorkspaceIndicator {
static {
GObject.registerClass(this);
}
constructor(params) {
super(params);
this.remove_style_class_name('panel-button');
}
setMenu(menu) {
super.setMenu(menu);
if (!menu)
return;
this.menu.actor.updateArrowSide(St.Side.BOTTOM);
this.menu.actor.remove_style_class_name('panel-menu');
}
}
export default class WindowListExtension extends Extension { export default class WindowListExtension extends Extension {
constructor(metadata) { constructor(metadata) {
super(metadata); super(metadata);
@@ -1131,67 +1168,3 @@ export default class WindowListExtension extends Extension {
return this._windowLists.some(list => list.contains(actor)); return this._windowLists.some(list => list.contains(actor));
} }
} }
class Tooltip extends St.Label {
static {
GObject.registerClass(this);
}
constructor(widget, params) {
super(params);
this._widget = widget;
this._widget.connect('notify::hover', () => {
if (this._widget.hover)
this.open();
else
this.close();
});
}
open() {
const buttonTitleWidget = this._widget.label_actor;
const [, , preferredTitleWidth] = buttonTitleWidget.get_preferred_size();
const maxTitleWidth = buttonTitleWidget.allocation.get_width();
const isTitleFullyShown = preferredTitleWidth <= maxTitleWidth;
if (isTitleFullyShown)
return;
this.set({
text: this._widget.label_actor.get_text(),
visible: true,
opacity: 0,
});
const [stageX, stageY] = this._widget.get_transformed_position();
const thumbWidth = this._widget.allocation.get_width();
const tipWidth = this.width;
const tipHeight = this.height;
const xOffset = Math.floor((thumbWidth - tipWidth) / 2);
const monitor = Main.layoutManager.findMonitorForActor(this);
const x = Math.clamp(
stageX + xOffset,
monitor.x,
monitor.x + monitor.width - tipWidth);
const y = stageY - tipHeight - TOOLTIP_OFFSET;
this.set_position(x, y);
this.ease({
opacity: 255,
duration: TOOLTIP_ANIMATION_TIME,
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
onComplete: () => (this.visible = this._widget.hover),
});
}
close() {
this.ease({
opacity: 0,
duration: TOOLTIP_ANIMATION_TIME,
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
onComplete: () => (this.visible = this._widget.hover),
});
}
}

View File

@@ -12,5 +12,32 @@ extension_data += files(
'stylesheet-light.css' 'stylesheet-light.css'
) )
extension_sources += files('prefs.js', 'workspaceIndicator.js') transform_stylesheet = [
'sed', '-E',
'-e', 's:^\.(workspace-indicator):.window-list-\\1:',
'-e', '/^@import/d',
'@INPUT@',
]
workspaceIndicatorSources = [
configure_file(
input: '../workspace-indicator/workspaceIndicator.js',
output: '@PLAINNAME@',
copy: true,
),
configure_file(
input: '../workspace-indicator/stylesheet-dark.css',
output: 'stylesheet-workspace-switcher-dark.css',
command: transform_stylesheet,
capture: true,
),
configure_file(
input: '../workspace-indicator/stylesheet-light.css',
output: 'stylesheet-workspace-switcher-light.css',
command: transform_stylesheet,
capture: true,
),
]
extension_sources += files('prefs.js') + workspaceIndicatorSources
extension_schemas += files(metadata_conf.get('gschemaname') + '.gschema.xml') extension_schemas += files(metadata_conf.get('gschemaname') + '.gschema.xml')

View File

@@ -36,5 +36,9 @@ SPDX-License-Identifier: GPL-2.0-or-later
only on the primary one. only on the primary one.
</description> </description>
</key> </key>
<key name="embed-previews" type="b">
<default>true</default>
<summary>Show workspace previews in window list</summary>
</key>
</schema> </schema>
</schemalist> </schemalist>

View File

@@ -3,7 +3,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
import Adw from 'gi://Adw'; import Adw from 'gi://Adw';
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';
import GLib from 'gi://GLib'; import GLib from 'gi://GLib';
@@ -30,6 +29,8 @@ class WindowListPrefsWidget extends Adw.PreferencesPage {
this._settings.create_action('show-on-all-monitors')); this._settings.create_action('show-on-all-monitors'));
this._actionGroup.add_action( this._actionGroup.add_action(
this._settings.create_action('display-all-workspaces')); this._settings.create_action('display-all-workspaces'));
this._actionGroup.add_action(
this._settings.create_action('embed-previews'));
const groupingGroup = new Adw.PreferencesGroup({ const groupingGroup = new Adw.PreferencesGroup({
title: _('Window Grouping'), title: _('Window Grouping'),
@@ -58,28 +59,22 @@ class WindowListPrefsWidget extends Adw.PreferencesPage {
const miscGroup = new Adw.PreferencesGroup(); const miscGroup = new Adw.PreferencesGroup();
this.add(miscGroup); this.add(miscGroup);
let toggle = new Gtk.Switch({ let row = new Adw.SwitchRow({
action_name: 'window-list.show-on-all-monitors',
valign: Gtk.Align.CENTER,
});
let row = new Adw.ActionRow({
title: _('Show on all monitors'), title: _('Show on all monitors'),
activatable_widget: toggle, action_name: 'window-list.show-on-all-monitors',
}); });
row.add_suffix(toggle);
miscGroup.add(row); miscGroup.add(row);
toggle = new Gtk.Switch({ row = new Adw.SwitchRow({
action_name: 'window-list.display-all-workspaces',
valign: Gtk.Align.CENTER,
});
this._settings.bind('display-all-workspaces',
toggle, 'active', Gio.SettingsBindFlags.DEFAULT);
row = new Adw.ActionRow({
title: _('Show windows from all workspaces'), title: _('Show windows from all workspaces'),
activatable_widget: toggle, action_name: 'window-list.display-all-workspaces',
});
miscGroup.add(row);
row = new Adw.SwitchRow({
title: _('Show workspace previews'),
action_name: 'window-list.embed-previews',
}); });
row.add_suffix(toggle);
miscGroup.add(row); miscGroup.add(row);
} }
} }

View File

@@ -4,6 +4,7 @@
* *
* SPDX-License-Identifier: GPL-2.0-or-later * SPDX-License-Identifier: GPL-2.0-or-later
*/ */
@import url("stylesheet-workspace-switcher-dark.css");
.window-list { .window-list {
spacing: 2px; spacing: 2px;
@@ -33,8 +34,8 @@
} }
.window-button > StWidget { .window-button > StWidget {
color: #bbb; color: #fff;
background-color: #1d1d1d; background-color: transparent;
border-radius: 4px; border-radius: 4px;
padding: 3px 6px 1px; padding: 3px 6px 1px;
transition: 100ms ease; transition: 100ms ease;
@@ -46,25 +47,25 @@
} }
.window-button:hover > StWidget { .window-button:hover > StWidget {
color: #fff;
background-color: #303030; background-color: #303030;
} }
.window-button:active > StWidget, .window-button:active > StWidget,
.window-button:focus > StWidget { .window-button:focus > StWidget {
color: #fff; background-color: st-lighten(#303030, 5%);
background-color: #3f3f3f;
} }
.window-button.focused > StWidget { .window-button.focused > StWidget {
color: #fff; background-color: #5b5b5b;
background-color: #3f3f3f;
} }
.window-button.focused:active > StWidget { .window-button.focused:hover > StWidget {
color: #fff; background-color: st-lighten(#5b5b5b, 5%);
background-color: #3f3f3f; }
}
.window-button.focused:active > StWidget {
background-color: st-lighten(#5b5b5b, 10%);
}
.window-button.minimized > StWidget { .window-button.minimized > StWidget {
color: #666; color: #666;
@@ -80,37 +81,3 @@
width: 24px; width: 24px;
height: 24px; height: 24px;
} }
.window-list-workspace-indicator .status-label-bin {
background-color: rgba(200, 200, 200, 0.3);
padding: 5px;
margin: 3px;
}
.window-list-workspace-indicator .workspaces-box {
spacing: 3px;
padding: 5px;
}
.window-list-workspace-indicator .workspace {
width: 52px;
border-radius: 4px;
background-color: #1e1e1e;
}
.window-list-workspace-indicator .workspace.active {
background-color: #3f3f3f;
}
.window-list-window-preview {
background-color: #bebebe;
border-radius: 1px;
}
.window-list-window-preview.active {
background-color: #d4d4d4;
}
.notification {
font-weight: normal;
}

View File

@@ -6,6 +6,7 @@
*/ */
@import url("stylesheet-dark.css"); @import url("stylesheet-dark.css");
@import url("stylesheet-workspace-switcher-light.css");
#panel.bottom-panel { #panel.bottom-panel {
border-top-width: 1px; border-top-width: 1px;
@@ -14,58 +15,44 @@
} }
.bottom-panel .window-button > StWidget { .bottom-panel .window-button > StWidget {
color: #2e3436;
background-color: #eee;
border-radius: 3px; border-radius: 3px;
padding: 3px 6px 1px; padding: 3px 6px 1px;
box-shadow: none; box-shadow: none;
text-shadow: none; text-shadow: none;
border: 1px solid rgba(0,0,0,0.2);
} }
.bottom-panel .window-button > StWidget { .window-button > StWidget {
-st-natural-width: 18.7em; color: #000;
max-width: 18.75em; background-color: transparent;
}
.bottom-panel .window-button:hover > StWidget {
background-color: #f9f9f9;
}
.bottom-panel .window-button:active > StWidget,
.bottom-panel .window-button:focus > StWidget {
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.bottom-panel .window-button.focused > StWidget {
background-color: #ccc;
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.bottom-panel .window-button.focused:hover > StWidget {
background-color: #e9e9e9;
}
.bottom-panel .window-button.minimized > StWidget {
color: #888;
box-shadow: none;
}
/* workspace switcher */
.window-list-workspace-indicator .workspace {
border: 2px solid #f6f5f4;
background-color: #ccc;
} }
.window-list-workspace-indicator .workspace.active { .window-button:hover > StWidget {
border-color: #888; background-color: st-darken(#eee,5%);
} }
.window-list-window-preview { .window-button:active > StWidget,
background-color: #ededed; .window-button:focus > StWidget {
border: 1px solid #ccc; background-color: st-darken(#eee, 10%);
} }
.window-list-window-preview.active { .window-button.focused > StWidget {
background-color: #f6f5f4; background-color: st-darken(#eee,15%);
}
.window-button.focused:hover > StWidget {
background-color: st-darken(#eee, 20%);
}
.window-button.focused:active > StWidget {
background-color: st-darken(#eee, 25%);
}
.window-button.minimized > StWidget {
color: #aaa;
background-color: #f9f9f9;
}
.window-button.minimized:active > StWidget {
color: #aaa;
background-color: #f9f9f9;
} }

View File

@@ -6,7 +6,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
import Clutter from 'gi://Clutter'; import Clutter from 'gi://Clutter';
import Graphene from 'gi://Graphene'; import Graphene from 'gi://Graphene';
import St from 'gi://St'; import St from 'gi://St';

View File

@@ -4,443 +4,17 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*- import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js';
import Clutter from 'gi://Clutter';
import Gio from 'gi://Gio';
import GObject from 'gi://GObject';
import Meta from 'gi://Meta';
import St from 'gi://St';
import {Extension, gettext as _} from 'resource:///org/gnome/shell/extensions/extension.js';
import * as DND from 'resource:///org/gnome/shell/ui/dnd.js';
import * as Main from 'resource:///org/gnome/shell/ui/main.js'; import * as Main from 'resource:///org/gnome/shell/ui/main.js';
import * as PanelMenu from 'resource:///org/gnome/shell/ui/panelMenu.js';
import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
const WORKSPACE_SCHEMA = 'org.gnome.desktop.wm.preferences'; import {WorkspaceIndicator} from './workspaceIndicator.js';
const WORKSPACE_KEY = 'workspace-names';
const TOOLTIP_OFFSET = 6;
const TOOLTIP_ANIMATION_TIME = 150;
const MAX_THUMBNAILS = 6;
class WindowPreview extends St.Button {
static {
GObject.registerClass(this);
}
constructor(window) {
super({
style_class: 'workspace-indicator-window-preview',
});
this._delegate = this;
DND.makeDraggable(this, {restoreOnSuccess: true});
this._window = window;
this._window.connectObject(
'size-changed', () => this._checkRelayout(),
'position-changed', () => this._checkRelayout(),
'notify::minimized', this._updateVisible.bind(this),
'notify::window-type', this._updateVisible.bind(this),
this);
this._updateVisible();
global.display.connectObject('notify::focus-window',
this._onFocusChanged.bind(this), this);
this._onFocusChanged();
}
// needed for DND
get metaWindow() {
return this._window;
}
_onFocusChanged() {
if (global.display.focus_window === this._window)
this.add_style_class_name('active');
else
this.remove_style_class_name('active');
}
_checkRelayout() {
const monitor = Main.layoutManager.findIndexForActor(this);
const workArea = Main.layoutManager.getWorkAreaForMonitor(monitor);
if (this._window.get_frame_rect().overlap(workArea))
this.queue_relayout();
}
_updateVisible() {
this.visible = this._window.window_type !== Meta.WindowType.DESKTOP &&
this._window.showing_on_its_workspace();
}
}
class WorkspaceLayout extends Clutter.LayoutManager {
static {
GObject.registerClass(this);
}
vfunc_get_preferred_width() {
return [0, 0];
}
vfunc_get_preferred_height() {
return [0, 0];
}
vfunc_allocate(container, box) {
const monitor = Main.layoutManager.findIndexForActor(container);
const workArea = Main.layoutManager.getWorkAreaForMonitor(monitor);
const hscale = box.get_width() / workArea.width;
const vscale = box.get_height() / workArea.height;
for (const child of container) {
const childBox = new Clutter.ActorBox();
const frameRect = child.metaWindow.get_frame_rect();
childBox.set_size(
Math.round(Math.min(frameRect.width, workArea.width) * hscale),
Math.round(Math.min(frameRect.height, workArea.height) * vscale));
childBox.set_origin(
Math.round((frameRect.x - workArea.x) * hscale),
Math.round((frameRect.y - workArea.y) * vscale));
child.allocate(childBox);
}
}
}
class WorkspaceThumbnail extends St.Button {
static {
GObject.registerClass(this);
}
constructor(index) {
super({
style_class: 'workspace',
child: new Clutter.Actor({
layout_manager: new WorkspaceLayout(),
clip_to_allocation: true,
x_expand: true,
y_expand: true,
}),
});
this._tooltip = new St.Label({
style_class: 'dash-label',
visible: false,
});
Main.uiGroup.add_child(this._tooltip);
this.connect('destroy', this._onDestroy.bind(this));
this.connect('notify::hover', this._syncTooltip.bind(this));
this._index = index;
this._delegate = this; // needed for DND
this._windowPreviews = new Map();
let workspaceManager = global.workspace_manager;
this._workspace = workspaceManager.get_workspace_by_index(index);
this._workspace.connectObject(
'window-added', (ws, window) => this._addWindow(window),
'window-removed', (ws, window) => this._removeWindow(window),
this);
global.display.connectObject('restacked',
this._onRestacked.bind(this), this);
this._workspace.list_windows().forEach(w => this._addWindow(w));
this._onRestacked();
}
acceptDrop(source) {
if (!source.metaWindow)
return false;
this._moveWindow(source.metaWindow);
return true;
}
handleDragOver(source) {
if (source.metaWindow)
return DND.DragMotionResult.MOVE_DROP;
else
return DND.DragMotionResult.CONTINUE;
}
_addWindow(window) {
if (this._windowPreviews.has(window))
return;
let preview = new WindowPreview(window);
preview.connect('clicked', (a, btn) => this.emit('clicked', btn));
this._windowPreviews.set(window, preview);
this.child.add_child(preview);
}
_removeWindow(window) {
let preview = this._windowPreviews.get(window);
if (!preview)
return;
this._windowPreviews.delete(window);
preview.destroy();
}
_onRestacked() {
let lastPreview = null;
let windows = global.get_window_actors().map(a => a.meta_window);
for (let i = 0; i < windows.length; i++) {
let preview = this._windowPreviews.get(windows[i]);
if (!preview)
continue;
this.child.set_child_above_sibling(preview, lastPreview);
lastPreview = preview;
}
}
_moveWindow(window) {
let monitorIndex = Main.layoutManager.findIndexForActor(this);
if (monitorIndex !== window.get_monitor())
window.move_to_monitor(monitorIndex);
window.change_workspace_by_index(this._index, false);
}
on_clicked() {
let ws = global.workspace_manager.get_workspace_by_index(this._index);
if (ws)
ws.activate(global.get_current_time());
}
_syncTooltip() {
if (this.hover) {
this._tooltip.set({
text: Meta.prefs_get_workspace_name(this._index),
visible: true,
opacity: 0,
});
const [stageX, stageY] = this.get_transformed_position();
const thumbWidth = this.allocation.get_width();
const thumbHeight = this.allocation.get_height();
const tipWidth = this._tooltip.width;
const xOffset = Math.floor((thumbWidth - tipWidth) / 2);
const monitor = Main.layoutManager.findMonitorForActor(this);
const x = Math.clamp(
stageX + xOffset,
monitor.x,
monitor.x + monitor.width - tipWidth);
const y = stageY + thumbHeight + TOOLTIP_OFFSET;
this._tooltip.set_position(x, y);
}
this._tooltip.ease({
opacity: this.hover ? 255 : 0,
duration: TOOLTIP_ANIMATION_TIME,
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
onComplete: () => (this._tooltip.visible = this.hover),
});
}
_onDestroy() {
this._tooltip.destroy();
}
}
class WorkspaceIndicator extends PanelMenu.Button {
static {
GObject.registerClass(this);
}
constructor() {
super(0.5, _('Workspace Indicator'));
let container = new St.Widget({
layout_manager: new Clutter.BinLayout(),
x_expand: true,
y_expand: true,
});
this.add_child(container);
let workspaceManager = global.workspace_manager;
this._currentWorkspace = workspaceManager.get_active_workspace_index();
this._statusLabel = new St.Label({
style_class: 'panel-workspace-indicator',
y_align: Clutter.ActorAlign.CENTER,
text: this._labelText(),
});
container.add_child(this._statusLabel);
this._thumbnailsBox = new St.BoxLayout({
style_class: 'panel-workspace-indicator-box',
y_expand: true,
reactive: true,
});
container.add_child(this._thumbnailsBox);
this._workspacesItems = [];
this._workspaceSection = new PopupMenu.PopupMenuSection();
this.menu.addMenuItem(this._workspaceSection);
workspaceManager.connectObject(
'notify::n-workspaces', this._nWorkspacesChanged.bind(this), GObject.ConnectFlags.AFTER,
'workspace-switched', this._onWorkspaceSwitched.bind(this), GObject.ConnectFlags.AFTER,
'notify::layout-rows', this._updateThumbnailVisibility.bind(this),
this);
this.connect('scroll-event', this._onScrollEvent.bind(this));
this._thumbnailsBox.connect('scroll-event', this._onScrollEvent.bind(this));
this._createWorkspacesSection();
this._updateThumbnails();
this._updateThumbnailVisibility();
this._settings = new Gio.Settings({schema_id: WORKSPACE_SCHEMA});
this._settings.connectObject(`changed::${WORKSPACE_KEY}`,
this._updateMenuLabels.bind(this), this);
}
_onDestroy() {
Main.panel.set_offscreen_redirect(Clutter.OffscreenRedirect.ALWAYS);
super._onDestroy();
}
_updateThumbnailVisibility() {
const {workspaceManager} = global;
const vertical = workspaceManager.layout_rows === -1;
const useMenu =
vertical || workspaceManager.n_workspaces > MAX_THUMBNAILS;
this.reactive = useMenu;
this._statusLabel.visible = useMenu;
this._thumbnailsBox.visible = !useMenu;
// Disable offscreen-redirect when showing the workspace switcher
// so that clip-to-allocation works
Main.panel.set_offscreen_redirect(useMenu
? Clutter.OffscreenRedirect.ALWAYS
: Clutter.OffscreenRedirect.AUTOMATIC_FOR_OPACITY);
}
_onWorkspaceSwitched() {
this._currentWorkspace = global.workspace_manager.get_active_workspace_index();
this._updateMenuOrnament();
this._updateActiveThumbnail();
this._statusLabel.set_text(this._labelText());
}
_nWorkspacesChanged() {
this._createWorkspacesSection();
this._updateThumbnails();
this._updateThumbnailVisibility();
}
_updateMenuOrnament() {
for (let i = 0; i < this._workspacesItems.length; i++) {
this._workspacesItems[i].setOrnament(i === this._currentWorkspace
? PopupMenu.Ornament.DOT
: PopupMenu.Ornament.NO_DOT);
}
}
_updateActiveThumbnail() {
let thumbs = this._thumbnailsBox.get_children();
for (let i = 0; i < thumbs.length; i++) {
if (i === this._currentWorkspace)
thumbs[i].add_style_class_name('active');
else
thumbs[i].remove_style_class_name('active');
}
}
_labelText(workspaceIndex) {
if (workspaceIndex === undefined) {
workspaceIndex = this._currentWorkspace;
return (workspaceIndex + 1).toString();
}
return Meta.prefs_get_workspace_name(workspaceIndex);
}
_updateMenuLabels() {
for (let i = 0; i < this._workspacesItems.length; i++)
this._workspacesItems[i].label.text = this._labelText(i);
}
_createWorkspacesSection() {
let workspaceManager = global.workspace_manager;
this._workspaceSection.removeAll();
this._workspacesItems = [];
this._currentWorkspace = workspaceManager.get_active_workspace_index();
let i = 0;
for (; i < workspaceManager.n_workspaces; i++) {
this._workspacesItems[i] = new PopupMenu.PopupMenuItem(this._labelText(i));
this._workspaceSection.addMenuItem(this._workspacesItems[i]);
this._workspacesItems[i].workspaceId = i;
this._workspacesItems[i].label_actor = this._statusLabel;
this._workspacesItems[i].connect('activate', (actor, _event) => {
this._activate(actor.workspaceId);
});
this._workspacesItems[i].setOrnament(i === this._currentWorkspace
? PopupMenu.Ornament.DOT
: PopupMenu.Ornament.NO_DOT);
}
this._statusLabel.set_text(this._labelText());
}
_updateThumbnails() {
let workspaceManager = global.workspace_manager;
this._thumbnailsBox.destroy_all_children();
for (let i = 0; i < workspaceManager.n_workspaces; i++) {
let thumb = new WorkspaceThumbnail(i);
this._thumbnailsBox.add_child(thumb);
}
this._updateActiveThumbnail();
}
_activate(index) {
let workspaceManager = global.workspace_manager;
if (index >= 0 && index < workspaceManager.n_workspaces) {
let metaWorkspace = workspaceManager.get_workspace_by_index(index);
metaWorkspace.activate(global.get_current_time());
}
}
_onScrollEvent(actor, event) {
let direction = event.get_scroll_direction();
let diff = 0;
if (direction === Clutter.ScrollDirection.DOWN)
diff = 1;
else if (direction === Clutter.ScrollDirection.UP)
diff = -1;
else
return;
let newIndex = global.workspace_manager.get_active_workspace_index() + diff;
this._activate(newIndex);
}
}
export default class WorkspaceIndicatorExtension extends Extension { export default class WorkspaceIndicatorExtension extends Extension {
enable() { enable() {
this._indicator = new WorkspaceIndicator(); this._indicator = new WorkspaceIndicator({
settings: this.getSettings(),
});
Main.panel.addToStatusArea('workspace-indicator', this._indicator); Main.panel.addToStatusArea('workspace-indicator', this._indicator);
} }

View File

@@ -7,6 +7,10 @@ extension_data += configure_file(
output: metadata_name, output: metadata_name,
configuration: metadata_conf configuration: metadata_conf
) )
extension_data += files('stylesheet.css') extension_data += files(
'stylesheet-dark.css',
'stylesheet-light.css',
)
extension_schemas += files('schemas/' + metadata_conf.get('gschemaname') + '.gschema.xml')
extension_sources += files('prefs.js') extension_sources += files('prefs.js', 'workspaceIndicator.js')

View File

@@ -3,7 +3,6 @@
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
// -*- mode: js2; indent-tabs-mode: nil; js2-basic-offset: 4 -*-
import Adw from 'gi://Adw'; import Adw from 'gi://Adw';
import Gio from 'gi://Gio'; import Gio from 'gi://Gio';
import GLib from 'gi://GLib'; import GLib from 'gi://GLib';
@@ -18,6 +17,25 @@ const N_ = e => e;
const WORKSPACE_SCHEMA = 'org.gnome.desktop.wm.preferences'; const WORKSPACE_SCHEMA = 'org.gnome.desktop.wm.preferences';
const WORKSPACE_KEY = 'workspace-names'; const WORKSPACE_KEY = 'workspace-names';
class GeneralGroup extends Adw.PreferencesGroup {
static {
GObject.registerClass(this);
}
constructor(settings) {
super();
const row = new Adw.SwitchRow({
title: _('Show Previews In Top Bar'),
});
this.add(row);
settings.bind('embed-previews',
row, 'active',
Gio.SettingsBindFlags.DEFAULT);
}
}
class NewItem extends GObject.Object {} class NewItem extends GObject.Object {}
GObject.registerClass(NewItem); GObject.registerClass(NewItem);
@@ -119,7 +137,7 @@ class WorkspacesList extends GObject.Object {
} }
} }
class WorkspaceSettingsWidget extends Adw.PreferencesGroup { class WorkspacesGroup extends Adw.PreferencesGroup {
static { static {
GObject.registerClass(this); GObject.registerClass(this);
@@ -265,6 +283,9 @@ class NewWorkspaceRow extends Adw.PreferencesRow {
export default class WorkspaceIndicatorPrefs extends ExtensionPreferences { export default class WorkspaceIndicatorPrefs extends ExtensionPreferences {
getPreferencesWidget() { getPreferencesWidget() {
return new WorkspaceSettingsWidget(); const page = new Adw.PreferencesPage();
page.add(new GeneralGroup(this.getSettings()));
page.add(new WorkspacesGroup());
return page;
} }
} }

View File

@@ -0,0 +1,15 @@
<!--
SPDX-FileCopyrightText: 2024 Florian Müllner <fmuellner@gnome.org>
SPDX-License-Identifier: GPL-2.0-or-later
-->
<schemalist gettext-domain="gnome-shell-extensions">
<schema id="org.gnome.shell.extensions.workspace-indicator"
path="/org/gnome/shell/extensions/workspace-indicator/">
<key name="embed-previews" type="b">
<default>true</default>
<summary>Show workspace previews in top bar</summary>
</key>
</schema>
</schemalist>

View File

@@ -0,0 +1,76 @@
/*
* SPDX-FileCopyrightText: 2011 Erick Pérez Castellanos <erick.red@gmail.com>
* SPDX-FileCopyrightText: 2019 Florian Müllner <fmuellner@gnome.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
.workspace-indicator .status-label {
padding: 0 8px;
}
.workspace-indicator .workspaces-view.hfade {
-st-hfade-offset: 20px;
}
.workspace-indicator-menu .workspaces-view {
max-width: 480px;
}
.workspace-indicator .workspaces-box {
spacing: 3px;
}
.workspace-indicator-menu .workspaces-box {
padding: 5px;
spacing: 6px;
}
.workspace-indicator .workspace-box {
padding-top: 5px;
padding-bottom: 5px;
}
.workspace-indicator StButton:first-child:ltr > .workspace-box,
.workspace-indicator StButton:last-child:rtl > .workspace-box {
padding-left: 5px;
}
.workspace-indicator StButton:last-child:ltr > .workspace-box,
.workspace-indicator StButton:first-child:rtl > .workspace-box {
padding-right: 5px;
}
.workspace-indicator-menu .workspace-box {
spacing: 6px;
}
.workspace-indicator-menu .workspace,
.workspace-indicator .workspace {
border: 1px solid transparent;
border-radius: 4px;
background-color: #3f3f3f;
}
.workspace-indicator .workspace {
width: 52px;
}
.workspace-indicator-menu .workspace {
height: 80px;
width: 160px;
}
.workspace-indicator-menu .workspace.active,
.workspace-indicator .workspace.active {
border-color: #fff;
}
.workspace-indicator-window-preview {
background-color: #bebebe;
border: 1px solid #828282;
border-radius: 1px;
}
.workspace-indicator-window-preview.active {
background-color: #d4d4d4;
}

View File

@@ -0,0 +1,25 @@
/*
* SPDX-FileCopyrightText: 2013 Florian Müllner <fmuellner@gnome.org>
* SPDX-FileCopyrightText: 2015 Jakub Steiner <jimmac@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
@import url("stylesheet-dark.css");
.workspace-indicator .workspace {
background-color: #ccc;
}
.workspace-indicator .workspace.active {
border-color: #888;
}
.workspace-indicator-window-preview {
background-color: #ededed;
border: 1px solid #ccc;
}
.workspace-indicator-window-preview.active {
background-color: #f6f5f4;
}

View File

@@ -1,35 +0,0 @@
/*
* SPDX-FileCopyrightText: 2011 Erick Pérez Castellanos <erick.red@gmail.com>
* SPDX-FileCopyrightText: 2019 Florian Müllner <fmuellner@gnome.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
.panel-workspace-indicator {
padding: 0 8px;
}
.panel-workspace-indicator-box {
padding: 4px 0;
spacing: 4px;
}
.panel-workspace-indicator-box .workspace {
width: 40px;
border: 2px solid #000;
border-radius: 2px;
background-color: #595959;
}
.panel-workspace-indicator-box .workspace.active {
border-color: #fff;
}
.workspace-indicator-window-preview {
background-color: #bebebe;
border: 1px solid #828282;
}
.workspace-indicator-window-preview.active {
background-color: #d4d4d4;
}

View File

@@ -1,4 +1,6 @@
// SPDX-FileCopyrightText: 2019 Florian Müllner <fmuellner@gnome.org> // SPDX-FileCopyrightText: 2011 Erick Pérez Castellanos <erick.red@gmail.com>
// SPDX-FileCopyrightText: 2011 Giovanni Campagna <gcampagna@src.gnome.org>
// SPDX-FileCopyrightText: 2017 Florian Müllner <fmuellner@gnome.org>
// //
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
@@ -18,7 +20,9 @@ import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
const TOOLTIP_OFFSET = 6; const TOOLTIP_OFFSET = 6;
const TOOLTIP_ANIMATION_TIME = 150; const TOOLTIP_ANIMATION_TIME = 150;
const MAX_THUMBNAILS = 6; const SCROLL_TIME = 100;
let baseStyleClassName = '';
class WindowPreview extends St.Button { class WindowPreview extends St.Button {
static { static {
@@ -27,7 +31,7 @@ class WindowPreview extends St.Button {
constructor(window) { constructor(window) {
super({ super({
style_class: 'window-list-window-preview', style_class: `${baseStyleClassName}-window-preview`,
}); });
this._delegate = this; this._delegate = this;
@@ -39,7 +43,7 @@ class WindowPreview extends St.Button {
'size-changed', () => this._checkRelayout(), 'size-changed', () => this._checkRelayout(),
'position-changed', () => this._checkRelayout(), 'position-changed', () => this._checkRelayout(),
'notify::minimized', this._updateVisible.bind(this), 'notify::minimized', this._updateVisible.bind(this),
'notify::window-type', this._updateVisible.bind(this), 'notify::skip-taskbar', this._updateVisible.bind(this),
this); this);
this._updateVisible(); this._updateVisible();
@@ -68,7 +72,7 @@ class WindowPreview extends St.Button {
} }
_updateVisible() { _updateVisible() {
this.visible = this._window.window_type !== Meta.WindowType.DESKTOP && this.visible = !this._window.skip_taskbar &&
this._window.showing_on_its_workspace(); this._window.showing_on_its_workspace();
} }
} }
@@ -100,19 +104,39 @@ class WorkspaceLayout extends Clutter.LayoutManager {
Math.round(Math.min(frameRect.height, workArea.height) * vscale)); Math.round(Math.min(frameRect.height, workArea.height) * vscale));
childBox.set_origin( childBox.set_origin(
Math.round((frameRect.x - workArea.x) * hscale), Math.round((frameRect.x - workArea.x) * hscale),
Math.round((frameRect.y - workArea.y) * vscale)); Math.round((frameRect.y - workArea.y) * vscale));
child.allocate(childBox); child.allocate(childBox);
} }
} }
} }
class WorkspaceThumbnail extends St.Button { class WorkspaceThumbnail extends St.Button {
static [GObject.properties] = {
'active': GObject.ParamSpec.boolean(
'active', null, null,
GObject.ParamFlags.READWRITE,
false),
'show-label': GObject.ParamSpec.boolean(
'show-label', null, null,
GObject.ParamFlags.READWRITE,
false),
};
static { static {
GObject.registerClass(this); GObject.registerClass(this);
} }
constructor(index) { constructor(index) {
super({ super();
const box = new St.BoxLayout({
style_class: 'workspace-box',
y_expand: true,
vertical: true,
});
this.set_child(box);
this._preview = new St.Bin({
style_class: 'workspace', style_class: 'workspace',
child: new Clutter.Actor({ child: new Clutter.Actor({
layout_manager: new WorkspaceLayout(), layout_manager: new WorkspaceLayout(),
@@ -120,7 +144,15 @@ class WorkspaceThumbnail extends St.Button {
x_expand: true, x_expand: true,
y_expand: true, y_expand: true,
}), }),
y_expand: true,
}); });
box.add_child(this._preview);
this._label = new St.Label({
x_align: Clutter.ActorAlign.CENTER,
text: Meta.prefs_get_workspace_name(index),
});
box.add_child(this._label);
this._tooltip = new St.Label({ this._tooltip = new St.Label({
style_class: 'dash-label', style_class: 'dash-label',
@@ -128,9 +160,19 @@ class WorkspaceThumbnail extends St.Button {
}); });
Main.uiGroup.add_child(this._tooltip); Main.uiGroup.add_child(this._tooltip);
this.bind_property('show-label',
this._label, 'visible',
GObject.BindingFlags.SYNC_CREATE);
this.connect('destroy', this._onDestroy.bind(this)); this.connect('destroy', this._onDestroy.bind(this));
this.connect('notify::hover', this._syncTooltip.bind(this)); this.connect('notify::hover', this._syncTooltip.bind(this));
const desktopSettings =
new Gio.Settings({schema_id: 'org.gnome.desktop.wm.preferences'});
desktopSettings.connectObject('changed::workspace-names', () => {
this._label.text = Meta.prefs_get_workspace_name(index);
}, this);
this._index = index; this._index = index;
this._delegate = this; // needed for DND this._delegate = this; // needed for DND
@@ -139,6 +181,10 @@ class WorkspaceThumbnail extends St.Button {
let workspaceManager = global.workspace_manager; let workspaceManager = global.workspace_manager;
this._workspace = workspaceManager.get_workspace_by_index(index); this._workspace = workspaceManager.get_workspace_by_index(index);
this._workspace.bind_property('active',
this, 'active',
GObject.BindingFlags.SYNC_CREATE);
this._workspace.connectObject( this._workspace.connectObject(
'window-added', (ws, window) => this._addWindow(window), 'window-added', (ws, window) => this._addWindow(window),
'window-removed', (ws, window) => this._removeWindow(window), 'window-removed', (ws, window) => this._removeWindow(window),
@@ -151,6 +197,18 @@ class WorkspaceThumbnail extends St.Button {
this._onRestacked(); this._onRestacked();
} }
get active() {
return this._preview.has_style_class_name('active');
}
set active(active) {
if (active)
this._preview.add_style_class_name('active');
else
this._preview.remove_style_class_name('active');
this.notify('active');
}
acceptDrop(source) { acceptDrop(source) {
if (!source.metaWindow) if (!source.metaWindow)
return false; return false;
@@ -173,7 +231,7 @@ class WorkspaceThumbnail extends St.Button {
let preview = new WindowPreview(window); let preview = new WindowPreview(window);
preview.connect('clicked', (a, btn) => this.emit('clicked', btn)); preview.connect('clicked', (a, btn) => this.emit('clicked', btn));
this._windowPreviews.set(window, preview); this._windowPreviews.set(window, preview);
this.child.add_child(preview); this._preview.child.add_child(preview);
} }
_removeWindow(window) { _removeWindow(window) {
@@ -193,7 +251,7 @@ class WorkspaceThumbnail extends St.Button {
if (!preview) if (!preview)
continue; continue;
this.child.set_child_above_sibling(preview, lastPreview); this._preview.child.set_child_above_sibling(preview, lastPreview);
lastPreview = preview; lastPreview = preview;
} }
} }
@@ -212,6 +270,9 @@ class WorkspaceThumbnail extends St.Button {
} }
_syncTooltip() { _syncTooltip() {
if (this.showLabel)
return;
if (this.hover) { if (this.hover) {
this._tooltip.set({ this._tooltip.set({
text: Meta.prefs_get_workspace_name(this._index), text: Meta.prefs_get_workspace_name(this._index),
@@ -220,16 +281,17 @@ class WorkspaceThumbnail extends St.Button {
}); });
const [stageX, stageY] = this.get_transformed_position(); const [stageX, stageY] = this.get_transformed_position();
const thumbWidth = this.allocation.get_width(); const [thumbWidth, thumbHeight] = this.allocation.get_size();
const tipWidth = this._tooltip.width; const [tipWidth, tipHeight] = this._tooltip.get_size();
const tipHeight = this._tooltip.height;
const xOffset = Math.floor((thumbWidth - tipWidth) / 2); const xOffset = Math.floor((thumbWidth - tipWidth) / 2);
const monitor = Main.layoutManager.findMonitorForActor(this); const monitor = Main.layoutManager.findMonitorForActor(this);
const x = Math.clamp( const x = Math.clamp(
stageX + xOffset, stageX + xOffset,
monitor.x, monitor.x,
monitor.x + monitor.width - tipWidth); monitor.x + monitor.width - tipWidth);
const y = stageY - tipHeight - TOOLTIP_OFFSET; const y = stageY - monitor.y > thumbHeight + TOOLTIP_OFFSET
? stageY - tipHeight - TOOLTIP_OFFSET // show above
: stageY + thumbHeight + TOOLTIP_OFFSET; // show below
this._tooltip.set_position(x, y); this._tooltip.set_position(x, y);
} }
@@ -246,17 +308,136 @@ class WorkspaceThumbnail extends St.Button {
} }
} }
class WorkspacePreviews extends Clutter.Actor {
static [GObject.properties] = {
'show-labels': GObject.ParamSpec.boolean(
'show-labels', null, null,
GObject.ParamFlags.READWRITE | GObject.ParamFlags.CONSTRUCT_ONLY,
false),
};
static {
GObject.registerClass(this);
}
constructor(params) {
super({
...params,
layout_manager: new Clutter.BinLayout(),
reactive: true,
y_expand: true,
});
this.connect('scroll-event',
(a, event) => Main.wm.handleWorkspaceScroll(event));
const {workspaceManager} = global;
workspaceManager.connectObject(
'notify::n-workspaces', () => this._updateThumbnails(), GObject.ConnectFlags.AFTER,
'workspace-switched', () => this._updateScrollPosition(),
this);
this.connect('notify::mapped', () => {
if (this.mapped)
this._updateScrollPosition();
});
this._thumbnailsBox = new St.BoxLayout({
style_class: 'workspaces-box',
y_expand: true,
});
this._scrollView = new St.ScrollView({
style_class: 'workspaces-view hfade',
enable_mouse_scrolling: false,
hscrollbar_policy: St.PolicyType.EXTERNAL,
vscrollbar_policy: St.PolicyType.NEVER,
y_expand: true,
child: this._thumbnailsBox,
});
this.add_child(this._scrollView);
this._updateThumbnails();
}
_updateThumbnails() {
const {nWorkspaces} = global.workspace_manager;
this._thumbnailsBox.destroy_all_children();
for (let i = 0; i < nWorkspaces; i++) {
const thumb = new WorkspaceThumbnail(i);
this.bind_property('show-labels',
thumb, 'show-label',
GObject.BindingFlags.SYNC_CREATE);
this._thumbnailsBox.add_child(thumb);
}
if (this.mapped)
this._updateScrollPosition();
}
_updateScrollPosition() {
const adjustment = this._scrollView.hadjustment;
const {upper, pageSize} = adjustment;
let {value} = adjustment;
const activeWorkspace =
[...this._thumbnailsBox].find(a => a.active);
if (!activeWorkspace)
return;
let offset = 0;
const hfade = this._scrollView.get_effect('fade');
if (hfade)
offset = hfade.fade_margins.left;
let {x1, x2} = activeWorkspace.get_allocation_box();
let parent = activeWorkspace.get_parent();
while (parent !== this._scrollView) {
if (!parent)
throw new Error('actor not in scroll view');
const box = parent.get_allocation_box();
x1 += box.x1;
x2 += box.x1;
parent = parent.get_parent();
}
if (x1 < value + offset)
value = Math.max(0, x1 - offset);
else if (x2 > value + pageSize - offset)
value = Math.min(upper, x2 + offset - pageSize);
else
return;
adjustment.ease(value, {
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
duration: SCROLL_TIME,
});
}
}
export class WorkspaceIndicator extends PanelMenu.Button { export class WorkspaceIndicator extends PanelMenu.Button {
static { static {
GObject.registerClass(this); GObject.registerClass(this);
} }
constructor() { constructor(params = {}) {
super(0.5, _('Workspace Indicator'), true); super(0.5, _('Workspace Indicator'), true);
this.setMenu(new PopupMenu.PopupMenu(this, 0.0, St.Side.BOTTOM));
this.add_style_class_name('window-list-workspace-indicator'); const {
this.remove_style_class_name('panel-button'); baseStyleClass = 'workspace-indicator',
this.menu.actor.remove_style_class_name('panel-menu'); settings,
} = params;
this._settings = settings;
baseStyleClassName = baseStyleClass;
this.add_style_class_name(baseStyleClassName);
let container = new St.Widget({ let container = new St.Widget({
layout_manager: new Clutter.BinLayout(), layout_manager: new Clutter.BinLayout(),
@@ -268,163 +449,89 @@ export class WorkspaceIndicator extends PanelMenu.Button {
let workspaceManager = global.workspace_manager; let workspaceManager = global.workspace_manager;
this._currentWorkspace = workspaceManager.get_active_workspace_index(); this._currentWorkspace = workspaceManager.get_active_workspace_index();
this._statusLabel = new St.Label({text: this._getStatusText()}); this._statusLabel = new St.Label({
style_class: 'status-label',
this._statusBin = new St.Bin({ y_align: Clutter.ActorAlign.CENTER,
style_class: 'status-label-bin', text: this._getStatusText(),
x_expand: true,
y_expand: true,
child: this._statusLabel,
}); });
container.add_child(this._statusBin); container.add_child(this._statusLabel);
this._thumbnailsBox = new St.BoxLayout({ this._thumbnails = new WorkspacePreviews();
style_class: 'workspaces-box', container.add_child(this._thumbnails);
y_expand: true,
reactive: true,
});
this._thumbnailsBox.connect('scroll-event',
this._onScrollEvent.bind(this));
container.add_child(this._thumbnailsBox);
this._workspacesItems = []; this._workspacesItems = [];
workspaceManager.connectObject( workspaceManager.connectObject(
'notify::n-workspaces', this._nWorkspacesChanged.bind(this), GObject.ConnectFlags.AFTER,
'workspace-switched', this._onWorkspaceSwitched.bind(this), GObject.ConnectFlags.AFTER, 'workspace-switched', this._onWorkspaceSwitched.bind(this), GObject.ConnectFlags.AFTER,
'notify::layout-rows', this._updateThumbnailVisibility.bind(this),
this); this);
this.connect('scroll-event', this._onScrollEvent.bind(this)); this.connect('scroll-event',
this._updateMenu(); (a, event) => Main.wm.handleWorkspaceScroll(event));
this._updateThumbnails();
this._updateThumbnailVisibility();
this._settings = new Gio.Settings({schema_id: 'org.gnome.desktop.wm.preferences'}); this._inTopBar = false;
this._settings.connectObject('changed::workspace-names', this.connect('notify::realized', () => {
() => this._updateMenuLabels(), this); if (!this.realized)
return;
this._inTopBar = Main.panel.contains(this);
this._updateTopBarRedirect();
});
this._settings.connect('changed::embed-previews',
() => this._updateThumbnailVisibility());
this._updateThumbnailVisibility();
}
_onDestroy() {
if (this._inTopBar)
Main.panel.set_offscreen_redirect(Clutter.OffscreenRedirect.ALWAYS);
this._inTopBar = false;
super._onDestroy();
} }
_updateThumbnailVisibility() { _updateThumbnailVisibility() {
const {workspaceManager} = global; const useMenu = !this._settings.get_boolean('embed-previews');
const vertical = workspaceManager.layout_rows === -1;
const useMenu =
vertical || workspaceManager.n_workspaces > MAX_THUMBNAILS;
this.reactive = useMenu; this.reactive = useMenu;
this._statusBin.visible = useMenu; this._statusLabel.visible = useMenu;
this._thumbnailsBox.visible = !useMenu; this._thumbnails.visible = !useMenu;
this.setMenu(useMenu
? this._createPreviewMenu()
: null);
this._updateTopBarRedirect();
}
_updateTopBarRedirect() {
if (!this._inTopBar)
return;
// Disable offscreen-redirect when showing the workspace switcher
// so that clip-to-allocation works
Main.panel.set_offscreen_redirect(this._thumbnails.visible
? Clutter.OffscreenRedirect.ALWAYS
: Clutter.OffscreenRedirect.AUTOMATIC_FOR_OPACITY);
} }
_onWorkspaceSwitched() { _onWorkspaceSwitched() {
let workspaceManager = global.workspace_manager; this._currentWorkspace = global.workspace_manager.get_active_workspace_index();
this._currentWorkspace = workspaceManager.get_active_workspace_index();
this._updateMenuOrnament();
this._updateActiveThumbnail();
this._statusLabel.set_text(this._getStatusText()); this._statusLabel.set_text(this._getStatusText());
} }
_nWorkspacesChanged() {
this._updateMenu();
this._updateThumbnails();
this._updateThumbnailVisibility();
}
_updateMenuOrnament() {
for (let i = 0; i < this._workspacesItems.length; i++) {
this._workspacesItems[i].setOrnament(i === this._currentWorkspace
? PopupMenu.Ornament.DOT
: PopupMenu.Ornament.NO_DOT);
}
}
_updateActiveThumbnail() {
let thumbs = this._thumbnailsBox.get_children();
for (let i = 0; i < thumbs.length; i++) {
if (i === this._currentWorkspace)
thumbs[i].add_style_class_name('active');
else
thumbs[i].remove_style_class_name('active');
}
}
_getStatusText() { _getStatusText() {
let workspaceManager = global.workspace_manager; const {nWorkspaces} = global.workspace_manager;
let current = workspaceManager.get_active_workspace_index(); const current = this._currentWorkspace + 1;
let total = workspaceManager.n_workspaces; return `${current} / ${nWorkspaces}`;
return '%d / %d'.format(current + 1, total);
} }
_updateMenuLabels() { _createPreviewMenu() {
for (let i = 0; i < this._workspacesItems.length; i++) { const menu = new PopupMenu.PopupMenu(this, 0.5, St.Side.TOP);
let item = this._workspacesItems[i];
let name = Meta.prefs_get_workspace_name(i);
item.label.text = name;
}
}
_updateMenu() { const previews = new WorkspacePreviews({show_labels: true});
let workspaceManager = global.workspace_manager; menu.box.add_child(previews);
menu.actor.add_style_class_name(`${baseStyleClassName}-menu`);
this.menu.removeAll(); return menu;
this._workspacesItems = [];
this._currentWorkspace = workspaceManager.get_active_workspace_index();
for (let i = 0; i < workspaceManager.n_workspaces; i++) {
let name = Meta.prefs_get_workspace_name(i);
let item = new PopupMenu.PopupMenuItem(name);
item.workspaceId = i;
item.connect('activate', () => {
this._activate(item.workspaceId);
});
item.setOrnament(i === this._currentWorkspace
? PopupMenu.Ornament.DOT
: PopupMenu.Ornament.NO_DOT);
this.menu.addMenuItem(item);
this._workspacesItems[i] = item;
}
this._statusLabel.set_text(this._getStatusText());
}
_updateThumbnails() {
let workspaceManager = global.workspace_manager;
this._thumbnailsBox.destroy_all_children();
for (let i = 0; i < workspaceManager.n_workspaces; i++) {
let thumb = new WorkspaceThumbnail(i);
this._thumbnailsBox.add_child(thumb);
}
this._updateActiveThumbnail();
}
_activate(index) {
let workspaceManager = global.workspace_manager;
if (index >= 0 && index < workspaceManager.n_workspaces) {
let metaWorkspace = workspaceManager.get_workspace_by_index(index);
metaWorkspace.activate(global.get_current_time());
}
}
_onScrollEvent(actor, event) {
let direction = event.get_scroll_direction();
let diff = 0;
if (direction === Clutter.ScrollDirection.DOWN)
diff = 1;
else if (direction === Clutter.ScrollDirection.UP)
diff = -1;
else
return;
let newIndex = this._currentWorkspace + diff;
this._activate(newIndex);
} }
} }

View File

@@ -32,10 +32,4 @@ and will be picked automatically at next login.
<gnome:userid>fmuellner</gnome:userid> <gnome:userid>fmuellner</gnome:userid>
</foaf:Person> </foaf:Person>
</maintainer> </maintainer>
<maintainer>
<foaf:Person>
<foaf:name>Marge Bot</foaf:name>
<gnome:userid>marge-bot</gnome:userid>
</foaf:Person>
</maintainer>
</Project> </Project>

View File

@@ -2,10 +2,11 @@
# #
# SPDX-License-Identifier: GPL-2.0-or-later # SPDX-License-Identifier: GPL-2.0-or-later
project('gnome-shell-extensions', project(
version: '46.2', 'gnome-shell-extensions',
meson_version: '>= 0.58.0', version: '47.3',
license: 'GPL2+' meson_version: '>= 1.1.0',
license: 'GPL-2.0-or-later',
) )
gettext_domain = meson.project_name() gettext_domain = meson.project_name()
@@ -34,7 +35,7 @@ classic_extensions = [
'apps-menu', 'apps-menu',
'places-menu', 'places-menu',
'launch-new-instance', 'launch-new-instance',
'window-list' 'window-list',
] ]
default_extensions = classic_extensions default_extensions = classic_extensions
@@ -42,17 +43,14 @@ default_extensions += [
'drive-menu', 'drive-menu',
'light-style', 'light-style',
'screenshot-window-sizer', 'screenshot-window-sizer',
'status-icons',
'system-monitor', 'system-monitor',
'windowsNavigator', 'windowsNavigator',
'workspace-indicator' 'workspace-indicator',
] ]
all_extensions = default_extensions all_extensions = default_extensions
all_extensions += [ all_extensions += ['auto-move-windows', 'native-window-placement', 'user-theme']
'auto-move-windows',
'native-window-placement',
'user-theme'
]
enabled_extensions = get_option('enable_extensions') enabled_extensions = get_option('enable_extensions')
@@ -71,11 +69,10 @@ endif
classic_mode_enabled = get_option('classic_mode') classic_mode_enabled = get_option('classic_mode')
if classic_mode_enabled if classic_mode_enabled
# Sanity check: Make sure all classic extensions are enabled # Sanity check: Make sure all classic extensions are enabled
foreach e : classic_extensions foreach e : classic_extensions
if not enabled_extensions.contains(e) if not enabled_extensions.contains(e)
error('Classic mode is enabled, ' + error(f'Classic mode is enabled, but the required extension @e@ is not')
'but the required extension @0@ is not.'.format(e))
endif endif
endforeach endforeach
endif endif
@@ -83,7 +80,7 @@ endif
# Sanity check: Make sure enabled extensions are valid # Sanity check: Make sure enabled extensions are valid
foreach e : enabled_extensions foreach e : enabled_extensions
if not all_extensions.contains(e) if not all_extensions.contains(e)
error('Invalid extension @0@.'.format(e)) error(f'Invalid extension @e@.')
endif endif
endforeach endforeach
@@ -91,24 +88,20 @@ if classic_mode_enabled
subdir('data') subdir('data')
meson.add_install_script( meson.add_install_script(
'meson/session-post-install.py', 'meson/session-post-install.py',
join_paths(get_option('prefix'), datadir) join_paths(get_option('prefix'), datadir),
) )
endif endif
subdir('extensions') subdir('extensions')
subdir('po') subdir('po')
gnome.post_install( gnome.post_install(glib_compile_schemas: true)
glib_compile_schemas: true,
)
meson.add_dist_script('meson/check-version.py', meson.add_dist_script('meson/check-version.py', meson.project_version(), 'NEWS')
meson.project_version(),
'NEWS')
summary_options = { summary_options = {
'extensions': enabled_extensions, 'extensions': enabled_extensions,
'classic_mode': get_option('classic_mode'), 'classic_mode': get_option('classic_mode'),
} }
summary_dirs = { summary_dirs = {

View File

@@ -6,7 +6,8 @@
import os, sys import os, sys
from pathlib import Path from pathlib import Path
import argparse, subprocess from xml.etree.ElementTree import ElementTree
import argparse
def check_version(version, file, type='news'): def check_version(version, file, type='news'):
if type == 'news': if type == 'news':
@@ -16,8 +17,11 @@ def check_version(version, file, type='news'):
if not ok: if not ok:
raise Exception("{} does not start with {}".format(file, version)) raise Exception("{} does not start with {}".format(file, version))
elif type == 'metainfo': elif type == 'metainfo':
subprocess.run(['appstream-util', 'validate-version', file, version], query = './releases/release[@version="{}"]'.format(version)
check=True) ok = ElementTree(file=file).find(query) is not None
print("{}: {}".format(file, "OK" if ok else "FAILED"))
if not ok:
raise Exception("{} does not contain release {}".format(file, version))
else: else:
raise Exception('Not implemented') raise Exception('Not implemented')

View File

@@ -17,7 +17,7 @@ extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml
extensions/window-list/extension.js extensions/window-list/extension.js
extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml
extensions/window-list/prefs.js extensions/window-list/prefs.js
extensions/window-list/workspaceIndicator.js
extensions/windowsNavigator/extension.js extensions/windowsNavigator/extension.js
extensions/workspace-indicator/extension.js
extensions/workspace-indicator/prefs.js extensions/workspace-indicator/prefs.js
extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml
extensions/workspace-indicator/workspaceIndicator.js

View File

@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-15 08:27+0300\n" "PO-Revision-Date: 2024-08-23 16:00+0300\n"
"Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n" "Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n"
"Language-Team: Belarusian <i18n-bel-gnome@googlegroups.com>\n" "Language-Team: Belarusian <i18n-bel-gnome@googlegroups.com>\n"
"Language: be\n" "Language: be\n"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -41,7 +41,7 @@ msgstr "Класічны GNOME на Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Абраныя" msgstr "Абраныя"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Праграмы" msgstr "Праграмы"
@@ -91,7 +91,7 @@ msgid ""
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"Спрабаваць выкарыстаць большую плошчу экрана для размяшчэння мініяцюр праз " "Спрабаваць выкарыстаць большую плошчу экрана для размяшчэння мініяцюр праз "
"змяненне суадносін бакоў экрана, ўшчыльняючы іх, каб зменшыць памеры " "змяненне суадносін бакоў экрана, ушчыльняючы іх, каб зменшыць памеры "
"абмежавальнай рамкі. Гэты параметр ужываецца толькі з натуральным " "абмежавальнай рамкі. Гэты параметр ужываецца толькі з натуральным "
"размяшчэннем мініяцюр." "размяшчэннем мініяцюр."
@@ -105,7 +105,7 @@ msgid ""
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect." "restarting the shell to have any effect."
msgstr "" msgstr ""
"Калі выбрана, подпіс акна будзе над мініяцюрай, а не пад ей (як " "Калі выбрана, подпіс акна будзе над мініяцюрай, а не пад ёй (як "
"перадвызначана). Каб змена налады ўступіла ў сілу, трэба перазапусціць " "перадвызначана). Каб змена налады ўступіла ў сілу, трэба перазапусціць "
"абалонку." "абалонку."
@@ -157,49 +157,49 @@ msgstr "Статыстыка выкарыстання памяці"
msgid "Swap stats" msgid "Swap stats"
msgstr "Статыстыка выкарыстання своп" msgstr "Статыстыка выкарыстання своп"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Статыстыка адпраўлення даных" msgstr "Статыстыка адпраўлення даных"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Статыстыка атрымання даных" msgstr "Статыстыка атрымання даных"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Статыстыка сістэмы" msgstr "Статыстыка сістэмы"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Паказваць" msgstr "Паказваць"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Працэсар" msgstr "Працэсар"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Памяць" msgstr "Памяць"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Своп" msgstr "Своп"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Атрыманне" msgstr "Атрыманне"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Адпраўленне" msgstr "Адпраўленне"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Адкрыць сістэмны манітор" msgstr "Адкрыць сістэмны манітор"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage" msgid "Show CPU usage"
msgstr "Паказваць выкарыстанне працэссара" msgstr "Паказваць выкарыстанне працэсара"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage" msgid "Show memory usage"
@@ -225,47 +225,47 @@ msgstr "Назва тэмы"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Назва тэмы, што загрузіцца з ~/.themes/name/gnome-shell" msgstr "Назва тэмы, што загрузіцца з ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Закрыць" msgstr "Закрыць"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Скасаваць згортванне" msgstr "Скасаваць згортванне"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Згарнуць" msgstr "Згарнуць"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Скасаваць разгортванне" msgstr "Скасаваць разгортванне"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Разгарнуць" msgstr "Разгарнуць"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Згарнуць усе" msgstr "Згарнуць усе"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Скасаваць згортванне для ўсіх" msgstr "Скасаваць згортванне для ўсіх"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Разгарнуць усе" msgstr "Разгарнуць усе"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Скасаваць разгортванне для ўсіх" msgstr "Скасаваць разгортванне для ўсіх"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Закрыць усе" msgstr "Закрыць усе"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Спіс вокнаў" msgstr "Спіс вокнаў"
@@ -301,6 +301,10 @@ msgid ""
msgstr "" msgstr ""
"Паказваць спіс вокнаў на ўсіх падлучаных маніторах ці толькі на асноўным." "Паказваць спіс вокнаў на ўсіх падлучаных маніторах ці толькі на асноўным."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Паказваць папярэдні прагляд працоўных прастор у спісе акон"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Групаванне вокнаў" msgstr "Групаванне вокнаў"
@@ -321,24 +325,35 @@ msgstr "Заўсёды групаваць вокны"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Паказваць на ўсіх маніторах" msgstr "Паказваць на ўсіх маніторах"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Паказваць папярэдні прагляд працоўных прастор"
msgstr "Індыкатар працоўнай прасторы"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Паказваць папярэдні прагляд у верхняй панэлі"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Працоўная прастора %d" msgstr "Працоўная прастора %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Назвы працоўных прастор" msgstr "Назвы працоўных прастор"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Дадаць працоўную прастору" msgstr "Дадаць працоўную прастору"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Паказваць папярэдні прагляд працоўных прастор у верхняй панэлі"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Індыкатар працоўнай прасторы"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Праграмы" #~ msgstr "Праграмы"
@@ -403,7 +418,7 @@ msgstr "Дадаць працоўную прастору"
#~ "If not empty, it contains the text that will be shown when clicking on " #~ "If not empty, it contains the text that will be shown when clicking on "
#~ "the panel." #~ "the panel."
#~ msgstr "" #~ msgstr ""
#~ "Калі не пуста, ўтрымлівае тэкст, які будзе паказвацца пры націсканні на " #~ "Калі не пуста, змяшчае тэкст, які будзе паказвацца пры націсканні на "
#~ "панэль." #~ "панэль."
#~ msgid "Message" #~ msgid "Message"

224
po/bg.po
View File

@@ -1,24 +1,28 @@
# Bulgarian translation for gnome-shell-extensions po-file. # Bulgarian translation for gnome-shell-extensions po-file.
# Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc. # Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc.
# Copyright (C) 2021, 2022 Alexander Shopov <ash@kambanaria.org>. # Copyright (C) 2021, 2022 Alexander Shopov <ash@kambanaria.org>.
# Copyright (C) 2024 twlvnn kraftwerk <kraft_werk@tutanota.com>.
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Ivaylo Valkov <ivaylo@e-valkov.org>, 2014. # Ivaylo Valkov <ivaylo@e-valkov.org>, 2014.
# Alexander Shopov <ash@kambanaria.org>, 2014, 2015, 2021, 2022. # Alexander Shopov <ash@kambanaria.org>, 2014, 2015, 2021, 2022.
# Lyubomir Vasilev <lyubomirv@abv.bg>, 2017. # Lyubomir Vasilev <lyubomirv@abv.bg>, 2017.
# twlvnn kraftwerk <kraft_werk@tutanota.com>, 2024.
#
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions main\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2022-02-12 20:25+0000\n" "POT-Creation-Date: 2024-09-01 12:03+0000\n"
"PO-Revision-Date: 2022-02-13 11:40+0100\n" "PO-Revision-Date: 2024-09-02 10:49+0200\n"
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n" "Last-Translator: twlvnn kraftwerk <kraft_werk@tutanota.com>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n" "Language-Team: Bulgarian <dict@ludost.net>\n"
"Language: bg\n" "Language: bg\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Gtranslator 46.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -37,19 +41,19 @@ msgstr "Класически GNOME в Wayland"
msgid "GNOME Classic on Xorg" msgid "GNOME Classic on Xorg"
msgstr "Класически GNOME в Xorg" msgstr "Класически GNOME в Xorg"
#: extensions/apps-menu/extension.js:112 #: extensions/apps-menu/extension.js:126
msgid "Favorites" msgid "Favorites"
msgstr "Любими" msgstr "Любими"
#: extensions/apps-menu/extension.js:370 #: extensions/apps-menu/extension.js:400
msgid "Applications" msgid "Apps"
msgstr "Програми" msgstr "Програми"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
msgstr "Списък с програмите и работните плотове" msgstr "Списък с програмите и работните плотове"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -57,34 +61,34 @@ msgstr ""
"Списък от низове. Всеки съдържа идентификатор на програма (име на файл „." "Списък от низове. Всеки съдържа идентификатор на програма (име на файл „."
"desktop“), следван от знака „:“ и номер на работен плот" "desktop“), следван от знака „:“ и номер на работен плот"
#: extensions/auto-move-windows/prefs.js:19 #: extensions/auto-move-windows/prefs.js:159
msgid "Workspace Rules" msgid "Workspace Rules"
msgstr "Правила за работните плотове" msgstr "Правила за работните плотове"
#: extensions/auto-move-windows/prefs.js:245 #: extensions/auto-move-windows/prefs.js:314
msgid "Add Rule" msgid "Add Rule"
msgstr "Добавяне на правило" msgstr "Добавяне на правило"
#. TRANSLATORS: %s is the filesystem name #. TRANSLATORS: %s is the filesystem name
#: extensions/drive-menu/extension.js:123 #: extensions/drive-menu/extension.js:123
#: extensions/places-menu/placeDisplay.js:210 #: extensions/places-menu/placeDisplay.js:218
#, javascript-format #, javascript-format
msgid "Ejecting drive “%s” failed:" msgid "Ejecting drive “%s” failed:"
msgstr "Неуспешно изваждане на устройство „%s“:" msgstr "Неуспешно изваждане на устройство „%s“:"
#: extensions/drive-menu/extension.js:139 #: extensions/drive-menu/extension.js:142
msgid "Removable devices" msgid "Removable devices"
msgstr "Преносими медии" msgstr "Преносими медии"
#: extensions/drive-menu/extension.js:161 #: extensions/drive-menu/extension.js:164
msgid "Open Files" msgid "Open Files"
msgstr "Отваряне на файлове" msgstr "Отваряне на файлове"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
msgid "Use more screen for windows" msgid "Use more screen for windows"
msgstr "Повече пространство за прозорците" msgstr "Повече пространство за прозорците"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -95,11 +99,11 @@ msgstr ""
"смаляване на обхващащия ги правоъгълник. Тази настройка се прилага само при " "смаляване на обхващащия ги правоъгълник. Тази настройка се прилага само при "
"естествената стратегия за поставяне на прозорците." "естествената стратегия за поставяне на прозорците."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
msgstr "Заглавия на прозорците отгоре" msgstr "Заглавия на прозорците отгоре"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding " "If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
@@ -109,123 +113,195 @@ msgstr ""
"им, а не както е стандартно — отдолу. За прилагане на промяната на " "им, а не както е стандартно — отдолу. За прилагане на промяната на "
"настройката трябва да рестартирате обвивката на GNOME." "настройката трябва да рестартирате обвивката на GNOME."
#: extensions/places-menu/extension.js:88
#: extensions/places-menu/extension.js:91 #: extensions/places-menu/extension.js:91
#: extensions/places-menu/extension.js:94
msgid "Places" msgid "Places"
msgstr "Места" msgstr "Места"
#: extensions/places-menu/placeDisplay.js:49 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Неуспешно стартиране на „%s“" msgstr "Неуспешно стартиране на „%s“"
#: extensions/places-menu/placeDisplay.js:64 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
msgid "Failed to mount volume for “%s”" msgid "Failed to mount volume for “%s”"
msgstr "Неуспешно монтиране на тома „%s“" msgstr "Неуспешно монтиране на тома „%s“"
#: extensions/places-menu/placeDisplay.js:125 #: extensions/places-menu/placeDisplay.js:135
#: extensions/places-menu/placeDisplay.js:148 #: extensions/places-menu/placeDisplay.js:158
msgid "Computer" msgid "Computer"
msgstr "Компютър" msgstr "Компютър"
#: extensions/places-menu/placeDisplay.js:336 #: extensions/places-menu/placeDisplay.js:333
msgid "Home" msgid "Home"
msgstr "Домашна папка" msgstr "Домашна папка"
#: extensions/places-menu/placeDisplay.js:381 #: extensions/places-menu/placeDisplay.js:378
msgid "Browse Network" msgid "Browse Network"
msgstr "Мрежа" msgstr "Мрежа"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:14
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Смяна на размерите на снимката на екрана" msgstr "Смяна на размерите на снимката на екрана"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "Смяна на размерите на снимката на екрана наобратно" msgstr "Смяна на размерите на снимката на екрана наобратно"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/system-monitor/extension.js:135
msgid "CPU stats"
msgstr "Статистика на ЦП"
#: extensions/system-monitor/extension.js:159
msgid "Memory stats"
msgstr "Статистика на паметта"
#: extensions/system-monitor/extension.js:177
msgid "Swap stats"
msgstr "Статистика на виртуалната памет"
#: extensions/system-monitor/extension.js:336
msgid "Upload stats"
msgstr "Статистика на качване"
#: extensions/system-monitor/extension.js:350
msgid "Download stats"
msgstr "Статистика на изтегляне"
#: extensions/system-monitor/extension.js:364
msgid "System stats"
msgstr "Статистика на системата"
#: extensions/system-monitor/extension.js:412
msgid "Show"
msgstr "Показване"
#: extensions/system-monitor/extension.js:414
msgid "CPU"
msgstr "ЦП"
#: extensions/system-monitor/extension.js:416
msgid "Memory"
msgstr "Памет"
#: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "Виртуалната памет"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "Качване"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "Изтегляне"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor"
msgstr "Отваряне на „Наблюдение на системата“"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage"
msgstr "Показване на ползван ЦП"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage"
msgstr "Показване на ползвана памет"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage"
msgstr "Показване на ползвана виртуалната памет"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload"
msgstr "Показване на качването"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download"
msgstr "Показване на изтеглянето"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
msgstr "Име на темата" msgstr "Име на темата"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:12
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "" msgstr ""
"Името на темата, която да бъде заредена от „~/.themes/name/gnome-shell“" "Името на темата, която да бъде заредена от „~/.themes/name/gnome-shell“"
#: extensions/window-list/extension.js:72 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Затваряне" msgstr "Затваряне"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Деминимизиране" msgstr "Деминимизиране"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Минимизиране" msgstr "Минимизиране"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Демаксимизиране" msgstr "Демаксимизиране"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Максимизиране" msgstr "Максимизиране"
#: extensions/window-list/extension.js:434 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Минимизиране на всички" msgstr "Минимизиране на всички"
#: extensions/window-list/extension.js:440 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Деминимизиране на всички" msgstr "Деминимизиране на всички"
#: extensions/window-list/extension.js:446 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Максимизиране на всички" msgstr "Максимизиране на всички"
#: extensions/window-list/extension.js:454 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Демаксимизиране на всички" msgstr "Демаксимизиране на всички"
#: extensions/window-list/extension.js:462 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Затваряне на всички" msgstr "Затваряне на всички"
#: extensions/window-list/extension.js:741 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Списък на прозорците" msgstr "Списък на прозорците"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:18
msgid "When to group windows" msgid "When to group windows"
msgstr "Кога прозорците да се групират" msgstr "Кога прозорците да се групират"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:19
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Кога прозорците на една програма да се групират в списъка с прозорците. " "Кога прозорците на една програма да се групират в списъка с прозорците. "
"Възможните стойности са „never“ (никога), „auto“ (автоматично) и " "Възможните стойности са „never“ (никога), „auto“ (автоматично) и „always“ "
"„always“ (винаги)." "(винаги)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:76 #: extensions/window-list/prefs.js:79
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Да се показват прозорците от всички работни плотове" msgstr "Да се показват прозорците от всички работни плотове"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "" msgstr ""
"Дали да се показват прозорците от всички работни плотове или само от текущия." "Дали да се показват прозорците от всички работни плотове или само от текущия."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
msgstr "Извеждане на списъка с прозорци на всички монитори" msgstr "Извеждане на списъка с прозорци на всички монитори"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:34
msgid "" msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
@@ -233,40 +309,58 @@ msgstr ""
"Дали списъкът с прозорци да се извежда на всички монитори или само на " "Дали списъкът с прозорци да се извежда на всички монитори или само на "
"основния" "основния"
#: extensions/window-list/prefs.js:32 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Визуализиране на работните пространства в списъка с прозорци"
#: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Групиране на прозорци" msgstr "Групиране на прозорци"
#: extensions/window-list/prefs.js:37 #: extensions/window-list/prefs.js:40
msgid "Never group windows" msgid "Never group windows"
msgstr "Никога да не се групират" msgstr "Никога да не се групират"
#: extensions/window-list/prefs.js:38 #: extensions/window-list/prefs.js:41
msgid "Group windows when space is limited" msgid "Group windows when space is limited"
msgstr "Групиране при ограничено място" msgstr "Групиране при ограничено място"
#: extensions/window-list/prefs.js:39 #: extensions/window-list/prefs.js:42
msgid "Always group windows" msgid "Always group windows"
msgstr "Винаги да се групират" msgstr "Винаги да се групират"
#: extensions/window-list/prefs.js:63 #: extensions/window-list/prefs.js:66
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "На всички монитори" msgstr "На всички монитори"
#: extensions/window-list/workspaceIndicator.js:249 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:254 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Визуализиране на работните пространства"
msgstr "Индикатор на работните плотове"
#: extensions/workspace-indicator/prefs.js:18 #: extensions/workspace-indicator/prefs.js:30
msgid "Workspace Names" msgid "Show Previews In Top Bar"
msgstr "Имена на работните плотове" msgstr "Визуализиране в горната лента"
#: extensions/workspace-indicator/prefs.js:39 #: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Работен плот %d" msgstr "Работен плот %d"
#: extensions/workspace-indicator/prefs.js:184 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names"
msgstr "Имена на работните плотове"
#: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Добавяне на работен плот" msgstr "Добавяне на работен плот"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Визуализиране на работните пространства в горната лента"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Индикатор на работните плотове"
#~ msgid "Applications"
#~ msgstr "Програми"

104
po/ca.po
View File

@@ -1,22 +1,25 @@
# Catalan translation for gnome-shell-extensions. # Catalan translation for gnome-shell-extensions.
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Jordi Mas i Hernàndez <jmas@softcatala.org>, 2011, 2024 # Jordi Mas i Hernandez <jmas@softcatala.org>, 2011.
# Gil Forcada <gilforcada@guifi.net>, 2012, 2013, 2014. # Gil Forcada <gilforcada@guifi.net>, 2012, 2013, 2014.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"POT-Creation-Date: 2024-05-23 16:39+0000\n" "issues\n"
"PO-Revision-Date: 2024-05-23 13:29+0100\n" "POT-Creation-Date: 2024-08-12 20:31+0000\n"
"Last-Translator: Jordi Mas i Hernàndez <jmas@softcatala.org>\n" "PO-Revision-Date: 2024-08-19 23:26+0200\n"
"Last-Translator: Jordi Mas <jmas@softcatala.org>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n" "Language-Team: Catalan <tradgnome@softcatala.org>\n"
"Language: ca\n" "Language: ca\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-DamnedLies-Scope: partial\n"
"X-Generator: Poedit 2.4.2\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -106,9 +109,9 @@ msgid ""
"restarting the shell to have any effect." "restarting the shell to have any effect."
msgstr "" msgstr ""
"Si és «true» (cert), posiciona el títol de la finestra damunt de la " "Si és «true» (cert), posiciona el títol de la finestra damunt de la "
"miniatura corresponent, substituint el comportament per defecte del Shell de" "miniatura corresponent, substituint el comportament per defecte del Shell de "
" posicionar-lo a baix. Cal reiniciar el Shell per tal que aquest canvi " "posicionar-lo a baix. Cal reiniciar el Shell per tal que aquest canvi tingui "
"tingui efecte." "efecte."
#: extensions/places-menu/extension.js:91 #: extensions/places-menu/extension.js:91
#: extensions/places-menu/extension.js:94 #: extensions/places-menu/extension.js:94
@@ -148,7 +151,7 @@ msgstr "Mostra cíclicament cap enrere mides de captura de pantalla"
#: extensions/system-monitor/extension.js:135 #: extensions/system-monitor/extension.js:135
msgid "CPU stats" msgid "CPU stats"
msgstr "Estadístiques de la CPU" msgstr "Estadístiques de processador"
#: extensions/system-monitor/extension.js:159 #: extensions/system-monitor/extension.js:159
msgid "Memory stats" msgid "Memory stats"
@@ -156,7 +159,7 @@ msgstr "Estadístiques de memòria"
#: extensions/system-monitor/extension.js:177 #: extensions/system-monitor/extension.js:177
msgid "Swap stats" msgid "Swap stats"
msgstr "Estadístiques de l'intercanvi" msgstr "Estadístiques del «swap»"
#: extensions/system-monitor/extension.js:336 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
@@ -164,7 +167,7 @@ msgstr "Estadístiques de pujada"
#: extensions/system-monitor/extension.js:350 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Estadístiques de baixada" msgstr "Estadístiques de descàrrega"
#: extensions/system-monitor/extension.js:364 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
@@ -176,7 +179,7 @@ msgstr "Mostra"
#: extensions/system-monitor/extension.js:414 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "Processador"
#: extensions/system-monitor/extension.js:416 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
@@ -184,39 +187,39 @@ msgstr "Memòria"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Intercanvi" msgstr "Espai d'intercanvi"
#: extensions/system-monitor/extension.js:420 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Pujada" msgstr "Pujades"
#: extensions/system-monitor/extension.js:422 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Baixada" msgstr "Descàrregues"
#: extensions/system-monitor/extension.js:427 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Obre el monitor del sistema" msgstr "Obre el Monitor del sistema"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage" msgid "Show CPU usage"
msgstr "Mostra l'ús de la CPU" msgstr "Mostra l'ús de CPU"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage" msgid "Show memory usage"
msgstr "Mostra l'ús de la memòria" msgstr "Mostra l'ús de memòria"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage" msgid "Show swap usage"
msgstr "Mostra l'ús d'intercanvi" msgstr "Mostra l'ús de l'espai d'intercanvi"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload" msgid "Show upload"
msgstr "Mostra la pujada" msgstr "Mostra les pujades"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download" msgid "Show download"
msgstr "Mostra la baixada" msgstr "Mostra les descàrregues"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
@@ -226,47 +229,47 @@ msgstr "Nom del tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "El nom del tema que es carregarà des de ~/.themes/name/gnome-shell" msgstr "El nom del tema que es carregarà des de ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:72 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Tanca" msgstr "Tanca"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Desminimitza" msgstr "Desminimitza"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimitza" msgstr "Minimitza"
#: extensions/window-list/extension.js:106 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Desmaximitza" msgstr "Desmaximitza"
#: extensions/window-list/extension.js:106 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Maximitza" msgstr "Maximitza"
#: extensions/window-list/extension.js:471 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimitza-ho tot" msgstr "Minimitza-ho tot"
#: extensions/window-list/extension.js:477 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Desminimitza-ho tot" msgstr "Desminimitza-ho tot"
#: extensions/window-list/extension.js:483 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximitza-ho tot" msgstr "Maximitza-ho tot"
#: extensions/window-list/extension.js:491 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Desmaximitza-ho tot" msgstr "Desmaximitza-ho tot"
#: extensions/window-list/extension.js:499 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Tanca-ho tot" msgstr "Tanca-ho tot"
#: extensions/window-list/extension.js:773 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Llista de finestres" msgstr "Llista de finestres"
@@ -280,8 +283,8 @@ msgid ""
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Decideix quan s'han d'agrupar les finestres de la mateixa aplicació a la " "Decideix quan s'han d'agrupar les finestres de la mateixa aplicació a la "
"llista de finestres. Els valors possibles són: «never» (mai), «auto» " "llista de finestres. Els valors possibles són: «never» (mai), "
"(automàticament) i «always» (sempre)." "«auto» (automàticament) i «always» (sempre)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -306,6 +309,11 @@ msgstr ""
"Si es mostra la llista de finestres en tots els monitors connectats o només " "Si es mostra la llista de finestres en tots els monitors connectats o només "
"al primari." "al primari."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr ""
"Mostra les previsualitzacions dels espais de treball a la llista de finestres"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Agrupació de finestres" msgstr "Agrupació de finestres"
@@ -326,21 +334,35 @@ msgstr "Agrupa les finestres sempre"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostra a tots els monitors" msgstr "Mostra a tots els monitors"
#: extensions/window-list/workspaceIndicator.js:255 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:261 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostra les previsualitzacions dels espais de treball"
msgstr "Indicador de l'espai de treball"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostra previsualitzacions a la barra superior"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Espai de treball %d" msgstr "Espai de treball %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Noms dels espais de treball" msgstr "Noms dels espais de treball"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Afegeix un espai de treball" msgstr "Afegeix un espai de treball"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr ""
"Mostra les previsualitzacions dels espais de treball a la barra superior"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicador de l'espai de treball"
#~ msgid "Applications"
#~ msgstr "Aplicacions"

View File

@@ -3,22 +3,23 @@
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Petr Kovar <pknbe@volny.cz>, 2013. # Petr Kovar <pknbe@volny.cz>, 2013.
# Marek Černocký <marek@manet.cz>, 2011, 2012, 2013, 2014, 2015, 2017, 2019, 2020, 2022. # Marek Černocký <marek@manet.cz>, 2011, 2012, 2013, 2014, 2015, 2017, 2019, 2020, 2022.
# Vojtěch Perník <translations@pervoj.cz>, 2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-08-20 05:40+0000\n"
"PO-Revision-Date: 2024-02-07 15:08+0100\n" "PO-Revision-Date: 2024-08-22 21:19+0200\n"
"Last-Translator: Daniel Rusek <mail@asciiwolf.com>\n" "Last-Translator: Vojtěch Perník <translations@pervoj.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n" "Language-Team: Czech <gnome-cs-list@gnome.org>\n"
"Language: cs\n" "Language: cs\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Gtranslator 46.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -41,7 +42,7 @@ msgstr "GNOME klasik na Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Oblíbené" msgstr "Oblíbené"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplikace" msgstr "Aplikace"
@@ -156,43 +157,43 @@ msgstr "Statistiky paměti"
msgid "Swap stats" msgid "Swap stats"
msgstr "Statistiky odkládacího prostoru" msgstr "Statistiky odkládacího prostoru"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Statistiky nahrávání" msgstr "Statistiky nahrávání"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Statistiky stahování" msgstr "Statistiky stahování"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Statistiky systému" msgstr "Statistiky systému"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Zobrazit" msgstr "Zobrazit"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Paměť" msgstr "Paměť"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Odkládací prostor" msgstr "Odkládací prostor"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Nahrávání" msgstr "Nahrávání"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Stahování" msgstr "Stahování"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Otevřít Sledování systému" msgstr "Otevřít Sledování systému"
@@ -224,47 +225,47 @@ msgstr "Název motivu"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Název motivu, který se má načíst z ~/.themes/name/gnome-shell" msgstr "Název motivu, který se má načíst z ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Zavřít" msgstr "Zavřít"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Zrušit minimalizaci" msgstr "Zrušit minimalizaci"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimalizovat" msgstr "Minimalizovat"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Zrušit maximalizaci" msgstr "Zrušit maximalizaci"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Maximalizovat" msgstr "Maximalizovat"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimalizovat všechna" msgstr "Minimalizovat všechna"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Zrušit minimalizaci všech" msgstr "Zrušit minimalizaci všech"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximalizovat všechna" msgstr "Maximalizovat všechna"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Zrušit maximalizaci všech" msgstr "Zrušit maximalizaci všech"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Zavřít všechna" msgstr "Zavřít všechna"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Seznam oken" msgstr "Seznam oken"
@@ -301,6 +302,10 @@ msgstr ""
"Zda zobrazovat seznam oken na všech připojených monitorech nebo jen na " "Zda zobrazovat seznam oken na všech připojených monitorech nebo jen na "
"hlavním." "hlavním."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Zobrazit náhledy pracovních ploch v seznamu oken"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Seskupování oken" msgstr "Seskupování oken"
@@ -321,23 +326,34 @@ msgstr "Vždy seskupovat okna"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Zobrazovat na všech monitorech" msgstr "Zobrazovat na všech monitorech"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Zobrazit náhledy pracovních ploch"
msgstr "Ukazatel pracovní plochy"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Zobrazit náhledy v horním panelu"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Pracovní plocha %d" msgstr "Pracovní plocha %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Názvy pracovních ploch" msgstr "Názvy pracovních ploch"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Přidat pracovní plochu" msgstr "Přidat pracovní plochu"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Zobrazit náhledy pracovních ploch v horním panelu"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Ukazatel pracovní plochy"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplikace" #~ msgstr "Aplikace"

View File

@@ -9,9 +9,10 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "issues\n"
"PO-Revision-Date: 2024-03-12 19:56+0100\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-09-07 23:22+0200\n"
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n" "Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Language: da\n" "Language: da\n"
@@ -42,7 +43,7 @@ msgstr "GNOME Classic på Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritter" msgstr "Favoritter"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Programmer" msgstr "Programmer"
@@ -159,43 +160,43 @@ msgstr "Hukommelsesstatistik"
msgid "Swap stats" msgid "Swap stats"
msgstr "Swapstatistik" msgstr "Swapstatistik"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Uploadstatistik" msgstr "Uploadstatistik"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Downloadstatistik" msgstr "Downloadstatistik"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Systemstatistik" msgstr "Systemstatistik"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Vis" msgstr "Vis"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Hukommelse" msgstr "Hukommelse"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Upload" msgstr "Upload"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Åbn Systemovervågning" msgstr "Åbn Systemovervågning"
@@ -227,47 +228,47 @@ msgstr "Temanavn"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Navnet på temaet, som indlæses fra ~/.themes/name/gnome-shell" msgstr "Navnet på temaet, som indlæses fra ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Luk" msgstr "Luk"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Afminimér" msgstr "Afminimér"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimér" msgstr "Minimér"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Afmaksimér" msgstr "Afmaksimér"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maksimér" msgstr "Maksimér"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimér" msgstr "Minimér"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Afminimér alle" msgstr "Afminimér alle"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maksimér alle" msgstr "Maksimér alle"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Afmaksimér alle" msgstr "Afmaksimér alle"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Luk alle" msgstr "Luk alle"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Vinduesliste" msgstr "Vinduesliste"
@@ -305,6 +306,10 @@ msgstr ""
"Om vindueslisten skal vise på alle tilsluttede skærme, eller kun på den " "Om vindueslisten skal vise på alle tilsluttede skærme, eller kun på den "
"primære." "primære."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Forhåndsvis arbejdsområder i vinduesliste"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Vinduesgruppering" msgstr "Vinduesgruppering"
@@ -325,24 +330,35 @@ msgstr "Gruppér altid vinduer"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Vis på alle skærme" msgstr "Vis på alle skærme"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Forhåndsvis arbejdsområder"
msgstr "Arbejdsområdeindikator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Inkludér forhåndsvisninger i topbjælken"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Arbejdsområde %d" msgstr "Arbejdsområde %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Navne på arbejdsområder" msgstr "Navne på arbejdsområder"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Tilføj arbejdsområde" msgstr "Tilføj arbejdsområde"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Inkludér forhåndsvisninger af arbejdsområder i topbjælken"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Arbejdsområdeindikator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Programmer" #~ msgstr "Programmer"

View File

@@ -9,22 +9,23 @@
# Tim Sabsch <tim@sabsch.com>, 2019-2020. # Tim Sabsch <tim@sabsch.com>, 2019-2020.
# Philipp Kiemle <philipp.kiemle@gmail.com>, 2022. # Philipp Kiemle <philipp.kiemle@gmail.com>, 2022.
# Gabriel Brand <gabr.brand@gmail.com>, 2024. # Gabriel Brand <gabr.brand@gmail.com>, 2024.
# Jürgen Benvenuti <gastornis@posteo.org>, 2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions main\n" "Project-Id-Version: gnome-shell-extensions main\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-07 20:42+0100\n" "PO-Revision-Date: 2024-08-29 10:01+0200\n"
"Last-Translator: Gabriel Brand <gabr.brand@gmail.com>\n" "Last-Translator: Jürgen Benvenuti <gastornis@posteo.org>\n"
"Language-Team: Deutsch <gnome-de@gnome.org>\n" "Language-Team: Deutsch <gnome-de@gnome.org>\n"
"Language: de\n" "Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -47,7 +48,7 @@ msgstr "GNOME Classic unter Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoriten" msgstr "Favoriten"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Anwendungen" msgstr "Anwendungen"
@@ -165,43 +166,43 @@ msgstr "Speicherstatistiken"
msgid "Swap stats" msgid "Swap stats"
msgstr "Auslagerungsspeicherstatistiken" msgstr "Auslagerungsspeicherstatistiken"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Upload-Statistiken" msgstr "Upload-Statistiken"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Download-Statistiken" msgstr "Download-Statistiken"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Systemstatistiken" msgstr "Systemstatistiken"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Anzeigen" msgstr "Anzeigen"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Speicher" msgstr "Speicher"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Auslagerungsspeicher" msgstr "Auslagerungsspeicher"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Upload" msgstr "Upload"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Systemüberwachung öffnen" msgstr "Systemüberwachung öffnen"
@@ -235,47 +236,47 @@ msgstr ""
"Der Name des Themas, welches aus ~/.themes/name/gnome-shell geladen werden " "Der Name des Themas, welches aus ~/.themes/name/gnome-shell geladen werden "
"soll" "soll"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Minimieren rückgängig" msgstr "Minimieren rückgängig"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimieren" msgstr "Minimieren"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Maximieren rückgängig" msgstr "Maximieren rückgängig"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximieren" msgstr "Maximieren"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Alle minimieren" msgstr "Alle minimieren"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Alle minimieren rückgängig" msgstr "Alle minimieren rückgängig"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Alle maximieren" msgstr "Alle maximieren"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Alle maximieren rückgängig" msgstr "Alle maximieren rückgängig"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Alle schließen" msgstr "Alle schließen"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Fensterliste" msgstr "Fensterliste"
@@ -315,6 +316,10 @@ msgstr ""
"Legt fest, ob die Fensterliste auf allen angeschlossenen Bildschirmen " "Legt fest, ob die Fensterliste auf allen angeschlossenen Bildschirmen "
"angezeigt wird oder nur auf dem Primären." "angezeigt wird oder nur auf dem Primären."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Arbeitsflächenvorschauen in der Fensterliste anzeigen"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Fenstergruppierung" msgstr "Fenstergruppierung"
@@ -335,23 +340,34 @@ msgstr "Fenster immer gruppieren"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Auf allen Bildschirmen anzeigen" msgstr "Auf allen Bildschirmen anzeigen"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Arbeitsflächenvorschauen anzeigen"
msgstr "Arbeitsflächenindikator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Vorschauen in der oberen Leiste anzeigen"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Arbeitsfläche %d" msgstr "Arbeitsfläche %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Namen der Arbeitsflächen" msgstr "Namen der Arbeitsflächen"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Arbeitsfläche hinzufügen" msgstr "Arbeitsfläche hinzufügen"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Arbeitsflächenvorschauen in der oberen Leiste anzeigen"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Arbeitsflächenindikator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Anwendungen" #~ msgstr "Anwendungen"

187
po/el.po
View File

@@ -12,8 +12,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2023-02-18 15:10+0000\n" "POT-Creation-Date: 2024-07-24 10:26+0000\n"
"PO-Revision-Date: 2023-08-01 23:41+0300\n" "PO-Revision-Date: 2024-08-12 23:29+0300\n"
"Last-Translator: Efstathios Iosifidis <eiosifidis@gnome.org>\n" "Last-Translator: Efstathios Iosifidis <eiosifidis@gnome.org>\n"
"Language-Team: Greek, Modern (1453-) <gnome-el-list@gnome.org>\n" "Language-Team: Greek, Modern (1453-) <gnome-el-list@gnome.org>\n"
"Language: el\n" "Language: el\n"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.3.2\n" "X-Generator: Poedit 3.4.4\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -31,7 +31,7 @@ msgstr "GNOME Classic"
#: data/gnome-classic.desktop.in:4 data/gnome-classic-wayland.desktop.in:4 #: data/gnome-classic.desktop.in:4 data/gnome-classic-wayland.desktop.in:4
#: data/gnome-classic-xorg.desktop.in:4 #: data/gnome-classic-xorg.desktop.in:4
msgid "This session logs you into GNOME Classic" msgid "This session logs you into GNOME Classic"
msgstr "Αυτή η συνεδρία σας συνδέει στο GNOME Classic" msgstr "Αυτή η συνεδρία σάς συνδέει στο GNOME Classic"
#: data/gnome-classic-wayland.desktop.in:3 #: data/gnome-classic-wayland.desktop.in:3
msgid "GNOME Classic on Wayland" msgid "GNOME Classic on Wayland"
@@ -41,19 +41,19 @@ msgstr "GNOME Classic σε Wayland"
msgid "GNOME Classic on Xorg" msgid "GNOME Classic on Xorg"
msgstr "GNOME Classic σε Xorg" msgstr "GNOME Classic σε Xorg"
#: extensions/apps-menu/extension.js:118 #: extensions/apps-menu/extension.js:126
msgid "Favorites" msgid "Favorites"
msgstr "Αγαπημένα" msgstr "Αγαπημένα"
#: extensions/apps-menu/extension.js:380 #: extensions/apps-menu/extension.js:400
msgid "Applications" msgid "Apps"
msgstr "Εφαρμογές" msgstr "Εφαρμογές"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
msgstr "Λίστα εφαρμογών και χώρου εργασίας" msgstr "Λίστα εφαρμογών και χώρου εργασίας"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -62,34 +62,34 @@ msgstr ""
"(όνομα αρχείου επιφάνειας εργασίας), ακολουθούμενη από άνω-κάτω τελεία και " "(όνομα αρχείου επιφάνειας εργασίας), ακολουθούμενη από άνω-κάτω τελεία και "
"τον αριθμό του χώρου εργασίας" "τον αριθμό του χώρου εργασίας"
#: extensions/auto-move-windows/prefs.js:152 #: extensions/auto-move-windows/prefs.js:159
msgid "Workspace Rules" msgid "Workspace Rules"
msgstr "Κανόνες χώρων εργασίας" msgstr "Κανόνες χώρων εργασίας"
#: extensions/auto-move-windows/prefs.js:306 #: extensions/auto-move-windows/prefs.js:314
msgid "Add Rule" msgid "Add Rule"
msgstr "Προσθήκη κανόνα" msgstr "Προσθήκη κανόνα"
#. TRANSLATORS: %s is the filesystem name #. TRANSLATORS: %s is the filesystem name
#: extensions/drive-menu/extension.js:126 #: extensions/drive-menu/extension.js:123
#: extensions/places-menu/placeDisplay.js:212 #: extensions/places-menu/placeDisplay.js:218
#, javascript-format #, javascript-format
msgid "Ejecting drive “%s” failed:" msgid "Ejecting drive “%s” failed:"
msgstr "Αποτυχία εξαγωγής του δίσκου «%s»:" msgstr "Αποτυχία εξαγωγής του δίσκου «%s»:"
#: extensions/drive-menu/extension.js:145 #: extensions/drive-menu/extension.js:142
msgid "Removable devices" msgid "Removable devices"
msgstr "Αφαιρούμενες συσκευές" msgstr "Αφαιρούμενες συσκευές"
#: extensions/drive-menu/extension.js:167 #: extensions/drive-menu/extension.js:164
msgid "Open Files" msgid "Open Files"
msgstr "Άνοιγμα αρχείων" msgstr "Άνοιγμα αρχείων"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
msgid "Use more screen for windows" msgid "Use more screen for windows"
msgstr "Χρησιμοποιήστε περισσότερη οθόνη για τα παράθυρα" msgstr "Χρησιμοποιήστε περισσότερη οθόνη για τα παράθυρα"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -100,11 +100,11 @@ msgstr ""
"εδραιώνοντας τους περαιτέρω για να μειώσετε το πλαίσιο οριοθέτησης. Αυτή η " "εδραιώνοντας τους περαιτέρω για να μειώσετε το πλαίσιο οριοθέτησης. Αυτή η "
"ρύθμιση ισχύει μόνο με την στρατηγική φυσικής τοποθέτησης." "ρύθμιση ισχύει μόνο με την στρατηγική φυσικής τοποθέτησης."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
msgstr "Τοποθέτηση τίτλων παράθυρου στην κορυφή" msgstr "Τοποθέτηση τίτλων παράθυρου στην κορυφή"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding " "If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
@@ -115,47 +115,119 @@ msgstr ""
"στο κάτω μέρος. Η αλλαγή αυτής της ρύθμισης απαιτεί επανεκκίνηση του " "στο κάτω μέρος. Η αλλαγή αυτής της ρύθμισης απαιτεί επανεκκίνηση του "
"κελύφους για να υπάρξει κάποιο αποτέλεσμα." "κελύφους για να υπάρξει κάποιο αποτέλεσμα."
#: extensions/places-menu/extension.js:91
#: extensions/places-menu/extension.js:94 #: extensions/places-menu/extension.js:94
#: extensions/places-menu/extension.js:97
msgid "Places" msgid "Places"
msgstr "Τοποθεσίες" msgstr "Τοποθεσίες"
#: extensions/places-menu/placeDisplay.js:52 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Αποτυχία εκκίνησης «%s»" msgstr "Αποτυχία εκκίνησης «%s»"
#: extensions/places-menu/placeDisplay.js:67 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
msgid "Failed to mount volume for “%s”" msgid "Failed to mount volume for “%s”"
msgstr "Αποτυχία προσάρτησης τόμου για «%s»" msgstr "Αποτυχία προσάρτησης τόμου για «%s»"
#: extensions/places-menu/placeDisplay.js:127 #: extensions/places-menu/placeDisplay.js:135
#: extensions/places-menu/placeDisplay.js:150 #: extensions/places-menu/placeDisplay.js:158
msgid "Computer" msgid "Computer"
msgstr "Υπολογιστής" msgstr "Υπολογιστής"
#: extensions/places-menu/placeDisplay.js:340 #: extensions/places-menu/placeDisplay.js:333
msgid "Home" msgid "Home"
msgstr "Προσωπικός φάκελος" msgstr "Προσωπικός φάκελος"
#: extensions/places-menu/placeDisplay.js:385 #: extensions/places-menu/placeDisplay.js:378
msgid "Browse Network" msgid "Browse Network"
msgstr "Περιήγηση δικτύου" msgstr "Περιήγηση δικτύου"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:14
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Περιδιάβαση τα μεγέθη των στιγμιοτύπων" msgstr "Περιδιάβαση τα μεγέθη των στιγμιοτύπων"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "Μεγέθη κυκλικών στιγμιοτύπων προς τα πίσω" msgstr "Μεγέθη κυκλικών στιγμιοτύπων προς τα πίσω"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/system-monitor/extension.js:135
msgid "CPU stats"
msgstr "Στατιστικά CPU"
#: extensions/system-monitor/extension.js:159
msgid "Memory stats"
msgstr "Στατιστικά μνήμης"
#: extensions/system-monitor/extension.js:177
msgid "Swap stats"
msgstr "Στατιστικά swap"
#: extensions/system-monitor/extension.js:336
msgid "Upload stats"
msgstr "Στατιστικά μεταφόρτωσης"
#: extensions/system-monitor/extension.js:350
msgid "Download stats"
msgstr "Στατιστικά λήψης"
#: extensions/system-monitor/extension.js:364
msgid "System stats"
msgstr "Στατιστικά συστήματος"
#: extensions/system-monitor/extension.js:412
msgid "Show"
msgstr "Εμφάνιση"
#: extensions/system-monitor/extension.js:414
msgid "CPU"
msgstr "CPU"
#: extensions/system-monitor/extension.js:416
msgid "Memory"
msgstr "Μνήμη"
#: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "Swap"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "Μεταφόρτωση"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "Λήψη"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor"
msgstr "Άνοιγμα επόπτη συστήματος"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage"
msgstr "Εμφάνιση χρήσης CPU"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage"
msgstr "Εμφάνιση χρήσης μνήμης"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage"
msgstr "Εμφάνιση χρήσης swap"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload"
msgstr "Εμφάνιση μεταφόρτωσης"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download"
msgstr "Εμφάνιση λήψης"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
msgstr "Όνομα θέματος" msgstr "Όνομα θέματος"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:12
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "" msgstr ""
"Το όνομα του θέματος που θα φορτωθεί από το ~ /.themes/name/gnome-shell" "Το όνομα του θέματος που θα φορτωθεί από το ~ /.themes/name/gnome-shell"
@@ -164,51 +236,51 @@ msgstr ""
msgid "Close" msgid "Close"
msgstr "Κλείσιμο" msgstr "Κλείσιμο"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Αποελαχιστοποίηση" msgstr "Αποελαχιστοποίηση"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Ελαχιστοποίηση" msgstr "Ελαχιστοποίηση"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Απομεγιστοποίηση" msgstr "Απομεγιστοποίηση"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Μεγιστοποίηση" msgstr "Μεγιστοποίηση"
#: extensions/window-list/extension.js:483 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Ελαχιστοποίηση όλων" msgstr "Ελαχιστοποίηση όλων"
#: extensions/window-list/extension.js:489 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Αποελαχιστοποίηση όλων" msgstr "Αποελαχιστοποίηση όλων"
#: extensions/window-list/extension.js:495 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Μεγιστοποίηση όλων" msgstr "Μεγιστοποίηση όλων"
#: extensions/window-list/extension.js:503 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Απομεγιστοποίηση όλων" msgstr "Απομεγιστοποίηση όλων"
#: extensions/window-list/extension.js:511 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Κλείσιμο όλων" msgstr "Κλείσιμο όλων"
#: extensions/window-list/extension.js:795 #: extensions/window-list/extension.js:773
msgid "Window List" msgid "Window List"
msgstr "Λίστα παραθύρου" msgstr "Λίστα παραθύρου"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:18
msgid "When to group windows" msgid "When to group windows"
msgstr "Πότε θα ομαδοποιούνται τα παράθυρα" msgstr "Πότε θα ομαδοποιούνται τα παράθυρα"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:19
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
@@ -217,21 +289,21 @@ msgstr ""
"παραθύρου. Δυνατές τιμές είναι «never» (ποτέ), «auto» (αυτόματα) και " "παραθύρου. Δυνατές τιμές είναι «never» (ποτέ), «auto» (αυτόματα) και "
"«always» (πάντα)." "«always» (πάντα)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Εμφάνιση των παραθύρων από όλους τους χώρους εργασίας" msgstr "Εμφάνιση των παραθύρων από όλους τους χώρους εργασίας"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "" msgstr ""
"Αν θα εμφανίζονται παράθυρα όλων των χώρων εργασίας ή μόνο του τρέχοντα." "Αν θα εμφανίζονται παράθυρα όλων των χώρων εργασίας ή μόνο του τρέχοντα."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
msgstr "Να εμφανίζεται ο κατάλογος παραθύρων σε όλες τις οθόνες" msgstr "Να εμφανίζεται ο κατάλογος παραθύρων σε όλες τις οθόνες"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:34
msgid "" msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
@@ -259,24 +331,27 @@ msgstr "Να γίνεται πάντα ομαδοποίηση παραθύρων
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Να εμφανίζεται σε όλες τις οθόνες" msgstr "Να εμφανίζεται σε όλες τις οθόνες"
#: extensions/window-list/workspaceIndicator.js:261 #: extensions/window-list/workspaceIndicator.js:255
#: extensions/workspace-indicator/extension.js:266 #: extensions/workspace-indicator/extension.js:261
msgid "Workspace Indicator" msgid "Workspace Indicator"
msgstr "Δείκτης χώρου εργασίας" msgstr "Δείκτης χώρου εργασίας"
#: extensions/workspace-indicator/prefs.js:62 #: extensions/workspace-indicator/prefs.js:69
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Χώρος εργασίας %d" msgstr "Χώρος εργασίας %d"
#: extensions/workspace-indicator/prefs.js:129 #: extensions/workspace-indicator/prefs.js:136
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Ονόματα χώρων εργασίας" msgstr "Ονόματα χώρων εργασίας"
#: extensions/workspace-indicator/prefs.js:255 #: extensions/workspace-indicator/prefs.js:262
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Προσθήκη χώρου εργασίας" msgstr "Προσθήκη χώρου εργασίας"
#~ msgid "Applications"
#~ msgstr "Εφαρμογές"
#~ msgid "Application" #~ msgid "Application"
#~ msgstr "Εφαρμογή" #~ msgstr "Εφαρμογή"
@@ -362,12 +437,6 @@ msgstr "Προσθήκη χώρου εργασίας"
#~ "λειτουργικότητα από μόνο του.\n" #~ "λειτουργικότητα από μόνο του.\n"
#~ "Παρ' όλα αυτά είναι δυνατό να προσαρμόσετε το μήνυμα χαιρετισμού." #~ "Παρ' όλα αυτά είναι δυνατό να προσαρμόσετε το μήνυμα χαιρετισμού."
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Memory"
#~ msgstr "Μνήμη"
#~ msgid "GNOME Shell Classic" #~ msgid "GNOME Shell Classic"
#~ msgstr "GNOME Shell Classic" #~ msgstr "GNOME Shell Classic"
@@ -418,8 +487,8 @@ msgstr "Προσθήκη χώρου εργασίας"
#~ msgid "" #~ msgid ""
#~ "Configures how the windows are shown in the switcher. Valid possibilities " #~ "Configures how the windows are shown in the switcher. Valid possibilities "
#~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-" #~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-only' "
#~ "only' (shows only the application icon) or 'both'." #~ "(shows only the application icon) or 'both'."
#~ msgstr "" #~ msgstr ""
#~ "Διαμορφώνει πως τα παράθυρα θα εμφανίζονται στν εναλλαγή των παραθύρων. " #~ "Διαμορφώνει πως τα παράθυρα θα εμφανίζονται στν εναλλαγή των παραθύρων. "
#~ "Έγκυρες ρυθμίσεις είναι 'thumbnail-only' (εμφανίζει μια μικρογραφία του " #~ "Έγκυρες ρυθμίσεις είναι 'thumbnail-only' (εμφανίζει μια μικρογραφία του "

View File

@@ -12,8 +12,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-23 09:28+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-23 11:58+0000\n" "PO-Revision-Date: 2024-08-13 20:40+0100\n"
"Last-Translator: Andi Chandler <andi@gowling.com>\n" "Last-Translator: Andi Chandler <andi@gowling.com>\n"
"Language-Team: English - United Kingdom <en_GB@li.org>\n" "Language-Team: English - United Kingdom <en_GB@li.org>\n"
"Language: en_GB\n" "Language: en_GB\n"
@@ -45,7 +45,7 @@ msgstr "GNOME Classic on Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favourites" msgstr "Favourites"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Apps" msgstr "Apps"
@@ -160,43 +160,43 @@ msgstr "Memory stats"
msgid "Swap stats" msgid "Swap stats"
msgstr "Swap stats" msgstr "Swap stats"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Upload stats" msgstr "Upload stats"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Download stats" msgstr "Download stats"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "System stats" msgstr "System stats"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Show" msgstr "Show"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memory" msgstr "Memory"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Upload" msgstr "Upload"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Open System Monitor" msgstr "Open System Monitor"
@@ -268,7 +268,7 @@ msgstr "Unmaximise all"
msgid "Close all" msgid "Close all"
msgstr "Close all" msgstr "Close all"
#: extensions/window-list/extension.js:773 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Window List" msgstr "Window List"
@@ -305,6 +305,10 @@ msgstr ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Show workspace previews in window list"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Window Grouping" msgstr "Window Grouping"
@@ -325,24 +329,35 @@ msgstr "Always group windows"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Show on all monitors" msgstr "Show on all monitors"
#: extensions/window-list/workspaceIndicator.js:255 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:261 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Show workspace previews"
msgstr "Workspace Indicator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Show Previews In Top Bar"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Workspace %d" msgstr "Workspace %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Workspace Names" msgstr "Workspace Names"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Add Workspace" msgstr "Add Workspace"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Show workspace previews in top bar"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Workspace Indicator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Applications" #~ msgstr "Applications"

View File

@@ -5,22 +5,23 @@
# Nicolás Satragno <nsatragno@gmail.com>, 2011. # Nicolás Satragno <nsatragno@gmail.com>, 2011.
# #
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2011-2024. # Daniel Mustieles <daniel.mustieles@gmail.com>, 2011-2024.
# Daniel Mustieles García <daniel.mustieles@gmail.com>, 2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-26 14:05+0100\n" "PO-Revision-Date: 2024-09-03 11:21+0200\n"
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n" "Last-Translator: Daniel Mustieles García <daniel.mustieles@gmail.com>\n"
"Language-Team: Spanish - Spain <gnome-es-list@gnome.org>\n" "Language-Team: Spanish - Spain <gnome-es-list@gnome.org>\n"
"Language: es_ES\n" "Language: es_ES\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Gtranslator 45.3\n" "X-Generator: Gtranslator 46.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -43,7 +44,7 @@ msgstr "GNOME clásicoen Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicaciones" msgstr "Aplicaciones"
@@ -159,43 +160,43 @@ msgstr "Estadísticas de la memoria"
msgid "Swap stats" msgid "Swap stats"
msgstr "Estadísticas del área de intercambio" msgstr "Estadísticas del área de intercambio"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Actualizar estadísticas" msgstr "Actualizar estadísticas"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Descargar estadísticas" msgstr "Descargar estadísticas"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Estadísticas del sistema" msgstr "Estadísticas del sistema"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Mostrar" msgstr "Mostrar"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memoria" msgstr "Memoria"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Área de intercambio" msgstr "Área de intercambio"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Subir" msgstr "Subir"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Descargar" msgstr "Descargar"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Abrir el monitor del sistema" msgstr "Abrir el monitor del sistema"
@@ -227,47 +228,47 @@ msgstr "Nombre del tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "El nombre del tema, que se carga desde ~/.themes/nombre/gnome-shell" msgstr "El nombre del tema, que se carga desde ~/.themes/nombre/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Cerrar" msgstr "Cerrar"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Desminimizar" msgstr "Desminimizar"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimizar" msgstr "Minimizar"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Desmaximizar" msgstr "Desmaximizar"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximizar" msgstr "Maximizar"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizar todo" msgstr "Minimizar todo"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Desminimizar todo" msgstr "Desminimizar todo"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizar todo" msgstr "Maximizar todo"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Desmaximizar todo" msgstr "Desmaximizar todo"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Cerrar todo" msgstr "Cerrar todo"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista de ventanas" msgstr "Lista de ventanas"
@@ -306,6 +307,10 @@ msgstr ""
"Indica si se debe mostrar la lista de ventanas en todas las pantallas " "Indica si se debe mostrar la lista de ventanas en todas las pantallas "
"conectadas o sólo en la primaria." "conectadas o sólo en la primaria."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Mostrar vistas previas de las áreas de trabajo en la lista de ventanas"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Agrupación de ventanas" msgstr "Agrupación de ventanas"
@@ -326,24 +331,35 @@ msgstr "Siempre agrupar las ventanas"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostrar en todas las pantallas" msgstr "Mostrar en todas las pantallas"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostrar vistas previas de las áreas de trabajo"
msgstr "Indicador de área de trabajo"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostrar vistas previas en la barra superior"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Área de trabajo %d" msgstr "Área de trabajo %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nombres de los áreas de trabajo" msgstr "Nombres de los áreas de trabajo"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Añadir área de trabajo" msgstr "Añadir área de trabajo"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Mostrar áreas de trabajo en la barra superior"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicador de área de trabajo"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicaciones" #~ msgstr "Aplicaciones"

View File

@@ -10,8 +10,8 @@
msgid "" msgid ""
msgstr "Project-Id-Version: gnome-shell-extensions master\n" msgstr "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-15 00:42+0200\n" "PO-Revision-Date: 2024-08-25 00:42+0200\n"
"Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n" "Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n"
"Language-Team: Basque <librezale@librezale.eus>\n" "Language-Team: Basque <librezale@librezale.eus>\n"
"Language: eu\n" "Language: eu\n"
@@ -42,7 +42,7 @@ msgstr "GNOME klasikoa Xorg gainean"
msgid "Favorites" msgid "Favorites"
msgstr "Gogokoak" msgstr "Gogokoak"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplikazioak" msgstr "Aplikazioak"
@@ -109,7 +109,7 @@ msgstr "Lekuak"
#: extensions/places-menu/placeDisplay.js:60 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Huts egin du '%s' abiaraztean" msgstr "Huts egin du '%s' abiarazteak"
#: extensions/places-menu/placeDisplay.js:75 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
@@ -149,43 +149,43 @@ msgstr "Memoriaren estatistikak"
msgid "Swap stats" msgid "Swap stats"
msgstr "Trukatze-espazioaren estatistikak" msgstr "Trukatze-espazioaren estatistikak"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Kargaren estatistikak" msgstr "Kargaren estatistikak"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Deskargaren estatistikak" msgstr "Deskargaren estatistikak"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Sistemaren estatistikak" msgstr "Sistemaren estatistikak"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Erakutsi" msgstr "Erakutsi"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "PUZ" msgstr "PUZa"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memoria" msgstr "Memoria"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Trukatu" msgstr "Trukatze-espazioa"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Kargatu" msgstr "Kargatu"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Deskargatu" msgstr "Deskargatu"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Ireki sistema-monitorea" msgstr "Ireki sistema-monitorea"
@@ -217,47 +217,47 @@ msgstr "Gaiaren izena"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Gaiaren izena, ~/.themes/izena/gnome-shell direktoriotik kargatzeko" msgstr "Gaiaren izena, ~/.themes/izena/gnome-shell direktoriotik kargatzeko"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Itxi" msgstr "Itxi"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Leheneratu" msgstr "Leheneratu"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimizatu" msgstr "Minimizatu"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Desmaximizatu" msgstr "Desmaximizatu"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximizatu" msgstr "Maximizatu"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizatu denak" msgstr "Minimizatu denak"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Leheneratu denak" msgstr "Leheneratu denak"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizatu denak" msgstr "Maximizatu denak"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Desmaximizatu denak" msgstr "Desmaximizatu denak"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Itxi denak" msgstr "Itxi denak"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Leiho-zerrenda" msgstr "Leiho-zerrenda"
@@ -290,13 +290,17 @@ msgid ""
"primary one." "primary one."
msgstr "Leihoen zerrenda konektatutako pantaila guztietan edo soilik pantaila nagusian erakutsiko den." msgstr "Leihoen zerrenda konektatutako pantaila guztietan edo soilik pantaila nagusian erakutsiko den."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Erakutsi laneko areen aurrebistak leihoen zerrendan"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Leiho-elkartzea" msgstr "Leihoak elkartzea"
#: extensions/window-list/prefs.js:40 #: extensions/window-list/prefs.js:40
msgid "Never group windows" msgid "Never group windows"
msgstr "Leihoak inoiz ez elkartu" msgstr "Ez elkartu leihoak inoiz"
#: extensions/window-list/prefs.js:41 #: extensions/window-list/prefs.js:41
msgid "Group windows when space is limited" msgid "Group windows when space is limited"
@@ -310,24 +314,35 @@ msgstr "Elkartu beti leihoak"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Erakutsi pantaila guztietan" msgstr "Erakutsi pantaila guztietan"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Erakutsi laneko areen aurrebistak"
msgstr "Lan arearen adierazlea"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Erakutsi aurrebistak goiko barran"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "%d. laneko area" msgstr "%d. laneko area"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Laneko areen izenak" msgstr "Laneko areen izenak"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Gehitu laneko area" msgstr "Gehitu laneko area"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Erakutsi laneko areen aurrebistak goiko barran"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Laneko arearen adierazlea"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplikazioak" #~ msgstr "Aplikazioak"

View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions gnome-3-0\n" "Project-Id-Version: gnome-shell-extensions gnome-3-0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-12 16:49+0000\n" "POT-Creation-Date: 2024-08-25 13:34+0000\n"
"PO-Revision-Date: 2024-02-12 20:28+0330\n" "PO-Revision-Date: 2024-08-26 12:19+0330\n"
"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n" "Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"
"Language-Team: Persian <>\n" "Language-Team: Persian <>\n"
"Language: fa\n" "Language: fa\n"
@@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.4.4\n"
"X-DamnedLies-Scope: partial\n" "X-DamnedLies-Scope: partial\n"
"X-Generator: Poedit 3.4.2\n"
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -43,7 +43,7 @@ msgstr "گنوم کلاسیک روی زورگ"
msgid "Favorites" msgid "Favorites"
msgstr "برگزیده‌ها" msgstr "برگزیده‌ها"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "کاره‌ها" msgstr "کاره‌ها"
@@ -157,43 +157,43 @@ msgstr "آمار حافظه"
msgid "Swap stats" msgid "Swap stats"
msgstr "آمار مبادله" msgstr "آمار مبادله"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "آمار بارگذاری" msgstr "آمار بارگذاری"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "آمار بارگیری" msgstr "آمار بارگیری"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "آمار سامانه" msgstr "آمار سامانه"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "نمایش" msgstr "نمایش"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "سی‌پی‌یو" msgstr "سی‌پی‌یو"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "حافظه" msgstr "حافظه"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "مبادله" msgstr "مبادله"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "بارگذاری" msgstr "بارگذاری"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "بارگیری" msgstr "بارگیری"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "گشودن پایشگر سامانه" msgstr "گشودن پایشگر سامانه"
@@ -225,47 +225,47 @@ msgstr "نام تم"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "نام تم، جهت بارگیری از شاخه themes/name/gnome-shell./~" msgstr "نام تم، جهت بارگیری از شاخه themes/name/gnome-shell./~"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "خروج" msgstr "خروج"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "ناکمینه" msgstr "ناکمینه"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "کمینه" msgstr "کمینه"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "نابیشینه" msgstr "نابیشینه"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "بیشنه" msgstr "بیشنه"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "کمینهٔ همه" msgstr "کمینهٔ همه"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "ناکمینهٔ همه" msgstr "ناکمینهٔ همه"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "بیشینهٔ همه" msgstr "بیشینهٔ همه"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "نابیشینهٔ همه" msgstr "نابیشینهٔ همه"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "بستن همه" msgstr "بستن همه"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "فهرست پنجره" msgstr "فهرست پنجره"
@@ -302,6 +302,10 @@ msgstr ""
"اینکه آیا فهرست پنجره‌ها در تمام نمایشگرهای متصل نمایش داده شود یا فقط در نمایشگر " "اینکه آیا فهرست پنجره‌ها در تمام نمایشگرهای متصل نمایش داده شود یا فقط در نمایشگر "
"اصلی." "اصلی."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "پیش‌نمایش فضاهای کاری در سیاههٔ پنجره‌ها"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "گروه‌سازی پنجره‌ها" msgstr "گروه‌سازی پنجره‌ها"
@@ -322,24 +326,35 @@ msgstr "همیشه پنجره‌ها گروه شوند"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "نمایش در تمام نمایشگرها" msgstr "نمایش در تمام نمایشگرها"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "پیش‌نمایش فضاهای کاری"
msgstr "نشانگر فضای‌کاری"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "پیش‌نمایش در نوار بالایی"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "فضای کاری %Id" msgstr "فضای کاری %Id"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "نام‌های فضای کاری" msgstr "نام‌های فضای کاری"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "افزودن فضای‌کاری" msgstr "افزودن فضای‌کاری"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "پیش‌نمایش فضاهای کاری در نوار بالایی"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "نشانگر فضای‌کاری"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "برنامه‌ها" #~ msgstr "برنامه‌ها"

View File

@@ -12,8 +12,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-02 17:31+0200\n" "PO-Revision-Date: 2024-08-23 14:07+0300\n"
"Last-Translator: JR-Fi <starman@starman.fi>\n" "Last-Translator: JR-Fi <starman@starman.fi>\n"
"Language-Team: suomi <lokalisointi-lista@googlegroups.com>\n" "Language-Team: suomi <lokalisointi-lista@googlegroups.com>\n"
"Language: fi\n" "Language: fi\n"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
"X-POT-Import-Date: 2012-03-05 15:06:12+0000\n" "X-POT-Import-Date: 2012-03-05 15:06:12+0000\n"
@@ -46,7 +46,7 @@ msgstr "Perinteinen Gnome Xorgia käyttäen"
msgid "Favorites" msgid "Favorites"
msgstr "Suosikit" msgstr "Suosikit"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Sovellukset" msgstr "Sovellukset"
@@ -162,43 +162,43 @@ msgstr "Muistin tilastot"
msgid "Swap stats" msgid "Swap stats"
msgstr "Swap-tilastot" msgstr "Swap-tilastot"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Lähetystilastot" msgstr "Lähetystilastot"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Lataustilastot" msgstr "Lataustilastot"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Järjestelmän tilastot" msgstr "Järjestelmän tilastot"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Näytä" msgstr "Näytä"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Suoritin" msgstr "Suoritin"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Muisti" msgstr "Muisti"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Lähetys" msgstr "Lähetys"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Lataus" msgstr "Lataus"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Avaa järjestelmän valvonta" msgstr "Avaa järjestelmän valvonta"
@@ -230,47 +230,47 @@ msgstr "Teeman nimi"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Teeman nimi, ladataan sijainnista ~/.themes/name/gnome-shell" msgstr "Teeman nimi, ladataan sijainnista ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Sulje" msgstr "Sulje"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Palauta pienennys" msgstr "Palauta pienennys"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Pienennä" msgstr "Pienennä"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Palauta suurennus" msgstr "Palauta suurennus"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Suurenna" msgstr "Suurenna"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Pienennä kaikki" msgstr "Pienennä kaikki"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Palauta kaikkien koko" msgstr "Palauta kaikkien koko"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Suurenna kaikki" msgstr "Suurenna kaikki"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Palauta kaikkien koko" msgstr "Palauta kaikkien koko"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Sulje kaikki" msgstr "Sulje kaikki"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Ikkunaluettelo" msgstr "Ikkunaluettelo"
@@ -309,6 +309,10 @@ msgstr ""
"Näytetäänkö ikkunaluettelo kaikilla liitetyillä näytöillä vai ainoastaan " "Näytetäänkö ikkunaluettelo kaikilla liitetyillä näytöillä vai ainoastaan "
"ensisijaisella näytöllä." "ensisijaisella näytöllä."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Näytä työtilojen esikatselu ikkunaluettelossa"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Ikkunoiden ryhmitys" msgstr "Ikkunoiden ryhmitys"
@@ -329,24 +333,35 @@ msgstr "Ryhmitä ikkunat aina"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Näytä kaikilla näytöillä" msgstr "Näytä kaikilla näytöillä"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Näytä työtilojen esikatselut"
msgstr "Työtilan ilmaisin"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Näytä esikatselut yläpalkissa"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Työtila %d" msgstr "Työtila %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Työtilojen nimet" msgstr "Työtilojen nimet"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Lisää työtila" msgstr "Lisää työtila"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Näytä työtilojen esikatselut yläpalkissa"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Työtilan ilmaisin"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Sovellukset" #~ msgstr "Sovellukset"

View File

@@ -10,16 +10,16 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-24 21:13+0100\n" "PO-Revision-Date: 2024-08-29 17:42+0200\n"
"Last-Translator: Guillaume Bernard <associations@guillaume-bernard.fr>\n" "Last-Translator: Irénée Thirion <irenee.thirion@e.email>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n" "Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -42,7 +42,7 @@ msgstr "GNOME Classique sur Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoris" msgstr "Favoris"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Applications" msgstr "Applications"
@@ -160,43 +160,43 @@ msgstr "Statistiques de la mémoire"
msgid "Swap stats" msgid "Swap stats"
msgstr "Statistiques de lespace déchange" msgstr "Statistiques de lespace déchange"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Statistiques de téléversement" msgstr "Statistiques de téléversement"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Statistiques de téléchargement" msgstr "Statistiques de téléchargement"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Statistiques du système" msgstr "Statistiques du système"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Afficher" msgstr "Afficher"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Mémoire" msgstr "Mémoire"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Espace déchange" msgstr "Espace déchange"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Téléversement" msgstr "Téléversement"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Téléchargement" msgstr "Téléchargement"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Ouvrir Moniteur système" msgstr "Ouvrir Moniteur système"
@@ -228,47 +228,47 @@ msgstr "Nom du thème"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Le nom du thème, à charger à partir de ~/.themes/name/gnome-shell" msgstr "Le nom du thème, à charger à partir de ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Fermer" msgstr "Fermer"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Restaurer" msgstr "Restaurer"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Réduire" msgstr "Réduire"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Restaurer" msgstr "Restaurer"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximiser" msgstr "Maximiser"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Tout réduire" msgstr "Tout réduire"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Tout restaurer" msgstr "Tout restaurer"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Tout maximiser" msgstr "Tout maximiser"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Tout restaurer" msgstr "Tout restaurer"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Tout fermer" msgstr "Tout fermer"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Liste de fenêtres" msgstr "Liste de fenêtres"
@@ -308,6 +308,10 @@ msgstr ""
"Indique sil faut afficher la liste des fenêtres sur tous les écrans " "Indique sil faut afficher la liste des fenêtres sur tous les écrans "
"connectés ou seulement lécran principal." "connectés ou seulement lécran principal."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Afficher les aperçus des espaces de travail dans la liste des fenêtres"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Regroupement de fenêtres" msgstr "Regroupement de fenêtres"
@@ -328,24 +332,35 @@ msgstr "Toujours regrouper les fenêtres"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Afficher sur tous les écrans" msgstr "Afficher sur tous les écrans"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Afficher les aperçus des espaces de travail"
msgstr "Indicateur despace de travail"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Afficher les aperçus dans la barre supérieure"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Espace de travail %d" msgstr "Espace de travail %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Noms des espaces de travail" msgstr "Noms des espaces de travail"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Ajouter un espace de travail" msgstr "Ajouter un espace de travail"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Afficher les aperçus des espaces de travail dans la barre supérieure"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicateur despace de travail"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Applications" #~ msgstr "Applications"

129
po/fur.po
View File

@@ -6,16 +6,16 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n"
"issues\n" "POT-Creation-Date: 2024-10-18 19:45+0000\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "PO-Revision-Date: 2024-10-20 20:01+0000\n"
"PO-Revision-Date: 2024-04-16 21:02+0200\n"
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n" "Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
"Language-Team: Friulian <fur@li.org>\n" "Language-Team: Friulian <f.t.public@gmail.com>\n"
"Language: fur\n" "Language: fur\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Editor: HaiPO 2.1 beta\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.2\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -39,7 +39,7 @@ msgstr "GNOME Classic su Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Preferîts" msgstr "Preferîts"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicazions" msgstr "Aplicazions"
@@ -52,8 +52,8 @@ msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
msgstr "" msgstr ""
"Une liste di stringhis, ogniune e ten il ID di une aplicazion (non dal file ." "Une liste di stringhis, ogniune e ten il ID di une aplicazion (non dal file "
"desktop), cun daûr doi ponts e il numar dal spazi di lavôr" ".desktop), cun daûr doi ponts e il numar dal spazi di lavôr"
#: extensions/auto-move-windows/prefs.js:159 #: extensions/auto-move-windows/prefs.js:159
msgid "Workspace Rules" msgid "Workspace Rules"
@@ -89,8 +89,8 @@ msgid ""
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"Cîr di doprâ plui schermi par plaçâ lis miniaturis dai barcons, adatant il " "Cîr di doprâ plui schermi par plaçâ lis miniaturis dai barcons, adatant il "
"rapuart di aspiet dal visôr e consolidant ancjemo di plui lis miniaturis par " "rapuart di aspiet dal visôr e consolidant ancjemo di plui lis miniaturis par"
"ridusi il spazi complessîf. Cheste impostazion si apliche dome se " " ridusi il spazi complessîf. Cheste impostazion si apliche dome se "
"l'algoritmi di plaçament al è naturâl." "l'algoritmi di plaçament al è naturâl."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
@@ -155,43 +155,43 @@ msgstr "Statistichis memorie"
msgid "Swap stats" msgid "Swap stats"
msgstr "Statistichis memorie di scambi" msgstr "Statistichis memorie di scambi"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Statistichis cjariament in rêt" msgstr "Statistichis cjariament in rêt"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Statistichis discjariaments" msgstr "Statistichis discjariaments"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Statistichis di sisteme" msgstr "Statistichis di sisteme"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Mostre" msgstr "Mostre"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memorie" msgstr "Memorie"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Memorie di scambi" msgstr "Memorie di scambi"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Cjariaments in rêt" msgstr "Cjariaments in rêt"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Discjariaments" msgstr "Discjariaments"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Vierç monitor di sisteme" msgstr "Vierç monitor di sisteme"
@@ -223,47 +223,47 @@ msgstr "Non dal teme"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Il non dal teme, che si cjame da ~/.themes/name/gnome-shell" msgstr "Il non dal teme, che si cjame da ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Siere" msgstr "Siere"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Gjave minimizazion" msgstr "Gjave minimizazion"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimize" msgstr "Minimize"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Gjave massimizazion" msgstr "Gjave massimizazion"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Massimize" msgstr "Massimize"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:485
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimize ducj" msgstr "Minimize ducj"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:491
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Gjave a ducj la minimizazion" msgstr "Gjave a ducj la minimizazion"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:497
msgid "Maximize all" msgid "Maximize all"
msgstr "Massimize ducj" msgstr "Massimize ducj"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:505
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Gjave a ducj la massimizazion" msgstr "Gjave a ducj la massimizazion"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:513
msgid "Close all" msgid "Close all"
msgstr "Siere ducj" msgstr "Siere ducj"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:780
msgid "Window List" msgid "Window List"
msgstr "Liste barcons" msgstr "Liste barcons"
@@ -280,7 +280,7 @@ msgstr ""
"barcons. I valôrs pussibii a son “never”, “auto” e “always”." "barcons. I valôrs pussibii a son “never”, “auto” e “always”."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:70
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Mostre i barcons di ducj i spazis di lavôr" msgstr "Mostre i barcons di ducj i spazis di lavôr"
@@ -301,44 +301,59 @@ msgstr ""
"Indiche se mostrâ la liste dai barcons su ducj i visôrs tacâts o nome sul " "Indiche se mostrâ la liste dai barcons su ducj i visôrs tacâts o nome sul "
"chel principâl." "chel principâl."
#: extensions/window-list/prefs.js:35 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Mostre lis anteprimis dai spazis di lavôr te liste dai barcons"
#: extensions/window-list/prefs.js:37
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Intropament di barcons" msgstr "Intropament di barcons"
#: extensions/window-list/prefs.js:40 #: extensions/window-list/prefs.js:42
msgid "Never group windows" msgid "Never group windows"
msgstr "No sta meti mai in grup i barcons" msgstr "No sta meti mai in grup i barcons"
#: extensions/window-list/prefs.js:41 #: extensions/window-list/prefs.js:43
msgid "Group windows when space is limited" msgid "Group windows when space is limited"
msgstr "Met dongje i barcons cuant che il spazi al è limitât" msgstr "Met dongje i barcons cuant che il spazi al è limitât"
#: extensions/window-list/prefs.js:42 #: extensions/window-list/prefs.js:44
msgid "Always group windows" msgid "Always group windows"
msgstr "Met simpri in grup i barcons" msgstr "Met simpri in grup i barcons"
#: extensions/window-list/prefs.js:66 #: extensions/window-list/prefs.js:64
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostre su ducj i visôrs" msgstr "Mostre su ducj i visôrs"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:76
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostre anteprimis dai spazis di lavôr"
msgstr "Indicadôr spazi di lavôr"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostre anteprimis te sbare superiôr"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Spazi di lavôr %d" msgstr "Spazi di lavôr %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nons dai spazis di lavôr" msgstr "Nons dai spazis di lavôr"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Zonte spazi di lavôr" msgstr "Zonte spazi di lavôr"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Mostre anteprimis dai spazis di lavôr te sbare superiôr"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicadôr spazi di lavôr"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicazions" #~ msgstr "Aplicazions"
@@ -367,24 +382,24 @@ msgstr "Zonte spazi di lavôr"
#~ msgstr "Disposizion dai botons te sbare dal titul" #~ msgstr "Disposizion dai botons te sbare dal titul"
#~ msgid "" #~ msgid ""
#~ "This key overrides the key in org.gnome.desktop.wm.preferences when " #~ "This key overrides the key in org.gnome.desktop.wm.preferences when running "
#~ "running GNOME Shell." #~ "GNOME Shell."
#~ msgstr "" #~ msgstr ""
#~ "Cheste clâf a sorplante chê in org.gnome.desktop.wm.preferences cuant che " #~ "Cheste clâf a sorplante chê in org.gnome.desktop.wm.preferences cuant che al"
#~ "al è in esecuzion GNOME Shell." #~ " è in esecuzion GNOME Shell."
#~ msgid "Enable edge tiling when dropping windows on screen edges" #~ msgid "Enable edge tiling when dropping windows on screen edges"
#~ msgstr "" #~ msgstr ""
#~ "Abilite la tasseladure sul ôr cuant che i balcons a vegnin molâts sul ôr " #~ "Abilite la tasseladure sul ôr cuant che i balcons a vegnin molâts sul ôr dal"
#~ "dal visôr" #~ " visôr"
#~ msgid "Workspaces only on primary monitor" #~ msgid "Workspaces only on primary monitor"
#~ msgstr "Spazis di lavôr dome sul visôr principâl" #~ msgstr "Spazis di lavôr dome sul visôr principâl"
#~ msgid "Delay focus changes in mouse mode until the pointer stops moving" #~ msgid "Delay focus changes in mouse mode until the pointer stops moving"
#~ msgstr "" #~ msgstr ""
#~ "Tarde la mude dal focus te modalitât mouse fintremai che il pontadôr no " #~ "Tarde la mude dal focus te modalitât mouse fintremai che il pontadôr no si "
#~ "si ferme" #~ "ferme"
#~ msgid "Thumbnail only" #~ msgid "Thumbnail only"
#~ msgstr "Dome miniaturis" #~ msgstr "Dome miniaturis"
@@ -408,8 +423,8 @@ msgstr "Zonte spazi di lavôr"
#~ msgstr "Test di benvignût alternatîf" #~ msgstr "Test di benvignût alternatîf"
#~ msgid "" #~ msgid ""
#~ "If not empty, it contains the text that will be shown when clicking on " #~ "If not empty, it contains the text that will be shown when clicking on the "
#~ "the panel." #~ "panel."
#~ msgstr "" #~ msgstr ""
#~ "Se no vueit, al ten il test che al vegnarà mostrât scliçant sul panel." #~ "Se no vueit, al ten il test che al vegnarà mostrât scliçant sul panel."
@@ -417,12 +432,10 @@ msgstr "Zonte spazi di lavôr"
#~ msgstr "Messaç" #~ msgstr "Messaç"
#~ msgid "" #~ msgid ""
#~ "Example aims to show how to build well behaved extensions for the Shell " #~ "Example aims to show how to build well behaved extensions for the Shell and as such it has little functionality on its own.\n"
#~ "and as such it has little functionality on its own.\n"
#~ "Nevertheless its possible to customize the greeting message." #~ "Nevertheless its possible to customize the greeting message."
#~ msgstr "" #~ msgstr ""
#~ "Example al ponte a mostrâ cemût imbastî estensions de Shell che si " #~ "Example al ponte a mostrâ cemût imbastî estensions de Shell che si compuartedin ben e par chest no 'ndi à tantis funzions.\n"
#~ "compuartedin ben e par chest no 'ndi à tantis funzions.\n"
#~ "Ad ogni mût al è pussibil personalizâ il messaç di benvignût." #~ "Ad ogni mût al è pussibil personalizâ il messaç di benvignût."
#~ msgid "GNOME Shell Classic" #~ msgid "GNOME Shell Classic"

View File

@@ -10,8 +10,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-23 00:04+0100\n" "PO-Revision-Date: 2024-09-02 20:15+0200\n"
"Last-Translator: Fran Dieguez <fran.dieguez@gnome.org>\n" "Last-Translator: Fran Dieguez <fran.dieguez@gnome.org>\n"
"Language-Team: Galician <proxecto@trasno.gal>\n" "Language-Team: Galician <proxecto@trasno.gal>\n"
"Language: gl\n" "Language: gl\n"
@@ -19,13 +19,13 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.2\n"
"X-Project-Style: gnome\n"
"X-DL-Team: gl\n"
"X-DL-Module: gnome-shell-extensions\n"
"X-DL-Branch: main\n" "X-DL-Branch: main\n"
"X-DL-Domain: po\n" "X-DL-Domain: po\n"
"X-DL-Module: gnome-shell-extensions\n"
"X-DL-State: Translating\n" "X-DL-State: Translating\n"
"X-DL-Team: gl\n"
"X-Generator: Poedit 3.5\n"
"X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -48,7 +48,7 @@ msgstr "GNOME clásico en Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicacións" msgstr "Aplicacións"
@@ -97,9 +97,10 @@ msgid ""
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"Tente usar mais pantalla para dispor as miniaturas das xanelas adaptándose á " "Tente usar mais pantalla para dispor as miniaturas das xanelas adaptándose "
"taxa de aspecto da pantalla e consolidalas para reducir a caixa envolvente. " "á taxa de aspecto da pantalla e consolidalas para reducir a caixa "
"Esta configuración aplícase só para a estratexia de disposición natural." "envolvente. Esta configuración aplícase só para a estratexia de disposición "
"natural."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
@@ -163,43 +164,43 @@ msgstr "Estatísticas de memoria"
msgid "Swap stats" msgid "Swap stats"
msgstr "Estatísticas da área de intercambio" msgstr "Estatísticas da área de intercambio"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Estatísticas de subida" msgstr "Estatísticas de subida"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Estatísticas de descarga" msgstr "Estatísticas de descarga"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Estatísticas do sistema" msgstr "Estatísticas do sistema"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Mostrar" msgstr "Mostrar"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memoria" msgstr "Memoria"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Área de intercambio" msgstr "Área de intercambio"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Subida" msgstr "Subida"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Descarga" msgstr "Descarga"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Abrir Monitor do sistema" msgstr "Abrir Monitor do sistema"
@@ -231,47 +232,47 @@ msgstr "Nome do tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "O nome do tema, a cargar desde ~/.themes/name/gnome-shell" msgstr "O nome do tema, a cargar desde ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Pechar" msgstr "Pechar"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Restabelecer" msgstr "Restabelecer"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimizar" msgstr "Minimizar"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Restaurar" msgstr "Restaurar"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximizar" msgstr "Maximizar"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizar todo" msgstr "Minimizar todo"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Restaurar todo" msgstr "Restaurar todo"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizar todo" msgstr "Maximizar todo"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Restaurar todo" msgstr "Restaurar todo"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Pechar todo" msgstr "Pechar todo"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista de xanelas" msgstr "Lista de xanelas"
@@ -285,8 +286,8 @@ msgid ""
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Decide cando agrupar as xanelas da mesma aplicación na lista de xanelas. Os " "Decide cando agrupar as xanelas da mesma aplicación na lista de xanelas. Os "
"valores posíbeis son «never» (nunca), «auto» (automático) e " "valores posíbeis son «never» (nunca), «auto» (automático) e «always» "
"«always» (sempre)." "(sempre)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -296,7 +297,8 @@ msgstr "Mostrar as xanelas de todos os espazos de traballo"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "" msgstr ""
"Indica se mostrar as xanelas de todos os espazos de traballo ou só no actual." "Indica se mostrar as xanelas de todos os espazos de traballo ou só no "
"actual."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
@@ -310,6 +312,10 @@ msgstr ""
"Indica se mostrar a lista de xanelas en todos os monitores conectados ou só " "Indica se mostrar a lista de xanelas en todos os monitores conectados ou só "
"no primario." "no primario."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Mostras as vistas previas do espazo de traballo na lista de xanelas"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Agrupación de xanelas" msgstr "Agrupación de xanelas"
@@ -330,24 +336,35 @@ msgstr "Agrupar sempre as xanelas"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostrar en todos os monitores" msgstr "Mostrar en todos os monitores"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostrar a vista previa dos espazo de traballo"
msgstr "Indicador de espazo de traballo"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostrar as vistas previas na barra superior"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Espazos de traballo %d" msgstr "Espazos de traballo %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nomes dos espazos de traballo" msgstr "Nomes dos espazos de traballo"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Engadir área de traballo" msgstr "Engadir área de traballo"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Mostrar as vistas previas do espazo de traballo na barra superior"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicador de espazo de traballo"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicacións" #~ msgstr "Aplicacións"

View File

@@ -9,17 +9,17 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-17 00:11+0200\n" "PO-Revision-Date: 2024-06-28 10:34+0300\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Last-Translator: Yosef Or Boczko <yoseforb@gmail.com>\n"
"Language-Team: Hebrew <yoseforb@gmail.com>\n" "Language-Team: Hebrew <yoseforb@gmail.com>\n"
"Language: he\n" "Language: he\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n>2||n==0) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n>2||n==0) ? 1 : 2\n"
"X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 3.4.1\n" "X-Generator: Gtranslator 46.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -42,7 +42,7 @@ msgstr "GNOME קלסי על גבי Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "מועדפים" msgstr "מועדפים"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "יישומים" msgstr "יישומים"
@@ -157,43 +157,43 @@ msgstr "סטטיסטיקת זיכרון"
msgid "Swap stats" msgid "Swap stats"
msgstr "סטטיסטיקת תחלופה" msgstr "סטטיסטיקת תחלופה"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "סטטיסטיקת העלאה" msgstr "סטטיסטיקת העלאה"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "סטטיסטיקת הורדה" msgstr "סטטיסטיקת הורדה"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "סטטיסטיקת מערכת" msgstr "סטטיסטיקת מערכת"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "הצגה" msgstr "הצגה"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "מעבד" msgstr "מעבד"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "זיכרון" msgstr "זיכרון"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "תחלופה" msgstr "תחלופה"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "העלאה" msgstr "העלאה"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "הורדה" msgstr "הורדה"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "פתיחת צג המערכת" msgstr "פתיחת צג המערכת"
@@ -225,47 +225,47 @@ msgstr "Theme name"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgstr "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "סגירה" msgstr "סגירה"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "ביטול המזעור" msgstr "ביטול המזעור"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "מזעור" msgstr "מזעור"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "ביטול ההגדלה" msgstr "ביטול ההגדלה"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "הגדלה" msgstr "הגדלה"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "מזעור הכל" msgstr "מזעור הכל"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "ביטול מזעור הכל" msgstr "ביטול מזעור הכל"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "הגדלת הכל" msgstr "הגדלת הכל"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "ביטול הגדלת הכל" msgstr "ביטול הגדלת הכל"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "סגירת הכל" msgstr "סגירת הכל"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "רשימת חלונות" msgstr "רשימת חלונות"
@@ -302,6 +302,10 @@ msgstr ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "הצגת תצוגה מקדימה של מרחבי העבודה ברשימת החלונות"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "קיבוץ חלונות" msgstr "קיבוץ חלונות"
@@ -322,24 +326,35 @@ msgstr "תמיד לקבץ חלונות"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "הצגה בכל הצגים" msgstr "הצגה בכל הצגים"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "הצגת תצוגה מקדימה של מרחבי העבודה"
msgstr "מחוון מרחבי עבודה"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "הצגת תצוגה מקדימה בלוח העליון"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "מרחב עבודה %d" msgstr "מרחב עבודה %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "שם מרחב העבודה" msgstr "שם מרחב העבודה"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "הוספת מרחב עבודה" msgstr "הוספת מרחב עבודה"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "הצגת תצוגה מקדימה של מרחבי העבודה בלוח העליון"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "מחוון מרחבי עבודה"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "יישומים" #~ msgstr "יישומים"

View File

@@ -10,8 +10,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-04-29 14:28+0000\n" "POT-Creation-Date: 2024-05-12 13:45+0000\n"
"PO-Revision-Date: 2024-05-14 15:40+0530\n" "PO-Revision-Date: 2024-05-14 15:33+0530\n"
"Last-Translator: Scrambled777 <weblate.scrambled777@simplelogin.com>\n" "Last-Translator: Scrambled777 <weblate.scrambled777@simplelogin.com>\n"
"Language-Team: Hindi <indlinux-hindi@lists.sourceforge.net>\n" "Language-Team: Hindi <indlinux-hindi@lists.sourceforge.net>\n"
"Language: hi\n" "Language: hi\n"
@@ -42,7 +42,7 @@ msgstr "Xorg पर GNOME क्लासिक"
msgid "Favorites" msgid "Favorites"
msgstr "पसंदीदा" msgstr "पसंदीदा"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "ऐप्स" msgstr "ऐप्स"
@@ -264,7 +264,7 @@ msgstr "अधिकतम खत्म करें"
msgid "Close all" msgid "Close all"
msgstr "सभी बंद करें" msgstr "सभी बंद करें"
#: extensions/window-list/extension.js:773 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "विंडो सूची" msgstr "विंडो सूची"
@@ -300,6 +300,10 @@ msgid ""
msgstr "" msgstr ""
"क्या विंडो सूची को सभी जुड़े हुए मॉनिटरों पर दिखाना है या केवल प्राथमिक मॉनिटर पर।" "क्या विंडो सूची को सभी जुड़े हुए मॉनिटरों पर दिखाना है या केवल प्राथमिक मॉनिटर पर।"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "विंडो सूची में कार्यस्थान पूर्वावलोकन दिखाएं"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "विंडो समूहबद्धता" msgstr "विंडो समूहबद्धता"
@@ -320,20 +324,31 @@ msgstr "हमेशा विंडोज समूहित करें"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "सभी मॉनिटरों पर दिखाएं" msgstr "सभी मॉनिटरों पर दिखाएं"
#: extensions/window-list/workspaceIndicator.js:255 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:261 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "कार्यस्थान पूर्वावलोकन दिखाएं"
msgstr "कार्यस्थान सूचक"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "शीर्षपट्टी में पूर्वावलोकन दिखाएं"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "कार्यस्थान %d" msgstr "कार्यस्थान %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "कार्यस्थान नाम" msgstr "कार्यस्थान नाम"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "कार्यस्थान जोड़ें" msgstr "कार्यस्थान जोड़ें"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "शीर्षपट्टी में कार्यस्थान पूर्वावलोकन दिखाएं"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "कार्यस्थान सूचक"

View File

@@ -11,8 +11,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/is" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/is"
"sues\n" "sues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-04 12:30+0100\n" "PO-Revision-Date: 2024-06-28 16:24+0200\n"
"Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n" "Last-Translator: Balázs Úr <ur.balazs at fsf dot hu>\n"
"Language-Team: Hungarian <openscope at fsf dot hu>\n" "Language-Team: Hungarian <openscope at fsf dot hu>\n"
"Language: hu\n" "Language: hu\n"
@@ -43,7 +43,7 @@ msgstr "Klasszikus GNOME Xorgon"
msgid "Favorites" msgid "Favorites"
msgstr "Kedvencek" msgstr "Kedvencek"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Alkalmazások" msgstr "Alkalmazások"
@@ -159,43 +159,43 @@ msgstr "Memóriastatisztikák"
msgid "Swap stats" msgid "Swap stats"
msgstr "Cserehely-statisztikák" msgstr "Cserehely-statisztikák"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Feltöltési statisztikák" msgstr "Feltöltési statisztikák"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Letöltési statisztikák" msgstr "Letöltési statisztikák"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Rendszerstatisztikák" msgstr "Rendszerstatisztikák"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Megjelenítés" msgstr "Megjelenítés"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Processzor" msgstr "Processzor"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memória" msgstr "Memória"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Cserehely" msgstr "Cserehely"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Feltöltés" msgstr "Feltöltés"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Letöltés" msgstr "Letöltés"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Rendszerfigyelő megnyitása" msgstr "Rendszerfigyelő megnyitása"
@@ -227,47 +227,47 @@ msgstr "Témanév"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "A ~/.themes/név/gnome-shell alól betöltendő téma neve" msgstr "A ~/.themes/név/gnome-shell alól betöltendő téma neve"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Bezárás" msgstr "Bezárás"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Minimalizálás megszüntetése" msgstr "Minimalizálás megszüntetése"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimalizálás" msgstr "Minimalizálás"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Maximalizálás megszüntetése" msgstr "Maximalizálás megszüntetése"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximalizálás" msgstr "Maximalizálás"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minden minimalizálása" msgstr "Minden minimalizálása"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Minden minimalizálásának megszüntetése" msgstr "Minden minimalizálásának megszüntetése"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Minden maximalizálása" msgstr "Minden maximalizálása"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Minden maximalizálásának megszüntetése" msgstr "Minden maximalizálásának megszüntetése"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Minden bezárása" msgstr "Minden bezárása"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Ablaklista" msgstr "Ablaklista"
@@ -307,6 +307,10 @@ msgstr ""
"Megjelenjen-e az ablaklista minden csatlakoztatott monitoron vagy csak az " "Megjelenjen-e az ablaklista minden csatlakoztatott monitoron vagy csak az "
"elsődlegesen." "elsődlegesen."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Munkaterület-előnézetek megjelenítése az ablaklistában"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Ablakcsoportosítás" msgstr "Ablakcsoportosítás"
@@ -327,20 +331,32 @@ msgstr "Mindig csoportosítsa az ablakokat"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Megjelenítés minden monitoron" msgstr "Megjelenítés minden monitoron"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Munkaterület-előnézetek megjelenítése"
msgstr "Munkaterület-indikátor"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Előnézetek megjelenítése a felső sávon"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "%d. munkaterület" msgstr "%d. munkaterület"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Munkaterületnevek" msgstr "Munkaterületnevek"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Munkaterület hozzáadása" msgstr "Munkaterület hozzáadása"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Munkaterület-előnézetek megjelenítése a felső sávon"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Munkaterület-indikátor"

166
po/id.po
View File

@@ -10,9 +10,9 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-22 20:20+0700\n" "PO-Revision-Date: 2024-09-04 06:36+0700\n"
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n" "Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <gnome@i15n.org>\n" "Language-Team: Indonesian <gnome@i15n.org>\n"
"Language: id\n" "Language: id\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.5\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -43,7 +43,7 @@ msgstr "GNOME Klasik di Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favorit" msgstr "Favorit"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplikasi" msgstr "Aplikasi"
@@ -159,43 +159,43 @@ msgstr "Statistik Memori"
msgid "Swap stats" msgid "Swap stats"
msgstr "Statistik Swap" msgstr "Statistik Swap"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Statistik Unggah" msgstr "Statistik Unggah"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Statistik Unduh" msgstr "Statistik Unduh"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Statistik Sistem" msgstr "Statistik Sistem"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Tampilkan" msgstr "Tampilkan"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memori" msgstr "Memori"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Unggah" msgstr "Unggah"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Unduh" msgstr "Unduh"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Buka Monitor Sistem" msgstr "Buka Monitor Sistem"
@@ -227,47 +227,47 @@ msgstr "Nama tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Nama tema, untuk dimuat dari ~/.themes/name/gnome-shell" msgstr "Nama tema, untuk dimuat dari ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Tutup" msgstr "Tutup"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Tak minimalkan" msgstr "Tak minimalkan"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimalkan" msgstr "Minimalkan"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Tak maksimalkan" msgstr "Tak maksimalkan"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maksimalkan" msgstr "Maksimalkan"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimalkan semua" msgstr "Minimalkan semua"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Tak minimalkan semua" msgstr "Tak minimalkan semua"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maksimalkan semua" msgstr "Maksimalkan semua"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Tak maksimalkan semua" msgstr "Tak maksimalkan semua"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Tutup semua" msgstr "Tutup semua"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Daftar Jendela" msgstr "Daftar Jendela"
@@ -281,8 +281,8 @@ msgid ""
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Menentukan kapan mengelompokkan jendela dari aplikasi yang sama pada daftar " "Menentukan kapan mengelompokkan jendela dari aplikasi yang sama pada daftar "
"jendela. Nilai-nilai yang mungkin adalah \"never\" (tak pernah), " "jendela. Nilai-nilai yang mungkin adalah \"never\" (tak pernah), \"auto\" "
"\"auto\" (otomatis), atau \"always\" (selalu)." "(otomatis), atau \"always\" (selalu)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -306,6 +306,10 @@ msgstr ""
"Apakah menampilkan daftar jendela pada semua monitor yang tersambung atau " "Apakah menampilkan daftar jendela pada semua monitor yang tersambung atau "
"hanya pada yang utama." "hanya pada yang utama."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Tampilkan pratinjau ruang kerja dalam daftar jendela"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Pengelompokan Jendela" msgstr "Pengelompokan Jendela"
@@ -326,105 +330,31 @@ msgstr "Selalu kelompokkan jendela"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Tampilkan pada semua monitor" msgstr "Tampilkan pada semua monitor"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Tampilkan pratinjau ruang kerja"
msgstr "Indikator Ruang Kerja"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Tampilkan Pratinjau Di Bilah Puncak"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Ruang Kerja %d" msgstr "Ruang Kerja %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nama Ruang Kerja" msgstr "Nama Ruang Kerja"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Tambah Ruang Kerja" msgstr "Tambah Ruang Kerja"
#~ msgid "Applications" #: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
#~ msgstr "Aplikasi" msgid "Show workspace previews in top bar"
msgstr "Menampilkan pratinjau ruang kerja di bilah puncak"
#~ msgid "Application" #: extensions/workspace-indicator/workspaceIndicator.js:430
#~ msgstr "Aplikasi" msgid "Workspace Indicator"
msgstr "Indikator Ruang Kerja"
#~ msgid "Create new matching rule"
#~ msgstr "Buat aturan pencocokan baru"
#~ msgid "Add"
#~ msgstr "Tambah"
#~ msgid "Name"
#~ msgstr "Nama"
#~ msgid "Attach modal dialog to the parent window"
#~ msgstr "Cantolkan dialog modal ke jendela induk"
#~ msgid ""
#~ "This key overrides the key in org.gnome.mutter when running GNOME Shell."
#~ msgstr ""
#~ "Kunci ini menimpa kunci dalam org.gnome.mutter ketika menjalankan GNOME "
#~ "Shell."
#~ msgid "Arrangement of buttons on the titlebar"
#~ msgstr "Pengaturan tombol-tombol pada bilah judul"
#~ msgid ""
#~ "This key overrides the key in org.gnome.desktop.wm.preferences when "
#~ "running GNOME Shell."
#~ msgstr ""
#~ "Kunci ini menimpa kunci dalam org.gnome.desktop.wm.preferences ketika "
#~ "menjalankan GNOME Shell."
#~ msgid "Enable edge tiling when dropping windows on screen edges"
#~ msgstr "Aktifkan pengubinan tepi ketika menjatuhkan jendela ke tepi layar"
#~ msgid "Workspaces only on primary monitor"
#~ msgstr "Ruang kerja hanya pada monitor primer"
#~ msgid "Delay focus changes in mouse mode until the pointer stops moving"
#~ msgstr ""
#~ "Tunda perubahan fokus dalam mode tetikus sampai penunjuk berhenti bergerak"
#~ msgid "Thumbnail only"
#~ msgstr "Hanya gambar mini"
#~ msgid "Application icon only"
#~ msgstr "Hanya ikon aplikasi"
#~ msgid "Thumbnail and application icon"
#~ msgstr "Gambar mini dan ikon aplikasi"
#~ msgid "Present windows as"
#~ msgstr "Sajikan jendela sebagai"
#~ msgid "Activities Overview"
#~ msgstr "Ringkasan Aktivitas"
#~ msgid "Hello, world!"
#~ msgstr "Hai, dunia!"
#~ msgid "Alternative greeting text."
#~ msgstr "Teks penyapa alternatif."
#~ msgid ""
#~ "If not empty, it contains the text that will be shown when clicking on "
#~ "the panel."
#~ msgstr ""
#~ "Bila tak kosong, ini memuat teks yang akan ditampilkan ketika klik pada "
#~ "panel."
#~ msgid "Message"
#~ msgstr "Pesan"
#~ msgid ""
#~ "Example aims to show how to build well behaved extensions for the Shell "
#~ "and as such it has little functionality on its own.\n"
#~ "Nevertheless its possible to customize the greeting message."
#~ msgstr ""
#~ "Example bertujuan menampilkan bagaimana membangun ekstensi yang "
#~ "berkelakuan baik bagi Shell dan karena itu hanya memiliki sedikit "
#~ "fungsi.\n"
#~ "Namun, tetap mungkin untuk mengatur pesan sapaan."

View File

@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-12 18:37+0100\n" "PO-Revision-Date: 2024-08-17 07:18+0200\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n" "Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: ka\n" "Language: ka\n"
@@ -40,7 +40,7 @@ msgstr "GNOME Classic Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "რჩეულები" msgstr "რჩეულები"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "აპები" msgstr "აპები"
@@ -156,43 +156,43 @@ msgstr "მეხსიერების სტატისტიკა"
msgid "Swap stats" msgid "Swap stats"
msgstr "სვოპის სტატისტიკა" msgstr "სვოპის სტატისტიკა"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "ატვირთვის სტატისტიკა" msgstr "ატვირთვის სტატისტიკა"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "გადმოწერის სტატისტიკა" msgstr "გადმოწერის სტატისტიკა"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "სისტემის სტატისტიკა" msgstr "სისტემის სტატისტიკა"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "ჩვენება" msgstr "ჩვენება"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "მეხსიერება" msgstr "მეხსიერება"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "სვოპი" msgstr "სვოპი"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "ატვირთვა" msgstr "ატვირთვა"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "გადმოწერა" msgstr "გადმოწერა"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "სისტემური მონიტორის გახსნა" msgstr "სისტემური მონიტორის გახსნა"
@@ -224,47 +224,47 @@ msgstr "თემის სახელი"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "თემის სახელი, ~/.themes/name/gnome-shell-დან ჩასატვირთად" msgstr "თემის სახელი, ~/.themes/name/gnome-shell-დან ჩასატვირთად"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "დახურვა" msgstr "დახურვა"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "ამოკეცვა" msgstr "ამოკეცვა"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "ჩაკეცვა" msgstr "ჩაკეცვა"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "საწყის ზომაზე დაბრუნება" msgstr "საწყის ზომაზე დაბრუნება"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "მთელ ეკრანზე გაშლა" msgstr "მთელ ეკრანზე გაშლა"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "ყველას ჩაკეცვა" msgstr "ყველას ჩაკეცვა"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "ყველას ამოკეცვა" msgstr "ყველას ამოკეცვა"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "ყველას მთელ ეკრანზე გაშლა" msgstr "ყველას მთელ ეკრანზე გაშლა"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "ყველას საწყის ზომაზე დაბრუნება" msgstr "ყველას საწყის ზომაზე დაბრუნება"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "ყველას დახურვა" msgstr "ყველას დახურვა"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "ფანჯრების სია" msgstr "ფანჯრების სია"
@@ -299,6 +299,10 @@ msgid ""
"primary one." "primary one."
msgstr "ფანჯრების სიის მხოლოდ მთავარ თუ ყველა მონიტორზე ჩვენება." msgstr "ფანჯრების სიის მხოლოდ მთავარ თუ ყველა მონიტორზე ჩვენება."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "სამუშაო სივრცის მინიატურების ჩვენება ფანჯრების სიაში"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "ფანჯრების შეჯგუფება" msgstr "ფანჯრების შეჯგუფება"
@@ -319,23 +323,34 @@ msgstr "ყოველთვის შეაჯგუფე ფანჯრე
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "ყველა ეკრანზე ჩვენება" msgstr "ყველა ეკრანზე ჩვენება"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "სამუშაო სივრცის მინიატურების ჩვენება"
msgstr "სამუშაო სივრცის ინდიკატორი"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "მინიატურების ჩვენება ზედა პანელზე"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "სამუშაო სივრცე %d" msgstr "სამუშაო სივრცე %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "სამუშაო სივრცის სახელები" msgstr "სამუშაო სივრცის სახელები"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "სამუშაო სივრცის დამატება" msgstr "სამუშაო სივრცის დამატება"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "სამუშაო სივრცის მინიატურების ჩვენება ზედა პანელზე"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "სამუშაო სივრცის ინდიკატორი"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "აპლიკაციები" #~ msgstr "აპლიკაციები"

View File

@@ -10,8 +10,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-08-29 11:18+0000\n"
"PO-Revision-Date: 2024-03-10 21:36+0900\n" "PO-Revision-Date: 2024-08-29 22:37+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <gnome-kr@googlegroups.com>\n" "Language-Team: Korean <gnome-kr@googlegroups.com>\n"
"Language: ko\n" "Language: ko\n"
@@ -41,7 +41,7 @@ msgstr "그놈 클래식 (Xorg)"
msgid "Favorites" msgid "Favorites"
msgstr "즐겨찾기" msgstr "즐겨찾기"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "앱" msgstr "앱"
@@ -156,43 +156,43 @@ msgstr "메모리 통계"
msgid "Swap stats" msgid "Swap stats"
msgstr "스왑 통계" msgstr "스왑 통계"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "업로드 통계" msgstr "업로드 통계"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "다운로드 통계" msgstr "다운로드 통계"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "시스템 통계" msgstr "시스템 통계"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "보이기" msgstr "보이기"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "메모리" msgstr "메모리"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "스왑" msgstr "스왑"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "업로드" msgstr "업로드"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "다운로드" msgstr "다운로드"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "시스템 감시 보이기" msgstr "시스템 감시 보이기"
@@ -224,47 +224,47 @@ msgstr "테마 이름"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "테마 이름, ~/.themes/name/gnome-shell 아래에서 읽어들입니다." msgstr "테마 이름, ~/.themes/name/gnome-shell 아래에서 읽어들입니다."
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "닫기" msgstr "닫기"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "최소화 취소" msgstr "최소화 취소"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "최소화" msgstr "최소화"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "최대화 취소" msgstr "최대화 취소"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "최대화" msgstr "최대화"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "모두 최소화" msgstr "모두 최소화"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "모두 최소화 취소" msgstr "모두 최소화 취소"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "모두 최대화" msgstr "모두 최대화"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "모두 최대화 취소" msgstr "모두 최대화 취소"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "모두 닫기" msgstr "모두 닫기"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "창 목록" msgstr "창 목록"
@@ -287,7 +287,7 @@ msgstr "모든 작업 공간의 창을 표시합니다"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "모든 작업 공간의 창을 표시할지, 아니면 현재 작업공간의 창만 표시할지." msgstr "모든 작업 공간의 창을 표시할지, 아니면 현재 작업 공간의 창만 표시할지."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
@@ -301,6 +301,10 @@ msgstr ""
"연결된 모든 모니터에 있는 창 목록을 표시할지, 아니면 주 모니터에 있는 창 목록" "연결된 모든 모니터에 있는 창 목록을 표시할지, 아니면 주 모니터에 있는 창 목록"
"만 표시할지." "만 표시할지."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "창 목록에 작업 공간 미리 보기 표시"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "창 모으기" msgstr "창 모으기"
@@ -321,24 +325,35 @@ msgstr "항상 창 모으기"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "모든 모니터 보이기" msgstr "모든 모니터 보이기"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "작업 공간 미리 보기 표시"
msgstr "작업 공간 표시"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "위 표시줄에 미리 보기 표시"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "작업 공간 %d" msgstr "작업 공간 %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "작업 공간 이름" msgstr "작업 공간 이름"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "작업 공간 추가" msgstr "작업 공간 추가"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "위 표시줄에 작업 공간 미리 보기 표시"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "작업 공간 표시"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "프로그램" #~ msgstr "프로그램"

View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: lt\n" "Project-Id-Version: lt\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-18 22:38+0200\n" "PO-Revision-Date: 2024-09-02 22:41+0300\n"
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n" "Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
"Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n" "Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n"
"Language: lt\n" "Language: lt\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"(n%100<10 || n%100>=20) ? 1 : 2);\n" "(n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -42,7 +42,7 @@ msgstr "Klasikinis GNOME Xorg aplinkoje"
msgid "Favorites" msgid "Favorites"
msgstr "Mėgiamiausi" msgstr "Mėgiamiausi"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Programos" msgstr "Programos"
@@ -157,43 +157,43 @@ msgstr "Atminties statistika"
msgid "Swap stats" msgid "Swap stats"
msgstr "Mainų srities statistika" msgstr "Mainų srities statistika"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Išsiuntimo statistika" msgstr "Išsiuntimo statistika"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Atsisiuntimo statistika" msgstr "Atsisiuntimo statistika"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Sistemos statistika" msgstr "Sistemos statistika"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Rodyti" msgstr "Rodyti"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Atmintis" msgstr "Atmintis"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Mainų sritis" msgstr "Mainų sritis"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Išsiuntimas" msgstr "Išsiuntimas"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Atsisiuntimas" msgstr "Atsisiuntimas"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Atverti sistemos monitorių" msgstr "Atverti sistemos monitorių"
@@ -225,47 +225,47 @@ msgstr "Temos pavadinimas"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Temos pavadinimas, kuri bus įkrauta iš ~/.themes/name/gnome-shell" msgstr "Temos pavadinimas, kuri bus įkrauta iš ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Užverti" msgstr "Užverti"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Grąžinti iš sumažinimo" msgstr "Grąžinti iš sumažinimo"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Sumažinti" msgstr "Sumažinti"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Grąžinti iš išdidinimo" msgstr "Grąžinti iš išdidinimo"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Išdidinti" msgstr "Išdidinti"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Sumažinti visus" msgstr "Sumažinti visus"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Grąžinti visus iš sumažinimo" msgstr "Grąžinti visus iš sumažinimo"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Išdidinti visus" msgstr "Išdidinti visus"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Grąžinti visus iš išdidinimo" msgstr "Grąžinti visus iš išdidinimo"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Užverti visus" msgstr "Užverti visus"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Langų sąrašas" msgstr "Langų sąrašas"
@@ -302,6 +302,10 @@ msgstr ""
"Ar rodyti langų sąrašą visuose prijungtuose monitoriuose, ar tik " "Ar rodyti langų sąrašą visuose prijungtuose monitoriuose, ar tik "
"pagrindiniame." "pagrindiniame."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Rodyti darbo sričių peržiūrą langų sąraše"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Langų grupavimas" msgstr "Langų grupavimas"
@@ -322,24 +326,35 @@ msgstr "Visada grupuoti langus"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Rodyti visuose monitoriuose" msgstr "Rodyti visuose monitoriuose"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Rodyti darbo sričių pažiūras"
msgstr "Darbo srities indikatorius"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Rodo peržiūras viršutinėje juostoje"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Darbo sritis %d" msgstr "Darbo sritis %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Darbo sričių pavadinimai" msgstr "Darbo sričių pavadinimai"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Pridėti darbo sritį" msgstr "Pridėti darbo sritį"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Rodo darbo sričių peržiūras viršutinėje juostoje"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Darbo srities indikatorius"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Programos" #~ msgstr "Programos"

View File

@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/is" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/is"
"sues\n" "sues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-25 12:49+0200\n" "PO-Revision-Date: 2024-09-10 22:45+0300\n"
"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n" "Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n" "Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n" "Language: lv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 23.08.1\n" "X-Generator: Lokalize 23.08.5\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :"
" 2);\n" " 2);\n"
@@ -42,7 +42,7 @@ msgstr "Klasiskais GNOME ar Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Izlase" msgstr "Izlase"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Lietotnes" msgstr "Lietotnes"
@@ -158,43 +158,43 @@ msgstr "Atmiņas statistika"
msgid "Swap stats" msgid "Swap stats"
msgstr "Maiņvietas statistika" msgstr "Maiņvietas statistika"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Augšupielādes statistika" msgstr "Augšupielādes statistika"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Lejupielādes statistika" msgstr "Lejupielādes statistika"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Sistēmas statistika" msgstr "Sistēmas statistika"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Rādīt" msgstr "Rādīt"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Atmiņa" msgstr "Atmiņa"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Maiņvieta" msgstr "Maiņvieta"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Augšupielāde" msgstr "Augšupielāde"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Lejupielāde" msgstr "Lejupielāde"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Atvērt sistēmas pārraugu" msgstr "Atvērt sistēmas pārraugu"
@@ -226,47 +226,47 @@ msgstr "Motīva nosaukums"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Motīva nosaukums, ko ielādēt no ~/.themes/name/gnome-shell" msgstr "Motīva nosaukums, ko ielādēt no ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Aizvērt" msgstr "Aizvērt"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Atminimizēt" msgstr "Atminimizēt"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimizēt" msgstr "Minimizēt"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Atjaunot" msgstr "Atjaunot"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maksimizēt" msgstr "Maksimizēt"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizēt visus" msgstr "Minimizēt visus"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Atminimizēt visus" msgstr "Atminimizēt visus"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maksimizēt visus" msgstr "Maksimizēt visus"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Atmaksimizēt visus" msgstr "Atmaksimizēt visus"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Aizvērt visu" msgstr "Aizvērt visu"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Logu saraksts" msgstr "Logu saraksts"
@@ -303,6 +303,10 @@ msgstr ""
"Vai logu sarakstu rādītu uz visiem pievienotajiem monitoriem, vai tikai uz " "Vai logu sarakstu rādītu uz visiem pievienotajiem monitoriem, vai tikai uz "
"primārā." "primārā."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Rādīt darbvirsmu priekšskatījumus logu sarakstā"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Logu grupēšana" msgstr "Logu grupēšana"
@@ -323,24 +327,35 @@ msgstr "Vienmēr grupēt logus"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Rādīt uz visiem monitoriem" msgstr "Rādīt uz visiem monitoriem"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Rādīt darbvirsmu priekšskatījumus"
msgstr "Darbvietu indikators"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Priekšskatījumus rādīt augšējā joslā"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Darbvieta %d" msgstr "Darbvieta %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Darbvietu nosaukumi" msgstr "Darbvietu nosaukumi"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Pievienot darbvietu" msgstr "Pievienot darbvietu"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Darbvirsmu priekšskatījumus rādīt augšējā joslā"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Darbvietu indikators"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Lietotnes" #~ msgstr "Lietotnes"

View File

@@ -8,15 +8,16 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions 3.26.x\n" "Project-Id-Version: gnome-shell-extensions 3.26.x\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-17 21:46+0000\n" "POT-Creation-Date: 2024-08-24 20:03+0000\n"
"PO-Revision-Date: 2024-02-24 14:39+0100\n" "PO-Revision-Date: 2024-08-24 22:21+0200\n"
"Last-Translator: Brage Fuglseth <bragefuglseth@gnome.org>\n" "Last-Translator: Brage Fuglseth <bragefuglseth@gnome.org>\n"
"Language-Team: Norwegian bokmål <i18n-nb@lister.ping.uio.no>\n" "Language-Team: Norwegian bokmål <i18n-nb@lister.ping.uio.no>\n"
"Language: nb\n" "Language: nb\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 3.4.2\n" "X-DamnedLies-Scope: partial\n"
"X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -39,7 +40,7 @@ msgstr "Klassisk GNOME på Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritter" msgstr "Favoritter"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Apper" msgstr "Apper"
@@ -155,43 +156,43 @@ msgstr "Minnebruk"
msgid "Swap stats" msgid "Swap stats"
msgstr "Vekselminnebruk" msgstr "Vekselminnebruk"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Opplastingsmengde" msgstr "Opplastingsmengde"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Nedlastingsmengde" msgstr "Nedlastingsmengde"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Systemstatistikk" msgstr "Systemstatistikk"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Vis" msgstr "Vis"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Prosessor" msgstr "Prosessor"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Minne" msgstr "Minne"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Vekselminne" msgstr "Vekselminne"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Opplasting" msgstr "Opplasting"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Nedlasting" msgstr "Nedlasting"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Åpne Systemmonitor" msgstr "Åpne Systemmonitor"
@@ -223,47 +224,47 @@ msgstr "Stilnavn"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Navn på stil, som vil bli lastet fra ~/.themes/{navn}/gnome-shell" msgstr "Navn på stil, som vil bli lastet fra ~/.themes/{navn}/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Lukk" msgstr "Lukk"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Gjenopprett" msgstr "Gjenopprett"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimer" msgstr "Minimer"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Demaksimer" msgstr "Demaksimer"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Maksimer" msgstr "Maksimer"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimer alle" msgstr "Minimer alle"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Gjenopprett alle" msgstr "Gjenopprett alle"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Maksimer alle" msgstr "Maksimer alle"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Demaksimer alle" msgstr "Demaksimer alle"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Lukk alle" msgstr "Lukk alle"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Vindusliste" msgstr "Vindusliste"
@@ -300,6 +301,10 @@ msgstr ""
"Om vinduslisten skal vises på alle tilkoblede skjermer eller bare " "Om vinduslisten skal vises på alle tilkoblede skjermer eller bare "
"hovedskjermen." "hovedskjermen."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Forhåndsvis områder i vinduslisten"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Vindusgruppering" msgstr "Vindusgruppering"
@@ -320,24 +325,35 @@ msgstr "Alltid grupper vinduer"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Vis på alle skjermer" msgstr "Vis på alle skjermer"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Forhåndsvis områder"
msgstr "Områdeindikator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Vis forhåndsvisninger av områder i topplinjen"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Område %d" msgstr "Område %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Områdenavn" msgstr "Områdenavn"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Legg til område" msgstr "Legg til område"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Forhåndsvis områder i topplinjen"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Områdeindikator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Apper" #~ msgstr "Apper"

View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-10-15 16:32+0000\n"
"PO-Revision-Date: 2024-02-18 17:17+0100\n" "PO-Revision-Date: 2024-10-27 23:36+0100\n"
"Last-Translator: Nathan Follens <nfollens@gnome.org>\n" "Last-Translator: Nathan Follens <nfollens@gnome.org>\n"
"Language-Team: GNOME-NL https://matrix.to/#/#nl:gnome.org\n" "Language-Team: GNOME-NL https://matrix.to/#/#nl:gnome.org\n"
"Language: nl\n" "Language: nl\n"
@@ -18,7 +18,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -42,7 +42,7 @@ msgstr "GNOME klassiek op Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favorieten" msgstr "Favorieten"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Toepassingen" msgstr "Toepassingen"
@@ -159,43 +159,43 @@ msgstr "Geheugenstatistieken"
msgid "Swap stats" msgid "Swap stats"
msgstr "Wisselgeheugenstatistieken" msgstr "Wisselgeheugenstatistieken"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Uploadstatistieken" msgstr "Uploadstatistieken"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Downloadstatistieken" msgstr "Downloadstatistieken"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Systeemstatistieken" msgstr "Systeemstatistieken"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Tonen" msgstr "Tonen"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Geheugen" msgstr "Geheugen"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Wisselgeheugen" msgstr "Wisselgeheugen"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Upload" msgstr "Upload"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Systeemmonitor openen" msgstr "Systeemmonitor openen"
@@ -227,47 +227,47 @@ msgstr "Themanaam"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "De naam van het thema, te laden vanuit ~/.themes/name/gnome-shell" msgstr "De naam van het thema, te laden vanuit ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Sluiten" msgstr "Sluiten"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Zichtbaar maken" msgstr "Zichtbaar maken"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimaliseren" msgstr "Minimaliseren"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Herstellen" msgstr "Herstellen"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Maximaliseren" msgstr "Maximaliseren"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Alles minimaliseren" msgstr "Alles minimaliseren"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Alles zichtbaar maken" msgstr "Alles zichtbaar maken"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Alles maximaliseren" msgstr "Alles maximaliseren"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Alles herstellen" msgstr "Alles herstellen"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Alles sluiten" msgstr "Alles sluiten"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Vensterlijst" msgstr "Vensterlijst"
@@ -281,8 +281,8 @@ msgid ""
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Beslist wanneer vensters van dezelfde toepassing in de vensterlijst te " "Beslist wanneer vensters van dezelfde toepassing in de vensterlijst te "
"groeperen. Mogelijke waarden zijn never (nooit), auto en " "groeperen. Mogelijke waarden zijn never (nooit), auto en always "
"always (altijd)." "(altijd)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -307,6 +307,10 @@ msgstr ""
"Bepaalt of de vensterlijst op alle verbonden beeldschermen of enkel op het " "Bepaalt of de vensterlijst op alle verbonden beeldschermen of enkel op het "
"primaire beeldscherm wordt weergegeven." "primaire beeldscherm wordt weergegeven."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Voorbeelden van werkbladen tonen in vensterlijst"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Venstergroepering" msgstr "Venstergroepering"
@@ -327,24 +331,35 @@ msgstr "Vensters altijd groeperen"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Tonen op alle beeldschermen" msgstr "Tonen op alle beeldschermen"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Voorbeelden van werkbladen tonen"
msgstr "Werkbladindicator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Voorbeelden tonen in bovenste balk"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Werkblad %d" msgstr "Werkblad %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Werkbladnamen" msgstr "Werkbladnamen"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Werkblad toevoegen" msgstr "Werkblad toevoegen"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Voorbeelden van werkbladen tonen in bovenste balk"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Werkbladindicator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Toepassingen" #~ msgstr "Toepassingen"

View File

@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-12 10:11+0100\n" "PO-Revision-Date: 2024-08-27 10:35+0200\n"
"Last-Translator: Quentin PAGÈS\n" "Last-Translator: Quentin PAGÈS\n"
"Language-Team: Tot En Òc\n" "Language-Team: Tot En Òc\n"
"Language: oc\n" "Language: oc\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.3\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -41,7 +41,7 @@ msgstr "GNOME Classic sus Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favorits" msgstr "Favorits"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicacions" msgstr "Aplicacions"
@@ -158,43 +158,43 @@ msgstr "Estatisticas memòria"
msgid "Swap stats" msgid "Swap stats"
msgstr "Estatisticas memòria descambi" msgstr "Estatisticas memòria descambi"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Estatisticas mandadís" msgstr "Estatisticas mandadís"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Estatisticas telecargament" msgstr "Estatisticas telecargament"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Estatisticas sistèma" msgstr "Estatisticas sistèma"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Afichar" msgstr "Afichar"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memòria" msgstr "Memòria"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Memòria d'escambi" msgstr "Memòria d'escambi"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Mandadís" msgstr "Mandadís"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Telecargament" msgstr "Telecargament"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Dobrir lo monitor sistèma" msgstr "Dobrir lo monitor sistèma"
@@ -226,47 +226,47 @@ msgstr "Nom del tèma"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Lo nom del tèma, de cargar a partir de ~/.themes/name/gnome-shell" msgstr "Lo nom del tèma, de cargar a partir de ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Tampar" msgstr "Tampar"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Restablir" msgstr "Restablir"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Reduire" msgstr "Reduire"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Restablir" msgstr "Restablir"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximizar" msgstr "Maximizar"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Reduire tot" msgstr "Reduire tot"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Restablir tot" msgstr "Restablir tot"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizar tot" msgstr "Maximizar tot"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Restablir tot" msgstr "Restablir tot"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Tampar tot" msgstr "Tampar tot"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista de fenèstras" msgstr "Lista de fenèstras"
@@ -306,6 +306,10 @@ msgstr ""
"Indica se cal afichar la lista de las fenèstras sus totes los ecrans " "Indica se cal afichar la lista de las fenèstras sus totes los ecrans "
"connectats o solament l'ecran principal." "connectats o solament l'ecran principal."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Afichar los apercebuts despacis de trabalh dins una lista de fenèstra"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Regropament de fenèstras" msgstr "Regropament de fenèstras"
@@ -326,24 +330,35 @@ msgstr "Regropar totjorn las fenèstras"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Afichar sus totes los ecrans" msgstr "Afichar sus totes los ecrans"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Afichar los apercebuts despacis de trabalh"
msgstr "Indicator d'espaci de trabalh"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Afichar los apercebuts a la barra superiora"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Espaci de trabalh %d" msgstr "Espaci de trabalh %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Noms dels espacis de trabalh" msgstr "Noms dels espacis de trabalh"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Apondre un espaci de trabalh" msgstr "Apondre un espaci de trabalh"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Afichar los apercebuts despacis de trabalh a la barra superiora"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicator d'espaci de trabalh"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicacions" #~ msgstr "Aplicacions"

View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-03 20:04+0100\n" "PO-Revision-Date: 2024-08-31 15:40+0200\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <community-poland@mozilla.org>\n" "Language-Team: Polish <community-poland@mozilla.org>\n"
"Language: pl\n" "Language: pl\n"
@@ -41,7 +41,7 @@ msgstr "Klasyczne GNOME (Xorg)"
msgid "Favorites" msgid "Favorites"
msgstr "Ulubione" msgstr "Ulubione"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Programy" msgstr "Programy"
@@ -157,43 +157,43 @@ msgstr "Statystyki pamięci"
msgid "Swap stats" msgid "Swap stats"
msgstr "Statystyki przestrzeni wymiany" msgstr "Statystyki przestrzeni wymiany"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Statystyki wysyłania" msgstr "Statystyki wysyłania"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Statystyki pobierania" msgstr "Statystyki pobierania"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Statystyki komputera" msgstr "Statystyki komputera"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Wyświetlanie" msgstr "Wyświetlanie"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Procesor" msgstr "Procesor"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Pamięć" msgstr "Pamięć"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Przestrzeń wymiany" msgstr "Przestrzeń wymiany"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Wysyłanie" msgstr "Wysyłanie"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Pobieranie" msgstr "Pobieranie"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Otwórz monitor systemu" msgstr "Otwórz monitor systemu"
@@ -225,47 +225,47 @@ msgstr "Nazwa motywu"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Nazwa motywu do wczytania z katalogu ~/.themes/name/gnome-shell" msgstr "Nazwa motywu do wczytania z katalogu ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Zamknij" msgstr "Zamknij"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Cofnij minimalizację" msgstr "Cofnij minimalizację"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Zminimalizuj" msgstr "Zminimalizuj"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Cofnij maksymalizację" msgstr "Cofnij maksymalizację"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Zmaksymalizuj" msgstr "Zmaksymalizuj"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Zminimalizuj wszystkie" msgstr "Zminimalizuj wszystkie"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Cofnij minimalizację wszystkich" msgstr "Cofnij minimalizację wszystkich"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Zmaksymalizuj wszystkie" msgstr "Zmaksymalizuj wszystkie"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Cofnij maksymalizację wszystkich" msgstr "Cofnij maksymalizację wszystkich"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Zamknij wszystkie" msgstr "Zamknij wszystkie"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista okien" msgstr "Lista okien"
@@ -303,6 +303,10 @@ msgstr ""
"Czy wyświetlać listę okien na wszystkich podłączonych monitorach, czy tylko " "Czy wyświetlać listę okien na wszystkich podłączonych monitorach, czy tylko "
"na głównym." "na głównym."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Wyświetlanie podglądów obszarów roboczych na liście okien"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Grupowanie okien" msgstr "Grupowanie okien"
@@ -323,20 +327,31 @@ msgstr "Stałe grupowanie okien"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Wyświetlanie na wszystkich monitorach" msgstr "Wyświetlanie na wszystkich monitorach"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Podglądy obszarów roboczych"
msgstr "Wskaźnik obszaru roboczego"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Podglądy na górnym pasku"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "%d. obszar roboczy" msgstr "%d. obszar roboczy"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nazwy obszarów roboczych" msgstr "Nazwy obszarów roboczych"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Dodaj obszar roboczy" msgstr "Dodaj obszar roboczy"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Wyświetlanie podglądów obszarów roboczych na górnym pasku"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Wskaźnik obszaru roboczego"

View File

@@ -16,8 +16,8 @@ msgstr ""
"Project-Id-Version: 3.14\n" "Project-Id-Version: 3.14\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-04-29 14:28+0000\n" "POT-Creation-Date: 2024-05-04 23:22+0000\n"
"PO-Revision-Date: 2024-05-05 00:20+0100\n" "PO-Revision-Date: 2024-08-30 10:26+0100\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese (https://l10n.gnome.org/teams/pt/)\n" "Language-Team: Portuguese (https://l10n.gnome.org/teams/pt/)\n"
"Language: pt\n" "Language: pt\n"
@@ -25,7 +25,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
"X-DL-Team: pt\n" "X-DL-Team: pt\n"
"X-DL-Module: gnome-shell-extensions\n" "X-DL-Module: gnome-shell-extensions\n"
@@ -54,7 +54,7 @@ msgstr "GNOME clássico em Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicações" msgstr "Aplicações"
@@ -244,7 +244,7 @@ msgstr "Fechar"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Desminimizar" msgstr "Repor"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
@@ -252,7 +252,7 @@ msgstr "Minimizar"
#: extensions/window-list/extension.js:106 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Desmaximizar" msgstr "Diminuir"
#: extensions/window-list/extension.js:106 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
@@ -260,25 +260,25 @@ msgstr "Maximizar"
#: extensions/window-list/extension.js:471 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizar todas" msgstr "Minimizar tudo"
#: extensions/window-list/extension.js:477 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Desminimizar todas" msgstr "Repor tudo"
#: extensions/window-list/extension.js:483 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizar todas" msgstr "Maximizar tudo"
#: extensions/window-list/extension.js:491 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Desmaximizar todas" msgstr "Diminuir tudo"
#: extensions/window-list/extension.js:499 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Fechar todas" msgstr "Fechar tudo"
#: extensions/window-list/extension.js:773 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista de janelas" msgstr "Lista de janelas"
@@ -297,7 +297,7 @@ msgstr ""
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Mostrar janelas de todas as área de trabalho" msgstr "Mostrar janelas de todas as áreas de trabalho"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
@@ -313,8 +313,12 @@ msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
msgstr "" msgstr ""
"Se deve mostrar a lista de janelas em todos os monitores ligados ou só no " "Seja para mostrar a lista de janelas em todos os monitores ligados ou apenas "
"principal." "no principal."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Mostrar pré-visualizações de áreas de trabalho na lista de janelas"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
@@ -336,24 +340,35 @@ msgstr "Agrupar sempre as janelas"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostrar em todos os monitores" msgstr "Mostrar em todos os monitores"
#: extensions/window-list/workspaceIndicator.js:255 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:261 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostrar pré-visualizações de áreas de trabalho"
msgstr "Indicador de área de trabalho"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostrar pré-visualizações na barra superior"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Área de trabalho %d" msgstr "Área de trabalho %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nomes das áreas de trabalho" msgstr "Nomes das áreas de trabalho"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Adicionar área de trabalho" msgstr "Adicionar área de trabalho"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Mostrar pré-visualizações de áreas de trabalho na barra superior"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicador de área de trabalho"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicações" #~ msgstr "Aplicações"

View File

@@ -8,24 +8,24 @@
# Gabriel Speckhahn <gabspeck@gmail.com>, 2012. # Gabriel Speckhahn <gabspeck@gmail.com>, 2012.
# Og Maciel <ogmaciel@gnome.org>, 2012. # Og Maciel <ogmaciel@gnome.org>, 2012.
# Enrico Nicoletto <liverig@gmail.com>, 2013, 2014. # Enrico Nicoletto <liverig@gmail.com>, 2013, 2014.
# Rafael Fontenelle <rafaelff@gnome.org>, 2013-2022.
# Matheus Polkorny <mpolkorny@ipt.br>, 2024. # Matheus Polkorny <mpolkorny@ipt.br>, 2024.
# Rafael Fontenelle <rafaelff@gnome.org>, 2013-2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-29 01:15-0300\n" "PO-Revision-Date: 2024-08-25 23:48-0300\n"
"Last-Translator: Matheus Polkorny <mpolkorny@ipt.br>\n" "Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
"Language-Team: Brazilian Portuguese <https://br.gnome.org/traducao>\n" "Language-Team: Brazilian Portuguese <https://br.gnome.org/traducao>\n"
"Language: pt_BR\n" "Language: pt_BR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n"
"X-Generator: Gtranslator 45.3\n" "X-Generator: Gtranslator 46.1\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -49,7 +49,7 @@ msgstr "GNOME Clássico no Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Aplicativos" msgstr "Aplicativos"
@@ -165,43 +165,43 @@ msgstr "Status da memória"
msgid "Swap stats" msgid "Swap stats"
msgstr "Status da swap" msgstr "Status da swap"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Status do upload" msgstr "Status do upload"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Status do download" msgstr "Status do download"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Status do sistema" msgstr "Status do sistema"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Mostrar" msgstr "Mostrar"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Memória" msgstr "Memória"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Upload" msgstr "Upload"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Abrir monitor do sistema" msgstr "Abrir monitor do sistema"
@@ -233,47 +233,47 @@ msgstr "Nome do tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "O nome do tema, para ser carregado de ~/.themes/nome/gnome-shell" msgstr "O nome do tema, para ser carregado de ~/.themes/nome/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Fechar" msgstr "Fechar"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Desfazer janelas minimizadas" msgstr "Desfazer janelas minimizadas"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Minimizar" msgstr "Minimizar"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Desfazer janelas maximizadas" msgstr "Desfazer janelas maximizadas"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Maximizar" msgstr "Maximizar"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizar todas" msgstr "Minimizar todas"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Desfazer todas as janelas minimizadas" msgstr "Desfazer todas as janelas minimizadas"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizar todas" msgstr "Maximizar todas"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Desfazer todas as janelas maximizadas" msgstr "Desfazer todas as janelas maximizadas"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Fechar todas" msgstr "Fechar todas"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Lista de janelas" msgstr "Lista de janelas"
@@ -312,6 +312,10 @@ msgstr ""
"Se deve ser exibida a lista de janelas em todos os monitores ou somente no " "Se deve ser exibida a lista de janelas em todos os monitores ou somente no "
"monitor principal." "monitor principal."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Mostra prévias do espaço de trabalho na lista de janelas"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Agrupamento de janelas" msgstr "Agrupamento de janelas"
@@ -332,24 +336,35 @@ msgstr "Sempre agrupar janelas"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Mostrar em todos os monitores" msgstr "Mostrar em todos os monitores"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Mostra prévias do espaço de trabalho"
msgstr "Indicador de espaços de trabalho"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Mostra prévias na barra superior"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Espaço de trabalho %d" msgstr "Espaço de trabalho %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Nomes de espaços de trabalho" msgstr "Nomes de espaços de trabalho"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Adicionar espaço de trabalho" msgstr "Adicionar espaço de trabalho"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Mostra prévias do espaço de trabalho na barra superior"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicador de espaços de trabalho"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Aplicativos" #~ msgstr "Aplicativos"
@@ -486,8 +501,8 @@ msgstr "Adicionar espaço de trabalho"
#~ msgid "" #~ msgid ""
#~ "Configures how the windows are shown in the switcher. Valid possibilities " #~ "Configures how the windows are shown in the switcher. Valid possibilities "
#~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-" #~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-only' "
#~ "only' (shows only the application icon) or 'both'." #~ "(shows only the application icon) or 'both'."
#~ msgstr "" #~ msgstr ""
#~ "Configura como as janelas são mostradas no alternador. Possibilidades " #~ "Configura como as janelas são mostradas no alternador. Possibilidades "
#~ "válidas são \"thumbnail-only\" (mostra uma miniatura da janela), \"app-" #~ "válidas são \"thumbnail-only\" (mostra uma miniatura da janela), \"app-"

202
po/ro.po
View File

@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2023-02-18 15:10+0000\n" "POT-Creation-Date: 2024-08-05 20:06+0000\n"
"PO-Revision-Date: 2023-07-29 13:49+0300\n" "PO-Revision-Date: 2024-08-23 08:02+0300\n"
"Last-Translator: Florentina Mușat <florentina [dot] musat [dot] 28 [at] " "Last-Translator: Florentina Mușat <florentina [dot] musat [dot] 28 [at] "
"gmail [dot] com>\n" "gmail [dot] com>\n"
"Language-Team: Gnome Romanian Translation Team\n" "Language-Team: Gnome Romanian Translation Team\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n" "20)) ? 1 : 2);;\n"
"X-Generator: Poedit 3.3.2\n" "X-Generator: Poedit 3.4.4\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -39,19 +39,19 @@ msgstr "GNOME Clasic pe Wayland"
msgid "GNOME Classic on Xorg" msgid "GNOME Classic on Xorg"
msgstr "GNOME Clasic pe Xorg" msgstr "GNOME Clasic pe Xorg"
#: extensions/apps-menu/extension.js:118 #: extensions/apps-menu/extension.js:126
msgid "Favorites" msgid "Favorites"
msgstr "Favorite" msgstr "Favorite"
#: extensions/apps-menu/extension.js:380 #: extensions/apps-menu/extension.js:400
msgid "Applications" msgid "Apps"
msgstr "Aplicații" msgstr "Aplicații"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
msgstr "Lista de aplicații și spații de lucru" msgstr "Lista de aplicații și spații de lucru"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -60,34 +60,34 @@ msgstr ""
"fișierului de birou) urmat de simbolul „două puncte” și un număr al " "fișierului de birou) urmat de simbolul „două puncte” și un număr al "
"spațiului de lucru" "spațiului de lucru"
#: extensions/auto-move-windows/prefs.js:152 #: extensions/auto-move-windows/prefs.js:159
msgid "Workspace Rules" msgid "Workspace Rules"
msgstr "Regulile spațiilor de lucru" msgstr "Regulile spațiilor de lucru"
#: extensions/auto-move-windows/prefs.js:306 #: extensions/auto-move-windows/prefs.js:314
msgid "Add Rule" msgid "Add Rule"
msgstr "Adaugă o regulă" msgstr "Adaugă o regulă"
#. TRANSLATORS: %s is the filesystem name #. TRANSLATORS: %s is the filesystem name
#: extensions/drive-menu/extension.js:126 #: extensions/drive-menu/extension.js:123
#: extensions/places-menu/placeDisplay.js:212 #: extensions/places-menu/placeDisplay.js:218
#, javascript-format #, javascript-format
msgid "Ejecting drive “%s” failed:" msgid "Ejecting drive “%s” failed:"
msgstr "Scoaterea unității „%s” a eșuat:" msgstr "Scoaterea unității „%s” a eșuat:"
#: extensions/drive-menu/extension.js:145 #: extensions/drive-menu/extension.js:142
msgid "Removable devices" msgid "Removable devices"
msgstr "Dispozitive detașabile" msgstr "Dispozitive detașabile"
#: extensions/drive-menu/extension.js:167 #: extensions/drive-menu/extension.js:164
msgid "Open Files" msgid "Open Files"
msgstr "Deschide fișiere" msgstr "Deschide fișiere"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
msgid "Use more screen for windows" msgid "Use more screen for windows"
msgstr "Folosește mai mult din ecran pentru ferestre" msgstr "Folosește mai mult din ecran pentru ferestre"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -98,11 +98,11 @@ msgstr ""
"cadrul înconjurător. Această configurare este valabilă numai pentru " "cadrul înconjurător. Această configurare este valabilă numai pentru "
"strategia de plasare naturală." "strategia de plasare naturală."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
msgstr "Plasează titlul ferestrelor deasupra" msgstr "Plasează titlul ferestrelor deasupra"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding " "If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
@@ -113,99 +113,171 @@ msgstr ""
"Schimbând această configurare necesită repornire shell-ului pentru a avea " "Schimbând această configurare necesită repornire shell-ului pentru a avea "
"efect." "efect."
#: extensions/places-menu/extension.js:91
#: extensions/places-menu/extension.js:94 #: extensions/places-menu/extension.js:94
#: extensions/places-menu/extension.js:97
msgid "Places" msgid "Places"
msgstr "Locații" msgstr "Locații"
#: extensions/places-menu/placeDisplay.js:52 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Eșec la lansarea „%s”" msgstr "Eșec la lansarea „%s”"
#: extensions/places-menu/placeDisplay.js:67 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
msgid "Failed to mount volume for “%s”" msgid "Failed to mount volume for “%s”"
msgstr "Eșec la montarea volumului pentru „%s”" msgstr "Eșec la montarea volumului pentru „%s”"
#: extensions/places-menu/placeDisplay.js:127 #: extensions/places-menu/placeDisplay.js:135
#: extensions/places-menu/placeDisplay.js:150 #: extensions/places-menu/placeDisplay.js:158
msgid "Computer" msgid "Computer"
msgstr "Calculator" msgstr "Calculator"
#: extensions/places-menu/placeDisplay.js:340 #: extensions/places-menu/placeDisplay.js:333
msgid "Home" msgid "Home"
msgstr "Acasă" msgstr "Acasă"
#: extensions/places-menu/placeDisplay.js:385 #: extensions/places-menu/placeDisplay.js:378
msgid "Browse Network" msgid "Browse Network"
msgstr "Navighează rețeaua" msgstr "Navighează rețeaua"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:14
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Ciclează dimensiunile capturilor de ecran" msgstr "Ciclează dimensiunile capturilor de ecran"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "Ciclează dimensiunile capturilor de ecran în sens invers" msgstr "Ciclează dimensiunile capturilor de ecran în sens invers"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/system-monitor/extension.js:135
msgid "CPU stats"
msgstr "Statistici CPU"
#: extensions/system-monitor/extension.js:159
msgid "Memory stats"
msgstr "Statistici memorie"
#: extensions/system-monitor/extension.js:177
msgid "Swap stats"
msgstr "Statistici swap"
#: extensions/system-monitor/extension.js:336
msgid "Upload stats"
msgstr "Statistici încărcări"
#: extensions/system-monitor/extension.js:350
msgid "Download stats"
msgstr "Statistici descărcări"
#: extensions/system-monitor/extension.js:364
msgid "System stats"
msgstr "Statistici sistem"
#: extensions/system-monitor/extension.js:412
msgid "Show"
msgstr "Arată"
#: extensions/system-monitor/extension.js:414
msgid "CPU"
msgstr "CPU"
#: extensions/system-monitor/extension.js:416
msgid "Memory"
msgstr "Memorie"
#: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "Swap"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "Încărcare"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "Descărcare"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor"
msgstr "Deschide monitorul de sistem"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage"
msgstr "Arată utilizarea CPU"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage"
msgstr "Arată utilizarea memoriei"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage"
msgstr "Arată utilizarea swap"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload"
msgstr "Arată încărcările"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download"
msgstr "Arată descărcările"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
msgstr "Numele temei" msgstr "Numele temei"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:12
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Numele temei, ce va fi încărcată din ~/.themes/name/gnome-shell" msgstr "Numele temei, ce va fi încărcată din ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:72 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Închide" msgstr "Închide"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Deminimizează" msgstr "Deminimizează"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Minimizează" msgstr "Minimizează"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Demaximizează" msgstr "Demaximizează"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Maximizează" msgstr "Maximizează"
#: extensions/window-list/extension.js:483 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Minimizează tot" msgstr "Minimizează tot"
#: extensions/window-list/extension.js:489 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Deminimizează tot" msgstr "Deminimizează tot"
#: extensions/window-list/extension.js:495 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Maximizează tot" msgstr "Maximizează tot"
#: extensions/window-list/extension.js:503 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Demaximizează tot" msgstr "Demaximizează tot"
#: extensions/window-list/extension.js:511 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Închide tot" msgstr "Închide tot"
#: extensions/window-list/extension.js:795 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Lista ferestrelor" msgstr "Lista ferestrelor"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:18
msgid "When to group windows" msgid "When to group windows"
msgstr "Când să fie grupate ferestrele" msgstr "Când să fie grupate ferestrele"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:19
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
@@ -213,22 +285,22 @@ msgstr ""
"Decide când să fie grupate ferestrele aceleiași aplicații în lista " "Decide când să fie grupate ferestrele aceleiași aplicații în lista "
"ferestrei. Valorile posibile sunt „niciodată”, „auto” și „întotdeauna”." "ferestrei. Valorile posibile sunt „niciodată”, „auto” și „întotdeauna”."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Arată ferestrele din toate spațiile de lucru" msgstr "Arată ferestrele din toate spațiile de lucru"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "" msgstr ""
"Dacă să se arate ferestrele din toate spațiile de lucru sau doar din cel " "Dacă să se arate ferestrele din toate spațiile de lucru sau doar din cel "
"curent." "curent."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
msgstr "Afișează lista ferestrelor pe toate monitoarele" msgstr "Afișează lista ferestrelor pe toate monitoarele"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:34
msgid "" msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
@@ -236,6 +308,10 @@ msgstr ""
"Dacă să se arate lista ferestrelor pe toate monitoarele conectate sau doar " "Dacă să se arate lista ferestrelor pe toate monitoarele conectate sau doar "
"pe cel primar." "pe cel primar."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Arată previzualizările de spații de lucru în lista de ferestre"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Gruparea ferestrelor" msgstr "Gruparea ferestrelor"
@@ -256,24 +332,38 @@ msgstr "Grupează ferestrele întotdeauna"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Arată pe toate monitoarele" msgstr "Arată pe toate monitoarele"
#: extensions/window-list/workspaceIndicator.js:261 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:266 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Arată previzualizările de spații de lucru"
msgstr "Indicator al spațiului de lucru"
#: extensions/workspace-indicator/prefs.js:62 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Arată previzualizările în bara de sus"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Spațiu de lucru %d" msgstr "Spațiu de lucru %d"
#: extensions/workspace-indicator/prefs.js:129 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Numele spațiilor de lucru" msgstr "Numele spațiilor de lucru"
#: extensions/workspace-indicator/prefs.js:255 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Adaugă un spațiu de lucru" msgstr "Adaugă un spațiu de lucru"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Arată previzualizările de spații de lucru în bara de sus"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Indicator al spațiului de lucru"
#~ msgid "Applications"
#~ msgstr "Aplicații"
#~ msgid "Application" #~ msgid "Application"
#~ msgstr "Aplicație" #~ msgstr "Aplicație"
@@ -368,9 +458,3 @@ msgstr "Adaugă un spațiu de lucru"
#~ msgid "Window management and application launching" #~ msgid "Window management and application launching"
#~ msgstr "Gestionarea ferestrei și lansarea aplicației" #~ msgstr "Gestionarea ferestrei și lansarea aplicației"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Memory"
#~ msgstr "Memorie"

View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-11 18:21+0300\n" "PO-Revision-Date: 2024-05-25 14:46+0300\n"
"Last-Translator: Artur So <arturios2005@mail.ru>\n" "Last-Translator: Artur So <arturios2005@mail.ru>\n"
"Language-Team: Русский <gnome-cyr@gnome.org>\n" "Language-Team: Русский <gnome-cyr@gnome.org>\n"
"Language: ru\n" "Language: ru\n"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -42,7 +42,7 @@ msgstr "Классический GNOME на Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Избранное" msgstr "Избранное"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Приложения" msgstr "Приложения"
@@ -158,43 +158,43 @@ msgstr "Статистика памяти"
msgid "Swap stats" msgid "Swap stats"
msgstr "Статистика подкачки" msgstr "Статистика подкачки"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Статистика отдачи" msgstr "Статистика отдачи"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Статистика загрузки" msgstr "Статистика загрузки"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Статистика системы" msgstr "Статистика системы"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Показать" msgstr "Показать"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "ЦП" msgstr "ЦП"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Память" msgstr "Память"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Подкачка" msgstr "Подкачка"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Отдача" msgstr "Отдача"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Загрузка" msgstr "Загрузка"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Открыть системный монитор" msgstr "Открыть системный монитор"
@@ -226,49 +226,49 @@ msgstr "Название темы"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Название темы, загружаемой из ~/.themes/name/gnome-shell" msgstr "Название темы, загружаемой из ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Закрыть" msgstr "Закрыть"
# ну или "восстановить", правда тогда появляется неоднозначный повтор (unmaximize) # ну или "восстановить", правда тогда появляется неоднозначный повтор (unmaximize)
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Вернуть" msgstr "Вернуть"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Свернуть" msgstr "Свернуть"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Восстановить" msgstr "Восстановить"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Развернуть" msgstr "Развернуть"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Свернуть все" msgstr "Свернуть все"
# ну или "восстановить", правда тогда появляется неоднозначный повтор (unmaximize) # ну или "восстановить", правда тогда появляется неоднозначный повтор (unmaximize)
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Вернуть все" msgstr "Вернуть все"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Развернуть все" msgstr "Развернуть все"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Восстановить все" msgstr "Восстановить все"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Закрыть все" msgstr "Закрыть все"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Список окон" msgstr "Список окон"
@@ -288,7 +288,7 @@ msgstr ""
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Отображать окна со всех рабочих столов" msgstr "Показывать окна со всех рабочих столов"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
@@ -307,6 +307,10 @@ msgstr ""
"Показывать ли список окон на всех подключенных мониторах или только на " "Показывать ли список окон на всех подключенных мониторах или только на "
"основном." "основном."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Показывать предпросмотры рабочих столов в списке окон"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Группировка окон" msgstr "Группировка окон"
@@ -327,23 +331,34 @@ msgstr "Всегда группировать окна"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Показывать на всех мониторах" msgstr "Показывать на всех мониторах"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Показывать предпросмотры рабочих столов"
msgstr "Индикатор рабочих столов"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Показывать предпросмотры в верхней панели"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Рабочий стол %d" msgstr "Рабочий стол %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Названия рабочих столов" msgstr "Названия рабочих столов"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Добавить рабочий стол" msgstr "Добавить рабочий стол"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Показывать предпросмотры рабочих столов в верхней панели"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Индикатор рабочих столов"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Приложения" #~ msgstr "Приложения"

3697
po/sk.po

File diff suppressed because it is too large Load Diff

350
po/sl.po
View File

@@ -9,18 +9,18 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-15 05:28+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-19 11:07+0100\n" "PO-Revision-Date: 2024-05-02 00:11+0200\n"
"Last-Translator: Matej Urbančič <mateju@src.gnome.org>\n" "Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n" "Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n"
"Language: sl_SI\n" "Language: sl_SI\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
"n%100==4 ? 3 : 0);\n" "%100==4 ? 3 : 0);\n"
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 2.2.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -43,7 +43,7 @@ msgstr "Klasično namizje GNOME na sistemu Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Priljubljeno" msgstr "Priljubljeno"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Programi" msgstr "Programi"
@@ -158,43 +158,43 @@ msgstr "Delovanje pomnilnika"
msgid "Swap stats" msgid "Swap stats"
msgstr "Podatki izmenjevalnega prostora" msgstr "Podatki izmenjevalnega prostora"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Podatki pošiljanja" msgstr "Podatki pošiljanja"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Podatki prejema" msgstr "Podatki prejema"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Podrobnosti sistema" msgstr "Podrobnosti sistema"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Pokaži" msgstr "Pokaži"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPE" msgstr "CPE"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Pomnilnik" msgstr "Pomnilnik"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Izmenjevalni razdelek" msgstr "Izmenjevalni razdelek"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Poslano" msgstr "Poslano"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Prejeto" msgstr "Prejeto"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "_Odpri nadzornika sistema" msgstr "_Odpri nadzornika sistema"
@@ -226,47 +226,47 @@ msgstr "Ime teme"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Ime teme, ki bo naložena iz ~/.themes/name/gnome-shell" msgstr "Ime teme, ki bo naložena iz ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Zapri" msgstr "Zapri"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Povečaj" msgstr "Povečaj"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Skrči" msgstr "Skrči"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Pomanjšaj" msgstr "Pomanjšaj"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Razpni" msgstr "Razpni"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Skrči vse" msgstr "Skrči vse"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Pomanjšaj vse" msgstr "Pomanjšaj vse"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Razpni vse" msgstr "Razpni vse"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Pomanjšaj vse" msgstr "Pomanjšaj vse"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Zapri vse" msgstr "Zapri vse"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Seznam oken" msgstr "Seznam oken"
@@ -303,6 +303,10 @@ msgid ""
msgstr "" msgstr ""
"Ali naj bo prikazan seznam oken na vseh povezanih zasloni ali le na osnovnem." "Ali naj bo prikazan seznam oken na vseh povezanih zasloni ali le na osnovnem."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Pokaži predoglede delovne površine na seznamu oken"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Združevanje oken" msgstr "Združevanje oken"
@@ -323,289 +327,31 @@ msgstr "Okna vedno združuj"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Pokaži na vseh zaslonih" msgstr "Pokaži na vseh zaslonih"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Pokaži predoglede delovne površine"
msgstr "Kazalnik delovnih površin"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Pokaži predoglede v zgornji vrstici"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Delovna površina %d" msgstr "Delovna površina %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Imena delovnih površin" msgstr "Imena delovnih površin"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Dodaj delovno površino" msgstr "Dodaj delovno površino"
#~ msgid "Applications" #: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
#~ msgstr "Programi" msgid "Show workspace previews in top bar"
msgstr "Pokaži predoglede delovne površine v zgornji vrstici"
#~ msgid "Username or email" #: extensions/workspace-indicator/workspaceIndicator.js:430
#~ msgstr "Uporabniško ime ali elektronski naslov" msgid "Workspace Indicator"
msgstr "Kazalnik delovnih površin"
#~ msgid "Username"
#~ msgstr "Uporabniško ime"
#~ msgid ""
#~ "Required. 30 characters or fewer. Letters, digits and @/./+/-/_ only."
#~ msgstr ""
#~ "Zahtevan je vpis do 30 znakov, uporabiti pa je mogoče le črke, številke "
#~ "in znake @/./+/-/_."
#~ msgid ""
#~ "This value may contain only letters, numbers and @/./+/-/_ characters."
#~ msgstr "Vrednost lahko vsebuje le črke, številke, vezaj in znake @/./+/-/_."
#~ msgid "Email"
#~ msgstr "Elektronski naslov"
#~ msgid "You should not use email as username"
#~ msgstr "Za uporabniško ime ni priporočljivo uporabiti elektronskega naslova"
#~ msgid "Forgot your password?"
#~ msgstr "Ali ste pozabili geslo?"
#~ msgid "Log in"
#~ msgstr "Prijava"
#~ msgid "Don't have an account?"
#~ msgstr "Še nimate računa za dostop?"
#~ msgid "Register"
#~ msgstr "Vpisnik"
#~ msgid "User Login"
#~ msgstr "Prijava uporabnika"
#~ msgid "Reset your password"
#~ msgstr "Ponastavi geslo"
#~ msgid ""
#~ "The token for the password reset is incorrect. Please check your link and "
#~ "try again."
#~ msgstr ""
#~ "Žeton za ponastavitev gesla ni pravi. Preverite povezavo in poskusite "
#~ "znova."
#~ msgid "Password reset"
#~ msgstr "Ponovna nastavitev gesla"
#~ msgid ""
#~ "Forgot your password? Enter your e-mail address below, and well e-mail "
#~ "instructions for setting a new one."
#~ msgstr ""
#~ "Ali ste pozabili geslo? Vpišite elektronski naslov in poslali vam bomo "
#~ "navodila za nastavitev novega."
#~ msgid "Installed extensions"
#~ msgstr "Nameščene razširitve"
#~ msgid "About"
#~ msgstr "O programu"
#~ msgid "Extensions"
#~ msgstr "Razširitve"
#, python-format
#~ msgid ""
#~ "Unfortunately, to help prevent spam, we require that you <a "
#~ "href=\"%(login_url)s\">log in to GNOME Shell Extensions</a> in order to "
#~ "post a comment or report an error. You understand, right?"
#~ msgstr ""
#~ "Za preprečevanje neželenih objav se je treba najprej <a "
#~ "href=\"%(login_url)s\">prijaviti na spletno stran</a>. Prijava omogoča "
#~ "poročanje o napakah in objavljanje ocen in mnenj."
#~ msgid "User Reviews"
#~ msgstr "Mnenja uporabnikov"
#~ msgid "Loading reviews…"
#~ msgstr "Poteka nalaganje mnenj uporabnikov …"
#~ msgid "Your opinion"
#~ msgstr "Vaše mnenje"
#~ msgid "Leave a…"
#~ msgstr "Objavite …"
#~ msgid "Comment"
#~ msgstr "Opombo"
#~ msgid "Rating"
#~ msgstr "Oceno"
#~ msgid "Bug report"
#~ msgstr "Poročilo o hrošču"
#~ msgid "Upgrade this extension"
#~ msgstr "Posodobi razširitev"
#~ msgid "Configure this extension"
#~ msgstr "Nastavi razširitev"
#~ msgid "Uninstall this extension"
#~ msgstr "Odstrani razširitev"
#~ msgid "Extension Homepage"
#~ msgstr "Spletna stran razširitev"
#~ msgid "Shell version…"
#~ msgstr "različica lupine …"
#~ msgid "Extension version…"
#~ msgstr "Različica razširitve …"
#~ msgid ""
#~ "A reviewer will review the extension you submitted to make sure there's "
#~ "nothing too dangerous. You'll be emailed the result of the review."
#~ msgstr ""
#~ "Pregledovalec bo preveril objavljeno razširitev za morebitno neželeno "
#~ "delovanje. Odziv boste prejeli na elektronski naslov."
#~ msgid "Search for extensions…"
#~ msgstr "Poišči razširitve …"
#~ msgid "Installed Extensions"
#~ msgstr "Nameščene razširitve"
#~ msgid "Shell settings"
#~ msgstr "Nastavitve lupine"
#~ msgid "Content"
#~ msgstr "Vsebina"
#~ msgid "Metadata"
#~ msgstr "Metapodatki"
#~ msgid "Post"
#~ msgstr "Po"
#~ msgid "Preview"
#~ msgstr "Predogled"
#~ msgid "What do you think about this GNOME extension?"
#~ msgstr "Kakšno je vaše mnenje o tej razširitvi GNOME?"
#~ msgid "Please correct the error below"
#~ msgid_plural "Please correct the errors below"
#~ msgstr[0] "Razrešiti je treba spodnje napake"
#~ msgstr[1] "Razrešiti je treba spodnjo napako"
#~ msgstr[2] "Razrešiti je treba spodnji napaki"
#~ msgstr[3] "Razrešiti je treba spodnje napake"
#~ msgid "Preview your comment"
#~ msgstr "Predogled opombe"
#~ msgid "Post Comment"
#~ msgstr "Objavi mnenje"
#~ msgid "Edit your comment"
#~ msgstr "Uredi mnenje"
#~ msgid "Latest extensions in GNOME Shell Extensions"
#~ msgstr "Najnovejše razširitve Lupine GNOME"
#~ msgid "GNOME Shell Extensions"
#~ msgstr "Razširitve Lupine Gnome"
#~ msgid "User Profile"
#~ msgstr "Uporabniški profil"
#~ msgid "User Settings"
#~ msgstr "Uporabniške nastavitve"
#~ msgid "Log out"
#~ msgstr "Odjava"
#~ msgid ""
#~ "To control GNOME Shell extensions using this site you must install GNOME "
#~ "Shell integration that consists of two parts: browser extension and "
#~ "native host messaging application"
#~ msgstr ""
#~ "Za nadzor razširitev Lupine GNOME prek te spletne strani je treba "
#~ "namestiti program, ki vključuje dva dela: razširitev za brskalnik in "
#~ "gostiteljski program za sporočanje."
#~ msgid "Install GNOME Shell integration browser extension"
#~ msgstr "Namesti razširitev Lupine GNOM za spletni brskalnik"
#~ msgid "Click here to install browser extension"
#~ msgstr "Kliknite za namestitev razširitve za brskalnik"
#, javascript-format
#~ msgid ""
#~ "See %swiki page%s for native host connector installation instructions"
#~ msgstr ""
#~ "Oglejte si %sstrani Wiki%s za nastavitev povezovalnega gostiteljskega "
#~ "namiznega programa."
#~ msgid ""
#~ "We cannot detect a running copy of GNOME on this system, so some parts of "
#~ "the interface may be disabled. See <a href=\"/about/#no-detection\">our "
#~ "troubleshooting entry</a> for more information."
#~ msgstr ""
#~ "Ni mogoče zaznati zagnane različice namizja GNOME na tem sistemu, zato so "
#~ "nekateri deli vmesnika morda onemogočeni. Za več podrobnosti si oglejte "
#~ "možnosti <a href=\"/about/#no-detection\">odpravljanja napak</a>."
#~ msgid "GNOME Shell Extensions cannot list your installed extensions."
#~ msgstr "Ni mogoče izpisati nameščenih razširitev Lupine GNOME."
#~ msgid "Compatible with"
#~ msgstr "Skladno z"
#~ msgid "Name"
#~ msgstr "Ime"
#~ msgid "Recent"
#~ msgstr "Nedavno"
#~ msgid "Popularity"
#~ msgstr "Priljubljenost"
#~ msgid "Sort by"
#~ msgstr "Razvrsti po"
#~ msgid "Show more reviews"
#~ msgstr "Pokaži več ocen"
#~ msgid "There are no comments. Be the first!"
#~ msgstr "Ni še vpisane nobene opombe. Bodite prvi!"
#~ msgid "Author"
#~ msgstr "Avtor"
#~ msgid "What's wrong?"
#~ msgstr "Kaj ne narobe?"
#~ msgid ""
#~ "GNOME Shell Extensions did not detect any errors with this extension."
#~ msgstr "Ni zaznanih napak pri tej razširitvi Lupine GNOME."
#~ msgid "Version information"
#~ msgstr "Podrobnosti različice"
#~ msgid "Shell version"
#~ msgstr "Različica lupine"
#~ msgid "Extension version"
#~ msgstr "Različica razširitve"
#~ msgid "Unknown"
#~ msgstr "Neznano"
#~ msgid "What have you tried?"
#~ msgstr "Kaj ste že poskusili?"
#~ msgid "Automatically detected errors"
#~ msgstr "Samodejno zaznaj napake"
#~ msgid "You uninstalled"
#~ msgstr "Odstranili ste"
#~ msgid "Password"
#~ msgstr "Geslo"

230
po/sr.po
View File

@@ -3,25 +3,25 @@
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Милош Поповић <gpopac@gmail.com>, 2012. # Милош Поповић <gpopac@gmail.com>, 2012.
# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2012—2017. # Мирослав Николић <miroslavnikolic@rocketmail.com>, 2012—2017.
# Марко М. Костић <marko.m.kostic@gmail.com>, 2020. # Марко М. Костић <marko.m.kostic@gmail.com>, 2020-2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2021-11-06 14:08+0000\n" "POT-Creation-Date: 2024-10-27 22:37+0000\n"
"PO-Revision-Date: 2022-03-11 07:10+0100\n" "PO-Revision-Date: 2024-11-04 08:14+0100\n"
"Last-Translator: Марко М. Костић <marko.m.kostic@gmail.com>\n" "Last-Translator: Марко М. Костић <marko.m.kostic@gmail.com>\n"
"Language-Team: Serbian <gnome-sr@googlegroups.org>\n" "Language-Team: Serbian <gnome-sr@googlegroups.org>\n"
"Language: sr\n" "Language: sr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" "Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : "
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
"X-Generator: Poedit 3.0.1\n" "X-Generator: Poedit 3.4.4\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -40,19 +40,19 @@ msgstr "Класичан Гном на Вејленду"
msgid "GNOME Classic on Xorg" msgid "GNOME Classic on Xorg"
msgstr "Класичан Гном на Икс серверу" msgstr "Класичан Гном на Икс серверу"
#: extensions/apps-menu/extension.js:112 #: extensions/apps-menu/extension.js:126
msgid "Favorites" msgid "Favorites"
msgstr "Омиљено" msgstr "Омиљено"
#: extensions/apps-menu/extension.js:366 #: extensions/apps-menu/extension.js:400
msgid "Applications" msgid "Apps"
msgstr "Програми" msgstr "Апликације"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
msgstr "Програм и списак радних простора" msgstr "Програм и списак радних простора"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -60,34 +60,34 @@ msgstr ""
"Списак ниски од којих свака садржи иб програма (назив датотеке „.desktop“), " "Списак ниски од којих свака садржи иб програма (назив датотеке „.desktop“), "
"зарез и број радног простора" "зарез и број радног простора"
#: extensions/auto-move-windows/prefs.js:34 #: extensions/auto-move-windows/prefs.js:159
msgid "Workspace Rules" msgid "Workspace Rules"
msgstr "Правила радних простора" msgstr "Правила радних простора"
#: extensions/auto-move-windows/prefs.js:236 #: extensions/auto-move-windows/prefs.js:314
msgid "Add Rule" msgid "Add Rule"
msgstr "Додај правило" msgstr "Додај правило"
#. TRANSLATORS: %s is the filesystem name #. TRANSLATORS: %s is the filesystem name
#: extensions/drive-menu/extension.js:133 #: extensions/drive-menu/extension.js:123
#: extensions/places-menu/placeDisplay.js:233 #: extensions/places-menu/placeDisplay.js:218
#, javascript-format #, javascript-format
msgid "Ejecting drive “%s” failed:" msgid "Ejecting drive “%s” failed:"
msgstr "Нисам успео да избацим уређај „%s“:" msgstr "Нисам успео да избацим уређај „%s“:"
#: extensions/drive-menu/extension.js:149 #: extensions/drive-menu/extension.js:142
msgid "Removable devices" msgid "Removable devices"
msgstr "Уклоњиви уређаји" msgstr "Уклоњиви уређаји"
#: extensions/drive-menu/extension.js:171 #: extensions/drive-menu/extension.js:164
msgid "Open Files" msgid "Open Files"
msgstr "Отвори датотеке" msgstr "Отвори датотеке"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
msgid "Use more screen for windows" msgid "Use more screen for windows"
msgstr "Користи више простора за прозор" msgstr "Користи више простора за прозор"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -97,11 +97,11 @@ msgstr ""
"величине екрана. Ово подешавање важи само уколико је стратегија размештања " "величине екрана. Ово подешавање важи само уколико је стратегија размештања "
"постављена на природно." "постављена на природно."
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
msgstr "Поставља натписе прозора изнад приказа" msgstr "Поставља натписе прозора изнад приказа"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding " "If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
@@ -111,121 +111,193 @@ msgstr ""
"умањених приказа уместо испод приказа. Промена ових подешавања захтева да " "умањених приказа уместо испод приказа. Промена ових подешавања захтева да "
"поново покренете Гномову шкољку." "поново покренете Гномову шкољку."
#: extensions/places-menu/extension.js:88
#: extensions/places-menu/extension.js:91 #: extensions/places-menu/extension.js:91
#: extensions/places-menu/extension.js:94
msgid "Places" msgid "Places"
msgstr "Места" msgstr "Места"
#: extensions/places-menu/placeDisplay.js:46 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "Нисам успео да покренем „%s“" msgstr "Нисам успео да покренем „%s“"
#: extensions/places-menu/placeDisplay.js:61 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
msgid "Failed to mount volume for “%s”" msgid "Failed to mount volume for “%s”"
msgstr "Нисам успео да прикачим волумен за „%s“" msgstr "Нисам успео да прикачим волумен за „%s“"
#: extensions/places-menu/placeDisplay.js:148 #: extensions/places-menu/placeDisplay.js:135
#: extensions/places-menu/placeDisplay.js:171 #: extensions/places-menu/placeDisplay.js:158
msgid "Computer" msgid "Computer"
msgstr "Рачунар" msgstr "Рачунар"
#: extensions/places-menu/placeDisplay.js:359 #: extensions/places-menu/placeDisplay.js:333
msgid "Home" msgid "Home"
msgstr "Личнo" msgstr "Личнo"
#: extensions/places-menu/placeDisplay.js:404 #: extensions/places-menu/placeDisplay.js:378
msgid "Browse Network" msgid "Browse Network"
msgstr "Разгледајте мрежу" msgstr "Разгледајте мрежу"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:14
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "Кружи кроз величине снимака екрана" msgstr "Кружи кроз величине снимака екрана"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "Кружи уназад кроз величине снимака екрана" msgstr "Кружи уназад кроз величине снимака екрана"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/system-monitor/extension.js:135
msgid "CPU stats"
msgstr "Статистика процесора"
#: extensions/system-monitor/extension.js:159
msgid "Memory stats"
msgstr "Статистика меморије"
#: extensions/system-monitor/extension.js:177
msgid "Swap stats"
msgstr "Статистика свап меморије"
#: extensions/system-monitor/extension.js:336
msgid "Upload stats"
msgstr "Статистика слања датотека"
#: extensions/system-monitor/extension.js:350
msgid "Download stats"
msgstr "Статистика преузимања датотека"
#: extensions/system-monitor/extension.js:364
msgid "System stats"
msgstr "Статистика система"
#: extensions/system-monitor/extension.js:412
msgid "Show"
msgstr "Прикажи"
#: extensions/system-monitor/extension.js:414
msgid "CPU"
msgstr "Процесор"
#: extensions/system-monitor/extension.js:416
msgid "Memory"
msgstr "Меморија"
#: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "Свап"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "Слање"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "Преузимање"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor"
msgstr "Отвори монитор система"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage"
msgstr "Прикажи коришћење процесора"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage"
msgstr "Прикажи коришћење меморије"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage"
msgstr "Прикажи коришћење свап меморије"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload"
msgstr "Прикажи слање"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download"
msgstr "Прикажи преузимање"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
msgstr "Назив теме" msgstr "Назив теме"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:12
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Назив теме који се учитава из датотеке „~/.themes/name/gnome-shell“" msgstr "Назив теме који се учитава из датотеке „~/.themes/name/gnome-shell“"
#: extensions/window-list/extension.js:72 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Затвори" msgstr "Затвори"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Поништи умањење" msgstr "Поништи умањење"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Умањи" msgstr "Умањи"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Поништи увећање" msgstr "Поништи увећање"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "Увећај" msgstr "Увећај"
#: extensions/window-list/extension.js:434 #: extensions/window-list/extension.js:485
msgid "Minimize all" msgid "Minimize all"
msgstr "Умањи све" msgstr "Умањи све"
#: extensions/window-list/extension.js:440 #: extensions/window-list/extension.js:491
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Поништи умањење свега" msgstr "Поништи умањење свега"
#: extensions/window-list/extension.js:446 #: extensions/window-list/extension.js:497
msgid "Maximize all" msgid "Maximize all"
msgstr "Увећај све" msgstr "Увећај све"
#: extensions/window-list/extension.js:454 #: extensions/window-list/extension.js:505
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Поништи увећање свега" msgstr "Поништи увећање свега"
#: extensions/window-list/extension.js:462 #: extensions/window-list/extension.js:513
msgid "Close all" msgid "Close all"
msgstr "Затвори све" msgstr "Затвори све"
#: extensions/window-list/extension.js:741 #: extensions/window-list/extension.js:780
msgid "Window List" msgid "Window List"
msgstr "Списак прозора" msgstr "Списак прозора"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:18
msgid "When to group windows" msgid "When to group windows"
msgstr "Када груписати прозоре" msgstr "Када груписати прозоре"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:19
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Одређује када ће бити груписани прозори истог програма у списку прозора. " "Одређује када ће бити груписани прозори истог програма у списку прозора. "
"Дозвољене вредности су „never“ (никад), „auto“ (аутоматски) и " "Дозвољене вредности су „never“ (никад), „auto“ (аутоматски) и „always“ "
"„always“ (увек)." "(увек)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:86 #: extensions/window-list/prefs.js:70
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "Прикажи прозоре свих радних простора" msgstr "Прикажи прозоре свих радних простора"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "Да ли да прикаже прозоре са свих радних прозора или само са тренутног." msgstr "Да ли да прикаже прозоре са свих радних прозора или само са тренутног."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
msgstr "Приказује списак прозора на свим мониторима" msgstr "Приказује списак прозора на свим мониторима"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:34
msgid "" msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
@@ -233,44 +305,62 @@ msgstr ""
"Да ли да прикаже списак прозора на свим прикљученим мониторима или само на " "Да ли да прикаже списак прозора на свим прикљученим мониторима или само на "
"главном." "главном."
#: extensions/window-list/prefs.js:39 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Прикажи прегледе радних простора у списку прозора"
#: extensions/window-list/prefs.js:37
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Груписање прозора" msgstr "Груписање прозора"
#: extensions/window-list/prefs.js:63 #: extensions/window-list/prefs.js:42
msgid "Never group windows" msgid "Never group windows"
msgstr "Никад не групиши прозоре" msgstr "Никад не групиши прозоре"
#: extensions/window-list/prefs.js:64 #: extensions/window-list/prefs.js:43
msgid "Group windows when space is limited" msgid "Group windows when space is limited"
msgstr "Групиши прозоре када је простор ограничен" msgstr "Групиши прозоре када је простор ограничен"
#: extensions/window-list/prefs.js:65 #: extensions/window-list/prefs.js:44
msgid "Always group windows" msgid "Always group windows"
msgstr "Увек групиши прозоре" msgstr "Увек групиши прозоре"
#: extensions/window-list/prefs.js:81 #: extensions/window-list/prefs.js:64
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Прикажи на свим мониторима" msgstr "Прикажи на свим мониторима"
#: extensions/window-list/workspaceIndicator.js:249 #: extensions/window-list/prefs.js:76
#: extensions/workspace-indicator/extension.js:254 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Прикажи прегледе радних простора"
msgstr "Показатељ радних простора"
#: extensions/workspace-indicator/prefs.js:33 #: extensions/workspace-indicator/prefs.js:30
msgid "Workspace Names" msgid "Show Previews In Top Bar"
msgstr "Називи радних простора" msgstr "Прикажи прегледе у горњој траци"
#: extensions/workspace-indicator/prefs.js:66 #: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "%d. радни простор" msgstr "%d. радни простор"
#: extensions/workspace-indicator/prefs.js:207 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names"
msgstr "Називи радних простора"
#: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Додај радни простор" msgstr "Додај радни простор"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Прикажи прегледе радних простора у горњој траци"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Показатељ радних простора"
#~ msgid "Applications"
#~ msgstr "Програми"
#~ msgid "Application" #~ msgid "Application"
#~ msgstr "Програм" #~ msgstr "Програм"
@@ -352,12 +442,6 @@ msgstr "Додај радни простор"
#~ "тако да вам не значи пуно.\n" #~ "тако да вам не значи пуно.\n"
#~ "Ипак, можете изменити поздравну поруку помоћу овог проширења." #~ "Ипак, можете изменити поздравну поруку помоћу овог проширења."
#~ msgid "CPU"
#~ msgstr "Процесор"
#~ msgid "Memory"
#~ msgstr "Меморија"
#~ msgid "GNOME Shell Classic" #~ msgid "GNOME Shell Classic"
#~ msgstr "Класична Гномова шкољка" #~ msgstr "Класична Гномова шкољка"

View File

@@ -11,8 +11,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-22 00:06+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-03-03 16:55+0100\n" "PO-Revision-Date: 2024-05-13 22:17+0200\n"
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n" "Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"Language: sv\n" "Language: sv\n"
@@ -42,7 +42,7 @@ msgstr "GNOME Klassisk på Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Favoriter" msgstr "Favoriter"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Program" msgstr "Program"
@@ -158,43 +158,43 @@ msgstr "Minnesstatistik"
msgid "Swap stats" msgid "Swap stats"
msgstr "Växlingsstatistik" msgstr "Växlingsstatistik"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Sändningsstatistik" msgstr "Sändningsstatistik"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Hämtningsstatistik" msgstr "Hämtningsstatistik"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Systemstatistik" msgstr "Systemstatistik"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Visa" msgstr "Visa"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Processor" msgstr "Processor"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Minne" msgstr "Minne"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Växlingsutrymme" msgstr "Växlingsutrymme"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Sändning" msgstr "Sändning"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Hämtning" msgstr "Hämtning"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Öppna systemövervakare" msgstr "Öppna systemövervakare"
@@ -266,7 +266,7 @@ msgstr "Avmaximera alla"
msgid "Close all" msgid "Close all"
msgstr "Stäng alla" msgstr "Stäng alla"
#: extensions/window-list/extension.js:773 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Fönsterlista" msgstr "Fönsterlista"
@@ -304,6 +304,10 @@ msgstr ""
"Huruvida fönsterlistan ska visas på alla anslutna skärmar eller bara på den " "Huruvida fönsterlistan ska visas på alla anslutna skärmar eller bara på den "
"primära." "primära."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Visa förhandsgranskningar av arbetsytor i fönsterlistan"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Fönstergruppering" msgstr "Fönstergruppering"
@@ -324,23 +328,34 @@ msgstr "Gruppera alltid fönster"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Visa på alla skärmar" msgstr "Visa på alla skärmar"
#: extensions/window-list/workspaceIndicator.js:255 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:261 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Visa förhandsgranskningar av arbetsytor"
msgstr "Arbetsyteindikator"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Visa förhandsgranskningar i systemraden"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Arbetsyta %d" msgstr "Arbetsyta %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Namn på arbetsytor" msgstr "Namn på arbetsytor"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Lägg till arbetsyta" msgstr "Lägg till arbetsyta"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Visa förhandsgranskningar av arbetsytor i systemraden"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Arbetsyteindikator"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Program" #~ msgstr "Program"

149
po/th.po
View File

@@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues\n"
"POT-Creation-Date: 2024-01-19 22:15+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-02 15:49+0700\n" "PO-Revision-Date: 2024-09-10 16:18+0700\n"
"Last-Translator: Kittiphong Meesawat <ktphong@elec.kku.ac.th>\n" "Last-Translator: Kittiphong Meesawat <ktphong@elec.kku.ac.th>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n" "Language-Team: Thai <thai-l10n@googlegroups.com>\n"
"Language: th\n" "Language: th\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Poedit 3.5\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -39,9 +39,9 @@ msgstr "GNOME คลาสสิกบน Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "รายการโปรด" msgstr "รายการโปรด"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Applications" msgid "Apps"
msgstr "แอปพลิเคชัน" msgstr "แอป"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
@@ -49,8 +49,8 @@ msgstr "รายชื่อแอปพลิเคชันและพื้
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), followed by a colon " "A list of strings, each containing an application id (desktop file name), followed by a colon and "
"and the workspace number" "the workspace number"
msgstr "รายการของข้อความที่ประกอบด้วยชื่อแอปพลิเคชัน (ชื่อไฟล์เดสก์ท็อป) ตามด้วยทวิภาค (:) และหมายเลขพื้นที่ทำงาน" msgstr "รายการของข้อความที่ประกอบด้วยชื่อแอปพลิเคชัน (ชื่อไฟล์เดสก์ท็อป) ตามด้วยทวิภาค (:) และหมายเลขพื้นที่ทำงาน"
#: extensions/auto-move-windows/prefs.js:159 #: extensions/auto-move-windows/prefs.js:159
@@ -82,8 +82,8 @@ msgstr "ใช้หน้าจออื่นเพิ่มสำหรับ
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and " "Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and "
"consolidating them further to reduce the bounding box. This setting applies only with the " "consolidating them further to reduce the bounding box. This setting applies only with the natural "
"natural placement strategy." "placement strategy."
msgstr "" msgstr ""
"พยายามใช้หน้าจออื่นเพิ่มสำหรับการจัดวางภาพย่อหน้าต่างโดยปรับให้เข้ากับอัตราส่วนของหน้าจอ " "พยายามใช้หน้าจออื่นเพิ่มสำหรับการจัดวางภาพย่อหน้าต่างโดยปรับให้เข้ากับอัตราส่วนของหน้าจอ "
"และรวบรวมเพื่อลดพื้นที่ของกล่องรอบวัตถุ ค่าตั้งนี้ใช้กับเฉพาะกลยุทธ์การจัดวางแบบธรรมชาติเท่านั้น" "และรวบรวมเพื่อลดพื้นที่ของกล่องรอบวัตถุ ค่าตั้งนี้ใช้กับเฉพาะกลยุทธ์การจัดวางแบบธรรมชาติเท่านั้น"
@@ -94,9 +94,8 @@ msgstr "วางป้ายชื่อหน้าต่างไว้ด้
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding shell default of " "If true, place window captions on top the respective thumbnail, overriding shell default of placing "
"placing it at the bottom. Changing this setting requires restarting the shell to have any " "it at the bottom. Changing this setting requires restarting the shell to have any effect."
"effect."
msgstr "" msgstr ""
"หากเป็นจริง จะวางป้ายชื่อหน้าต่างไว้ด้านบนของภาพย่อ ซึ่งจะทับค่าปริยายของเชลล์ที่จะวางป้ายชื่อไว้ใต้ภาพย่อ " "หากเป็นจริง จะวางป้ายชื่อหน้าต่างไว้ด้านบนของภาพย่อ ซึ่งจะทับค่าปริยายของเชลล์ที่จะวางป้ายชื่อไว้ใต้ภาพย่อ "
"เมื่อเปลี่ยนค่าตั้งนี้จะต้องเริ่มเชลล์ใหม่เพื่อให้การเปลี่ยนแปลงมีผล" "เมื่อเปลี่ยนค่าตั้งนี้จะต้องเริ่มเชลล์ใหม่เพื่อให้การเปลี่ยนแปลงมีผล"
@@ -133,81 +132,79 @@ msgstr "เปลี่ยนขนาดภาพหน้าจอใหม่
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "" msgstr "เปลี่ยนขนาดภาพหน้าจอใหม่เป็นรอบแบบย้อนกลับ"
#: extensions/system-monitor/extension.js:135 #: extensions/system-monitor/extension.js:135
msgid "CPU stats" msgid "CPU stats"
msgstr "" msgstr "สถิติซีพียู"
#: extensions/system-monitor/extension.js:159 #: extensions/system-monitor/extension.js:159
#, fuzzy
#| msgid "Memory"
msgid "Memory stats" msgid "Memory stats"
msgstr "หน่วยความจำ" msgstr "สถิติหน่วยความจำ"
#: extensions/system-monitor/extension.js:177 #: extensions/system-monitor/extension.js:177
msgid "Swap stats" msgid "Swap stats"
msgstr "" msgstr "สถิติพื้นที่สลับ"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "" msgstr "สถิติอัปโหลด"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "" msgstr "สถิติดาวน์โหลด"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "" msgstr "สถิติระบบ"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "" msgstr "แสดง"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "ซีพียู" msgstr "ซีพียู"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "หน่วยความจำ" msgstr "หน่วยความจำ"
#: extensions/system-monitor/extension.js:409
msgid "Swap"
msgstr ""
#: extensions/system-monitor/extension.js:411
msgid "Upload"
msgstr ""
#: extensions/system-monitor/extension.js:413
msgid "Download"
msgstr ""
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "พื้นที่สลับ"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "อัปโหลด"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "ดาวน์โหลด"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "" msgstr "เปิด “เครื่องมือเฝ้าสังเกตระบบ”"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage" msgid "Show CPU usage"
msgstr "" msgstr "แสดงการใช้ซีพียู"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage" msgid "Show memory usage"
msgstr "" msgstr "แสดงการใช้หน่วยความจำ"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage" msgid "Show swap usage"
msgstr "" msgstr "แสดงการใช้พื้นที่สลับ"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload" msgid "Show upload"
msgstr "" msgstr "แสดงการอัปโหลด"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28 #: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download" msgid "Show download"
msgstr "" msgstr "แสดงการดาวน์โหลด"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
@@ -217,47 +214,47 @@ msgstr "ชื่อชุดตกแต่ง"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "ชื่อของชุดตกแต่งที่จะโหลดจาก ~/.themes/name/gnome-shell" msgstr "ชื่อของชุดตกแต่งที่จะโหลดจาก ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "ปิด" msgstr "ปิด"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "เลิกย่อเก็บ" msgstr "เลิกย่อเก็บ"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "ย่อเก็บ" msgstr "ย่อเก็บ"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "เลิกขยายแผ่" msgstr "เลิกขยายแผ่"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "ขยายแผ่" msgstr "ขยายแผ่"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "ย่อเก็บทั้งหมด" msgstr "ย่อเก็บทั้งหมด"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "เลิกย่อเก็บทั้งหมด" msgstr "เลิกย่อเก็บทั้งหมด"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "ขยายแผ่ทั้งหมด" msgstr "ขยายแผ่ทั้งหมด"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "เลิกขยายแผ่ทั้งหมด" msgstr "เลิกขยายแผ่ทั้งหมด"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "ปิดทั้งหมด" msgstr "ปิดทั้งหมด"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "รายชื่อหน้าต่าง" msgstr "รายชื่อหน้าต่าง"
@@ -270,8 +267,8 @@ msgid ""
"Decides when to group windows from the same application on the window list. Possible values are " "Decides when to group windows from the same application on the window list. Possible values are "
"“never”, “auto” and “always”." "“never”, “auto” and “always”."
msgstr "" msgstr ""
"ตัดสินใจว่าเมื่อไรจะจัดกลุ่มหน้าต่างที่มาจากแอปพลิเคชันเดียวกันในรายชื่อหน้าต่าง ค่าที่เป็นไปได้คือ “never” (ไม่ต้อง) " "ตัดสินใจว่าเมื่อไรจะจัดกลุ่มหน้าต่างที่มาจากแอปพลิเคชันเดียวกันในรายชื่อหน้าต่าง ค่าที่เป็นไปได้คือ “never” (ไม่ต้อง) “auto” "
"“auto” (อัตโนมัติ) และ “always” (เสมอ)" "(อัตโนมัติ) และ “always” (เสมอ)"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -290,6 +287,10 @@ msgstr "แสดงรายชื่อหน้าต่างในจอภ
msgid "Whether to show the window list on all connected monitors or only on the primary one." msgid "Whether to show the window list on all connected monitors or only on the primary one."
msgstr "กำหนดว่าจะแสดงรายชื่อหน้าต่างในจอภาพที่ต่อทั้งหมดหรือเฉพาะในจอภาพหลัก" msgstr "กำหนดว่าจะแสดงรายชื่อหน้าต่างในจอภาพที่ต่อทั้งหมดหรือเฉพาะในจอภาพหลัก"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "แสดงภาพตัวอย่างของพื้นที่ทำงานในหน้ารายชื่อหน้าต่าง"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "การจัดกลุ่มหน้าต่าง" msgstr "การจัดกลุ่มหน้าต่าง"
@@ -310,24 +311,38 @@ msgstr "จัดกลุ่มหน้าต่างเสมอ"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "แสดงในจอภาพทั้งหมด" msgstr "แสดงในจอภาพทั้งหมด"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "แสดงภาพตัวอย่างของพื้นที่ทำงาน"
msgstr "แสดงพื้นที่ทำงาน"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "แสดงภาพตัวอย่างในแถบด้านบน"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "พื้นที่ทำงาน %d" msgstr "พื้นที่ทำงาน %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "ชื่อพื้นที่ทำงาน" msgstr "ชื่อพื้นที่ทำงาน"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "เพิ่มพื้นที่ทำงาน" msgstr "เพิ่มพื้นที่ทำงาน"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "แสดงภาพตัวอย่างของพื้นที่ทำงานในแถบด้านบน"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "แสดงพื้นที่ทำงาน"
#~ msgid "Applications"
#~ msgstr "แอปพลิเคชัน"
#~ msgid "GNOME Shell Classic" #~ msgid "GNOME Shell Classic"
#~ msgstr "เชลล์ GNOME แบบคลาสสิก" #~ msgstr "เชลล์ GNOME แบบคลาสสิก"

View File

@@ -6,17 +6,17 @@
# Gökhan Gurbetoğlu <ggurbet@gmail.com>, 2014. # Gökhan Gurbetoğlu <ggurbet@gmail.com>, 2014.
# Muhammet Kara <muhammetk@gmail.com>, 2013-2015. # Muhammet Kara <muhammetk@gmail.com>, 2013-2015.
# Furkan Tokaç <developmentft@gmail.com>, 2017. # Furkan Tokaç <developmentft@gmail.com>, 2017.
# Sabri Ünal <libreajans@gmail.com>, 2014, 2019, 2022-2024. # Sabri Ünal <yakushabb@gmail.com>, 2014, 2019, 2022-2024.
# Emin Tufan Çetin <etcetin@gmail.com>, 2017, 2019, 2020, 2022. # Emin Tufan Çetin <etcetin@gmail.com>, 2017, 2019, 2020, 2022, 2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-13 13:35+0000\n" "POT-Creation-Date: 2024-08-12 20:31+0000\n"
"PO-Revision-Date: 2024-02-12 18:45+0300\n" "PO-Revision-Date: 2024-05-06 05:17+0300\n"
"Last-Translator: Sabri Ünal <libreajans@gmail.com>\n" "Last-Translator: Sabri Ünal <yakushabb@gmail.com>\n"
"Language-Team: Turkish <takim@gnome.org.tr>\n" "Language-Team: Turkish <takim@gnome.org.tr>\n"
"Language: tr\n" "Language: tr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -46,7 +46,7 @@ msgstr "Xorg üstünde GNOME Klasik"
msgid "Favorites" msgid "Favorites"
msgstr "Gözdeler" msgstr "Gözdeler"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Uygulamalar" msgstr "Uygulamalar"
@@ -163,43 +163,43 @@ msgstr "Bellek istatistikleri"
msgid "Swap stats" msgid "Swap stats"
msgstr "Takas istatistikleri" msgstr "Takas istatistikleri"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Yükleme istatistikleri" msgstr "Yükleme istatistikleri"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "İndirme istatistikleri" msgstr "İndirme istatistikleri"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "Sistem istatistikleri" msgstr "Sistem istatistikleri"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Göster" msgstr "Göster"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "İşlemci" msgstr "İşlemci"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Bellek" msgstr "Bellek"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Takas" msgstr "Takas"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Yükle" msgstr "Yükle"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "İndir" msgstr "İndir"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Sistem Gözlemcisini Aç" msgstr "Sistem Gözlemcisini Aç"
@@ -231,47 +231,47 @@ msgstr "Tema adı"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "~/.themes/name/gnome-shell konumundan edinilen tema adı" msgstr "~/.themes/name/gnome-shell konumundan edinilen tema adı"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "Kapat" msgstr "Kapat"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "Önceki duruma getir" msgstr "Önceki duruma getir"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "Simge durumuna küçült" msgstr "Simge durumuna küçült"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Önceki duruma getir" msgstr "Önceki duruma getir"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "En büyük duruma getir" msgstr "En büyük duruma getir"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:489
msgid "Minimize all" msgid "Minimize all"
msgstr "Tümünü simge durumuna küçült" msgstr "Tümünü simge durumuna küçült"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:495
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Tümünü önceki duruma getir" msgstr "Tümünü önceki duruma getir"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:501
msgid "Maximize all" msgid "Maximize all"
msgstr "Tümünü en büyük duruma getir" msgstr "Tümünü en büyük duruma getir"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:509
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Tümünü önceki duruma getir" msgstr "Tümünü önceki duruma getir"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:517
msgid "Close all" msgid "Close all"
msgstr "Tümünü kapat" msgstr "Tümünü kapat"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:789
msgid "Window List" msgid "Window List"
msgstr "Pencere Listesi" msgstr "Pencere Listesi"
@@ -285,8 +285,8 @@ msgid ""
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"Pencere listesinde aynı uygulamaların ne zaman kümeleneceğine karar verir. " "Pencere listesinde aynı uygulamaların ne zaman kümeleneceğine karar verir. "
"Olası değerler: “never” (hiçbir zaman), “auto” (kendiliğinden) ve " "Olası değerler: “never” (hiçbir zaman), “auto” (kendiliğinden) ve “always” "
"“always” (her zaman)." "(her zaman)."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:79
@@ -311,6 +311,10 @@ msgstr ""
"Pencere listesinin tüm bağlı monitörlerde mi yoksa yalnızca birincil " "Pencere listesinin tüm bağlı monitörlerde mi yoksa yalnızca birincil "
"monitörde mi gösterileceğini belirtir." "monitörde mi gösterileceğini belirtir."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Pencere listesinde çalışma alanı ön izlemelerini göster"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Pencere Kümeleme" msgstr "Pencere Kümeleme"
@@ -331,20 +335,31 @@ msgstr "Pencereleri her zaman kümele"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Tüm monitörlerde göster" msgstr "Tüm monitörlerde göster"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Çalışma alanı ön izlemelerini göster"
msgstr "Çalışma Alanı Belirteci"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Ön İzlemeleri Üst Çubukta Göster"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Çalışma Alanı %d" msgstr "Çalışma Alanı %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Çalışma Alanı Adları" msgstr "Çalışma Alanı Adları"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Çalışma Alanı Ekle" msgstr "Çalışma Alanı Ekle"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Çalışma alanı ön izlemelerini üst çubukta göster"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Çalışma Alanı Belirteci"

View File

@@ -10,17 +10,17 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/i" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/i"
"ssues\n" "ssues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-13 19:43+0200\n" "PO-Revision-Date: 2024-08-23 12:33+0300\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n" "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian <kde-i18n-uk@kde.org>\n" "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
"Language: uk\n" "Language: uk\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 23.04.1\n" "X-Generator: Lokalize 23.04.3\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
@@ -44,7 +44,7 @@ msgstr "Класичний GNOME на Xorg"
msgid "Favorites" msgid "Favorites"
msgstr "Улюблене" msgstr "Улюблене"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "Програми" msgstr "Програми"
@@ -153,7 +153,6 @@ msgid "CPU stats"
msgstr "Статистика ЦП" msgstr "Статистика ЦП"
#: extensions/system-monitor/extension.js:159 #: extensions/system-monitor/extension.js:159
#| msgid "Memory"
msgid "Memory stats" msgid "Memory stats"
msgstr "Статистика пам'яті" msgstr "Статистика пам'яті"
@@ -161,44 +160,43 @@ msgstr "Статистика пам'яті"
msgid "Swap stats" msgid "Swap stats"
msgstr "Статистика свопінгу" msgstr "Статистика свопінгу"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "Статистика вивантаження" msgstr "Статистика вивантаження"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "Статистика отримання" msgstr "Статистика отримання"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
#| msgid "System Settings"
msgid "System stats" msgid "System stats"
msgstr "Статистика системи" msgstr "Статистика системи"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "Показати" msgstr "Показати"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "Процесор" msgstr "Процесор"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "Пам'ять" msgstr "Пам'ять"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "Резервна пам'ять" msgstr "Резервна пам'ять"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "Вивантаження" msgstr "Вивантаження"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "Отримання" msgstr "Отримання"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "Відкрити «Нагляд за системою»" msgstr "Відкрити «Нагляд за системою»"
@@ -230,47 +228,47 @@ msgstr "Назва теми"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Назва теми, що завантажується з ~/.themes/name/gnome-shell" msgstr "Назва теми, що завантажується з ~/.themes/name/gnome-shell"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "Закрити" msgstr "Закрити"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "Відновити згорнуте" msgstr "Відновити згорнуте"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "Згорнути" msgstr "Згорнути"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "Відновити розгорнуте" msgstr "Відновити розгорнуте"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "Розгорнути" msgstr "Розгорнути"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "Згорнути все" msgstr "Згорнути все"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "Відновити все згорнуте" msgstr "Відновити все згорнуте"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "Розгорнути все" msgstr "Розгорнути все"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "Відновити все розгорнуте" msgstr "Відновити все розгорнуте"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "Закрити все" msgstr "Закрити все"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "Перелік вікон" msgstr "Перелік вікон"
@@ -307,6 +305,10 @@ msgstr ""
"Чи показувати переліку вікон на всіх під'єднаних моніторах, чи тільки на " "Чи показувати переліку вікон на всіх під'єднаних моніторах, чи тільки на "
"основному." "основному."
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "Показувати мініатюри робочого простору у списку вікон"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "Групування вікон" msgstr "Групування вікон"
@@ -327,24 +329,35 @@ msgstr "Завжди групувати вікна"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "Показувати на всіх моніторах" msgstr "Показувати на всіх моніторах"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "Показувати мініатюри робочого простору"
msgstr "Покажчик робочого простору"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "Показувати мініатюри на верхній панелі"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Робочий простір %d" msgstr "Робочий простір %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "Назви робочих просторів" msgstr "Назви робочих просторів"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "Додати робочий простір" msgstr "Додати робочий простір"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "Показувати мініатюри робочого простору на верхній панелі"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "Покажчик робочого простору"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "Програми" #~ msgstr "Програми"

View File

@@ -7,23 +7,23 @@
# 甘露(Gan Lu) <rhythm.gan@gmail.com>, 2013. # 甘露(Gan Lu) <rhythm.gan@gmail.com>, 2013.
# Mingcong Bai <jeffbai@aosc.xyz>, 2017. # Mingcong Bai <jeffbai@aosc.xyz>, 2017.
# Dingzhong Chen <wsxy162@gmail.com>, 2019. # Dingzhong Chen <wsxy162@gmail.com>, 2019.
# lumingzh <lumingzh@qq.com>, 2022. # lumingzh <lumingzh@qq.com>, 2022-2024.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2024-02-06 18:43+0000\n" "POT-Creation-Date: 2024-04-29 15:27+0000\n"
"PO-Revision-Date: 2024-02-20 16:06+0800\n" "PO-Revision-Date: 2024-08-24 13:31+0800\n"
"Last-Translator: lumingzh <lumingzh@qq.com>\n" "Last-Translator: lumingzh <lumingzh@qq.com>\n"
"Language-Team: Chinese - China <i18n-zh@googlegroups.com>\n" "Language-Team: Chinese (China) <i18n-zh@googlegroups.com>\n"
"Language: zh_CN\n" "Language: zh_CN\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.4.2\n" "X-Generator: Gtranslator 46.1\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -46,7 +46,7 @@ msgstr "GNOME Xorg 经典模式"
msgid "Favorites" msgid "Favorites"
msgstr "收藏" msgstr "收藏"
#: extensions/apps-menu/extension.js:397 #: extensions/apps-menu/extension.js:400
msgid "Apps" msgid "Apps"
msgstr "应用" msgstr "应用"
@@ -158,43 +158,43 @@ msgstr "内存统计"
msgid "Swap stats" msgid "Swap stats"
msgstr "交换空间统计" msgstr "交换空间统计"
#: extensions/system-monitor/extension.js:327 #: extensions/system-monitor/extension.js:336
msgid "Upload stats" msgid "Upload stats"
msgstr "上传统计" msgstr "上传统计"
#: extensions/system-monitor/extension.js:341 #: extensions/system-monitor/extension.js:350
msgid "Download stats" msgid "Download stats"
msgstr "下载统计" msgstr "下载统计"
#: extensions/system-monitor/extension.js:355 #: extensions/system-monitor/extension.js:364
msgid "System stats" msgid "System stats"
msgstr "系统统计" msgstr "系统统计"
#: extensions/system-monitor/extension.js:403 #: extensions/system-monitor/extension.js:412
msgid "Show" msgid "Show"
msgstr "显示" msgstr "显示"
#: extensions/system-monitor/extension.js:405 #: extensions/system-monitor/extension.js:414
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: extensions/system-monitor/extension.js:407 #: extensions/system-monitor/extension.js:416
msgid "Memory" msgid "Memory"
msgstr "内存" msgstr "内存"
#: extensions/system-monitor/extension.js:409 #: extensions/system-monitor/extension.js:418
msgid "Swap" msgid "Swap"
msgstr "交换空间" msgstr "交换空间"
#: extensions/system-monitor/extension.js:411 #: extensions/system-monitor/extension.js:420
msgid "Upload" msgid "Upload"
msgstr "上传" msgstr "上传"
#: extensions/system-monitor/extension.js:413 #: extensions/system-monitor/extension.js:422
msgid "Download" msgid "Download"
msgstr "下载" msgstr "下载"
#: extensions/system-monitor/extension.js:418 #: extensions/system-monitor/extension.js:427
msgid "Open System Monitor" msgid "Open System Monitor"
msgstr "打开系统监视器" msgstr "打开系统监视器"
@@ -226,47 +226,47 @@ msgstr "主题名称"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "从 ~/.themes/name/gnome-shell 加载的主题名称" msgstr "从 ~/.themes/name/gnome-shell 加载的主题名称"
#: extensions/window-list/extension.js:71 #: extensions/window-list/extension.js:72
msgid "Close" msgid "Close"
msgstr "关闭" msgstr "关闭"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Unminimize" msgid "Unminimize"
msgstr "取消最小化" msgstr "取消最小化"
#: extensions/window-list/extension.js:98 #: extensions/window-list/extension.js:99
msgid "Minimize" msgid "Minimize"
msgstr "最小化" msgstr "最小化"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Unmaximize" msgid "Unmaximize"
msgstr "取消最大化" msgstr "取消最大化"
#: extensions/window-list/extension.js:105 #: extensions/window-list/extension.js:106
msgid "Maximize" msgid "Maximize"
msgstr "最大化" msgstr "最大化"
#: extensions/window-list/extension.js:470 #: extensions/window-list/extension.js:471
msgid "Minimize all" msgid "Minimize all"
msgstr "全部最小化" msgstr "全部最小化"
#: extensions/window-list/extension.js:476 #: extensions/window-list/extension.js:477
msgid "Unminimize all" msgid "Unminimize all"
msgstr "全部取消最小化" msgstr "全部取消最小化"
#: extensions/window-list/extension.js:482 #: extensions/window-list/extension.js:483
msgid "Maximize all" msgid "Maximize all"
msgstr "全部最大化" msgstr "全部最大化"
#: extensions/window-list/extension.js:490 #: extensions/window-list/extension.js:491
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "全部取消最大化" msgstr "全部取消最大化"
#: extensions/window-list/extension.js:498 #: extensions/window-list/extension.js:499
msgid "Close all" msgid "Close all"
msgstr "全部关闭" msgstr "全部关闭"
#: extensions/window-list/extension.js:772 #: extensions/window-list/extension.js:778
msgid "Window List" msgid "Window List"
msgstr "窗口列表" msgstr "窗口列表"
@@ -301,6 +301,10 @@ msgid ""
"primary one." "primary one."
msgstr "是否在所有连接的显示器上显示窗口列表或仅在主显示器上显示。" msgstr "是否在所有连接的显示器上显示窗口列表或仅在主显示器上显示。"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "在窗口列表中显示工作区预览"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/prefs.js:35
msgid "Window Grouping" msgid "Window Grouping"
msgstr "窗口分组" msgstr "窗口分组"
@@ -321,24 +325,35 @@ msgstr "总是对窗口分组"
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "在所有显示器上显示" msgstr "在所有显示器上显示"
#: extensions/window-list/workspaceIndicator.js:253 #: extensions/window-list/prefs.js:92
#: extensions/workspace-indicator/extension.js:259 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "显示工作区预览"
msgstr "工作区指示器"
#: extensions/workspace-indicator/prefs.js:69 #: extensions/workspace-indicator/prefs.js:30
msgid "Show Previews In Top Bar"
msgstr "在顶栏显示预览"
#: extensions/workspace-indicator/prefs.js:88
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "工作区 %d" msgstr "工作区 %d"
#: extensions/workspace-indicator/prefs.js:136 #: extensions/workspace-indicator/prefs.js:155
msgid "Workspace Names" msgid "Workspace Names"
msgstr "工作区名称" msgstr "工作区名称"
#: extensions/workspace-indicator/prefs.js:262 #: extensions/workspace-indicator/prefs.js:281
msgid "Add Workspace" msgid "Add Workspace"
msgstr "添加工作区" msgstr "添加工作区"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "在顶栏显示工作区预览"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "工作区指示器"
#~ msgid "Applications" #~ msgid "Applications"
#~ msgstr "应用程序" #~ msgstr "应用程序"

View File

@@ -9,16 +9,17 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions gnome-3-0\n" "Project-Id-Version: gnome-shell-extensions gnome-3-0\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
"issues\n" "issues\n"
"POT-Creation-Date: 2022-05-06 11:44+0000\n" "POT-Creation-Date: 2024-11-25 15:07+0000\n"
"PO-Revision-Date: 2022-05-12 00:01+0800\n" "PO-Revision-Date: 2025-01-12 23:57+0800\n"
"Last-Translator: Cheng-Chia Tseng <pswo10680@gmail.com>\n" "Last-Translator: Yi-Jyun Pan <pan93412@gmail.com>\n"
"Language-Team: Chinese <zh-l10n@linux.org.tw>\n" "Language-Team: Chinese (Traditional) <http://darkbear.mercusysddns.com/"
"projects/gnome-45/gnome-shell-extensions-po-ui-gnome-46-zh_tw/zh_Hant/>\n"
"Language: zh_TW\n" "Language: zh_TW\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.0.1\n" "X-Generator: Poedit 3.5\n"
#: data/gnome-classic.desktop.in:3 #: data/gnome-classic.desktop.in:3
msgid "GNOME Classic" msgid "GNOME Classic"
@@ -37,19 +38,19 @@ msgstr "GNOME Classic 採行 Wayland"
msgid "GNOME Classic on Xorg" msgid "GNOME Classic on Xorg"
msgstr "GNOME Classic 採行 Xorg" msgstr "GNOME Classic 採行 Xorg"
#: extensions/apps-menu/extension.js:118 #: extensions/apps-menu/extension.js:125
msgid "Favorites" msgid "Favorites"
msgstr "喜愛" msgstr "喜愛"
#: extensions/apps-menu/extension.js:379 #: extensions/apps-menu/extension.js:399
msgid "Applications" msgid "Apps"
msgstr "應用程式" msgstr "程式"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:12
msgid "Application and workspace list" msgid "Application and workspace list"
msgstr "應用程式與工作區列表" msgstr "應用程式與工作區列表"
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7 #: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:13
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -57,34 +58,34 @@ msgstr ""
"字串的列表,每個都包含一個應用程式 id (桌面檔名稱),後面接著半形分號 \";\" 與" "字串的列表,每個都包含一個應用程式 id (桌面檔名稱),後面接著半形分號 \";\" 與"
"工作區號碼" "工作區號碼"
#: extensions/auto-move-windows/prefs.js:152 #: extensions/auto-move-windows/prefs.js:156
msgid "Workspace Rules" msgid "Workspace Rules"
msgstr "工作區規則" msgstr "工作區規則"
#: extensions/auto-move-windows/prefs.js:306 #: extensions/auto-move-windows/prefs.js:311
msgid "Add Rule" msgid "Add Rule"
msgstr "加入規則" msgstr "加入規則"
#. TRANSLATORS: %s is the filesystem name #. TRANSLATORS: %s is the filesystem name
#: extensions/drive-menu/extension.js:126 #: extensions/drive-menu/extension.js:123
#: extensions/places-menu/placeDisplay.js:210 #: extensions/places-menu/placeDisplay.js:218
#, javascript-format #, javascript-format
msgid "Ejecting drive “%s” failed:" msgid "Ejecting drive “%s” failed:"
msgstr "裝置「%s」退出失敗" msgstr "裝置「%s」退出失敗"
#: extensions/drive-menu/extension.js:145 #: extensions/drive-menu/extension.js:142
msgid "Removable devices" msgid "Removable devices"
msgstr "可移除式裝置" msgstr "可移除式裝置"
#: extensions/drive-menu/extension.js:167 #: extensions/drive-menu/extension.js:164
msgid "Open Files" msgid "Open Files"
msgstr "開啟檔案" msgstr "開啟檔案"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
msgid "Use more screen for windows" msgid "Use more screen for windows"
msgstr "視窗使用更多螢幕空間" msgstr "視窗使用更多螢幕空間"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -93,11 +94,11 @@ msgstr ""
"藉由適應螢幕長寬比來試著使用更多螢幕空間放置視窗縮圖,進一步聯合它們來減少邊" "藉由適應螢幕長寬比來試著使用更多螢幕空間放置視窗縮圖,進一步聯合它們來減少邊"
"界盒。這個設定僅適用於自然放置策略。" "界盒。這個設定僅適用於自然放置策略。"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:17
msgid "Place window captions on top" msgid "Place window captions on top"
msgstr "在頂端放置視窗說明標題" msgstr "在頂端放置視窗說明標題"
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:18
msgid "" msgid ""
"If true, place window captions on top the respective thumbnail, overriding " "If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
@@ -106,162 +107,252 @@ msgstr ""
"如果為真,在對映的縮圖頂端放置視窗說明標題,凌駕 Shell 將它放置在底部的預設" "如果為真,在對映的縮圖頂端放置視窗說明標題,凌駕 Shell 將它放置在底部的預設"
"值。變更這個設定值需要重新啟動 Shell 來套用效果。" "值。變更這個設定值需要重新啟動 Shell 來套用效果。"
#: extensions/places-menu/extension.js:94 #: extensions/places-menu/extension.js:75
#: extensions/places-menu/extension.js:97 #: extensions/places-menu/extension.js:78
msgid "Places" msgid "Places"
msgstr "位置" msgstr "位置"
#: extensions/places-menu/placeDisplay.js:49 #: extensions/places-menu/placeDisplay.js:60
#, javascript-format #, javascript-format
msgid "Failed to launch “%s”" msgid "Failed to launch “%s”"
msgstr "無法啟動「%s」" msgstr "無法啟動「%s」"
#: extensions/places-menu/placeDisplay.js:64 #: extensions/places-menu/placeDisplay.js:75
#, javascript-format #, javascript-format
msgid "Failed to mount volume for “%s”" msgid "Failed to mount volume for “%s”"
msgstr "無法掛載儲存區「%s」" msgstr "無法掛載儲存區「%s」"
#: extensions/places-menu/placeDisplay.js:125 #: extensions/places-menu/placeDisplay.js:135
#: extensions/places-menu/placeDisplay.js:148 #: extensions/places-menu/placeDisplay.js:158
msgid "Computer" msgid "Computer"
msgstr "電腦" msgstr "電腦"
#: extensions/places-menu/placeDisplay.js:336 #: extensions/places-menu/placeDisplay.js:333
msgid "Home" msgid "Home"
msgstr "家目錄" msgstr "家目錄"
#: extensions/places-menu/placeDisplay.js:381 #: extensions/places-menu/placeDisplay.js:378
msgid "Browse Network" msgid "Browse Network"
msgstr "瀏覽網路" msgstr "瀏覽網路"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:14
msgid "Cycle Screenshot Sizes" msgid "Cycle Screenshot Sizes"
msgstr "循環螢幕擷圖大小" msgstr "循環螢幕擷圖大小"
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11 #: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:18
msgid "Cycle Screenshot Sizes Backward" msgid "Cycle Screenshot Sizes Backward"
msgstr "往回循環螢幕擷圖大小" msgstr "往回循環螢幕擷圖大小"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5 #: extensions/system-monitor/extension.js:135
msgid "CPU stats"
msgstr "CPU 狀態"
#: extensions/system-monitor/extension.js:159
msgid "Memory stats"
msgstr "記憶體狀態"
#: extensions/system-monitor/extension.js:177
msgid "Swap stats"
msgstr "置換區狀態"
#: extensions/system-monitor/extension.js:336
msgid "Upload stats"
msgstr "上傳狀態"
#: extensions/system-monitor/extension.js:350
msgid "Download stats"
msgstr "下載狀態"
#: extensions/system-monitor/extension.js:364
msgid "System stats"
msgstr "系統狀態"
#: extensions/system-monitor/extension.js:412
msgid "Show"
msgstr "顯示"
#: extensions/system-monitor/extension.js:414
msgid "CPU"
msgstr "CPU"
#: extensions/system-monitor/extension.js:416
msgid "Memory"
msgstr "記憶體"
#: extensions/system-monitor/extension.js:418
msgid "Swap"
msgstr "置換區"
#: extensions/system-monitor/extension.js:420
msgid "Upload"
msgstr "上傳"
#: extensions/system-monitor/extension.js:422
msgid "Download"
msgstr "下載"
#: extensions/system-monitor/extension.js:427
msgid "Open System Monitor"
msgstr "開啟系統監視器"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:12
msgid "Show CPU usage"
msgstr "顯示 CPU 使用率"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:16
msgid "Show memory usage"
msgstr "顯示記憶體使用率"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:20
msgid "Show swap usage"
msgstr "顯示置換區使用率"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:24
msgid "Show upload"
msgstr "顯示上傳"
#: extensions/system-monitor/schemas/org.gnome.shell.extensions.system-monitor.gschema.xml:28
msgid "Show download"
msgstr "顯示下載"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:11
msgid "Theme name" msgid "Theme name"
msgstr "主題名稱" msgstr "主題名稱"
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6 #: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:12
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "主題的名稱,要從 ~/.themes/name/gnome-shell 載入" msgstr "主題的名稱,要從 ~/.themes/name/gnome-shell 載入"
#: extensions/window-list/extension.js:72 #: extensions/window-list/extension.js:70
msgid "Close" msgid "Close"
msgstr "關閉" msgstr "關閉"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Unminimize" msgid "Unminimize"
msgstr "取消最小化" msgstr "取消最小化"
#: extensions/window-list/extension.js:92 #: extensions/window-list/extension.js:97
msgid "Minimize" msgid "Minimize"
msgstr "最小化" msgstr "最小化"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Unmaximize" msgid "Unmaximize"
msgstr "取消最大化" msgstr "取消最大化"
#: extensions/window-list/extension.js:99 #: extensions/window-list/extension.js:104
msgid "Maximize" msgid "Maximize"
msgstr "最大化" msgstr "最大化"
#: extensions/window-list/extension.js:441 #: extensions/window-list/extension.js:485
msgid "Minimize all" msgid "Minimize all"
msgstr "全部最小化" msgstr "全部最小化"
#: extensions/window-list/extension.js:447 #: extensions/window-list/extension.js:491
msgid "Unminimize all" msgid "Unminimize all"
msgstr "全部取消最小化" msgstr "全部取消最小化"
#: extensions/window-list/extension.js:453 #: extensions/window-list/extension.js:497
msgid "Maximize all" msgid "Maximize all"
msgstr "全部最大化" msgstr "全部最大化"
#: extensions/window-list/extension.js:461 #: extensions/window-list/extension.js:505
msgid "Unmaximize all" msgid "Unmaximize all"
msgstr "全部取消最大化" msgstr "全部取消最大化"
#: extensions/window-list/extension.js:469 #: extensions/window-list/extension.js:513
msgid "Close all" msgid "Close all"
msgstr "全部關閉" msgstr "全部關閉"
#: extensions/window-list/extension.js:753 #: extensions/window-list/extension.js:780
msgid "Window List" msgid "Window List"
msgstr "視窗列表" msgstr "視窗列表"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:18
msgid "When to group windows" msgid "When to group windows"
msgstr "何時群組視窗" msgstr "何時群組視窗"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:19
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are “never”, “auto” and “always”." "Possible values are “never”, “auto” and “always”."
msgstr "" msgstr ""
"決定在視窗列表中何時群組視窗。可能的數值有「never」、「auto」、「always」。" "決定在視窗列表中何時群組視窗。可能的數值有「never」、「auto」、「always」。"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:26
#: extensions/window-list/prefs.js:79 #: extensions/window-list/prefs.js:69
msgid "Show windows from all workspaces" msgid "Show windows from all workspaces"
msgstr "顯示所有工作區的視窗" msgstr "顯示所有工作區的視窗"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27
msgid "Whether to show windows from all workspaces or only the current one." msgid "Whether to show windows from all workspaces or only the current one."
msgstr "是否顯示所有工作區,還是僅顯示目前工作區的視窗。" msgstr "是否顯示所有工作區,還是僅顯示目前工作區的視窗。"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:27 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:33
msgid "Show the window list on all monitors" msgid "Show the window list on all monitors"
msgstr "在所有螢幕顯示視窗列表" msgstr "在所有螢幕顯示視窗列表"
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:28 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:34
msgid "" msgid ""
"Whether to show the window list on all connected monitors or only on the " "Whether to show the window list on all connected monitors or only on the "
"primary one." "primary one."
msgstr "是否在所有連接的螢幕顯示視窗列表或是只出現在主要螢幕上。" msgstr "是否在所有連接的螢幕顯示視窗列表或是只出現在主要螢幕上。"
#: extensions/window-list/prefs.js:35 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:41
msgid "Show workspace previews in window list"
msgstr "在視窗清單顯示工作區預覽"
#: extensions/window-list/prefs.js:36
msgid "Window Grouping" msgid "Window Grouping"
msgstr "視窗群組" msgstr "視窗群組"
#: extensions/window-list/prefs.js:40 #: extensions/window-list/prefs.js:41
msgid "Never group windows" msgid "Never group windows"
msgstr "永不群組視窗" msgstr "永不群組視窗"
#: extensions/window-list/prefs.js:41 #: extensions/window-list/prefs.js:42
msgid "Group windows when space is limited" msgid "Group windows when space is limited"
msgstr "當空間受限時群組視窗" msgstr "當空間受限時群組視窗"
#: extensions/window-list/prefs.js:42 #: extensions/window-list/prefs.js:43
msgid "Always group windows" msgid "Always group windows"
msgstr "永遠群組視窗" msgstr "永遠群組視窗"
#: extensions/window-list/prefs.js:66 #: extensions/window-list/prefs.js:63
msgid "Show on all monitors" msgid "Show on all monitors"
msgstr "顯示於所有螢幕" msgstr "顯示於所有螢幕"
#: extensions/window-list/workspaceIndicator.js:261 #: extensions/window-list/prefs.js:75
#: extensions/workspace-indicator/extension.js:266 msgid "Show workspace previews"
msgid "Workspace Indicator" msgstr "顯示工作區預覽"
msgstr "工作區指示器"
#: extensions/workspace-indicator/prefs.js:62 #: extensions/workspace-indicator/prefs.js:29
msgid "Show Previews In Top Bar"
msgstr "在頂端列顯示預覽"
#: extensions/workspace-indicator/prefs.js:87
#, javascript-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "工作區 %d" msgstr "工作區 %d"
#: extensions/workspace-indicator/prefs.js:129 #: extensions/workspace-indicator/prefs.js:154
msgid "Workspace Names" msgid "Workspace Names"
msgstr "工作區名稱" msgstr "工作區名稱"
#: extensions/workspace-indicator/prefs.js:255 #: extensions/workspace-indicator/prefs.js:280
msgid "Add Workspace" msgid "Add Workspace"
msgstr "新增工作區" msgstr "新增工作區"
#: extensions/workspace-indicator/schemas/org.gnome.shell.extensions.workspace-indicator.gschema.xml:12
msgid "Show workspace previews in top bar"
msgstr "在頂端列顯示工作區預覽"
#: extensions/workspace-indicator/workspaceIndicator.js:430
msgid "Workspace Indicator"
msgstr "工作區指示器"
#~ msgid "Applications"
#~ msgstr "應用程式"
#~ msgid "Application" #~ msgid "Application"
#~ msgstr "應用程式" #~ msgstr "應用程式"
@@ -342,12 +433,6 @@ msgstr "新增工作區"
#~ "功能。\n" #~ "功能。\n"
#~ "不過,它可以讓您自訂歡迎訊息。" #~ "不過,它可以讓您自訂歡迎訊息。"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "Memory"
#~ msgstr "記憶體"
#~ msgid "GNOME Shell Classic" #~ msgid "GNOME Shell Classic"
#~ msgstr "GNOME Shell Classic" #~ msgstr "GNOME Shell Classic"
@@ -398,8 +483,8 @@ msgstr "新增工作區"
#~ msgid "" #~ msgid ""
#~ "Configures how the windows are shown in the switcher. Valid possibilities " #~ "Configures how the windows are shown in the switcher. Valid possibilities "
#~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-" #~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-only' "
#~ "only' (shows only the application icon) or 'both'." #~ "(shows only the application icon) or 'both'."
#~ msgstr "" #~ msgstr ""
#~ "設定視窗在切換器中顯示的方式。有效的選項為「thumbnail-only」(顯示視窗的縮" #~ "設定視窗在切換器中顯示的方式。有效的選項為「thumbnail-only」(顯示視窗的縮"
#~ "圖)、「app-icon-only」(僅顯示應用程式圖示)或「both」(兩者)" #~ "圖)、「app-icon-only」(僅顯示應用程式圖示)或「both」(兩者)"