Adding upstream version 20250212.
Signed-off-by: Daniel Baumann <daniel@debian.org>
|
@ -1,3 +1,17 @@
|
|||
2025-02-12 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
|
||||
* Releasing version 20250212.
|
||||
|
||||
[ Daniel Baumann ]
|
||||
* Correcting formatting typo in manpage.
|
||||
* Adding gnome-shell version 48 in 47/disable-workspace-switcher metadata.json.
|
||||
* Adding gnome-shell version 48 in 47/hibernate-status metadata.json.
|
||||
* Updating 47/middleclickclose to version 32 [348d7af].
|
||||
* Updating 47/vertical-workspaces to version 47.5+20250210 [b14ba3cf].
|
||||
* Adding 47/just-perfection version 34.0 [16433162].
|
||||
* Renaming extensions subdirectory for GNOME 48.
|
||||
* Adding just-perfection to manpage.
|
||||
|
||||
2024-09-16 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
|
||||
* Releasing version 20240916.
|
||||
|
|
|
@ -1 +1 @@
|
|||
20240916
|
||||
20250212
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
"uuid": "disable-workspace-switcher@jbradaric.me",
|
||||
"url": "https://github.com/jbradaric/disable-workspace-switcher",
|
||||
"shell-version": [
|
||||
"45", "46", "47"
|
||||
"45", "46", "47", "48"
|
||||
]
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Hibernate Status Button",
|
||||
"url": "https://github.com/arelange/gnome-shell-extension-hibernate-status",
|
||||
"description": "Adds a Hibernate button in Status menu. Using Alt modifier, you can also select Hybrid Sleep instead.",
|
||||
"shell-version": ["45", "46", "47"],
|
||||
"shell-version": ["45", "46", "47", "48"],
|
||||
"gettext-domain": "hibernate-status-button",
|
||||
"settings-schema": "org.gnome.shell.extensions.hibernate-status-button"
|
||||
}
|
56
extensions/48/just-perfection.mk
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Progress Linux: gnome-shell-extensions-extra
|
||||
|
||||
# Copyright (C) 2010-2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# Build-Depends:
|
||||
# none
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
EXTENSION := just-perfection
|
||||
UUID := $(shell awk -F\" '/"uuid": / { print $$4 }' $(EXTENSION)/src/metadata.json)
|
||||
|
||||
all:
|
||||
|
||||
test:
|
||||
|
||||
build:
|
||||
cd $(EXTENSION) && ./scripts/build.sh
|
||||
|
||||
install: build
|
||||
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
||||
unzip $(EXTENSION)/*.zip -d $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/CHANGELOG.md
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
upstream:
|
||||
rm -rf $(EXTENSION)
|
||||
git clone https://gitlab.gnome.org/jrahmatzadeh/$(EXTENSION)
|
||||
rm -rf $(EXTENSION)/.git
|
4
extensions/48/just-perfection/.gitignore
vendored
Executable file
|
@ -0,0 +1,4 @@
|
|||
*~
|
||||
*.zip
|
||||
*.gresource
|
||||
node_modules
|
33
extensions/48/just-perfection/.gitlab/issue_templates/Bug.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
## Summary
|
||||
|
||||
(Summarize the bug encountered concisely)
|
||||
|
||||
## Steps to reproduce
|
||||
|
||||
(How one can reproduce the issue - this is very important)
|
||||
|
||||
## What is the current bug behavior?
|
||||
|
||||
(What actually happens)
|
||||
|
||||
## What is the expected correct behavior?
|
||||
|
||||
(What you should see instead)
|
||||
|
||||
## Other Enabled Extensions
|
||||
|
||||
(What extensions are installed and enabled beside this extension and what is happening when all extensions are disabled and only this extension is enabled)
|
||||
|
||||
## Versions
|
||||
|
||||
(What is your GNOME Shell version and Extension version. Are you using the latest build from this repository?)
|
||||
|
||||
## Relevant logs and/or screenshots
|
||||
|
||||
(Paste any relevant logs - please use code blocks (```) to format console output, logs, and code, as
|
||||
it's very hard to read otherwise. For shell log you can use `journalctl -fo cat /usr/bin/gnome-shell`.)
|
||||
|
||||
## Settings Values
|
||||
|
||||
(Paste the settings values if it is relevant to the issue:
|
||||
`gsettings --schemadir ~/.local/share/gnome-shell/extensions/just-perfection-desktop@just-perfection/schemas list-recursively org.gnome.shell.extensions.just-perfection`.)
|
599
extensions/48/just-perfection/CHANGELOG.md
Executable file
|
@ -0,0 +1,599 @@
|
|||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
We go to the next version after each release on the
|
||||
[GNOME Shell Extensions website](https://extensions.gnome.org/).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [34.0] - 2025-02-02
|
||||
|
||||
### Removed
|
||||
|
||||
- The monthly notification support.
|
||||
|
||||
## [33.0] - 2025-02-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- The monthly notification support calculation.
|
||||
|
||||
## [32.0] - 2025-02-01
|
||||
|
||||
### Added
|
||||
|
||||
- Airplane Mode Toggle Button Visibility in Quick Settings.
|
||||
- GNOME Shell 48 Support.
|
||||
- More Crypto Donations (XRP, Solana, Cardano, BNB, Stellar, USDC, LTC, Shiba Inu and LBRY).
|
||||
- Support Notifier.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Looking Glass `_resize()` issue.
|
||||
|
||||
## [31.0] - 2025-01-06
|
||||
|
||||
### Added
|
||||
|
||||
- Accent Color for Icons.
|
||||
- Crypto Support to the Preferences Window.
|
||||
- Invert Calendar Column Items.
|
||||
- Night Light Toggle Button Visibility in Quick Settings.
|
||||
- Workspace Switcher Click Always Goes to The Main View.
|
||||
- Ukrainian Translation by [@vovkiv](https://gitlab.gnome.org/vovkiv).
|
||||
|
||||
### Fixed
|
||||
|
||||
- Search margin when using high display scale factor and panel in overview feature.
|
||||
- Slowest animation.
|
||||
- The dash app running indicator visibility (GNOME Shell 46 and 47).
|
||||
- The Looking Glass Position Using Inspector in Overview.
|
||||
- The Workspaces Shadow in App Grid When the Search is Disabled.
|
||||
|
||||
## [30.0] - 2024-07-31
|
||||
|
||||
### Added
|
||||
|
||||
- GNOME Shell 47 Support.
|
||||
|
||||
## [29.0] - 2024-07-06
|
||||
|
||||
### Added
|
||||
|
||||
- Dark Mode Toggle Button Visibility in Quick Settings.
|
||||
- Maximum Displayed Search Results feature (GNOME Shell 45 and higher).
|
||||
- Gresources compiled file for the preferences window to load faster.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Alt-Tab Switcher list Item Background Color for Shell Theme Override (GNOME Shell 46).
|
||||
- Hidden panel timeout priority on Wayland.
|
||||
- Panel Menu not Showing Up On Bottom Panel When the Height is Larger than the Screen Height.
|
||||
- The dash app running indicator visibility.
|
||||
- Workspace Popup visibility CPU usage.
|
||||
- Japanese Translation by [@gnuey56](https://gitlab.gnome.org/gnuey56).
|
||||
|
||||
### Changed
|
||||
|
||||
- The clock menu position widget to `AdwSpinRow`.
|
||||
- The panel height maximum size to 64.
|
||||
|
||||
## [28.0 Lear] - 2024-03-06
|
||||
|
||||
### Added
|
||||
|
||||
- Buy Me a Coffee donation link.
|
||||
- GNOME Shell 46 Support.
|
||||
- Option to maximize windows on creation by [@droserasprout](https://gitlab.gnome.org/droserasprout).
|
||||
|
||||
### Fixed
|
||||
|
||||
- The world clock visibility coming back after reboot or install change.
|
||||
|
||||
### Removed
|
||||
|
||||
- Window Picker Shell Theme Override.
|
||||
- Search Shell Theme Override.
|
||||
- Workspace Animation Shell Theme Override.
|
||||
- Dash Background Shell Theme Override.
|
||||
|
||||
## [27.0 Durer] - 2023-09-14
|
||||
|
||||
### Changed
|
||||
|
||||
- The world clocks visibility from CSS to JS.
|
||||
|
||||
### Added
|
||||
|
||||
- "Almost none" option to animation speed feature (GNOME Shell 45).
|
||||
- GNOME Shell 45 Support.
|
||||
- Japanese Translation by [@gnuey56](https://gitlab.gnome.org/gnuey56).
|
||||
|
||||
### Removed
|
||||
|
||||
- Activities button icon feature (GNOME Shell 45).
|
||||
- App menu indicator (GNOME Shell 45).
|
||||
|
||||
## [26.0 Rosa] - 2023-08-07
|
||||
|
||||
### Fixed
|
||||
|
||||
- Remove not defined.
|
||||
|
||||
## [25.0 Rosa] - 2023-08-07
|
||||
|
||||
### Changed
|
||||
|
||||
- The behavior of the panel is shown only in the overview.
|
||||
Rather than sliding in from the top, it is now rendered behind the workspaces
|
||||
by [Schneegans](https://gitlab.gnome.org/Schneegans).
|
||||
|
||||
### Fixed
|
||||
|
||||
- a11y error in GNOME Shell mobile.
|
||||
- Activities button error in GNOME Shell mobile.
|
||||
- Marked as an urgent signal for window demand attention focus feature.
|
||||
- Panel flickering when its position is at the bottom.
|
||||
- `.set_icon_size` is not a function error (Date Menu).
|
||||
- Unwanted padding on the disabled power icon.
|
||||
- Unwanted shadow for workspace in the app grid.
|
||||
|
||||
### Added
|
||||
|
||||
- Dash app running visibility.
|
||||
- Disable the overlay key.
|
||||
- EGO donations.
|
||||
- Workspace peek (GNOME Shell 42 and higher).
|
||||
|
||||
### Removed
|
||||
|
||||
- GNOME Shell support (3.36, 3.38, 40 and 41 no longer getting new features).
|
||||
|
||||
## [24.0 Hals] - 2023-03-01
|
||||
|
||||
### Changed
|
||||
|
||||
- Window preview close button for super minimal profile (to disabled).
|
||||
|
||||
### Added
|
||||
|
||||
- GNOME Shell 44 support.
|
||||
- Transparent dash background for shell theme override (GNOME Shell 4x only).
|
||||
|
||||
## [23.0 Goya] - 2023-02-10
|
||||
|
||||
### Changed
|
||||
|
||||
- Clock menu offset maximum to 20.
|
||||
- Fastest animation speed (twice as fast as before).
|
||||
|
||||
### Fixed
|
||||
|
||||
- App menu label visibility compatibility issue with open whether extension.
|
||||
- Hidden workspace switcher padding in overview.
|
||||
- Keep the clock menu position when another widget is added to the panel.
|
||||
- Looking Glass API conflicts with the "Dash to Panel" extension.
|
||||
- Looking Glass error when primary monitor doesn't exist.
|
||||
- Window preview gap when window picker close button is disabled.
|
||||
- Workspace boxes top margin in the app grid when the search entry is disabled.
|
||||
- Italian translation by [@svityboy](https://gitlab.gnome.org/svityboy).
|
||||
|
||||
### Added
|
||||
|
||||
- More dash icon size (16px, 22px, 24px, 40px and 56px).
|
||||
- Overview spacing size.
|
||||
- Screen recording indicator visibility.
|
||||
- Screen sharing indicator visibility.
|
||||
- Switcher popup delay by [@koplo199](https://gitlab.gnome.org/koplo199).
|
||||
|
||||
## [22.0 Millet] - 2022-09-10
|
||||
|
||||
### Fixed
|
||||
|
||||
- Dash app button visibility height.
|
||||
- Looking glass error after unlock.
|
||||
|
||||
### Added
|
||||
|
||||
- App menu label visibility.
|
||||
- GNOME Shell 43 support.
|
||||
- Quick settings menu visibility.
|
||||
|
||||
### Removed
|
||||
|
||||
- Aggregate menu for GNOME Shell 43 and higher.
|
||||
|
||||
## [21.0 Reynolds] - 2022-08-06
|
||||
|
||||
### Changed
|
||||
|
||||
- Prefs compatibility layer checking to GTK and Adw instead of GNOME Shell version.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Application button visibility in Ubuntu 22.04.
|
||||
- Prefs window size for scaled displays.
|
||||
- Prefs window size for small displays in GNOME Shell 42.
|
||||
- Racy prefs window size.
|
||||
- Window caption going out of display area when dash is disabled in GNOME Shell 40 and higher.
|
||||
- Russian translation by [@librusekus35790](https://gitlab.gnome.org/librusekus35790).
|
||||
- Spanish translation by [@Luci](https://gitlab.gnome.org/Luci).
|
||||
|
||||
### Added
|
||||
|
||||
- Alt-Tab window preview icon size.
|
||||
- Alt-Tab window preview size.
|
||||
- Alt-Tab icon size.
|
||||
- Dash separator visibility.
|
||||
- Looking glass size by [@AdvendraDeswanta](https://gitlab.gnome.org/AdvendraDeswanta).
|
||||
- OSD position.
|
||||
- Take the screenshot button in the window menu visibility.
|
||||
|
||||
### Removed
|
||||
|
||||
- Gesture API for GNOME Shell 40 and higher.
|
||||
- List box separators for GNOME Shell 40 and 41 (EOS).
|
||||
- Prefs intro.
|
||||
|
||||
## [20.0 Hayez] - 2022-04-01
|
||||
|
||||
### Fixed
|
||||
|
||||
- Dynamic workspaces getting disabled by workspace popup.
|
||||
- Flickering panel after Unlock.
|
||||
- Notification banner position on GNOME Shell 42.
|
||||
- Window demands attention focus on GNOME Shell 42.
|
||||
- French translation by [@GeoffreyCoulaud](https://gitlab.gnome.org/GeoffreyCoulaud).
|
||||
- Italian translation by [@svityboy](https://gitlab.gnome.org/svityboy).
|
||||
|
||||
### Added
|
||||
|
||||
- Events visibility in the clock menu.
|
||||
- Calendar visibility in the clock menu.
|
||||
- Dutch translation by [@Vistaus](https://gitlab.gnome.org/Vistaus).
|
||||
|
||||
## [19.0 Ancher] - 2022-03-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- Blurry search entry on GNOME Shell themes with "box-shadow".
|
||||
- Prefs file chooser recursion.
|
||||
- SecondaryMonitorDisplay error on GNOME Shell 42.
|
||||
- Shell theme overrides OSD on GNOME Shell 42.
|
||||
- Shell theme overrides the workspace switcher on GNOME Shell 42.
|
||||
- Workspace popup visibility in GNOME Shell 42.
|
||||
|
||||
### Added
|
||||
|
||||
- Libadwaita for GNOME Shell 42 prefs.
|
||||
- Panel icon size.
|
||||
- Panel world clock visibility.
|
||||
- Weather visibility.
|
||||
|
||||
## [18.0 Roslin] - 2022-02-12
|
||||
|
||||
### Fixed
|
||||
|
||||
- GNOME 3.x prefs error.
|
||||
|
||||
## [17.0 Roslin] - 2022-02-11
|
||||
|
||||
### Fixed
|
||||
|
||||
- Emitting panel show when panel is visible.
|
||||
- Looking glass not showing up.
|
||||
- Looking glass position on startup when panel is hidden.
|
||||
- Prefs height going off the screen in small displays.
|
||||
- Prefs lunching url freeze on Wayland.
|
||||
- Prefs padding in GNOME Shell 42.
|
||||
- Prefs UI Improvement by [@muqtxdir](https://gitlab.gnome.org/muqtxdir).
|
||||
- Startup animation for hiding panel when panel is disabled.
|
||||
- Type to search when text entry content is replaced with another content.
|
||||
- Window goes under panel after unlock on Wayland.
|
||||
- Window picker caption visibility issue on Pop Shell.
|
||||
- Galician translation by [@frandieguez](https://gitlab.gnome.org/frandieguez).
|
||||
|
||||
### Added
|
||||
|
||||
- Bottom to notification banner position.
|
||||
|
||||
### Removed
|
||||
|
||||
- Panel corner size option for GNOME Shell 42.
|
||||
|
||||
## [16.0 Rembrandt] - 2021-11-15
|
||||
|
||||
### Fixed
|
||||
|
||||
- Animation jump when search entry is disabled and entering app grid.
|
||||
- Clock menu revealing in lockscreen when the position is left or right.
|
||||
- Startup status for Ubuntu.
|
||||
- Workspace switcher visibility in GNOME Shell 41.
|
||||
|
||||
### Removed
|
||||
|
||||
- Hot corner for GNOME Shell 41.
|
||||
- Hot corner library for all supported Shell versions.
|
||||
|
||||
### Added
|
||||
|
||||
- Double supper to app grid for GNOME Shell 40 and 41.
|
||||
- Panel corner size when panel is disabled.
|
||||
- Panel visibility in overview when panel is disabled.
|
||||
- Prefs window intro.
|
||||
- Profile selector to the prefs window.
|
||||
- Ripple box.
|
||||
|
||||
## [15.0 Magnetized] - 2021-09-22
|
||||
|
||||
### Fixed
|
||||
|
||||
- unlock recursion error.
|
||||
|
||||
### Added
|
||||
|
||||
- Hot corner support for GNOME Shell 41.
|
||||
|
||||
## [14.0 Magnetized] - 2021-09-22
|
||||
|
||||
### Changed
|
||||
|
||||
- Repo folder structure to have better organization.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Bottom panel position for multi monitors by [@harshadgavali](https://gitlab.gnome.org/harshadgavali).
|
||||
- First swipe up in desktop startup status.
|
||||
- Looking glass position on bottom panel.
|
||||
- Maximized window gap on Wayland.
|
||||
- Search entry animation for type to search when search entry is disabled.
|
||||
- Search entry API to avoid conflicting with other extensions.
|
||||
- Window picker caption border on disable.
|
||||
- Window picker disapearing on wayland with shell theme override.
|
||||
- Galician translation by [@frandieguez](https://gitlab.gnome.org/frandieguez).
|
||||
- Spanish translation by [@DiegoIvanME](https://gitlab.gnome.org/DiegoIvanME).
|
||||
|
||||
### Removed
|
||||
|
||||
- Donation popover in prefs.
|
||||
- Hot corner for GNOME Shell 41.
|
||||
|
||||
### Added
|
||||
|
||||
- GNOME Shell 41 support.
|
||||
- Panel indicator padding size.
|
||||
- Window picker close button visibility.
|
||||
|
||||
## [13.0 Ring] - 2021-08-10
|
||||
|
||||
### Changed
|
||||
|
||||
- Search button position in prefs window.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Accessing dash in case the original dash has been removed by third party extensions.
|
||||
- API.monitorGetInfo for "pMonitor is null" error.
|
||||
- Dropdown align in preferences dialog.
|
||||
- Startup status blocking shortcut keys.
|
||||
- Unwanted window demands attention focus.
|
||||
- Russian translation by [@librusekus35790](https://gitlab.gnome.org/librusekus35790).
|
||||
|
||||
### Removed
|
||||
|
||||
- Settings and Translation library and using ExtensionUtils instead.
|
||||
|
||||
### Added
|
||||
|
||||
- Panel button padding size.
|
||||
- Panel height.
|
||||
- Window picker caption visibility.
|
||||
- Workspace background corner size in overview.
|
||||
- Workspace wraparound (modified version of WorkspaceSwitcherWrapAround by [@war1025](https://github.com/war1025)).
|
||||
|
||||
## [12.0 Queen Red] - 2021-06-29
|
||||
|
||||
### Changed
|
||||
|
||||
- Lighter background color for switcher list (alt+tab) in override theme.
|
||||
- Workspace switcher max size now maxed out to 30%.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Combobox scroll issue on GTK4.
|
||||
- Window demands attention focus notification popup.
|
||||
- French translation by [@GeoffreyCoulaud](https://gitlab.gnome.org/GeoffreyCoulaud).
|
||||
- Russian translation by [@librusekus35790](https://gitlab.gnome.org/librusekus35790).
|
||||
|
||||
### Added
|
||||
|
||||
- Always show workspace switcher on dynamic workspaces.
|
||||
- More descriptions to the preferences dialog.
|
||||
- Notification banner position.
|
||||
- Startup status for GNOME Shell 40.
|
||||
- Workspace animation background color for shell theme override.
|
||||
- Workspaces visibility in app grid by [@fmuellner](https://gitlab.gnome.org/fmuellner).
|
||||
- Chinese (Taiwan) translation by [@r0930514](https://gitlab.com/r0930514).
|
||||
|
||||
## [11.0 Whisper] - 2021-05-20
|
||||
|
||||
### Changed
|
||||
|
||||
- App gesture now only works on GNOME 3.36 and 3.38.
|
||||
- Donation icon to GTK4 non-compatible icon sets.
|
||||
- Shell theme override is now disabled by default.
|
||||
- Workspace switcher size for GNOME Shell 40 is now maxed out to 15%.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Gap when panel position is at the bottom and shell override theme happens.
|
||||
- Panel menu margin when panel is in bottom.
|
||||
- Window picker icon visibility on drag.
|
||||
- Workspace switcher size for multi monitor setup.
|
||||
- Arabic translation by [@AliGalal](https://gitlab.com/AliGalal).
|
||||
- Chinese translation by [@wsxy162](https://gitlab.com/wsxy162).
|
||||
- Italian translation by [@l3nn4rt](https://gitlab.com/l3nn4rt).
|
||||
- Swedish translation by [@MorganAntonsson](https://gitlab.com/MorganAntonsson).
|
||||
|
||||
### Added
|
||||
|
||||
- Activities button icon.
|
||||
- Dash icon size.
|
||||
- Window demands attention focus.
|
||||
|
||||
## [10.0] - 2021-03-26
|
||||
|
||||
### Changed
|
||||
|
||||
- Organized prefs UI for icons and behavior.
|
||||
- Removed quotes and side bar image from prefs UI.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fake hot corner primary monitor position.
|
||||
- Horizontal scroll in prefs.
|
||||
- Primary Monitor Panel Position.
|
||||
- Arabic translation by [@karem34](https://gitlab.com/karem34).
|
||||
- Russian translation by [@librusekus35790](https://gitlab.com/librusekus35790).
|
||||
|
||||
### Added
|
||||
|
||||
- Clock menu position.
|
||||
- Disable animation or change the animation speed.
|
||||
- Disable applications button in dash.
|
||||
- Disable app menu icon.
|
||||
- Disable panel arrow in GNOME 3.36 and 3.38.
|
||||
- Disable panel notification icon.
|
||||
- No results found for prefs window.
|
||||
- Brazilian Portuguese translation by [@Zelling](https://gitlab.com/Zelling).
|
||||
- Catalan translation by [@juxuanu](https://gitlab.com/juxuanu).
|
||||
- Galician translation by [@frandieguez](https://gitlab.com/frandieguez).
|
||||
|
||||
## [9.0] - 2021-03-06
|
||||
|
||||
### Changed
|
||||
|
||||
- Prefs interface.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Default value for hot corner on extension disable.
|
||||
- GNOME Shell 40.beta version.
|
||||
|
||||
### Added
|
||||
|
||||
- Disable power icon.
|
||||
- Panel position.
|
||||
- Support to prefs window.
|
||||
|
||||
## [8.0] - 2021-02-22
|
||||
|
||||
### Changed
|
||||
|
||||
- Holding back lonely overview until the final GNOME 40 release.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Dash override theme on GNOME Shell 40 beta.
|
||||
- Focus for find entry on prefs.
|
||||
- Search controller for GNOME Shell 40 beta.
|
||||
- Start search for GNOME Shell 40 beta.
|
||||
- Workspace switcher enable related to workspace switcher size.
|
||||
- Nepali translation filename by [@IBA4](https://gitlab.com/IBA4).
|
||||
|
||||
## [7.0] - 2021-02-12
|
||||
|
||||
### Fixed
|
||||
|
||||
- GNOME Shell 40 hidden side by side workspace preview.
|
||||
- GNOME Shell 40 search padding when panel is disabled.
|
||||
- Initial prefs window size.
|
||||
|
||||
### Added
|
||||
|
||||
- GNOME Shell 40 window picker icon visibility to the settings.
|
||||
- GNOME Shell 40 workspace switcher size to the settings.
|
||||
- Panel corner size to the settings.
|
||||
- Search feature to the settings.
|
||||
- Type to Search to the settings.
|
||||
- Nepali translation by [@IBA4](https://gitlab.com/IBA4).
|
||||
- Spanish translation by [@oscfdezdz](https://gitlab.com/oscfdezdz).
|
||||
|
||||
## [6.0] - 2021-01-29
|
||||
|
||||
### Fixed
|
||||
|
||||
- GNOME Shell 3.38 extra padding on no workspace switcher.
|
||||
- GNOME Shell 40 and GTK4 support for prefs.
|
||||
- GNOME Shell 40 support for search entry.
|
||||
- GNOME Shell 40 support for workspace switcher.
|
||||
|
||||
## [5.0] - 2021-01-05
|
||||
|
||||
### Added
|
||||
|
||||
- Accessibility Menu visibility to the settings.
|
||||
- Activities button visibility to the settings.
|
||||
- App menu visibility to the settings.
|
||||
- Clock menu visibility to the settings.
|
||||
- Keyboard Layout visibility to the settings.
|
||||
- System Menu (Aggregate Menu) visibility to the settings.
|
||||
|
||||
### Changed
|
||||
|
||||
- OSD in settings to "On Screen Display (OSD)".
|
||||
|
||||
### Fixed
|
||||
|
||||
- Hot corner when top panel is visible.
|
||||
- Padding on no dash.
|
||||
- Search top padding on no top panel.
|
||||
|
||||
## [4.0] 2020-12-25
|
||||
|
||||
### Added
|
||||
|
||||
- API to decouple all libraries from using GNOME Shell ui directly.
|
||||
- Automate build process by [@daPhipz](https://gitlab.com/daPhipz).
|
||||
- CHANGELOG.md file.
|
||||
- Compatibility layer for API.
|
||||
- Translation automation script by [@daPhipz](https://gitlab.com/daPhipz).
|
||||
|
||||
### Changed
|
||||
|
||||
- Default settings to enable.
|
||||
- Displaying error for generate-mo.sh by [@daPhipz](https://gitlab.com/daPhipz).
|
||||
- German translation by [@M4he](https://gitlab.com/M4he).
|
||||
|
||||
### Fixed
|
||||
|
||||
- Top padding on no search and no top panel.
|
||||
|
||||
## [3.0] - 2020-12-21
|
||||
|
||||
### Added
|
||||
|
||||
- CONTRIBUTING.md file.
|
||||
- Decoupled library from GNOME Shell ui.
|
||||
- Extension logo.
|
||||
- Initial Translations.
|
||||
- Prefs as extension settings.
|
||||
|
||||
## [2.0] - 2020-11-18
|
||||
|
||||
### Fixed
|
||||
|
||||
- Destroy hot corner on disable.
|
||||
|
||||
|
||||
### Added
|
||||
|
||||
- Disable app gesture.
|
||||
- Disable background menu.
|
||||
- Hide dash.
|
||||
- Hide search.
|
||||
- Hide top panel.
|
||||
- Hide workspace switcher.
|
||||
- Hot corner to toggle overview visibility.
|
||||
|
37
extensions/48/just-perfection/CONTRIBUTING.md
Executable file
|
@ -0,0 +1,37 @@
|
|||
# Rules for Contribution
|
||||
|
||||
- Respect 100 characters margin.
|
||||
|
||||
- The indentation is 4 characters. Don't use tab for indentation.
|
||||
|
||||
- Avoid unnecessary comments. The code should be self explanatory.
|
||||
|
||||
- Write a simple and readable code.
|
||||
|
||||
- All functions and methods should be testable inside *lib* folder.
|
||||
|
||||
- Curly brackets for function, class, method and CSS class should be in new line.
|
||||
|
||||
- Class name, function, method names and variables should be camel cased.
|
||||
|
||||
- Only main files are allowed in the src folder (such as extension.js, prefs.js, stylesheet.css, metadata.json).
|
||||
|
||||
- Singleton is not allowed for any files inside *lib* folder.
|
||||
|
||||
- Class constructor shouldn't do much. It is preferred to only use dependency injection if it is necessary.
|
||||
|
||||
- SVG and Image files should be released under GPLv3 license.
|
||||
|
||||
- Overriding GNOME Shell theme is accepted and your style should be applied when the parent has *just-perfection* class in it (or starts with *just-perfection-*). But avoid styling top panel.
|
||||
|
||||
- All *ui* files should be inside *ui* folder.
|
||||
|
||||
- All changes related to the GNOME Shell should pass through API (lib/API.js). Also API acts as compatibility layer.
|
||||
|
||||
## Translation
|
||||
|
||||
- You can find main translation file (pot file) in *po/main.pot*. That's the translation reference file.
|
||||
|
||||
- Initial language translation for current languages has been translated via online services. Feel free to edit that.
|
||||
|
||||
*This file may be updated in the future. Any change should be applied to all files in this repository.*
|
675
extensions/48/just-perfection/LICENSE
Executable file
|
@ -0,0 +1,675 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
Just Perfection GNOME Shell Desktop
|
||||
Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
Just Perfection GNOME Shell Desktop
|
||||
Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
152
extensions/48/just-perfection/README.md
Executable file
|
@ -0,0 +1,152 @@
|
|||
# Just Perfection GNOME Shell Extension
|
||||
|
||||
![Just Perfection GNOME Shell Extension](data/imgs/intro.svg)
|
||||
|
||||
## Features
|
||||
|
||||
This extension allows you to do the following:
|
||||
|
||||
| Feature | 3.36 | 3.38 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 |
|
||||
| ---------------------------------------------------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
|
||||
| Accent Color for Icons | | | | | | | | | | Yes | Yes |
|
||||
| Accessibility Menu Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Activities Button Icon | Yes | Yes | Yes | Yes | Yes | Yes | Yes | | | | |
|
||||
| Activities button Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Alt Tab Icon Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Alt Tab Window Preview Icon Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Alt Tab Window Preview Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Always Show Workspace Switcher on Dynamic Workspaces | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Animation Speed or Disable it | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| App Gesture | Yes | Yes | | | | | | | | | |
|
||||
| App Menu Icon Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| App Menu Label Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| App Menu Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Applications Button Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Background Menu Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Calendar Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Clock Menu Position | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Clock Menu Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Dash App Running Dot Visibility | | | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Dash Icon Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Dash Separator Visibility | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Dash Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Disable Overlay Key | | | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Disable Type to Search | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Double Super Key to App Grid | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Events in Clock Menu Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| GNOME Shell Theme Override | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Hot Corner | Yes | Yes | Yes | | | | | | | | |
|
||||
| Invert Calendar Column Items | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Keyboard Layout Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Looking Glass Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Maximum Displayed Search Results | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Notification Banner Position | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| OSD Position | | | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| OSD Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Overview Spacing Size | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Arrow Visibility | Yes | Yes | | | | | | | | | |
|
||||
| Panel Button Padding Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Height | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel icon size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Indicator Padding Size | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Notification icon Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Position | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Round Corner Size | Yes | Yes | Yes | Yes | | | | | | | |
|
||||
| Panel Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Panel Visibility in Overview | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Power Icon Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Quick Settings Airplane Mode Toggle Visibility | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Quick Settings Dark Mode Toggle Visibility | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Quick Settings Menu Visibility | | | | | | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Quick Settings Night Light Toggle Visibility | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Ripple Box | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Screen Recording Indicator Visibility | | | | | | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Screen Sharing Indicator Visibility | | | | | | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Search Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Startup Status | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Switcher Popup Delay | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| System Menu (Aggregate Menu) Visibility | Yes | Yes | Yes | Yes | Yes | | | | | | |
|
||||
| Take Screenshot Button in Window Menu Visibility | | | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Weather Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Window Demands Attention Focus | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Window Maximized on Create | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Window Picker Caption Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Window Picker Close Button Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Window Picker Icon | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Background Corner Size in Overview | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Peek | | | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Popup Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Switcher Click To Main View | | | | | | | | Yes | Yes | Yes | Yes |
|
||||
| Workspace Switcher Size | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Switcher Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspace Wraparound | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| Workspaces in app grid Visibility | | | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
| World Clock Visibility | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
||||
|
||||
## GNOME Shell Support
|
||||
|
||||
| GNOME Shell Version | End Of Support | Status | Last Version |
|
||||
| ------------------- | -------------- | ------------------ | ------------- |
|
||||
| 48 | TBA | Supported | 34 |
|
||||
| 47 | July 2026 | Supported | 34 |
|
||||
| 46 | July 2028 | Supported | 34 |
|
||||
| 45 | July 2025 | Supported | 34 |
|
||||
| 44 | July 2024 | EOS | 26 |
|
||||
| 43 | July 2023 | EOS | 26 |
|
||||
| 42 | July 2026 | No New Features | 26 |
|
||||
| 41 | May 2022 | EOS | 24 |
|
||||
| 40 | December 2021 | EOS | 24 |
|
||||
| 3.38 | July 2025 | No New Features | 24 |
|
||||
| 3.36 | July 2025 | No New Features | 24 |
|
||||
|
||||
## Install
|
||||
|
||||
### GNOME Extensions Website
|
||||
|
||||
This extension is available on [GNOME Extensions Website](https://extensions.gnome.org/extension/3843/just-perfection/).
|
||||
|
||||
[![Just Perfection on extensions.gnome.org](data/imgs/ego.svg)](https://extensions.gnome.org/extension/3843/just-perfection/)
|
||||
|
||||
### Manually
|
||||
|
||||
You can download this repo and install it manually with the build script:
|
||||
|
||||
```bash
|
||||
$ ./scripts/build.sh -i
|
||||
```
|
||||
|
||||
*You need gettext and glib2-devel packages installed on your system*
|
||||
|
||||
## Support
|
||||
|
||||
You can support my work by sending me some crypto:
|
||||
|
||||
- **Bitcoin** bc1qn6p0k8sapmxgedn8qjhd5gm2yzy46t5s296lnd
|
||||
- **Bitcoin Cash** qzhuj2kdw4zjrg8r2j7knx5uzqdcpv5lwv5uxq04e0
|
||||
- **Ethereum** 0xE4A6C46E1095C49688645c132672cB04d1402026
|
||||
- **XRP** rMvJGGw3eWat3vm7TRjUb5XAtazoSm399R
|
||||
- **USDT (Tether)** 0xE4A6C46E1095C49688645c132672cB04d1402026
|
||||
- **USDC** 0xE4A6C46E1095C49688645c132672cB04d1402026
|
||||
- **Solana** 3M9d8arcHiuqAwso9zTX4pvZRoaeVVomkovWmGCYgDG2
|
||||
- **Cardano (ADA)** addr1qxgrpcsdpyuh7dl4m2mk2vpuss68zjze9y83wpsuxjyafg5sxr3q6zfe0umltk4hv5crepp5w9y9j2g0zurpcdyf6j3qeu2hqs
|
||||
- **BNB (BSC Network)** 0xE4A6C46E1095C49688645c132672cB04d1402026
|
||||
- **Dogecoin** DULPjoiDuhZCmv5LDeJuqYPC8Uy7NK7DnW
|
||||
- **LTC** LVz4se3wepdgCNGkE8V53VB47ViAjZb7F1
|
||||
- **Stellar (XLM)** GDZOVYXD6PGG77V5HGHN767AGPIYZ3ZHNUC53BSXMIDRSTKVFVUJJFHZ
|
||||
- **Monero** 49uPJDZCoFJMoeLAZKDpuTScHjdfgfzksMNurZdt2J4x8meKUZZwUiq3tBs9xYVq9G8PzxjwH6zkXeEZKz3JgdfiGo3aZN5
|
||||
- **LBRY** bPMi1WVgtMDjdX3V4ofAtMt5qMj4xYM4A1
|
||||
- **Shiba Inu** 0xE4A6C46E1095C49688645c132672cB04d1402026
|
||||
|
||||
Or support via:
|
||||
|
||||
[![Support via Buy Me a Coffee](data/imgs/support-buymeacoffee.svg)](https://www.buymeacoffee.com/justperfection)
|
||||
|
||||
## Awards
|
||||
|
||||
- [Ask Noah Show (Pick of the Week)](https://podcast.asknoahshow.com/212?t=1643).
|
||||
|
||||
## License
|
||||
|
||||
This Extension has been released under The **GNU General Public License v3.0**.
|
||||
|
||||
|
125
extensions/48/just-perfection/data/imgs/download-stats.svg
Executable file
|
@ -0,0 +1,125 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="140"
|
||||
height="45"
|
||||
viewBox="0 0 37.041666 11.906252"
|
||||
version="1.1"
|
||||
id="svg1787"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="download-stats.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<title
|
||||
id="title2446">Just Perfection Download Stats</title>
|
||||
<defs
|
||||
id="defs1781">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10"
|
||||
id="linearGradient11"
|
||||
x1="36.385891"
|
||||
y1="19.318071"
|
||||
x2="9.0166798"
|
||||
y2="19.318071"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.0184791,-0.10941255)" />
|
||||
<linearGradient
|
||||
id="linearGradient10"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#5fbcd3;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop10" />
|
||||
<stop
|
||||
style="stop-color:#0066ff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop11" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="56.214989"
|
||||
inkscape:cy="20.417708"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1048"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#ffffff"
|
||||
showborder="true"
|
||||
showguides="true" />
|
||||
<metadata
|
||||
id="metadata1784">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Just Perfection Download Stats</dc:title>
|
||||
<dc:date>2024</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<cc:license
|
||||
rdf:resource="https://www.gnu.org/licenses/gpl-3.0.html" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-2.2730319,-14.040994)">
|
||||
<rect
|
||||
style="fill:url(#linearGradient11);fill-opacity:1;stroke-width:1.16255"
|
||||
id="rect22316"
|
||||
width="36.897137"
|
||||
height="10.497947"
|
||||
x="2.3452969"
|
||||
y="14.083687"
|
||||
ry="2.2709818" />
|
||||
<path
|
||||
d="m 15.194077,16.764489 h 0.921302 v 3.751016 h 1.066079 v -4.606511 h -1.987381 z m 3.395658,3.803662 c 0.35536,0 0.638331,-0.26981 0.638331,-0.644912 0,-0.381682 -0.282971,-0.63175 -0.638331,-0.63175 -0.355359,0 -0.63833,0.250068 -0.63833,0.63175 0,0.375102 0.282971,0.644912 0.63833,0.644912 z m 0.802839,-3.803662 h 0.921302 v 3.751016 h 1.066078 v -4.606511 h -1.98738 z m 8.258817,-0.855495 h -0.875237 l -1.697828,2.862617 -1.724152,-2.862617 h -0.881817 v 4.606511 h 1.000271 v -2.70468 l 1.349049,2.217706 h 0.480394 l 1.35563,-2.276933 0.0066,2.763907 h 1.000271 z"
|
||||
id="text4"
|
||||
style="font-weight:bold;font-size:6.58073px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#ffffff;stroke-width:0.164519"
|
||||
aria-label="1.1M" />
|
||||
<path
|
||||
d="M 9.510625,18.785763 V 17.261621 H 8.3540703 v 1.524142 H 6.8030319 v 1.093796 h 1.5510384 v 1.524142 H 9.510625 v -1.524142 h 1.560004 v -1.093796 z"
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:8.96554px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#ffffff;stroke-width:0.224139"
|
||||
aria-label="+" />
|
||||
<path
|
||||
d="m 16.184406,22.844598 c 0.475038,0 0.800718,-0.286268 0.800718,-0.72604 0,-0.439773 -0.32568,-0.72604 -0.800718,-0.72604 h -0.659659 v 1.45208 z M 15.8608,21.668413 h 0.307011 c 0.288341,0 0.477112,0.172176 0.477112,0.450145 0,0.277969 -0.188771,0.450144 -0.477112,0.450144 H 15.8608 Z m 2.080623,1.201077 c 0.456368,0 0.794495,-0.317383 0.794495,-0.750932 0,-0.433549 -0.338127,-0.750933 -0.794495,-0.750933 -0.458442,0 -0.794495,0.319457 -0.794495,0.750933 0,0.431475 0.336053,0.750932 0.794495,0.750932 z m 0,-0.286267 c -0.2593,0 -0.454294,-0.18877 -0.454294,-0.464665 0,-0.275896 0.194994,-0.464665 0.454294,-0.464665 0.2593,0 0.454294,0.188769 0.454294,0.464665 0,0.275895 -0.194994,0.464665 -0.454294,0.464665 z m 2.534915,-0.161803 -0.331904,-1.028902 h -0.31116 l -0.342276,1.020604 -0.327756,-1.020604 h -0.348499 l 0.477112,1.45208 h 0.358871 l 0.32983,-0.983265 0.319458,0.983265 h 0.360945 l 0.475037,-1.45208 h -0.321532 z m 1.846216,-0.147282 -0.72189,-0.88162 h -0.27797 v 1.45208 h 0.331904 v -0.88162 l 0.723965,0.88162 h 0.275895 v -1.45208 h -0.331904 z m 1.740423,0.57046 V 22.570777 H 23.334863 V 21.392518 H 22.99881 v 1.45208 z m 0.867101,0.02489 c 0.456368,0 0.794495,-0.317383 0.794495,-0.750932 0,-0.433549 -0.338127,-0.750933 -0.794495,-0.750933 -0.458442,0 -0.794495,0.319457 -0.794495,0.750933 0,0.431475 0.336053,0.750932 0.794495,0.750932 z m 0,-0.286267 c -0.2593,0 -0.454294,-0.18877 -0.454294,-0.464665 0,-0.275896 0.194994,-0.464665 0.454294,-0.464665 0.2593,0 0.454293,0.188769 0.454293,0.464665 0,0.275895 -0.194993,0.464665 -0.454293,0.464665 z m 2.464386,0.261375 -0.649288,-1.45208 h -0.331904 l -0.647212,1.45208 h 0.344351 l 0.128612,-0.31116 h 0.67418 l 0.128613,0.31116 z m -0.817313,-1.122251 0.230257,0.555939 h -0.460516 z m 1.628405,1.122251 c 0.475038,0 0.800718,-0.286268 0.800718,-0.72604 0,-0.439773 -0.32568,-0.72604 -0.800718,-0.72604 h -0.659659 v 1.45208 z M 27.88195,21.668413 h 0.307011 c 0.288341,0 0.477111,0.172176 0.477111,0.450145 0,0.277969 -0.18877,0.450144 -0.477111,0.450144 H 27.88195 Z m 1.854513,1.201077 c 0.41488,0 0.616097,-0.20744 0.616097,-0.450144 0,-0.533121 -0.844281,-0.3485 -0.844281,-0.616097 0,-0.09127 0.07675,-0.165952 0.275896,-0.165952 0.128612,0 0.267597,0.03734 0.402433,0.114092 l 0.10372,-0.255151 c -0.134836,-0.08505 -0.321532,-0.128613 -0.50408,-0.128613 -0.412805,0 -0.611948,0.205365 -0.611948,0.45222 0,0.539343 0.844281,0.352647 0.844281,0.624393 0,0.0892 -0.08091,0.15558 -0.280044,0.15558 -0.174249,0 -0.356797,-0.06223 -0.479186,-0.151431 l -0.114092,0.253077 c 0.128613,0.09957 0.360945,0.168026 0.591204,0.168026 z"
|
||||
id="text2"
|
||||
style="font-weight:bold;font-size:2.2868px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#ffffff;stroke-width:0.0518601"
|
||||
aria-label="DOWNLOADS" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.1 KiB |
170
extensions/48/just-perfection/data/imgs/ego.svg
Executable file
After Width: | Height: | Size: 18 KiB |
671
extensions/48/just-perfection/data/imgs/intro.svg
Normal file
|
@ -0,0 +1,671 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 507.99999 285.75"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
sodipodi:docname="intro.svg"
|
||||
inkscape:export-filename="intro-plain.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2023-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<title
|
||||
id="title364">Just Perfection Extension Intro</title>
|
||||
<sodipodi:namedview
|
||||
id="namedview52"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="918"
|
||||
inkscape:cy="465"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1048"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3" />
|
||||
<defs
|
||||
id="defs2">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2000">
|
||||
<stop
|
||||
style="stop-color:#ffcc00;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1996" />
|
||||
<stop
|
||||
style="stop-color:#ff0066;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1998" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient905"
|
||||
id="linearGradient921"
|
||||
x1="14.428227"
|
||||
y1="14.138401"
|
||||
x2="12.065819"
|
||||
y2="5.3217707"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2097049,0,0,1.2097049,22.39744,183.0187)" />
|
||||
<linearGradient
|
||||
id="linearGradient905">
|
||||
<stop
|
||||
style="stop-color:#006ec1;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop901" />
|
||||
<stop
|
||||
style="stop-color:#00afff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop903" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient895"
|
||||
id="linearGradient919"
|
||||
x1="22.695744"
|
||||
y1="-9.4822445"
|
||||
x2="30.226154"
|
||||
y2="3.5608044"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2097049,0,0,1.2097049,110.90613,147.30011)" />
|
||||
<linearGradient
|
||||
id="linearGradient895">
|
||||
<stop
|
||||
style="stop-color:#00bcff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop891" />
|
||||
<stop
|
||||
style="stop-color:#0078ff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop893" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient849"
|
||||
id="linearGradient909"
|
||||
x1="6.5340023"
|
||||
y1="21.087091"
|
||||
x2="6.5340023"
|
||||
y2="4.1254106"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2097049,0,0,1.2097049,22.39744,183.0187)" />
|
||||
<linearGradient
|
||||
id="linearGradient849">
|
||||
<stop
|
||||
id="stop845"
|
||||
offset="0"
|
||||
style="stop-color:#0078d2;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop847"
|
||||
offset="1"
|
||||
style="stop-color:#00ddff;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient895"
|
||||
id="linearGradient897"
|
||||
x1="23.271162"
|
||||
y1="12.053633"
|
||||
x2="23.271162"
|
||||
y2="38.225796"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2097049,0,0,1.2097049,22.39744,183.0187)" />
|
||||
<linearGradient
|
||||
xlink:href="#linearGradient915"
|
||||
id="linearGradient917"
|
||||
x1="19.010775"
|
||||
y1="-3.2001081"
|
||||
x2="24.389931"
|
||||
y2="-1.3244069"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2097049,0,0,1.2097049,180.18824,39.11124)" />
|
||||
<linearGradient
|
||||
id="linearGradient915">
|
||||
<stop
|
||||
style="stop-color:#0061aa;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop911" />
|
||||
<stop
|
||||
style="stop-color:#1600b6;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop913" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2000"
|
||||
id="linearGradient2002"
|
||||
x1="130.07626"
|
||||
y1="262.99734"
|
||||
x2="485.05795"
|
||||
y2="58.048573"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1325"
|
||||
id="linearGradient1327-3"
|
||||
x1="289.49686"
|
||||
y1="167.74376"
|
||||
x2="294.37677"
|
||||
y2="61.261528"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1325">
|
||||
<stop
|
||||
style="stop-color:#008aff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1321" />
|
||||
<stop
|
||||
style="stop-color:#00afff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1323" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Background"
|
||||
style="fill:url(#linearGradient2002);fill-opacity:1">
|
||||
<rect
|
||||
style="fill:#0069d3;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.573155;stroke-dasharray:none;stroke-opacity:1;stop-color:#000000"
|
||||
id="rect1203"
|
||||
width="543.47418"
|
||||
height="313.35019"
|
||||
x="-17.737093"
|
||||
y="-13.800096" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Lines"
|
||||
style="display:inline;stroke:#ffffff" />
|
||||
<path
|
||||
d="M 474.07726,-133.94837 C 450.77171,-137.49749 396.12463,10.883001 324.7017,28.874841 255.30029,46.357477 193.22702,-35.549503 121.92184,-41.694947 27.819396,-49.805202 -91.527747,2.7243513 -63.107573,100.90983 -9.3324151,255.12867 181.86467,328.68035 313.49876,282.78025 445.13361,236.87987 562.48103,83.453725 495.36788,-93.829438 490.00789,-107.9883 483.47234,-131.06908 474.07715,-133.94837 Z"
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.52916666;stroke-dasharray:none"
|
||||
id="path2740-6-7"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<path
|
||||
d="M 438.48518,-34.766719 C 396.13356,-144.63157 435.88879,102.75442 318.36869,57.653255 173.53153,2.0684078 36.380884,15.010248 40.587827,118.59095 44.774897,221.68265 223.16845,289.56792 319.54364,252.72708 416.40993,215.69849 485.68214,93.410188 438.4948,-34.741774 c -0.002,-0.0073 -4.3e-4,-0.0205 -0.008,-0.02543 -3.8e-4,-1.72e-4 -9.9e-4,4.21e-4 -9.9e-4,4.21e-4 z"
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.52916666;stroke-dasharray:none"
|
||||
id="path2747-2-5"
|
||||
sodipodi:nodetypes="sssasass" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="Logo"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g1281"
|
||||
transform="translate(-0.11715281,18.627534)">
|
||||
<path
|
||||
d="m 358.50961,23.535925 c -9.73198,-1.482051 -32.55165,60.479048 -62.37661,67.992127 -28.98081,7.300433 -54.90152,-26.90248 -84.67731,-29.468715 -39.29554,-3.386696 -89.13281,18.548717 -77.26504,59.549263 22.45556,64.39908 105.6144,94.7299 161.12398,74.31321 53.65785,-19.73562 100.11085,-81.60258 72.08558,-155.632925 -2.23825,-5.912484 -4.96737,-15.550618 -8.89064,-16.75296 z"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2740-6"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<path
|
||||
d="M 365.85704,34.501773 C 344.85618,-25.701055 362.04703,108.88708 299.23018,82.421911 221.81181,49.80498 147.35533,54.411221 147.82099,110.54587 c 0.46346,55.86963 94.13995,94.2905 146.34412,76.72729 53.3125,-17.93609 94.99502,-82.57276 71.6967,-152.75771 -10e-4,-0.0042 1.3e-4,-0.01111 -0.004,-0.01389 -2e-4,-9.7e-5 -6.1e-4,2.09e-4 -6.1e-4,2.09e-4 z"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2747-2"
|
||||
sodipodi:nodetypes="sssasass" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="13.793529"
|
||||
cy="-142.51395"
|
||||
cx="150.66051"
|
||||
id="path2745-9"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="8.1711063"
|
||||
cy="-139.59805"
|
||||
cx="148.56323"
|
||||
id="circle2815-1"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="5.5885572"
|
||||
cy="-138.96277"
|
||||
cx="148.47057"
|
||||
id="circle2817-2"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 165.37221,132.04792 c -13.56247,1.07588 -26.44469,-1.86657 -28.8315,-4.2353 3.66971,7.76739 7.36956,15.52164 12.83096,22.50826 4.81955,6.16551 18.40505,6.05009 26.85993,2.94516 7.00543,-2.57263 17.6863,-9.16395 15.3865,-16.26362 -2.74364,-8.46985 -17.37063,-5.65856 -26.24589,-4.9545 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:0.285336;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2834-7"
|
||||
sodipodi:nodetypes="scsaas" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Texts"
|
||||
style="fill:#ffffff">
|
||||
<g
|
||||
aria-label="A Tweak Tool For GNOME Shell"
|
||||
id="text477"
|
||||
style="font-weight:bold;font-size:5.65169px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';text-align:center;text-anchor:middle;fill:#f1f5ff;stroke-width:0.141294">
|
||||
<path
|
||||
d="m 213.93517,249.73424 h -2.20416 l -0.47474,1.05687 h -0.43518 l 1.80854,-3.95619 h 0.41257 l 1.80854,3.95619 h -0.44083 z m -0.15259,-0.3391 -0.94949,-2.12504 -0.94948,2.12504 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path439" />
|
||||
<path
|
||||
d="m 217.7557,247.19663 h -1.39031 v -0.36171 h 3.19885 v 0.36171 h -1.39031 v 3.59448 h -0.41823 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path441" />
|
||||
<path
|
||||
d="m 224.31731,247.81832 -1.12469,2.97279 h -0.37866 l -0.93818,-2.43588 -0.93818,2.43588 h -0.37866 l -1.11904,-2.97279 h 0.38432 l 0.93253,2.5263 0.95513,-2.5263 h 0.34475 l 0.94949,2.5263 0.94383,-2.5263 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path443" />
|
||||
<path
|
||||
d="M 227.42574,249.42905 H 224.939 q 0.0339,0.46344 0.35605,0.75167 0.32215,0.28259 0.81385,0.28259 0.27693,0 0.50865,-0.0961 0.23172,-0.10173 0.40127,-0.29389 l 0.22607,0.25998 q -0.19781,0.23737 -0.49735,0.36171 -0.29389,0.12434 -0.64995,0.12434 -0.45778,0 -0.81384,-0.19216 -0.3504,-0.19781 -0.54821,-0.54256 -0.19781,-0.34476 -0.19781,-0.77994 0,-0.43518 0.1865,-0.77993 0.19216,-0.34475 0.51996,-0.53691 0.33345,-0.19216 0.74602,-0.19216 0.41257,0 0.74037,0.19216 0.3278,0.19216 0.51431,0.53691 0.1865,0.3391 0.1865,0.77993 z m -1.43553,-1.28859 q -0.42953,0 -0.72341,0.27694 -0.28824,0.27128 -0.3278,0.71211 h 2.10808 q -0.0396,-0.44083 -0.33345,-0.71211 -0.28824,-0.27694 -0.72342,-0.27694 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path445" />
|
||||
<path
|
||||
d="m 229.20603,247.79571 q 0.58212,0 0.89296,0.29389 0.31085,0.28824 0.31085,0.85906 v 1.84245 h -0.38432 v -0.46344 q -0.13564,0.23172 -0.40127,0.36171 -0.25998,0.12999 -0.62168,0.12999 -0.49735,0 -0.79124,-0.23738 -0.29389,-0.23737 -0.29389,-0.62733 0,-0.37867 0.27128,-0.61039 0.27694,-0.23171 0.87601,-0.23171 h 0.94384 v -0.18086 q 0,-0.38431 -0.21477,-0.58212 -0.21476,-0.20346 -0.62734,-0.20346 -0.28258,0 -0.54256,0.0961 -0.25998,0.0904 -0.44648,0.25433 l -0.18085,-0.29954 q 0.22606,-0.19216 0.54256,-0.29389 0.31649,-0.10738 0.6669,-0.10738 z m -0.1413,2.70716 q 0.33911,0 0.58213,-0.15259 0.24302,-0.15825 0.36171,-0.45214 v -0.48605 h -0.93253 q -0.76298,0 -0.76298,0.53126 0,0.25998 0.19781,0.41258 0.19781,0.14694 0.55386,0.14694 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path447" />
|
||||
<path
|
||||
d="m 232.60269,249.29906 -0.7008,0.64429 v 0.84776 h -0.40127 v -4.19356 h 0.40127 v 2.8428 l 1.77463,-1.62203 h 0.49734 l -1.27163,1.21511 1.39032,1.75768 h -0.4917 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path449" />
|
||||
<path
|
||||
d="m 237.23142,247.19663 h -1.39031 v -0.36171 h 3.19885 v 0.36171 h -1.39031 v 3.59448 h -0.41823 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path451" />
|
||||
<path
|
||||
d="m 240.52635,250.81937 q -0.42952,0 -0.77428,-0.19216 -0.34475,-0.19781 -0.54256,-0.54256 -0.19781,-0.34476 -0.19781,-0.77994 0,-0.43518 0.19781,-0.77993 0.19781,-0.34475 0.54256,-0.53691 0.34476,-0.19216 0.77428,-0.19216 0.42953,0 0.77429,0.19216 0.34475,0.19216 0.53691,0.53691 0.1978,0.34475 0.1978,0.77993 0,0.43518 -0.1978,0.77994 -0.19216,0.34475 -0.53691,0.54256 -0.34476,0.19216 -0.77429,0.19216 z m 0,-0.35606 q 0.3165,0 0.56517,-0.14129 0.25433,-0.14695 0.39562,-0.41258 0.14129,-0.26563 0.14129,-0.60473 0,-0.3391 -0.14129,-0.60473 -0.14129,-0.26563 -0.39562,-0.40692 -0.24867,-0.14694 -0.56517,-0.14694 -0.31649,0 -0.57082,0.14694 -0.24867,0.14129 -0.39562,0.40692 -0.14129,0.26563 -0.14129,0.60473 0,0.3391 0.14129,0.60473 0.14695,0.26563 0.39562,0.41258 0.25433,0.14129 0.57082,0.14129 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path453" />
|
||||
<path
|
||||
d="m 244.06997,250.81937 q -0.42953,0 -0.77428,-0.19216 -0.34476,-0.19781 -0.54257,-0.54256 -0.19781,-0.34476 -0.19781,-0.77994 0,-0.43518 0.19781,-0.77993 0.19781,-0.34475 0.54257,-0.53691 0.34475,-0.19216 0.77428,-0.19216 0.42953,0 0.77428,0.19216 0.34475,0.19216 0.53691,0.53691 0.19781,0.34475 0.19781,0.77993 0,0.43518 -0.19781,0.77994 -0.19216,0.34475 -0.53691,0.54256 -0.34475,0.19216 -0.77428,0.19216 z m 0,-0.35606 q 0.31649,0 0.56517,-0.14129 0.25432,-0.14695 0.39561,-0.41258 0.1413,-0.26563 0.1413,-0.60473 0,-0.3391 -0.1413,-0.60473 -0.14129,-0.26563 -0.39561,-0.40692 -0.24868,-0.14694 -0.56517,-0.14694 -0.3165,0 -0.57082,0.14694 -0.24868,0.14129 -0.39562,0.40692 -0.14129,0.26563 -0.14129,0.60473 0,0.3391 0.14129,0.60473 0.14694,0.26563 0.39562,0.41258 0.25432,0.14129 0.57082,0.14129 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path455" />
|
||||
<path
|
||||
d="m 246.39847,246.59755 h 0.40127 v 4.19356 h -0.40127 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path457" />
|
||||
<path
|
||||
d="m 249.90251,247.19663 v 1.55422 h 2.04591 v 0.36171 h -2.04591 v 1.67855 h -0.41823 v -3.95619 h 2.71281 v 0.36171 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path459" />
|
||||
<path
|
||||
d="m 254.09041,250.81937 q -0.42953,0 -0.77429,-0.19216 -0.34475,-0.19781 -0.54256,-0.54256 -0.19781,-0.34476 -0.19781,-0.77994 0,-0.43518 0.19781,-0.77993 0.19781,-0.34475 0.54256,-0.53691 0.34476,-0.19216 0.77429,-0.19216 0.42952,0 0.77428,0.19216 0.34475,0.19216 0.53691,0.53691 0.19781,0.34475 0.19781,0.77993 0,0.43518 -0.19781,0.77994 -0.19216,0.34475 -0.53691,0.54256 -0.34476,0.19216 -0.77428,0.19216 z m 0,-0.35606 q 0.31649,0 0.56517,-0.14129 0.25432,-0.14695 0.39561,-0.41258 0.1413,-0.26563 0.1413,-0.60473 0,-0.3391 -0.1413,-0.60473 -0.14129,-0.26563 -0.39561,-0.40692 -0.24868,-0.14694 -0.56517,-0.14694 -0.3165,0 -0.57082,0.14694 -0.24868,0.14129 -0.39562,0.40692 -0.1413,0.26563 -0.1413,0.60473 0,0.3391 0.1413,0.60473 0.14694,0.26563 0.39562,0.41258 0.25432,0.14129 0.57082,0.14129 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path461" />
|
||||
<path
|
||||
d="m 256.80322,248.40044 q 0.14129,-0.29954 0.41823,-0.45213 0.28258,-0.1526 0.69515,-0.1526 v 0.38997 l -0.0961,-0.006 q -0.46909,0 -0.73472,0.28823 -0.26563,0.28824 -0.26563,0.80819 v 1.51466 h -0.40127 v -2.97279 h 0.38431 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path463" />
|
||||
<path
|
||||
d="m 263.03703,248.81302 h 0.40127 v 1.509 q -0.27694,0.24302 -0.6556,0.37301 -0.37866,0.12999 -0.79689,0.12999 -0.59342,0 -1.06817,-0.25998 -0.47474,-0.25998 -0.74602,-0.71777 -0.27128,-0.46343 -0.27128,-1.03425 0,-0.57083 0.27128,-1.02861 0.27128,-0.46344 0.74602,-0.72342 0.47475,-0.25998 1.07382,-0.25998 0.45214,0 0.8308,0.14695 0.37867,0.14129 0.63864,0.42387 l -0.25997,0.26563 q -0.46909,-0.46343 -1.19251,-0.46343 -0.48039,0 -0.87036,0.21476 -0.38432,0.20911 -0.60473,0.58778 -0.22042,0.37301 -0.22042,0.83645 0,0.46343 0.22042,0.83645 0.22041,0.37301 0.60473,0.58777 0.38431,0.21477 0.86471,0.21477 0.61038,0 1.03426,-0.3052 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path465" />
|
||||
<path
|
||||
d="m 267.92574,246.83492 v 3.95619 h -0.34475 l -2.54326,-3.21016 v 3.21016 h -0.41823 v -3.95619 h 0.34476 l 2.54891,3.21016 v -3.21016 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path467" />
|
||||
<path
|
||||
d="m 270.94374,250.82502 q -0.58777,0 -1.06817,-0.25998 -0.47474,-0.26563 -0.74602,-0.72342 -0.26563,-0.45778 -0.26563,-1.0286 0,-0.57083 0.26563,-1.02861 0.27128,-0.45779 0.74602,-0.71777 0.4804,-0.26563 1.06817,-0.26563 0.58778,0 1.05687,0.25998 0.47474,0.25998 0.74602,0.72342 0.27128,0.45778 0.27128,1.02861 0,0.57082 -0.27128,1.03425 -0.27128,0.45779 -0.74602,0.71777 -0.46909,0.25998 -1.05687,0.25998 z m 0,-0.37301 q 0.46909,0 0.84776,-0.20912 0.37866,-0.21476 0.59342,-0.58777 0.21477,-0.37867 0.21477,-0.8421 0,-0.46344 -0.21477,-0.83645 -0.21476,-0.37867 -0.59342,-0.58778 -0.37867,-0.21476 -0.84776,-0.21476 -0.46909,0 -0.8534,0.21476 -0.37867,0.20911 -0.59908,0.58778 -0.21477,0.37301 -0.21477,0.83645 0,0.46343 0.21477,0.8421 0.22041,0.37301 0.59908,0.58777 0.38431,0.20912 0.8534,0.20912 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path469" />
|
||||
<path
|
||||
d="m 278.06488,246.83492 v 3.95619 h -0.40127 v -3.16495 l -1.55422,2.66195 h -0.19781 l -1.55421,-2.64499 v 3.14799 h -0.40127 v -3.95619 h 0.34475 l 1.71811,2.93323 1.70116,-2.93323 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path471" />
|
||||
<path
|
||||
d="m 282.15105,250.4294 v 0.36171 h -2.79759 v -3.95619 h 2.71281 v 0.36171 h -2.29458 v 1.40727 h 2.04591 v 0.35606 h -2.04591 v 1.46944 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path473" />
|
||||
<path
|
||||
d="m 285.70596,250.82502 q -0.44083,0 -0.84776,-0.14129 -0.40127,-0.1413 -0.62168,-0.37302 l 0.1639,-0.32214 q 0.21476,0.21476 0.57082,0.3504 0.35605,0.12999 0.73472,0.12999 0.53126,0 0.79689,-0.19216 0.26563,-0.19781 0.26563,-0.50865 0,-0.23737 -0.14695,-0.37866 -0.14129,-0.14129 -0.3504,-0.21477 -0.20912,-0.0791 -0.58213,-0.16955 -0.44648,-0.11303 -0.71211,-0.21476 -0.26563,-0.10738 -0.45779,-0.32215 -0.1865,-0.21476 -0.1865,-0.58212 0,-0.29954 0.15824,-0.54256 0.15825,-0.24868 0.48605,-0.39562 0.3278,-0.14695 0.81384,-0.14695 0.3391,0 0.66125,0.0961 0.3278,0.0904 0.56517,0.25433 l -0.14129,0.33345 q -0.24868,-0.1639 -0.53126,-0.24302 -0.28259,-0.0848 -0.55387,-0.0848 -0.51995,0 -0.78558,0.20346 -0.25998,0.19781 -0.25998,0.51431 0,0.23737 0.14129,0.38431 0.14695,0.14129 0.36171,0.22042 0.22042,0.0735 0.58778,0.16389 0.43518,0.10739 0.70081,0.21477 0.27128,0.10173 0.45778,0.31649 0.18651,0.20912 0.18651,0.57082 0,0.29954 -0.1639,0.54822 -0.15825,0.24302 -0.4917,0.38997 -0.33345,0.14129 -0.81949,0.14129 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path475" />
|
||||
<path
|
||||
d="m 289.52085,247.79571 q 0.55952,0 0.88732,0.3278 0.33345,0.32215 0.33345,0.94383 v 1.72377 h -0.40127 v -1.68421 q 0,-0.46344 -0.23172,-0.70646 -0.23172,-0.24302 -0.66125,-0.24302 -0.48039,0 -0.76298,0.28824 -0.27693,0.28258 -0.27693,0.78558 v 1.55987 h -0.40127 v -4.19356 h 0.40127 v 1.74072 q 0.1639,-0.25997 0.45213,-0.40127 0.28824,-0.14129 0.66125,-0.14129 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path477" />
|
||||
<path
|
||||
d="m 294.43217,249.42905 h -2.48674 q 0.0339,0.46344 0.35606,0.75167 0.32214,0.28259 0.81384,0.28259 0.27693,0 0.50865,-0.0961 0.23172,-0.10173 0.40127,-0.29389 l 0.22607,0.25998 q -0.19781,0.23737 -0.49735,0.36171 -0.29389,0.12434 -0.64994,0.12434 -0.45779,0 -0.81385,-0.19216 -0.3504,-0.19781 -0.54821,-0.54256 -0.19781,-0.34476 -0.19781,-0.77994 0,-0.43518 0.18651,-0.77993 0.19215,-0.34475 0.51995,-0.53691 0.33345,-0.19216 0.74602,-0.19216 0.41258,0 0.74038,0.19216 0.32779,0.19216 0.5143,0.53691 0.18651,0.3391 0.18651,0.77993 z m -1.43553,-1.28859 q -0.42952,0 -0.72341,0.27694 -0.28824,0.27128 -0.3278,0.71211 h 2.10808 q -0.0396,-0.44083 -0.33345,-0.71211 -0.28824,-0.27694 -0.72342,-0.27694 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path479" />
|
||||
<path
|
||||
d="m 295.25732,246.59755 h 0.40127 v 4.19356 h -0.40127 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path481" />
|
||||
<path
|
||||
d="m 296.77762,246.59755 h 0.40127 v 4.19356 h -0.40127 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path483" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="JustPerfection"
|
||||
id="text423"
|
||||
style="font-weight:bold;font-size:9.00219px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#f1f5ff;stroke-width:0.225056">
|
||||
<path
|
||||
d="m 222.39783,237.12855 q -0.60314,0 -1.11627,-0.23406 -0.50412,-0.24306 -0.8282,-0.67516 l 0.66616,-0.8012 q 0.52213,0.72018 1.25131,0.72018 0.98124,0 0.98124,-1.16128 v -3.2588 h -2.24155 V 230.737 h 3.41183 v 4.17701 q 0,1.10727 -0.54013,1.66541 -0.54013,0.54913 -1.58439,0.54913 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path410" />
|
||||
<path
|
||||
d="m 230.70686,232.23136 v 4.80717 h -1.07126 v -0.61215 q -0.27007,0.32408 -0.67517,0.50412 -0.4051,0.17104 -0.87321,0.17104 -0.96323,0 -1.52137,-0.53113 -0.54913,-0.54013 -0.54913,-1.59338 v -2.74567 h 1.12527 v 2.59263 q 0,0.64816 0.28807,0.97224 0.29707,0.31507 0.8372,0.31507 0.60315,0 0.95424,-0.36909 0.36008,-0.37809 0.36008,-1.08026 v -2.43059 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path412" />
|
||||
<path
|
||||
d="m 233.66858,237.10154 q -0.58515,0 -1.14328,-0.15303 -0.55814,-0.15304 -0.89122,-0.3871 l 0.43211,-0.85521 q 0.32408,0.21606 0.77419,0.35109 0.45911,0.12603 0.90021,0.12603 1.00825,0 1.00825,-0.53113 0,-0.25206 -0.26106,-0.35108 -0.25207,-0.099 -0.8192,-0.18905 -0.59415,-0.09 -0.97224,-0.20705 -0.36909,-0.11703 -0.64816,-0.4051 -0.27006,-0.29707 -0.27006,-0.8192 0,-0.68416 0.56713,-1.08926 0.57615,-0.4141 1.54838,-0.4141 0.49512,0 0.99024,0.11702 0.49512,0.10803 0.8102,0.29708 l -0.43211,0.8552 q -0.61214,-0.36008 -1.37733,-0.36008 -0.49512,0 -0.75618,0.15303 -0.25207,0.14404 -0.25207,0.3871 0,0.27006 0.27007,0.38709 0.27907,0.10803 0.85521,0.20705 0.57614,0.09 0.94523,0.20705 0.36909,0.11703 0.63015,0.3961 0.27007,0.27907 0.27007,0.79219 0,0.67517 -0.58515,1.08027 -0.58514,0.40509 -1.59338,0.40509 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path414" />
|
||||
<path
|
||||
d="m 239.70904,236.77746 q -0.19805,0.16204 -0.48612,0.24306 -0.27907,0.081 -0.59414,0.081 -0.7922,0 -1.2243,-0.4141 -0.43211,-0.4141 -0.43211,-1.20629 v -2.31356 h -0.79219 v -0.90022 h 0.79219 v -1.09827 h 1.12528 v 1.09827 h 1.28731 v 0.90022 h -1.28731 v 2.28655 q 0,0.35109 0.17104,0.54013 0.17104,0.18005 0.49512,0.18005 0.37809,0 0.63015,-0.19805 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path416" />
|
||||
<path
|
||||
d="m 243.33692,230.737 q 0.8192,0 1.42235,0.27006 0.61215,0.27007 0.93622,0.77419 0.32408,0.50412 0.32408,1.19729 0,0.68417 -0.32408,1.19729 -0.32407,0.50412 -0.93622,0.77419 -0.60315,0.27007 -1.42235,0.27007 h -1.42234 v 1.81844 h -1.17029 V 230.737 Z m -0.054,3.49285 q 0.76518,0 1.16128,-0.32408 0.3961,-0.32408 0.3961,-0.92723 0,-0.60315 -0.3961,-0.92722 -0.3961,-0.32408 -1.16128,-0.32408 h -1.36833 v 2.50261 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path418" />
|
||||
<path
|
||||
d="m 251.58293,234.66195 q 0,0.11703 -0.018,0.33308 h -3.77192 q 0.099,0.53113 0.51312,0.84621 0.42311,0.30607 1.04426,0.30607 0.79219,0 1.30532,-0.52213 l 0.60314,0.69317 q -0.32408,0.3871 -0.8192,0.58515 -0.49512,0.19804 -1.11627,0.19804 -0.79219,0 -1.39534,-0.31507 -0.60314,-0.31508 -0.93622,-0.87322 -0.32408,-0.56713 -0.32408,-1.27831 0,-0.70217 0.31507,-1.2603 0.32408,-0.56714 0.89122,-0.88222 0.56714,-0.31507 1.27831,-0.31507 0.70217,0 1.2513,0.31507 0.55814,0.30608 0.86422,0.87322 0.31507,0.55813 0.31507,1.29631 z m -2.43059,-1.58438 q -0.54013,0 -0.91822,0.32407 -0.36909,0.31508 -0.45011,0.84621 h 2.72766 q -0.072,-0.52213 -0.44111,-0.84621 -0.36909,-0.32407 -0.91822,-0.32407 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path420" />
|
||||
<path
|
||||
d="m 253.73445,232.93353 q 0.48612,-0.75618 1.71042,-0.75618 v 1.07126 q -0.14403,-0.027 -0.26106,-0.027 -0.65716,0 -1.02625,0.38709 -0.36909,0.3781 -0.36909,1.09827 v 2.33157 h -1.12528 v -4.80717 h 1.07126 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path422" />
|
||||
<path
|
||||
d="m 258.39759,231.20511 q -0.71118,0 -0.71118,0.77419 v 0.28807 h 1.32333 v 0.90022 h -1.28732 v 3.87094 h -1.12527 v -3.87094 h -0.79219 v -0.90022 h 0.79219 v -0.30608 q 0,-0.77418 0.45011,-1.21529 0.45011,-0.45011 1.26931,-0.45011 0.64816,0 1.01725,0.26106 l -0.31508,0.84621 q -0.28807,-0.19805 -0.62115,-0.19805 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path424" />
|
||||
<path
|
||||
d="m 264.21301,234.66195 q 0,0.11703 -0.018,0.33308 h -3.77192 q 0.099,0.53113 0.51313,0.84621 0.4231,0.30607 1.04425,0.30607 0.7922,0 1.30532,-0.52213 l 0.60315,0.69317 q -0.32408,0.3871 -0.8192,0.58515 -0.49512,0.19804 -1.11627,0.19804 -0.7922,0 -1.39534,-0.31507 -0.60315,-0.31508 -0.93623,-0.87322 -0.32408,-0.56713 -0.32408,-1.27831 0,-0.70217 0.31508,-1.2603 0.32408,-0.56714 0.89121,-0.88222 0.56714,-0.31507 1.27831,-0.31507 0.70217,0 1.25131,0.31507 0.55813,0.30608 0.86421,0.87322 0.31508,0.55813 0.31508,1.29631 z m -2.4306,-1.58438 q -0.54013,0 -0.91822,0.32407 -0.36909,0.31508 -0.45011,0.84621 h 2.72766 q -0.072,-0.52213 -0.4411,-0.84621 -0.36909,-0.32407 -0.91823,-0.32407 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path426" />
|
||||
<path
|
||||
d="m 267.4988,237.10154 q -0.74718,0 -1.34133,-0.31507 -0.59414,-0.31508 -0.92722,-0.87322 -0.33308,-0.56713 -0.33308,-1.27831 0,-0.71117 0.33308,-1.2693 0.33308,-0.55814 0.91822,-0.87322 0.59415,-0.31507 1.35033,-0.31507 0.71117,0 1.2423,0.28807 0.54013,0.28807 0.8102,0.8282 l -0.86421,0.50412 q -0.20705,-0.33308 -0.52213,-0.49512 -0.30607,-0.17104 -0.67516,-0.17104 -0.63016,0 -1.04426,0.4141 -0.4141,0.4051 -0.4141,1.08926 0,0.68417 0.4051,1.09827 0.4141,0.4051 1.05326,0.4051 0.36909,0 0.67516,-0.16204 0.31508,-0.17104 0.52213,-0.50412 l 0.86421,0.50412 q -0.27907,0.54013 -0.8192,0.8372 -0.53113,0.28807 -1.2333,0.28807 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path428" />
|
||||
<path
|
||||
d="m 273.47625,236.77746 q -0.19805,0.16204 -0.48612,0.24306 -0.27907,0.081 -0.59414,0.081 -0.7922,0 -1.2243,-0.4141 -0.43211,-0.4141 -0.43211,-1.20629 v -2.31356 h -0.79219 v -0.90022 h 0.79219 v -1.09827 h 1.12528 v 1.09827 h 1.28731 v 0.90022 h -1.28731 v 2.28655 q 0,0.35109 0.17104,0.54013 0.17104,0.18005 0.49512,0.18005 0.37809,0 0.63015,-0.19805 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path430" />
|
||||
<path
|
||||
d="m 274.40347,232.23136 h 1.12527 v 4.80717 h -1.12527 z m 0.56714,-0.79219 q -0.30608,0 -0.51313,-0.18905 -0.20705,-0.19805 -0.20705,-0.48612 0,-0.28807 0.20705,-0.47711 0.20705,-0.19805 0.51313,-0.19805 0.30607,0 0.51312,0.18904 0.20705,0.18005 0.20705,0.45912 0,0.29707 -0.20705,0.50412 -0.19805,0.19805 -0.51312,0.19805 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path432" />
|
||||
<path
|
||||
d="m 279.16563,237.10154 q -0.72918,0 -1.31432,-0.31507 -0.58514,-0.31508 -0.91823,-0.87322 -0.32407,-0.56713 -0.32407,-1.27831 0,-0.71117 0.32407,-1.2693 0.33309,-0.55814 0.91823,-0.87322 0.58514,-0.31507 1.31432,-0.31507 0.73818,0 1.32332,0.31507 0.58514,0.31508 0.90922,0.87322 0.33308,0.55813 0.33308,1.2693 0,0.71118 -0.33308,1.27831 -0.32408,0.55814 -0.90922,0.87322 -0.58514,0.31507 -1.32332,0.31507 z m 0,-0.96323 q 0.62115,0 1.02625,-0.4141 0.4051,-0.4141 0.4051,-1.08927 0,-0.67516 -0.4051,-1.08926 -0.4051,-0.4141 -1.02625,-0.4141 -0.62115,0 -1.02625,0.4141 -0.3961,0.4141 -0.3961,1.08926 0,0.67517 0.3961,1.08927 0.4051,0.4141 1.02625,0.4141 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path434" />
|
||||
<path
|
||||
d="m 285.53918,232.17735 q 0.90922,0 1.45836,0.53113 0.54913,0.53112 0.54913,1.57538 v 2.75467 h -1.12527 v -2.61064 q 0,-0.63015 -0.29708,-0.94523 -0.29707,-0.32408 -0.8462,-0.32408 -0.62115,0 -0.98124,0.3781 -0.36009,0.36909 -0.36009,1.07126 v 2.43059 h -1.12527 v -4.80717 h 1.07126 v 0.62115 q 0.27907,-0.33308 0.70217,-0.50412 0.4231,-0.17104 0.95423,-0.17104 z"
|
||||
style="font-weight:600;-inkscape-font-specification:'Montserrat Semi-Bold'"
|
||||
id="path436" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="GNOME Shell Extension"
|
||||
id="text481"
|
||||
style="font-weight:bold;font-size:4.20629px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#f1f5ff;stroke-width:0.11968">
|
||||
<path
|
||||
d="m 231.55731,241.40959 h 0.29864 v 1.12308 q -0.2061,0.18087 -0.48793,0.27761 -0.28182,0.0967 -0.59308,0.0967 -0.44166,0 -0.79499,-0.19349 -0.35333,-0.19349 -0.55523,-0.5342 -0.2019,-0.34492 -0.2019,-0.76975 0,-0.42484 0.2019,-0.76555 0.2019,-0.34491 0.55523,-0.5384 0.35333,-0.19349 0.79919,-0.19349 0.33651,0 0.61833,0.10936 0.28182,0.10516 0.47531,0.31547 l -0.19349,0.1977 q -0.34912,-0.34492 -0.88753,-0.34492 -0.35753,0 -0.64777,0.15984 -0.28602,0.15564 -0.45007,0.43746 -0.16404,0.27761 -0.16404,0.62253 0,0.34491 0.16404,0.62253 0.16405,0.27761 0.45007,0.43745 0.28603,0.15984 0.64357,0.15984 0.45428,0 0.76975,-0.22714 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path371" />
|
||||
<path
|
||||
d="m 235.19575,239.93739 v 2.9444 h -0.25658 l -1.89283,-2.38917 v 2.38917 h -0.31127 v -2.9444 h 0.25659 l 1.89703,2.38917 v -2.38917 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path373" />
|
||||
<path
|
||||
d="m 237.44191,242.90703 q -0.43746,0 -0.79499,-0.19349 -0.35333,-0.1977 -0.55523,-0.53841 -0.1977,-0.34071 -0.1977,-0.76554 0,-0.42484 0.1977,-0.76555 0.2019,-0.34071 0.55523,-0.53419 0.35753,-0.1977 0.79499,-0.1977 0.43745,0 0.78658,0.19349 0.35332,0.19349 0.55523,0.5384 0.2019,0.34071 0.2019,0.76555 0,0.42483 -0.2019,0.76975 -0.20191,0.34071 -0.55523,0.5342 -0.34913,0.19349 -0.78658,0.19349 z m 0,-0.27762 q 0.34912,0 0.63094,-0.15563 0.28182,-0.15984 0.44166,-0.43745 0.15984,-0.28183 0.15984,-0.62674 0,-0.34492 -0.15984,-0.62253 -0.15984,-0.28182 -0.44166,-0.43746 -0.28182,-0.15984 -0.63094,-0.15984 -0.34912,0 -0.63515,0.15984 -0.28182,0.15564 -0.44587,0.43746 -0.15984,0.27761 -0.15984,0.62253 0,0.34491 0.15984,0.62674 0.16405,0.27761 0.44587,0.43745 0.28603,0.15563 0.63515,0.15563 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path375" />
|
||||
<path
|
||||
d="m 242.74184,239.93739 v 2.9444 h -0.29865 v -2.35552 l -1.15673,1.98116 h -0.14722 l -1.15673,-1.96854 v 2.3429 h -0.29865 v -2.9444 h 0.25659 l 1.27871,2.18306 1.26609,-2.18306 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path377" />
|
||||
<path
|
||||
d="m 245.78298,242.61259 v 0.2692 h -2.08211 v -2.9444 h 2.01902 v 0.2692 h -1.70775 v 1.04737 h 1.52267 v 0.26499 h -1.52267 v 1.09364 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path379" />
|
||||
<path
|
||||
d="m 248.42874,242.90703 q -0.32809,0 -0.63095,-0.10516 -0.29864,-0.10516 -0.46269,-0.27761 l 0.12199,-0.23976 q 0.15983,0.15984 0.42483,0.26079 0.265,0.0967 0.54682,0.0967 0.39539,0 0.59309,-0.14301 0.19769,-0.14722 0.19769,-0.37857 0,-0.17666 -0.10936,-0.28182 -0.10516,-0.10516 -0.26079,-0.15984 -0.15564,-0.0589 -0.43325,-0.12619 -0.3323,-0.0841 -0.52999,-0.15984 -0.1977,-0.0799 -0.34071,-0.23975 -0.13881,-0.15984 -0.13881,-0.43325 0,-0.22294 0.11778,-0.40381 0.11777,-0.18507 0.36174,-0.29444 0.24396,-0.10936 0.6057,-0.10936 0.25238,0 0.49214,0.0715 0.24396,0.0673 0.42063,0.18928 l -0.10516,0.24817 q -0.18508,-0.12198 -0.39539,-0.18087 -0.21032,-0.0631 -0.41222,-0.0631 -0.38698,0 -0.58467,0.15142 -0.19349,0.14722 -0.19349,0.38277 0,0.17667 0.10516,0.28603 0.10936,0.10516 0.2692,0.16405 0.16404,0.0547 0.43745,0.12198 0.32389,0.0799 0.52158,0.15984 0.2019,0.0757 0.34071,0.23555 0.13881,0.15563 0.13881,0.42484 0,0.22293 -0.12198,0.40801 -0.11778,0.18087 -0.36595,0.29023 -0.24817,0.10516 -0.60991,0.10516 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path381" />
|
||||
<path
|
||||
d="m 251.26798,240.65246 q 0.41643,0 0.66039,0.24396 0.24817,0.23976 0.24817,0.70245 v 1.28292 h -0.29864 v -1.25347 q 0,-0.34492 -0.17246,-0.52579 -0.17246,-0.18087 -0.49214,-0.18087 -0.35753,0 -0.56785,0.21452 -0.20611,0.21031 -0.20611,0.58467 v 1.16094 h -0.29864 v -3.12107 h 0.29864 v 1.29554 q 0.12199,-0.19349 0.33651,-0.29865 0.21452,-0.10515 0.49213,-0.10515 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path383" />
|
||||
<path
|
||||
d="m 254.92325,241.86807 h -1.85077 q 0.0252,0.34492 0.265,0.55944 0.23976,0.21032 0.60571,0.21032 0.20611,0 0.37856,-0.0715 0.17246,-0.0757 0.29865,-0.21873 l 0.16825,0.19349 q -0.14722,0.17666 -0.37015,0.2692 -0.21873,0.0925 -0.48373,0.0925 -0.34071,0 -0.6057,-0.14301 -0.26079,-0.14722 -0.40801,-0.40381 -0.14722,-0.25658 -0.14722,-0.58046 0,-0.32389 0.13881,-0.58047 0.14301,-0.25659 0.38697,-0.3996 0.24818,-0.14301 0.55523,-0.14301 0.30706,0 0.55103,0.14301 0.24396,0.14301 0.38277,0.3996 0.13881,0.25238 0.13881,0.58047 z m -1.0684,-0.95903 q -0.31967,0 -0.5384,0.20611 -0.21452,0.2019 -0.24397,0.52999 h 1.56895 q -0.0294,-0.32809 -0.24817,-0.52999 -0.21452,-0.20611 -0.53841,-0.20611 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path385" />
|
||||
<path
|
||||
d="m 255.53737,239.76072 h 0.29865 v 3.12107 h -0.29865 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path387" />
|
||||
<path
|
||||
d="m 256.66886,239.76072 h 0.29865 v 3.12107 h -0.29865 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path389" />
|
||||
<path
|
||||
d="m 261.0476,242.61259 v 0.2692 h -2.08211 v -2.9444 h 2.01902 v 0.2692 h -1.70776 v 1.04737 h 1.52268 v 0.26499 h -1.52268 v 1.09364 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path391" />
|
||||
<path
|
||||
d="m 263.06242,242.88179 -0.70245,-0.92538 -0.70666,0.92538 h -0.3365 l 0.87491,-1.1357 -0.83285,-1.07681 h 0.3365 l 0.6646,0.8665 0.66459,-0.8665 h 0.32809 l -0.83284,1.07681 0.88332,1.1357 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path393" />
|
||||
<path
|
||||
d="m 265.06461,242.74719 q -0.0841,0.0757 -0.21031,0.11778 -0.12198,0.0378 -0.25659,0.0378 -0.31126,0 -0.47951,-0.16825 -0.16825,-0.16825 -0.16825,-0.47531 v -1.3376 h -0.3954 v -0.25238 h 0.3954 v -0.48372 h 0.29864 v 0.48372 h 0.67301 v 0.25238 h -0.67301 v 1.32077 q 0,0.1977 0.0968,0.30286 0.10095,0.10095 0.28602,0.10095 0.0925,0 0.17667,-0.0294 0.0883,-0.0294 0.15143,-0.0841 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path395" />
|
||||
<path
|
||||
d="m 267.45379,241.86807 h -1.85077 q 0.0252,0.34492 0.265,0.55944 0.23976,0.21032 0.6057,0.21032 0.20611,0 0.37857,-0.0715 0.17246,-0.0757 0.29865,-0.21873 l 0.16825,0.19349 q -0.14722,0.17666 -0.37016,0.2692 -0.21872,0.0925 -0.48372,0.0925 -0.34071,0 -0.6057,-0.14301 -0.26079,-0.14722 -0.40801,-0.40381 -0.14723,-0.25658 -0.14723,-0.58046 0,-0.32389 0.13881,-0.58047 0.14302,-0.25659 0.38698,-0.3996 0.24817,-0.14301 0.55523,-0.14301 0.30706,0 0.55103,0.14301 0.24396,0.14301 0.38277,0.3996 0.13881,0.25238 0.13881,0.58047 z m -1.0684,-0.95903 q -0.31968,0 -0.5384,0.20611 -0.21452,0.2019 -0.24397,0.52999 h 1.56895 q -0.0294,-0.32809 -0.24817,-0.52999 -0.21452,-0.20611 -0.53841,-0.20611 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path397" />
|
||||
<path
|
||||
d="m 269.19519,240.65246 q 0.41643,0 0.66039,0.24396 0.24817,0.23976 0.24817,0.70245 v 1.28292 h -0.29864 v -1.25347 q 0,-0.34492 -0.17246,-0.52579 -0.17246,-0.18087 -0.49214,-0.18087 -0.35753,0 -0.56785,0.21452 -0.20611,0.21031 -0.20611,0.58467 v 1.16094 h -0.29864 v -2.21251 h 0.28603 v 0.40801 q 0.12198,-0.2019 0.3365,-0.31126 0.21873,-0.11357 0.50475,-0.11357 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path399" />
|
||||
<path
|
||||
d="m 271.50866,242.90282 q -0.26921,0 -0.51738,-0.0757 -0.24396,-0.0799 -0.38277,-0.1977 l 0.1346,-0.23555 q 0.13881,0.10936 0.34912,0.18087 0.21032,0.0673 0.43746,0.0673 0.30285,0 0.44586,-0.0925 0.14722,-0.0967 0.14722,-0.2692 0,-0.12198 -0.0799,-0.18928 -0.0799,-0.0715 -0.2019,-0.10516 -0.12198,-0.0379 -0.32388,-0.0715 -0.2692,-0.0505 -0.43325,-0.10095 -0.16405,-0.0547 -0.28182,-0.18087 -0.11357,-0.12619 -0.11357,-0.34912 0,-0.27762 0.23134,-0.45428 0.23135,-0.17666 0.64357,-0.17666 0.21452,0 0.42904,0.0589 0.21452,0.0547 0.35333,0.14722 l -0.1304,0.23976 q -0.27341,-0.18928 -0.65197,-0.18928 -0.28603,0 -0.43325,0.10095 -0.14301,0.10095 -0.14301,0.265 0,0.12619 0.0799,0.2019 0.0841,0.0757 0.20611,0.11357 0.12199,0.0336 0.33651,0.0715 0.26499,0.0505 0.42483,0.10095 0.15984,0.0505 0.27341,0.17245 0.11357,0.12199 0.11357,0.33651 0,0.29023 -0.24396,0.46269 -0.23976,0.16825 -0.6688,0.16825 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path401" />
|
||||
<path
|
||||
d="m 272.97245,240.66928 h 0.29864 v 2.21251 h -0.29864 z m 0.15142,-0.48372 q -0.0925,0 -0.15563,-0.0631 -0.0631,-0.0631 -0.0631,-0.15142 0,-0.0841 0.0631,-0.14722 0.0631,-0.0631 0.15563,-0.0631 0.0925,0 0.15563,0.0631 0.0631,0.0589 0.0631,0.14301 0,0.0925 -0.0631,0.15563 -0.0631,0.0631 -0.15563,0.0631 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path403" />
|
||||
<path
|
||||
d="m 275.00829,242.90282 q -0.31968,0 -0.57627,-0.14301 -0.25658,-0.14722 -0.4038,-0.40381 -0.14722,-0.25658 -0.14722,-0.58046 0,-0.32389 0.14722,-0.58047 0.14722,-0.25659 0.4038,-0.3996 0.25659,-0.14301 0.57627,-0.14301 0.31967,0 0.57626,0.14301 0.25658,0.14301 0.3996,0.3996 0.14722,0.25658 0.14722,0.58047 0,0.32388 -0.14722,0.58046 -0.14302,0.25659 -0.3996,0.40381 -0.25659,0.14301 -0.57626,0.14301 z m 0,-0.26499 q 0.23555,0 0.42063,-0.10516 0.18928,-0.10937 0.29444,-0.30706 0.10515,-0.1977 0.10515,-0.45007 0,-0.25238 -0.10515,-0.45008 -0.10516,-0.19769 -0.29444,-0.30285 -0.18508,-0.10936 -0.42063,-0.10936 -0.23556,0 -0.42484,0.10936 -0.18508,0.10516 -0.29444,0.30285 -0.10516,0.1977 -0.10516,0.45008 0,0.25237 0.10516,0.45007 0.10936,0.19769 0.29444,0.30706 0.18928,0.10516 0.42484,0.10516 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path405" />
|
||||
<path
|
||||
d="m 277.86856,240.65246 q 0.41643,0 0.66039,0.24396 0.24817,0.23976 0.24817,0.70245 v 1.28292 h -0.29864 v -1.25347 q 0,-0.34492 -0.17246,-0.52579 -0.17246,-0.18087 -0.49214,-0.18087 -0.35753,0 -0.56785,0.21452 -0.2061,0.21031 -0.2061,0.58467 v 1.16094 h -0.29865 v -2.21251 h 0.28603 v 0.40801 q 0.12198,-0.2019 0.3365,-0.31126 0.21873,-0.11357 0.50475,-0.11357 z"
|
||||
style="font-weight:normal;-inkscape-font-specification:Montserrat"
|
||||
id="path407" />
|
||||
</g>
|
||||
<g
|
||||
id="g1281-5"
|
||||
transform="matrix(0.05880166,0,0,0.05880166,239.05746,254.65861)"
|
||||
style="display:inline;fill:#2a7fff;stroke:#4d4d4d">
|
||||
<path
|
||||
d="m 358.50961,23.535925 c -9.73198,-1.482051 -19.8536,40.029813 -38.81109,48.085324 -33.33662,14.165563 -78.46704,-6.995677 -108.24283,-9.561912 -39.29554,-3.386696 -89.13281,18.548717 -77.26504,59.549263 22.45556,64.39908 105.6144,94.7299 161.12398,74.31321 53.65785,-19.73562 100.11085,-81.60258 72.08558,-155.632925 -2.23825,-5.912484 -4.96737,-15.550618 -8.89064,-16.75296 z"
|
||||
style="fill:#0078d2;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2740-6-3"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<path
|
||||
d="M 365.85704,34.501773 C 344.85618,-25.701055 362.04703,108.88708 299.23018,82.421911 221.81181,49.80498 147.35533,54.411221 147.82099,110.54587 c 0.46346,55.86963 93.90941,90.36201 145.26281,73.03758 52.39393,-17.67546 96.07633,-78.88305 72.77801,-149.068 -10e-4,-0.0042 1.3e-4,-0.01111 -0.004,-0.01389 -2e-4,-9.7e-5 -6.1e-4,2.09e-4 -6.1e-4,2.09e-4 z"
|
||||
style="fill:url(#linearGradient1327-3);fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2747-2-5-3"
|
||||
sodipodi:nodetypes="sssasass" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="13.793529"
|
||||
cy="-142.51395"
|
||||
cx="150.66051"
|
||||
id="path2745-9-6-6"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="8.1711063"
|
||||
cy="-139.59805"
|
||||
cx="148.56323"
|
||||
id="circle2815-1-2"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="5.5885572"
|
||||
cy="-138.96277"
|
||||
cx="148.47057"
|
||||
id="circle2817-2-9"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 165.37221,132.04792 c -13.56247,1.07588 -26.44469,-1.86657 -28.8315,-4.2353 3.66971,7.76739 7.36956,15.52164 12.83096,22.50826 4.81955,6.16551 18.40505,6.05009 26.85993,2.94516 7.00543,-2.57263 17.6863,-9.16395 15.3865,-16.26362 -2.74364,-8.46985 -17.37063,-5.65856 -26.24589,-4.9545 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#002c53;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2834-7-1"
|
||||
sodipodi:nodetypes="scsaas" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
d="m -370.46178,171.64423 c 9.20468,-15.67644 124.59309,23.7413 170.08337,-10.26768 44.20277,-33.04638 25.34666,-110.021154 56.33066,-155.6932284 40.89001,-60.2740906 130.352104,-106.1819916 175.312243,-41.4393206 66.17727,107.159514 17.26223,257.368639 -74.20426,313.854439 -91.467023,56.48614 -240.355663,52.14924 -313.855823,-74.20666 -5.87017,-10.09149 -16.50972,-25.2238 -13.66614,-32.24761 z"
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.52916666;stroke-dasharray:none"
|
||||
id="path2174"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<path
|
||||
d="m -324.34427,260.85914 c -61.85526,-100.18919 111.0693,81.13209 146.2573,-39.72689 C -134.71974,72.180033 -41.439777,-29.193734 38.489144,36.821636 118.04072,102.52533 64.166052,285.63785 -23.474124,340.08622 -111.5609,394.81202 -250.8398,375.98501 -324.33023,260.88189 c -0.004,-0.006 -0.0161,-0.0128 -0.0155,-0.0216 9e-5,-4e-4 9.3e-4,-5.3e-4 9.3e-4,-5.3e-4 z"
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.52916666;stroke-dasharray:none"
|
||||
id="path2176"
|
||||
sodipodi:nodetypes="sssasass" />
|
||||
<path
|
||||
d="m 379.48531,152.8042 c 9.20468,-15.67644 124.59309,23.7413 170.08337,-10.26768 44.20277,-33.04638 25.34666,-110.021152 56.33066,-155.693226 40.89001,-60.274091 130.3521,-106.181994 175.31224,-41.439321 66.17727,107.159514 17.26223,257.368637 -74.20426,313.854437 -91.46702,56.48614 -240.35566,52.14924 -313.85582,-74.20666 -5.87017,-10.09149 -16.50972,-25.2238 -13.66614,-32.24761 z"
|
||||
style="display:inline;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.52916666;stroke-dasharray:none"
|
||||
id="path984"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Toggle Button">
|
||||
<g
|
||||
id="g2582"
|
||||
transform="rotate(-8.4909497,423.15932,323.45475)">
|
||||
<circle
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="path1089"
|
||||
cx="121.40549"
|
||||
cy="223.38007"
|
||||
r="25.730021" />
|
||||
<rect
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="rect1197"
|
||||
width="117.00791"
|
||||
height="51.503757"
|
||||
x="30.149458"
|
||||
y="197.62819"
|
||||
ry="25.751879" />
|
||||
</g>
|
||||
<g
|
||||
id="g2578"
|
||||
transform="rotate(-15,442.10266,205.76338)">
|
||||
<circle
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="circle1205"
|
||||
cx="-417.97107"
|
||||
cy="205.76338"
|
||||
r="18.957783"
|
||||
transform="scale(-1,1)" />
|
||||
<rect
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="rect1207"
|
||||
width="86.210991"
|
||||
height="37.947773"
|
||||
x="-485.20816"
|
||||
y="186.78949"
|
||||
ry="18.973886"
|
||||
transform="scale(-1,1)" />
|
||||
</g>
|
||||
<g
|
||||
id="g2586"
|
||||
transform="rotate(3.6234891,584.37411,310.28739)">
|
||||
<circle
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="circle1211"
|
||||
cx="-29.559757"
|
||||
cy="134.82796"
|
||||
r="18.513325"
|
||||
transform="scale(-1,1)" />
|
||||
<rect
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="rect1213"
|
||||
width="84.189804"
|
||||
height="37.058105"
|
||||
x="-95.220505"
|
||||
y="116.2989"
|
||||
ry="18.529053"
|
||||
transform="scale(-1,1)" />
|
||||
</g>
|
||||
<g
|
||||
id="g2574"
|
||||
transform="rotate(15,454.40845,68.113211)">
|
||||
<circle
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="circle1438"
|
||||
cx="467.69519"
|
||||
cy="68.113213"
|
||||
r="10.438065" />
|
||||
<rect
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.529167;stroke-dasharray:none;stop-color:#000000"
|
||||
id="rect1440"
|
||||
width="47.467361"
|
||||
height="20.893864"
|
||||
x="430.67477"
|
||||
y="57.666279"
|
||||
ry="10.446932" />
|
||||
</g>
|
||||
<g
|
||||
id="g2592"
|
||||
transform="matrix(-0.43029548,-0.08657923,-0.08657923,0.43029548,263.0772,-22.117322)">
|
||||
<circle
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.20561;stroke-dasharray:none;stop-color:#000000"
|
||||
id="circle2588"
|
||||
cx="-29.559757"
|
||||
cy="134.82796"
|
||||
r="18.513325"
|
||||
transform="scale(-1,1)" />
|
||||
<rect
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.20561;stroke-dasharray:none;stop-color:#000000"
|
||||
id="rect2590"
|
||||
width="84.189804"
|
||||
height="37.058105"
|
||||
x="-95.220505"
|
||||
y="116.2989"
|
||||
ry="18.529053"
|
||||
transform="scale(-1,1)" />
|
||||
</g>
|
||||
</g>
|
||||
<metadata
|
||||
id="metadata820">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="https://www.gnu.org/licenses/gpl-3.0.html" />
|
||||
<dc:title>Just Perfection Extension Intro</dc:title>
|
||||
<dc:date>2023</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Javad Rahmatzadeh</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
</svg>
|
After Width: | Height: | Size: 50 KiB |
139
extensions/48/just-perfection/data/imgs/logo.svg
Executable file
|
@ -0,0 +1,139 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="140"
|
||||
height="140"
|
||||
viewBox="0 0 37.041666 37.041668"
|
||||
version="1.1"
|
||||
id="svg1787"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2023-12-01)"
|
||||
sodipodi:docname="logo.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<title
|
||||
id="title2446">Just Perfection Extension Logo</title>
|
||||
<defs
|
||||
id="defs1781">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient1325">
|
||||
<stop
|
||||
style="stop-color:#008aff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1321" />
|
||||
<stop
|
||||
style="stop-color:#00afff;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1323" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient1325"
|
||||
id="linearGradient1327-3"
|
||||
x1="289.49686"
|
||||
y1="167.74376"
|
||||
x2="294.37677"
|
||||
y2="61.261528"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8284271"
|
||||
inkscape:cx="116.31907"
|
||||
inkscape:cy="-18.561553"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1048"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<metadata
|
||||
id="metadata1784">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Just Perfection Extension Logo</dc:title>
|
||||
<dc:date>2021</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Javad Rahmatzadeh</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Javad Rahmatzadeh</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<cc:license
|
||||
rdf:resource="https://www.gnu.org/licenses/gpl-3.0.html" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g1281-5"
|
||||
transform="matrix(0.13913718,0,0,0.13913718,-16.836364,3.1419279)"
|
||||
style="display:inline;fill:#2a7fff;stroke:#4d4d4d">
|
||||
<path
|
||||
d="m 358.50961,23.535925 c -9.73198,-1.482051 -19.8536,40.029813 -38.81109,48.085324 -33.33662,14.165563 -78.46704,-6.995677 -108.24283,-9.561912 -39.29554,-3.386696 -89.13281,18.548717 -77.26504,59.549263 22.45556,64.39908 105.6144,94.7299 161.12398,74.31321 53.65785,-19.73562 100.11085,-81.60258 72.08558,-155.632925 -2.23825,-5.912484 -4.96737,-15.550618 -8.89064,-16.75296 z"
|
||||
style="fill:#0078d2;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2740-6-3"
|
||||
sodipodi:nodetypes="cascascc" />
|
||||
<path
|
||||
d="M 365.85704,34.501773 C 344.85618,-25.701055 362.04703,108.88708 299.23018,82.421911 221.81181,49.80498 147.35533,54.411221 147.82099,110.54587 c 0.46346,55.86963 93.90941,90.36201 145.26281,73.03758 52.39393,-17.67546 96.07633,-78.88305 72.77801,-149.068 -10e-4,-0.0042 1.3e-4,-0.01111 -0.004,-0.01389 -2e-4,-9.7e-5 -6.1e-4,2.09e-4 -6.1e-4,2.09e-4 z"
|
||||
style="fill:url(#linearGradient1327-3);fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none"
|
||||
id="path2747-2-5"
|
||||
sodipodi:nodetypes="sssasass" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="13.793529"
|
||||
cy="-142.51395"
|
||||
cx="150.66051"
|
||||
id="path2745-9-6"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="8.1711063"
|
||||
cy="-139.59805"
|
||||
cx="148.56323"
|
||||
id="circle2815-1-2"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<circle
|
||||
transform="rotate(70.776438)"
|
||||
r="5.5885572"
|
||||
cy="-138.96277"
|
||||
cx="148.47057"
|
||||
id="circle2817-2-9"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79375;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 165.37221,132.04792 c -13.56247,1.07588 -26.44469,-1.86657 -28.8315,-4.2353 3.66971,7.76739 7.36956,15.52164 12.83096,22.50826 4.81955,6.16551 18.40505,6.05009 26.85993,2.94516 7.00543,-2.57263 17.6863,-9.16395 15.3865,-16.26362 -2.74364,-8.46985 -17.37063,-5.65856 -26.24589,-4.9545 z"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#002c53;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
|
||||
id="path2834-7-1"
|
||||
sodipodi:nodetypes="scsaas" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
192
extensions/48/just-perfection/data/imgs/support-buymeacoffee.svg
Executable file
After Width: | Height: | Size: 19 KiB |
149
extensions/48/just-perfection/data/imgs/support-crypto.svg
Executable file
|
@ -0,0 +1,149 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="140"
|
||||
height="45"
|
||||
viewBox="0 0 37.041666 11.906252"
|
||||
version="1.1"
|
||||
id="svg1787"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
sodipodi:docname="support-crypto.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<title
|
||||
id="title2446">Just Perfection Super Minimal Desktop Logo</title>
|
||||
<defs
|
||||
id="defs1781">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10"
|
||||
id="linearGradient11"
|
||||
x1="47.199623"
|
||||
y1="19.318071"
|
||||
x2="28.041504"
|
||||
y2="19.318071"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.0184791,-0.10941255)" />
|
||||
<linearGradient
|
||||
id="linearGradient10"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#ff0066;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop10" />
|
||||
<stop
|
||||
style="stop-color:#ff5555;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop11" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="coin-gradient"
|
||||
x1="0.00043946349"
|
||||
x2="0.00043946349"
|
||||
y1="-0.00059563986"
|
||||
y2="63.996321"
|
||||
gradientTransform="scale(0.99994167,1.0000583)"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
id="stop12"
|
||||
offset="0%"
|
||||
style="stop-color:#f9aa4b" />
|
||||
<stop
|
||||
id="stop14"
|
||||
offset="100%"
|
||||
style="stop-color:#f7931a" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8284271"
|
||||
inkscape:cx="68.059028"
|
||||
inkscape:cy="22.45064"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1048"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#ffffff"
|
||||
showborder="true" />
|
||||
<metadata
|
||||
id="metadata1784">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Just Perfection Super Minimal Desktop Logo</dc:title>
|
||||
<dc:date>2020</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:description>The Bitcoin icon:
|
||||
https://www.iconfinder.com/icons/3838998/bitcoin_cryptocurrency_currency_money_finance_icon</dc:description>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-2.2730319,-14.040994)">
|
||||
<rect
|
||||
style="fill:url(#linearGradient11);fill-opacity:1;stroke-width:1.16255"
|
||||
id="rect22316"
|
||||
width="36.897137"
|
||||
height="10.497947"
|
||||
x="2.3452969"
|
||||
y="14.083687"
|
||||
ry="2.2709818" />
|
||||
<g
|
||||
id="g16"
|
||||
transform="matrix(0.11937535,0,0,0.11937535,5.243256,15.512681)"
|
||||
style="font-weight:bold;font-size:2.72391px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#f9f9f9;stroke-width:0.0680977">
|
||||
<path
|
||||
d="M 63.0359,39.741 C 58.7619,56.884 41.3989,67.317 24.2539,63.042 7.1159,58.768 -3.3171,41.404 0.9589,24.262 5.2309,7.117 22.5939,-3.317 39.7339,0.957 c 17.144,4.274 27.576,21.64 23.302,38.784 z"
|
||||
id="coin"
|
||||
style="fill:url(#coin-gradient)" />
|
||||
<path
|
||||
d="m 46.1009,27.441 c 0.637,-4.258 -2.605,-6.547 -7.038,-8.074 l 1.438,-5.768 -3.511,-0.875 -1.4,5.616 c -0.923,-0.23 -1.871,-0.447 -2.813,-0.662 l 1.41,-5.653 -3.509,-0.875 -1.439,5.766 c -0.764,-0.174 -1.514,-0.346 -2.242,-0.527 l 0.004,-0.018 -4.842,-1.209 -0.934,3.75 c 0,0 2.605,0.597 2.55,0.634 1.422,0.355 1.679,1.296 1.636,2.042 l -1.638,6.571 c 0.098,0.025 0.225,0.061 0.365,0.117 -0.117,-0.029 -0.242,-0.061 -0.371,-0.092 l -2.296,9.205 c -0.174,0.432 -0.615,1.08 -1.609,0.834 0.035,0.051 -2.552,-0.637 -2.552,-0.637 l -1.743,4.019 4.569,1.139 c 0.85,0.213 1.683,0.436 2.503,0.646 l -1.453,5.834 3.507,0.875 1.439,-5.772 c 0.958,0.26 1.888,0.5 2.798,0.726 l -1.434,5.745 3.511,0.875 1.453,-5.823 c 5.987,1.133 10.489,0.676 12.384,-4.739 1.527,-4.36 -0.076,-6.875 -3.226,-8.515 2.294,-0.529 4.022,-2.038 4.483,-5.155 z m -8.022,11.249 c -1.085,4.36 -8.426,2.003 -10.806,1.412 l 1.928,-7.729 c 2.38,0.594 10.012,1.77 8.878,6.317 z m 1.086,-11.312 c -0.99,3.966 -7.1,1.951 -9.082,1.457 l 1.748,-7.01 c 1.982,0.494 8.365,1.416 7.334,5.553 z"
|
||||
id="symbol"
|
||||
style="fill:#ffffff" />
|
||||
</g>
|
||||
<path
|
||||
d="m 16.527503,18.625794 c 0.53922,0 0.800741,-0.26961 0.800741,-0.585053 0,-0.692898 -1.097312,-0.452945 -1.097312,-0.800742 0,-0.118629 0.09976,-0.215688 0.358581,-0.215688 0.167158,0 0.347797,0.04853 0.523043,0.148285 l 0.134805,-0.33162 c -0.175246,-0.11054 -0.417895,-0.167158 -0.655152,-0.167158 -0.536524,0 -0.795349,0.266914 -0.795349,0.58775 0,0.700986 1.097312,0.458337 1.097312,0.811526 0,0.115932 -0.105148,0.202207 -0.363973,0.202207 -0.226473,0 -0.463729,-0.08088 -0.622799,-0.196815 l -0.148286,0.328924 c 0.167158,0.129413 0.469122,0.218384 0.768389,0.218384 z m 2.111047,-0.765692 c 0,0.266914 -0.140197,0.390934 -0.334316,0.390934 -0.186031,0 -0.293875,-0.107844 -0.293875,-0.350493 v -0.757604 h -0.420592 v 0.819615 c 0,0.447552 0.25613,0.652456 0.620103,0.652456 0.177943,0 0.339709,-0.0674 0.450249,-0.194119 v 0.17255 h 0.399023 V 17.142939 H 18.63855 Z m 1.668887,-0.738732 c -0.194119,0 -0.350493,0.06201 -0.455641,0.188727 v -0.167158 h -0.401719 v 1.973545 h 0.420592 v -0.676721 c 0.107844,0.118629 0.256129,0.175247 0.436768,0.175247 0.407111,0 0.722555,-0.291179 0.722555,-0.74682 0,-0.455641 -0.315444,-0.74682 -0.722555,-0.74682 z m -0.07279,1.148539 c -0.210295,0 -0.369365,-0.150982 -0.369365,-0.401719 0,-0.250737 0.15907,-0.401719 0.369365,-0.401719 0.210296,0 0.369366,0.150982 0.369366,0.401719 0,0.250737 -0.15907,0.401719 -0.369366,0.401719 z m 1.933105,-1.148539 c -0.194119,0 -0.350493,0.06201 -0.455641,0.188727 v -0.167158 h -0.401719 v 1.973545 h 0.420592 v -0.676721 c 0.107844,0.118629 0.256129,0.175247 0.436768,0.175247 0.407111,0 0.722555,-0.291179 0.722555,-0.74682 0,-0.455641 -0.315444,-0.74682 -0.722555,-0.74682 z m -0.07279,1.148539 c -0.210295,0 -0.369365,-0.150982 -0.369365,-0.401719 0,-0.250737 0.15907,-0.401719 0.369365,-0.401719 0.210296,0 0.369366,0.150982 0.369366,0.401719 0,0.250737 -0.15907,0.401719 -0.369366,0.401719 z M 23.8609,18.61501 c 0.461033,0 0.795349,-0.310052 0.795349,-0.74682 0,-0.436768 -0.334316,-0.74682 -0.795349,-0.74682 -0.461034,0 -0.798046,0.310052 -0.798046,0.74682 0,0.436768 0.337012,0.74682 0.798046,0.74682 z m 0,-0.345101 c -0.210296,0 -0.372062,-0.150982 -0.372062,-0.401719 0,-0.250737 0.161766,-0.401719 0.372062,-0.401719 0.210295,0 0.369365,0.150982 0.369365,0.401719 0,0.250737 -0.15907,0.401719 -0.369365,0.401719 z m 1.477464,-1.12697 h -0.401719 v 1.450502 h 0.420592 v -0.684809 c 0,-0.277699 0.153678,-0.404415 0.385542,-0.404415 0.03235,0 0.05931,0.0027 0.09436,0.0054 V 17.12137 c -0.223777,0 -0.396327,0.0728 -0.498779,0.212992 z m 1.62305,1.083832 c -0.04583,0.03505 -0.107844,0.05392 -0.169854,0.05392 -0.113236,0 -0.180639,-0.0674 -0.180639,-0.191423 v -0.590446 h 0.361278 V 17.175292 H 26.610921 V 16.822103 H 26.19033 v 0.353189 h -0.223777 v 0.323532 h 0.223777 v 0.595839 c 0,0.3451 0.199511,0.520347 0.541916,0.520347 0.129412,0 0.256129,-0.02966 0.342404,-0.09167 z m 1.733593,-0.09706 -0.401719,-0.986773 h -0.434072 l 0.609319,1.450502 h 0.434072 l 0.612015,-1.450502 h -0.404415 z m 1.20246,-1.18898 c 0.156374,0 0.261522,-0.102452 0.261522,-0.242649 0,-0.129413 -0.105148,-0.226473 -0.261522,-0.226473 -0.156373,0 -0.261521,0.102452 -0.261521,0.234561 0,0.132109 0.105148,0.234561 0.261521,0.234561 z m 0.210296,1.652709 v -1.450502 h -0.420591 v 1.450502 z m 0.97599,-1.472071 c -0.231865,0 -0.466426,0.06201 -0.625496,0.175247 l 0.150982,0.293875 c 0.105148,-0.08358 0.264218,-0.134805 0.417896,-0.134805 0.226472,0 0.334316,0.105148 0.334316,0.285786 h -0.334316 c -0.442161,0 -0.6228,0.177943 -0.6228,0.434073 0,0.250737 0.202208,0.439464 0.541917,0.439464 0.212991,0 0.363973,-0.0701 0.44216,-0.202208 v 0.180639 h 0.393631 v -0.827703 c 0,-0.439464 -0.25613,-0.644368 -0.69829,-0.644368 z m -0.03235,1.210549 c -0.148285,0 -0.237256,-0.0701 -0.237256,-0.175246 0,-0.09706 0.06201,-0.169854 0.258825,-0.169854 h 0.288483 v 0.148285 c -0.04853,0.132109 -0.169854,0.196815 -0.310052,0.196815 z"
|
||||
id="text2"
|
||||
style="font-weight:bold;font-size:2.6961px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#ffffff;stroke-width:0.00458997"
|
||||
aria-label="Support via" />
|
||||
<path
|
||||
d="m 16.810593,21.800799 c 0.328924,0 0.60123,-0.118628 0.779173,-0.337012 l -0.280394,-0.258826 c -0.126717,0.148286 -0.285787,0.223776 -0.474514,0.223776 -0.353189,0 -0.603926,-0.248041 -0.603926,-0.603926 0,-0.355885 0.250737,-0.603926 0.603926,-0.603926 0.188727,0 0.347797,0.07549 0.474514,0.22108 l 0.280394,-0.258826 c -0.177943,-0.215688 -0.450249,-0.334316 -0.776477,-0.334316 -0.58775,0 -1.024518,0.407111 -1.024518,0.975988 0,0.568877 0.436768,0.975988 1.021822,0.975988 z m 1.445109,-1.482855 h -0.401719 v 1.450502 h 0.420592 v -0.684809 c 0,-0.277699 0.153678,-0.404415 0.385542,-0.404415 0.03235,0 0.05931,0.0027 0.09436,0.0054 v -0.388239 c -0.223777,0 -0.396327,0.07279 -0.498779,0.212992 z m 1.426235,0.984077 -0.407111,-0.984077 h -0.434072 l 0.628191,1.461286 -0.0054,0.01348 c -0.05662,0.129413 -0.121325,0.180639 -0.237257,0.180639 -0.08358,0 -0.172551,-0.03505 -0.237257,-0.09167 l -0.153678,0.299267 c 0.09436,0.08358 0.25613,0.132109 0.404415,0.132109 0.261522,0 0.461033,-0.105148 0.601231,-0.455641 l 0.655152,-1.539473 h -0.404415 z m 1.844131,-1.005646 c -0.194119,0 -0.350493,0.06201 -0.455641,0.188727 v -0.167158 h -0.401719 v 1.973545 H 21.0893 v -0.676721 c 0.107844,0.118629 0.256129,0.175247 0.436768,0.175247 0.407111,0 0.722555,-0.291179 0.722555,-0.74682 0,-0.455641 -0.315444,-0.74682 -0.722555,-0.74682 z m -0.07279,1.148539 c -0.210296,0 -0.369366,-0.150982 -0.369366,-0.401719 0,-0.250737 0.15907,-0.401719 0.369366,-0.401719 0.210296,0 0.369366,0.150982 0.369366,0.401719 0,0.250737 -0.15907,0.401719 -0.369366,0.401719 z m 1.898056,-0.04314 c -0.04583,0.03505 -0.107844,0.05392 -0.169854,0.05392 -0.113236,0 -0.180639,-0.0674 -0.180639,-0.191423 v -0.590446 h 0.361278 v -0.323532 h -0.361278 v -0.353189 h -0.420591 v 0.353189 h -0.223777 v 0.323532 h 0.223777 v 0.595838 c 0,0.345101 0.199511,0.520348 0.541916,0.520348 0.129412,0 0.256129,-0.02966 0.342404,-0.09167 z m 0.994859,0.388239 c 0.461033,0 0.79535,-0.310052 0.79535,-0.74682 0,-0.436768 -0.334317,-0.74682 -0.79535,-0.74682 -0.461033,0 -0.798045,0.310052 -0.798045,0.74682 0,0.436768 0.337012,0.74682 0.798045,0.74682 z m 0,-0.345101 c -0.210296,0 -0.372062,-0.150982 -0.372062,-0.401719 0,-0.250737 0.161766,-0.401719 0.372062,-0.401719 0.210296,0 0.369366,0.150982 0.369366,0.401719 0,0.250737 -0.15907,0.401719 -0.369366,0.401719 z"
|
||||
id="text3"
|
||||
style="font-weight:bold;font-size:2.6961px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#ffffff;stroke-width:0.00458997"
|
||||
aria-label="Crypto" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
127
extensions/48/just-perfection/data/imgs/support-patreon.svg
Executable file
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="140"
|
||||
height="45"
|
||||
viewBox="0 0 37.041666 11.906252"
|
||||
version="1.1"
|
||||
id="svg1787"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||
sodipodi:docname="support-patreon.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<title
|
||||
id="title2446">Just Perfection Super Minimal Desktop Logo</title>
|
||||
<defs
|
||||
id="defs1781">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient10"
|
||||
id="linearGradient11"
|
||||
x1="36.385891"
|
||||
y1="19.318071"
|
||||
x2="9.0166798"
|
||||
y2="19.318071"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-0.0184791,-0.10941255)" />
|
||||
<linearGradient
|
||||
id="linearGradient10"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
style="stop-color:#ff00cc;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop10" />
|
||||
<stop
|
||||
style="stop-color:#ff0066;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop11" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="-17.5"
|
||||
inkscape:cy="-12"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="text1"
|
||||
inkscape:document-rotation="0"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1048"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
units="px"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#ffffff"
|
||||
showborder="true" />
|
||||
<metadata
|
||||
id="metadata1784">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Just Perfection Super Minimal Desktop Logo</dc:title>
|
||||
<dc:date>2020</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title>Just Perfection</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<cc:license
|
||||
rdf:resource="https://www.gnu.org/licenses/gpl-3.0.html" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-2.2730319,-14.040994)">
|
||||
<rect
|
||||
style="fill:url(#linearGradient11);fill-opacity:1;stroke-width:1.16255"
|
||||
id="rect22316"
|
||||
width="36.897137"
|
||||
height="10.497947"
|
||||
x="2.3452969"
|
||||
y="14.083687"
|
||||
ry="2.2709818" />
|
||||
<g
|
||||
id="text1"
|
||||
style="font-weight:bold;font-size:2.72391px;line-height:1.25;font-family:Montserrat;-inkscape-font-specification:'Montserrat Bold';fill:#f9f9f9;stroke-width:0.0680977"
|
||||
aria-label="Support via PATREON">
|
||||
<path
|
||||
style="font-size:2.38125px"
|
||||
d="m 16.513303,18.579471 c 0.476249,0 0.707231,-0.238125 0.707231,-0.516732 0,-0.611981 -0.969169,-0.40005 -0.969169,-0.707231 0,-0.104775 0.08811,-0.1905 0.316706,-0.1905 0.147638,0 0.307181,0.04286 0.461963,0.130969 l 0.119062,-0.292894 c -0.154781,-0.09763 -0.369093,-0.147637 -0.578643,-0.147637 -0.473869,0 -0.702469,0.235743 -0.702469,0.519112 0,0.619125 0.969168,0.404813 0.969168,0.716756 0,0.102394 -0.09287,0.178594 -0.321468,0.178594 -0.200025,0 -0.409575,-0.07144 -0.550069,-0.173831 l -0.130969,0.290512 c 0.147638,0.1143 0.414338,0.192882 0.678657,0.192882 z m 1.864519,-0.676275 c 0,0.235743 -0.123825,0.345281 -0.295275,0.345281 -0.164306,0 -0.259556,-0.09525 -0.259556,-0.309563 v -0.669131 h -0.371475 v 0.7239 c 0,0.395288 0.226219,0.576263 0.547688,0.576263 0.157162,0 0.300037,-0.05953 0.397668,-0.17145 v 0.1524 h 0.352425 v -1.281113 h -0.371475 z m 1.473995,-0.652463 c -0.17145,0 -0.309563,0.05477 -0.402431,0.166688 v -0.147638 h -0.354807 v 1.743075 h 0.371475 v -0.597694 c 0.09525,0.104775 0.226219,0.154782 0.385763,0.154782 0.359569,0 0.638175,-0.257175 0.638175,-0.659607 0,-0.402431 -0.278606,-0.659606 -0.638175,-0.659606 z m -0.06429,1.014413 c -0.185737,0 -0.326231,-0.13335 -0.326231,-0.354807 0,-0.221456 0.140494,-0.354806 0.326231,-0.354806 0.185738,0 0.326231,0.13335 0.326231,0.354806 0,0.221457 -0.140493,0.354807 -0.326231,0.354807 z m 1.707357,-1.014413 c -0.17145,0 -0.309562,0.05477 -0.402431,0.166688 v -0.147638 h -0.354806 v 1.743075 h 0.371475 v -0.597694 c 0.09525,0.104775 0.226219,0.154782 0.385762,0.154782 0.359569,0 0.638175,-0.257175 0.638175,-0.659607 0,-0.402431 -0.278606,-0.659606 -0.638175,-0.659606 z m -0.06429,1.014413 c -0.185738,0 -0.326232,-0.13335 -0.326232,-0.354807 0,-0.221456 0.140494,-0.354806 0.326232,-0.354806 0.185737,0 0.326231,0.13335 0.326231,0.354806 0,0.221457 -0.140494,0.354807 -0.326231,0.354807 z m 1.559719,0.3048 c 0.407194,0 0.702469,-0.273844 0.702469,-0.659607 0,-0.385762 -0.295275,-0.659606 -0.702469,-0.659606 -0.407193,0 -0.70485,0.273844 -0.70485,0.659606 0,0.385763 0.297657,0.659607 0.70485,0.659607 z m 0,-0.3048 c -0.185737,0 -0.328612,-0.13335 -0.328612,-0.354807 0,-0.221456 0.142875,-0.354806 0.328612,-0.354806 0.185738,0 0.326232,0.13335 0.326232,0.354806 0,0.221457 -0.140494,0.354807 -0.326232,0.354807 z m 1.304927,-0.995363 h -0.354807 v 1.281113 h 0.371475 v -0.604838 c 0,-0.245269 0.135732,-0.357187 0.340519,-0.357187 0.02858,0 0.05239,0.0024 0.08334,0.0048 v -0.3429 c -0.197644,0 -0.350044,0.06429 -0.440531,0.188119 z m 1.43351,0.957263 c -0.04048,0.03096 -0.09525,0.04763 -0.150019,0.04763 -0.100012,0 -0.159543,-0.05953 -0.159543,-0.169069 v -0.521499 h 0.31908 v -0.28575 h -0.319087 v -0.311943 h -0.371475 v 0.311943 h -0.197644 v 0.28575 h 0.197644 v 0.526256 c 0,0.3048 0.176212,0.459582 0.478631,0.459582 0.1143,0 0.226219,-0.02619 0.302419,-0.08096 z m 1.531145,-0.08573 -0.354806,-0.871538 h -0.383381 l 0.538162,1.281113 h 0.383381 l 0.540544,-1.281113 h -0.357187 z m 1.062037,-1.050132 c 0.138112,0 0.230981,-0.09049 0.230981,-0.214312 0,-0.1143 -0.09287,-0.200025 -0.230981,-0.200025 -0.138113,0 -0.230982,0.09049 -0.230982,0.207169 0,0.116681 0.09287,0.207168 0.230982,0.207168 z m 0.185737,1.459707 v -1.281113 h -0.371475 v 1.281113 z m 0.862014,-1.300163 c -0.204787,0 -0.411956,0.05477 -0.55245,0.154781 l 0.13335,0.259557 c 0.09287,-0.07382 0.233363,-0.119063 0.369094,-0.119063 0.200025,0 0.295275,0.09287 0.295275,0.252413 h -0.295275 c -0.390525,0 -0.550069,0.157162 -0.550069,0.383381 0,0.221456 0.178594,0.388144 0.478631,0.388144 0.188119,0 0.321469,-0.06191 0.390525,-0.178594 v 0.159544 h 0.347663 v -0.731044 c 0,-0.388144 -0.226219,-0.569119 -0.616744,-0.569119 z m -0.02858,1.069181 c -0.130969,0 -0.20955,-0.06191 -0.20955,-0.154781 0,-0.08573 0.05477,-0.150019 0.2286,-0.150019 h 0.254794 v 0.130969 c -0.04286,0.116681 -0.150019,0.173831 -0.273844,0.173831 z"
|
||||
id="path2" />
|
||||
<path
|
||||
d="m 16.001963,20.055743 c 0,-0.09559 0.07074,-0.160592 0.181623,-0.160592 h 0.530529 c 0.480821,0 0.807742,0.264786 0.807742,0.653841 0,0.382363 -0.324053,0.666268 -0.807742,0.666268 h -0.07361 c -0.185447,0 -0.281037,0.09559 -0.281037,0.249492 v 0.435894 c 0,0.123312 -0.07074,0.200741 -0.178755,0.200741 -0.108017,0 -0.178755,-0.07743 -0.178755,-0.200741 z m 0.35751,0.552515 c 0,0.194049 0.09846,0.286772 0.286772,0.286772 h 0.04588 c 0.264787,0 0.459791,-0.108017 0.459791,-0.345082 0,-0.237066 -0.194048,-0.345083 -0.459791,-0.345083 h -0.04493 c -0.188314,0 -0.286772,0.09272 -0.286772,0.286772 v 0.116621 z m 1.16334,1.322977 c 0,0.101326 0.07074,0.169196 0.178755,0.169196 0.07074,0 0.135739,-0.04588 0.173019,-0.141475 l 0.065,-0.173019 c 0.05258,-0.138607 0.145299,-0.203609 0.246625,-0.203609 h 0.585972 c 0.101327,0 0.194049,0.065 0.246624,0.203609 l 0.065,0.173019 c 0.03728,0.09559 0.101327,0.141475 0.173019,0.141475 0.108018,0 0.178754,-0.06787 0.178754,-0.169196 0,-0.02772 -0.0057,-0.06213 -0.01816,-0.09559 l -0.699725,-1.820049 c -0.04302,-0.110885 -0.141474,-0.166328 -0.237064,-0.166328 -0.09559,0 -0.19405,0.05544 -0.237066,0.166328 l -0.699725,1.820049 c -0.01529,0.03441 -0.02103,0.06787 -0.02103,0.09559 z m 0.681562,-0.826861 c 0,-0.03346 0.0096,-0.065 0.02485,-0.110885 l 0.132872,-0.367069 c 0.02485,-0.07074 0.06787,-0.10515 0.117576,-0.10515 0.04971,0 0.09272,0.03346 0.117576,0.10515 l 0.132872,0.367069 c 0.01529,0.04588 0.02485,0.07743 0.02485,0.110885 0,0.09272 -0.05258,0.157725 -0.191182,0.157725 h -0.166321 c -0.140518,0 -0.193093,-0.065 -0.193093,-0.157725 z m 1.113633,-1.04194 c 0,-0.09846 0.07074,-0.166328 0.185447,-0.166328 h 1.418567 c 0.113753,0 0.185446,0.06787 0.185446,0.166328 0,0.09846 -0.07074,0.166329 -0.185446,0.166329 h -0.237065 c -0.188314,0 -0.28964,0.09559 -0.28964,0.314493 v 1.354522 c 0,0.12618 -0.07074,0.203609 -0.181623,0.203609 -0.110885,0 -0.181623,-0.07743 -0.181623,-0.203609 v -1.354522 c 0,-0.218903 -0.101325,-0.314493 -0.289639,-0.314493 h -0.237066 c -0.11662,0 -0.187358,-0.06787 -0.187358,-0.166329 z m 2.122116,1.838212 c 0,0.123312 0.07074,0.200741 0.178755,0.200741 0.108018,0 0.178754,-0.07743 0.178754,-0.200741 v -0.490381 c 0,-0.138607 0.0803,-0.197873 0.178756,-0.197873 h 0.02485 c 0.065,0 0.130004,0.04015 0.169196,0.09846 l 0.468396,0.688253 c 0.04302,0.065 0.09846,0.101327 0.169196,0.101327 0.09272,0 0.166326,-0.07743 0.166326,-0.169196 0,-0.03728 -0.01243,-0.07743 -0.04015,-0.117577 l -0.311626,-0.437806 c -0.03728,-0.05257 -0.05258,-0.09559 -0.05258,-0.132871 0,-0.07743 0.06787,-0.132871 0.148167,-0.191182 0.145297,-0.108017 0.302066,-0.249492 0.302066,-0.520969 0,-0.379496 -0.296332,-0.635679 -0.783844,-0.635679 h -0.620385 c -0.110885,0 -0.178754,0.065 -0.178754,0.160592 v 1.844903 z m 0.357509,-1.320109 v -0.09272 c 0,-0.200741 0.105151,-0.283905 0.264787,-0.283905 h 0.153901 c 0.264788,0 0.434938,0.09846 0.434938,0.326921 0,0.228462 -0.178754,0.332655 -0.444497,0.332655 h -0.145297 c -0.158681,9.41e-4 -0.263832,-0.08221 -0.263832,-0.282948 z m 1.681443,1.313417 v -1.838211 c 0,-0.09559 0.06787,-0.160592 0.178755,-0.160592 h 1.166208 c 0.110885,0 0.178755,0.065 0.178755,0.160592 0,0.09559 -0.06787,0.160593 -0.178755,0.160593 h -0.737006 c -0.145297,0 -0.249491,0.08603 -0.249491,0.249492 v 0.06787 c 0,0.163461 0.10515,0.249492 0.249491,0.249492 h 0.570678 c 0.110885,0 0.178754,0.065 0.178754,0.160593 0,0.09559 -0.06787,0.160592 -0.178754,0.160592 h -0.548692 c -0.145298,0 -0.271477,0.08986 -0.271477,0.271478 v 0.08603 c 0,0.181622 0.126179,0.271478 0.271477,0.271478 h 0.715976 c 0.110885,0 0.178755,0.065 0.178755,0.160592 0,0.09559 -0.06787,0.160593 -0.178755,0.160593 h -1.166209 c -0.111841,0 -0.17971,-0.065 -0.17971,-0.160593 z m 1.735929,-0.918627 c 0,-0.666268 0.49994,-1.12606 1.085911,-1.12606 0.585972,0 1.085912,0.459792 1.085912,1.12606 0,0.666268 -0.49994,1.12606 -1.085912,1.12606 -0.585971,0 -1.085911,-0.459792 -1.085911,-1.12606 z m 0.407217,0 c 0,0.468395 0.277213,0.767594 0.678694,0.767594 0.400526,0 0.678695,-0.299199 0.678695,-0.767594 0,-0.472219 -0.277213,-0.767594 -0.678695,-0.767594 -0.400525,-9.41e-4 -0.678694,0.295375 -0.678694,0.767594 z m 2.192853,0.925319 c 0,0.123312 0.07074,0.200741 0.178755,0.200741 0.108017,0 0.178755,-0.07743 0.178755,-0.200741 v -0.943482 c 0,-0.113752 0.06787,-0.169195 0.138606,-0.169195 0.05544,0 0.101326,0.03059 0.135739,0.08603 l 0.591707,0.99032 c 0.0803,0.135739 0.153901,0.237066 0.304935,0.237066 0.145298,0 0.249492,-0.10515 0.249492,-0.274346 v -1.777033 c 0,-0.123312 -0.07074,-0.200741 -0.178755,-0.200741 -0.108017,0 -0.178754,0.07743 -0.178754,0.200741 v 0.943481 c 0,0.113753 -0.06787,0.169196 -0.138607,0.169196 -0.05544,0 -0.102282,-0.03059 -0.135739,-0.08603 l -0.591707,-0.990321 c -0.0803,-0.135739 -0.153901,-0.237065 -0.304935,-0.237065 -0.145298,0 -0.249492,0.10515 -0.249492,0.274346 z"
|
||||
id="path1"
|
||||
style="stroke-width:0.000650952" />
|
||||
<path
|
||||
class="st0"
|
||||
d="m 11.874436,17.964658 c -0.0012,-0.875207 -0.682839,-1.592508 -1.482584,-1.851326 -0.9931275,-0.321396 -2.3029536,-0.274811 -3.2512732,0.172629 -1.1493835,0.542387 -1.5104454,1.730486 -1.5239004,2.91541 -0.011036,0.974214 0.086189,3.540111 1.5334845,3.558389 1.0753788,0.01364 1.235507,-1.372024 1.7330853,-2.039377 0.3540173,-0.474794 0.8098356,-0.608899 1.3709458,-0.747766 0.964377,-0.238697 1.621637,-0.999791 1.620242,-2.007959 z"
|
||||
id="path1-3"
|
||||
style="fill:#ffffff;stroke-width:0.000432192" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
711
extensions/48/just-perfection/po/af.po
Executable file
|
@ -0,0 +1,711 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-18 04:05-0800\n"
|
||||
"Last-Translator: Just Perfection <justperfection.channel@gmail.com>\n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Sigbaarheid"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Paneel in Oorsig"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Aktiwiteite-knoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Knoppie in die paneel om die sigbaarheid van die oorsig in te skakel"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "klok Menu"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Ook bekend as die datum-menu, toon die datum en tyd in die paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Sleutelborduitleg"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Aanwyser-knoppie vir sleutelborduitleg in die paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Toeganklikheids-menu"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Toeganklikheidsmenu-aanwyserknoppie in die paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Vinnige instellings"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Vinnige instellings kieslys in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Donkermodus-wisselknoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Donkermodus-wisselknoppie in Vinnige instellings-kieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Naglig-wisselknoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Naglig-wisselknoppie in Vinnige instellings-kieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Vliegtuigmodus-wisselknoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Vliegtuigmodus-wisselknoppie in Vinnige instellings-kieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Skermdeling-aanwyser"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Skermdeling-aanwyser in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Skermopname-aanwyser"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Skermopname-aanwyser in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Wêreld Klok"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Wêreldklok in klokkieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Weer"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Weer in klok spyskaart"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Kalender in die klokkieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Gebeurtenisse"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Gebeurtenisse-knoppie in klokkieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Soek"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Soek inskrywing in oorsig"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash bevat gunsteling- en oopgemaakte toepassingsikone"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Dash Separator"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Dash-skeierlyn wat pen-toepassings van ontspeld-toepassings skei"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Dash App Running Indicator"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Die kolletjie-aanwyser in streep wat wys dat die toepassing loop"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Wys toepassings-knoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr ""
|
||||
"Knoppie in streep waarmee die sigbaarheid van die toepassingslys wissel"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "OSD"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr ""
|
||||
"Volume en helderheid op die skerm vertoon wanneer die verandering plaasvind"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Werkruimte pop-up"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Pop-up wat op die skerm verskyn wanneer u die werkruimte verander"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Werkspasie skakelaar"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Verwys ook na werkruimte-kleinkiekies wat u in die oorsig sien om 'n "
|
||||
"werkruimte te kies"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Werkspasies-approoster"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Werkruimtekassies in approoster"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Venster kieser Sluit knoppie"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Die sluitknoppie op die venstervoorskou in oorsig"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Vensterkieser onderskrif"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Die teks onder venstervoorskou in oorsig"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Agtergrond menu"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "As u regs kliek op die agtergrond van die lessenaar"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Ripple Box"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Warm hoek -animasie -effekte"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Neem skermkiekie-knoppie in die vensterkieslys"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Neem skermkiekie-knoppie in die titelbalk met die regterkliekkieslys"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "ikone"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Paneelkennisgewing-ikoon"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Krag-ikoon"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Vensterkeuse-ikoon"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Die ikoon onder die voorskou van die venster in die oorsig"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Gedrag"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Werkruimte omringend"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Die volgende werkruimte is die eerste werkruimte wanneer u in die laaste "
|
||||
"werkruimte is. en vorige werkruimte sal die laaste werkruimte wees as u in "
|
||||
"die eerste werkruimte is."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Werkspasie Loer"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "Of die volgende en vorige werkspasie in oorsig sigbaar moet wees."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Werkruimtewisselaar Klik na die hoofaansig"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Werkspasiewisselaar-klik gaan altyd na die hoofaansig van die werkspasie."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Venster eis aandag gefokus"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Verwyder venster is gereed kennisgewing en fokus op die venster"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Venster gemaksimeer by verstek"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maksimeer alle vensters tydens skepping"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Tik om te soek"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"U kan begin soek sonder om in te soek of selfs in oorsig daarop te fokus"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Wys altyd werkruimte-skakelaar"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Wys werkruimte-skakelaar, selfs wanneer slegs een werkruimte saam met "
|
||||
"dinamiese werkruimtes gebruik word"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Oorlegsleutel"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Deaktiveer oorlegsleutel (supersleutel)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Dubbel Super na App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "Wys app-rooster wanneer jy supersleutel vinnig dubbel druk"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Opspringvertraging"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Verwyder die vertraging vir alle skakelaar-opspringers soos alt-tab, ctrl-"
|
||||
"alt-tab, sleutelborduitleg, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Opstartstatus"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Wanneer GNOME Shell die eerste keer begin"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Oorsig"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Pas aan"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Aksentkleur vir ikone"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Gebruik aksentkleur vir alle simboliese ikone"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Keer kalenderkolom-items om"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Keer die posisies van die kalenderkolom-items in die klokkieslys om"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Oorsig Spasiëring Grootte"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Die spasiëringgrootte vir kontrolesbestuurder in oorsig"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Werkruimte agtergrond hoekgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Hoekgrootte van die werkruimte in agtergrond"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Paneelgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Paneelikoongrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Paneelknoppie padding grootte"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Paneelaanwyser Padding Size"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Paneelposisie"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Klok menu posisie"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Klok menu posisie verreken"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Grootte van die skakelaar van die werkruimte"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animasie"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "grootte van die streepikoon"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Kennisgewingbannerposisie"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Kennisgewing pop-up posisie wanneer kennisgewings op die skerm verskyn"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD posisie"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "OSD-posisie wanneer op die skerm vertoon word op die skerm"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt Tab Venster Voorskou Grootte"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt Tab Venster Voorskou-ikoongrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt Tab-ikoongrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Kykglasbreedte"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Kykglashoogte"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Maksimum vertoonde soekresultate"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Die maksimum vertoonde soekresultaatitems wat op die soekbladsy verskyn"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Verstek"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Deur Shell-tema"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Top"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Onder"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Sentrum"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Reg"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Geen animasie nie"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Verstekspoed"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Byna Geen"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Vinnigste"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Vinniger"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Vinnig"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Stadig"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Stadiger"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Stadigste"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Top begin"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Top sentrum"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Bopunt"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Onderste begin"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Onderste middel"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Onderste einde"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Sentrum begin"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Sentrum einde"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profiel"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Jy kan kies tussen vooraf gedefinieerde profiele of jy kan eenvoudig jou eie "
|
||||
"persoonlike instellings gebruik"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Pasgemaak"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimaal"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super Minimaal"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Ignoreer"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Skulp Tema"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "Skep die dop-tema gedeeltelik om 'n minimale lessenaar te skep"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Ondersteuning"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Ondersteun via Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Voorkeur metode"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Kopieer"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Ondersteuning via Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Ondersteuningskennisgewing"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Bestuur wanneer die ondersteuningskennisgewing verskyn"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Skakels"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Fout verslag"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube-kanaal"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nooit nie"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Op nuwe vrystellings"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Maandeliks"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Adres na die knipbord gekopieer"
|
708
extensions/48/just-perfection/po/ar.po
Executable file
|
@ -0,0 +1,708 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Kareem Abduljaleel <karemjaleel34@gmail.com>, 2021
|
||||
# Ali Galal <ali.sameh.galal@gmail.com> , 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-18 04:15-0800\n"
|
||||
"Last-Translator: Kareem Abduljaleel <karemjaleel34@gmail.com>\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "الوضوح"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "لوحة في نظرة عامة"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "زر الأنشطة"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "زر في اللوحة لتبديل الرؤية العامة"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "قائمة الساعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "تُعرف أيضًا باسم قائمة التاريخ والتي تعرض التاريخ والوقت في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "نموذج لوحة المفاتيح"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "زر مؤشر تخطيط لوحة المفاتيح في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "قائمة الوصول"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "زر مؤشر قائمة إمكانية الوصول في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "إعدادات سريعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "قائمة الإعدادات السريعة في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "زر تبديل الوضع الداكن"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "زر تبديل الوضع الداكن في قائمة الإعدادات السريعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "زر تبديل الإضاءة الليلية"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "زر تبديل الإضاءة الليلية في قائمة الإعدادات السريعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "زر تبديل وضع الطيران"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "زر تبديل وضع الطيران في قائمة الإعدادات السريعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "مؤشر مشاركة الشاشة"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "مؤشر مشاركة الشاشة في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "مؤشر تسجيل الشاشة"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "مؤشر تسجيل الشاشة في اللوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "الساعة العالمية"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "الساعة العالمية في قائمة الساعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "الجو"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "الطقس في قائمة الساعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "التقويم"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "التقويم في قائمة الساعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "الأحداث"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "زر الأحداث في قائمة الساعة"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "بحث"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "إدخال البحث في نظرة عامة"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "الشريط"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "تحمل Dash أيقونات التطبيقات المفضلة والمفتوحة"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "فاصل داش"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "خط فاصل الشرطة الذي يفصل بين تطبيقات التثبيت وتطبيقات إلغاء التثبيت"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "مؤشر تشغيل تطبيق داش"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "مؤشر النقطة في الشرطة الذي يوضح أن التطبيق قيد التشغيل"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "إظهار زر التطبيقات"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "زر في اندفاعة يبدل رؤية قائمة التطبيقات"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "OSD"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "مستوى الصوت والسطوع على شاشة العرض عند حدوث التغيير"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "مساحة العمل المنبثقة"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "نافذة منبثقة تظهر على الشاشة عند تغيير مساحة العمل"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "مبدل مساحة العمل"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"يشير أيضًا إلى مصغرات مساحة العمل التي تراها في نظرة عامة لتحديد مساحة عمل"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "شبكة تطبيق مساحات العمل"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "مربعات مساحة العمل في شبكة التطبيق"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "زر إغلاق منتقي النافذة"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "زر الإغلاق في معاينة النافذة في نظرة عامة"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "نافذة منتقي التسمية التوضيحية"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "النص الموجود أسفل معاينة النافذة في نظرة عامة"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "قائمة الخلفية"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "عند النقر بزر الماوس الأيمن على خلفية سطح المكتب"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "صندوق تموج"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "تأثيرات الرسوم المتحركة في الزاوية الساخنة"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "أخذ زر لقطة الشاشة في قائمة النافذة"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"التقط زر لقطة شاشة في شريط العنوان ، انقر بزر الماوس الأيمن فوق القائمة"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "الأيقونات"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "ايقونة لوحة الإشعارات"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "أيقونة الطاقة"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "ايقونة منتقي النافذة"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "الرمز الموجود أسفل معاينة النافذة في نظرة عامة"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "تصرف"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "مساحة العمل ملفوفة"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"ستكون مساحة العمل التالية هي مساحة العمل الأولى عندما تكون في آخر مساحة عمل."
|
||||
"ومساحة العمل السابقة ستكون آخر مساحة عمل عندما تكون في مساحة العمل الأولى."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "نظرة خاطفة على مساحة العمل"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"ما إذا كان يجب أن تكون مساحة العمل التالية والسابقة مرئية في نظرة عامة.ما "
|
||||
"إذا كان ينبغي أن تكون مساحة العمل التالية والسابقة مرئية في النظرة العامة."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "انقر فوق مبدل مساحة العمل للانتقال إلى العرض الرئيسي"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr "يؤدي النقر فوق مبدل مساحة العمل دائمًا إلى العرض الرئيسي لمساحة العمل."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "نافذة تتطلب التركيز على الاهتمام"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "يزيل نافذة إشعار جاهز والتركيز على النافذة"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "تم تكبير النافذة بشكل افتراضي"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "تكبير جميع النوافذ عند الإنشاء"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "اكتب للبحث"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr "يمكنك بدء البحث بدون إدخال بحث أو حتى التركيز عليه في نظرة عامة"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "إظهار أداة تبديل مساحة العمل دائمًا"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"يعرض مبدل مساحة العمل حتى عند استخدام مساحة عمل واحدة فقط مع مساحات العمل "
|
||||
"الديناميكية"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "مفتاح التراكب"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "تعطيل مفتاح التراكب (المفتاح الفائق)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "مفتاح سوبر مزدوج لشبكة التطبيقات"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "يُظهر شبكة التطبيق عندما تضغط مرتين على المفتاح الفائق بسرعة"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "تأخير المنبثقة"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"يزيل التأخير لجميع النوافذ المنبثقة للمحول مثل alt-tab ، ctrl-alt-tab ، "
|
||||
"تخطيط لوحة المفاتيح ، ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "حالة بدء التشغيل"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "عندما يبدأ GNOME Shell لأول مرة"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "سطح المكتب"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "ملخص"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "طوّع"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "لون مميز للرموز"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "استخدم لون مميز لجميع الرموز الرمزية"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "عكس عناصر عمود التقويم"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "عكس مواضع عناصر عمود التقويم في قائمة الساعة"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "نظرة عامة على حجم التباعد"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "حجم التباعد لمدير عناصر التحكم في نظرة عامة"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "حجم ركن خلفية مساحة العمل"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "حجم ركن خلفية مساحة العمل في نظرة عامة"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "مقاس اللوحه"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "حجم أيقونة اللوحة"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "حجم المساحة المتروكة لزر اللوحة"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "حجم حشوة مؤشر اللوحة"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "موقع اللوحة"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "موضع قائمة الساعة"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "إزاحة موضع قائمة الساعة"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "حجم مبدل مساحة العمل"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "تأثيرات"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "حجم رمز الشرطة"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "موقف لافتة الإخطار"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "موقف منبثق للإعلام عندما تظهر الإخطارات على الشاشة"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "موقف OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "موضع OSD عندما يظهر على الشاشة على الشاشة"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "حجم معاينة نافذة Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "حجم رمز معاينة نافذة Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "حجم رمز Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "النظر إلى عرض الزجاج"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "النظر إلى ارتفاع الزجاج"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "أقصى نتائج البحث المعروضة"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "أقصى عناصر نتائج البحث المعروضة التي تظهر في صفحة البحث"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "الإفتراضي"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "بواسطة مظهر الشل"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "اعلى"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "اسفل"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "المركز"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "اليمين"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "اليسار"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "بدون تأثيرات"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "السرعة الافتراضية"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "تقريبا لا شيء"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "سريع جدا"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "اسرع"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "سريع"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "بطيء"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "أبطأ"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "بطئ جدا"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "بداية القمة"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "مركز أعلى"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "الطرف العلوي"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "بداية من أسفل"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "مركز القاع"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "نهاية القاع"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "بداية المركز"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "نهاية المركز"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "الملف الشخصي"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"يمكنك الاختيار بين ملفات التعريف المحددة مسبقًا أو يمكنك ببساطة استخدام "
|
||||
"الإعدادات المخصصة الخاصة بك"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "مخصص"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "الحد الأدنى"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "سوبر مينيمال"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "تجاوز"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "مظهر الشل"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "تجاوز مظهر الشل جزئيا لصناعة سطح مكتب ادنى"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "الدعم"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "الدعم عبر Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "الطريقة المفضلة"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "نسخ"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Ondersteuning via Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "إشعار الدعم"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "إدارة وقت ظهور إشعار الدعم"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "الروابط"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "تقرير الشوائب"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "قناة YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "أبدًا"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "في الإصدارات الجديدة"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "شهريًا"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "تم نسخ العنوان إلى الحافظة"
|
722
extensions/48/just-perfection/po/be.po
Executable file
|
@ -0,0 +1,722 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-18 04:22-0800\n"
|
||||
"Last-Translator: Just Perfection <justperfection.channel@gmail.com>\n"
|
||||
"Language-Team: Belarusian\n"
|
||||
"Language: be\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Бачнасць"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Панэль"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Панэль у аглядзе"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Кнопка дзейнасці"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Кнопка на панэлі для пераключэння бачнасці агляду"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Меню гадзін"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Таксама вядомае як меню даты, паказвае дату і час на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Раскладка клавіятуры"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Кнопка індыкатара раскладкі клавіятуры на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Меню даступнасці"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Кнопка індыкатара меню даступнасці на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Хуткія налады"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Меню хуткіх налад на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Кнопка пераключэння цёмнага рэжыму"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка пераключэння цёмнага рэжыму ў меню хуткіх налад"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Кнопка пераключэння начнога святла"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка пераключэння начнога святла ў меню хуткіх налад"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Кнопка пераключэння рэжыму палёту"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка пераключэння рэжыму палёту ў меню хуткіх налад"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Індыкатар сумеснага выкарыстання экрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Індыкатар сумеснага выкарыстання экрана на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Індыкатар запісу экрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Індыкатар запісу экрана на панэлі"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Сусветны гадзіннік"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Сусветны гадзіннік у меню гадзін"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Надвор'е"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Надвор'е ў меню гадзін"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Каляндар"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Каляндар у меню гадзін"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Падзеі"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Кнопка падзей у меню гадзін"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Запіс пошуку ў аглядзе"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Працяжнік"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Працяжнік змяшчае абранкі абраных і адкрытых прыкладанняў"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Раздзяляльнік працяжніка"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Раздзяляльная лінія працяжніка, якая аддзяляе прымацаваныя праграмы ад "
|
||||
"прымацаванняў"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Індыкатар працы праграмы Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Кропкавы індыкатар на рысачцы, які паказвае, што праграма запушчана"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Паказаць кнопку прыкладанняў"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Кнопка ў працяжніку, якая перамыкае бачнасць спісу прыкладанняў"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "OSD"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Гучнасць і яркасць на экране пры змене"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Усплывальнае працоўнае месца"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
"Усплывальнае акно, якое з'явіцца на экране пры змене працоўнай вобласці"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Пераключальнік працоўнай прасторы"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Таксама маюцца на ўвазе эскізы працоўнай вобласці, якія вы бачыце ў аглядзе "
|
||||
"для выбару працоўнай вобласці"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Сетка прыкладанняў працоўных прастор"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Скрынкі працоўнай вобласці ў сетцы прыкладанняў"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Кнопка закрыцця выбару вокнаў"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Кнопка закрыцця на папярэднім праглядзе акна"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Подпіс да выбару вокнаў"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Агляд тэксту пад папярэднім праглядам акна"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Фонавае меню"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Пры націску правай кнопкай мышы на фоне працоўнага стала"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Пульсацыйная скрынка"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Анімацыйныя эфекты гарачага кутка"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Кнопка зрабіць здымак экрана ў меню вокны"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Кнопка зрабіць скрыншот у меню правай кнопкі мышы ў радку загалоўка"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "абразкі"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Значок апавяшчэння на панэлі"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Абразок харчавання"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Акно выбару вокнаў"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Значок пад папярэднім праглядам акна ў аглядзе"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Паводзіны"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Абгортка працоўнай прасторы"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Наступная працоўная вобласць будзе першай працоўнай, калі вы будзеце "
|
||||
"знаходзіцца ў апошняй.і папярэдняя працоўная прастора будзе апошняй, калі вы "
|
||||
"будзеце знаходзіцца ў першай."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Працоўная вобласць Peek"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Ці павінны наступная і папярэдняя рабочая вобласці быць бачныя ў аглядзе."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr ""
|
||||
"Пераключальнік працоўнай прасторы Пстрыкніце, каб перайсці да галоўнага "
|
||||
"выгляду"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Пстрычка пераключальніка працоўнай прасторы заўсёды пераходзіць у галоўны "
|
||||
"выгляд працоўнай вобласці."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Акно патрабуе ўвагі"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Выдаляе акно гатовага апавяшчэння і засяродзіцца на акне"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Акно разгорнута па змаўчанні"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Разгарнуць усе вокны пры стварэнні"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Набярыце для пошуку"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Вы можаце пачаць пошук без запісу пошуку альбо нават сканцэнтравацца на ім у "
|
||||
"аглядзе"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Заўсёды паказваць пераключальнік працоўнай прасторы"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Паказвае пераключальнік працоўнай прасторы, нават калі толькі адна рабочая "
|
||||
"вобласць выкарыстоўваецца з дынамічнымі працоўнымі прасторамі"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Накладны ключ"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Адключыць клавішу накладання (суперклавіша)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Двайны супер-ключ да сеткі прыкладання"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "Паказвае сетку праграмы, калі вы хутка двойчы націснеце суперклавішу"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Затрымка ўсплывальных вокнаў"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Выдаляе затрымку для ўсіх усплывальных вокнаў пераключальніка, такіх як alt-"
|
||||
"tab, ctrl-alt-tab, раскладка клавіятуры, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Стан запуску"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Калі GNOME Shell запускаецца ўпершыню"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Працоўны стол"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Агляд"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Наладзіць"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Акцэнтны колер для значкоў"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Выкарыстоўвайце акцэнтны колер для ўсіх сімвалічных значкоў"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Інвертаваць элементы слупка календара"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Інвертуйце пазіцыі элементаў слупка календара ў меню гадзінніка"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Агляд Памер інтэрвалу"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Памер інтэрвалу для дыспетчара элементаў кіравання ў аглядзе"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Памер фону працоўнай прасторы"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Агляд памеру кута фону працоўнай прасторы"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Памер панэлі"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Памер значка панэлі"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Памер абіўкі кнопак на панэлі"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Памер індыкатара панэлі"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Палажэнне панэлі"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Палажэнне меню гадзінніка"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Зрушэнне становішча меню гадзін"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Памер пераключальніка працоўнай вобласці"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Анімацыя"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "памер значка працяжніка"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Палажэнне апавяшчальнага банера"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Усплывальнае становішча апавяшчэнняў пры з'яўленні апавяшчэнняў на экране"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Становішча экраннага меню"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Становішча экраннага меню, калі на экране адлюстроўваецца на экране"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Памер папярэдняга прагляду акна"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-tab Памер значка папярэдняга прагляду акна"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Памер значка Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Шырыня люстэрка"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Вышыня люстэрка"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Максімальная колькасць паказаных вынікаў пошуку"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Максімальная колькасць элементаў вынікаў пошуку, якія адлюстроўваюцца на "
|
||||
"старонцы пошуку"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Па змаўчанні"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Тэма Shell"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Зверху"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Знізу"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Цэнтр"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Правільна"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Злева"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Няма анімацыі"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Хуткасць па змаўчанні"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Амаль няма"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Самы хуткі"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Хутчэй"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Хутка"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Павольна"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Павольней"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Самае павольнае"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "З пачатку"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Верхні цэнтр"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Верхні канец"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Ніжні пачатак"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Ніжні цэнтр"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Ніжняя частка"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Цэнтральны старт"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Цэнтральны канец"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Профіль"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Вы можаце выбіраць паміж прадвызначанымі профілямі або проста выкарыстоўваць "
|
||||
"свае ўласныя налады"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Карыстальніцкія"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Мінімальны"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Супер мінімальны"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Перавызначыць"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Тэма Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Перакрывае тэму абалонкі часткова, каб стварыць мінімальны працоўны стол"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Падтрымка"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Падтрымка праз Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Пераважны метад"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Копія"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Падтрымка праз Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Апавяшчэнне падтрымкі"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Кіруйце тым, калі з'яўляецца паведамленне службы падтрымкі"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Спасылкі"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Справаздача пра памылкі"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Канал YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "ніколі"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Аб новых выпусках"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Штомесяц"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Адрас скапіраваны ў буфер абмену"
|
726
extensions/48/just-perfection/po/bg.po
Executable file
|
@ -0,0 +1,726 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-18 04:27-0800\n"
|
||||
"Last-Translator: Just Perfection <justperfection.channel@gmail.com>\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Видимост"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Панел"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Панел в Общ преглед"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Бутон за дейности"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Бутон в панела за превключване на видимостта на общия преглед"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "часовник Меню"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Известно също като меню за дата показва дата и час в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Клавиатурна подредба"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Бутон на индикатора за оформление на клавиатурата в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Меню за достъпност"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Бутон за индикатор на менюто за достъпност в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Бързи настройки"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Меню за бързи настройки в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Бутон за превключване на тъмен режим"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Бутон за превключване на тъмен режим в менюто за бързи настройки"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Бутон за превключване на нощна светлина"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Бутон за превключване на нощна светлина в менюто за бързи настройки"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Бутон за превключване на самолетен режим"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Бутон за превключване на самолетен режим в менюто за бързи настройки"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Индикатор за споделяне на екрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Индикатор за споделяне на екрана в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Индикатор за запис на екрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Индикатор за запис на екрана в панела"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Световен часовник"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Световен часовник в менюто на часовника"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Метеорологично време"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Времето в менюто на часовника"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Календар"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Календар в менюто на часовника"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Събития"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Бутон за събития в менюто на часовника"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Търсене"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Търсене на запис в общ преглед"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Тире"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash съдържа икони на любими и отворени приложения"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Разделител на тире"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Линия за разделяне на тире, която разделя приложенията за щифтове от "
|
||||
"приложенията за демонтиране"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Индикатор за работа на приложението Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Точковият индикатор в тирето, който показва, че приложението работи"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Бутон за показване на приложения"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Бутон в тире, който превключва видимостта на списъка с приложения"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "OSD"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Сила на звука и яркост на дисплея на екрана, когато се случи промяната"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Изскачащо работно пространство"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
"Изскачащ прозорец, който се появява на екрана, когато промените работното "
|
||||
"пространство"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Превключвател на работното пространство"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Също така се отнася до миниатюри на работното пространство, които виждате в "
|
||||
"преглед за избор на работно пространство"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Решетка за приложения на работни пространства"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Кутии за работно пространство в мрежата на приложенията"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Бутон за затваряне на прозореца за избор"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Бутонът за затваряне в прегледа на прозореца в преглед"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Надпис за избор на прозорец"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Текстът под визуализация на прозореца в преглед"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Меню на фона"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Когато щракнете с десния бутон върху фона на работния плот"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Кутия за пулсации"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Горещи ъгли анимационни ефекти"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Бутон за правене на екранна снимка в менюто на прозореца"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Бутон за правене на екранна снимка в менюто с десен щракване на заглавната "
|
||||
"лента"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "икони"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Икона за известяване на панела"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Икона на захранването"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Икона за избор на прозорец"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Иконата под преглед на прозореца в общ преглед"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Поведение"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Работно пространство Wraparound"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Следващото работно пространство ще бъде първото работно пространство, когато "
|
||||
"сте в последното работно пространство. и предишното работно пространство ще "
|
||||
"бъде последното работно пространство, когато сте в първото работно "
|
||||
"пространство."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Работно пространство Peek"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Дали следващото и предишното работно пространство трябва да се виждат в "
|
||||
"прегледа."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Превключвател на работно пространство Щракнете за основния изглед"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Щракването върху превключвателя на работното пространство винаги отива към "
|
||||
"основния изглед на работното пространство."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Прозорецът изисква фокус на вниманието"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Премахва прозорец е готов известие и се фокусира върху прозореца"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Прозорецът е увеличен по подразбиране"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Увеличете максимално всички прозорци при създаване"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Въведете за търсене"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Можете да започнете търсенето без въвеждане на търсене или дори да се "
|
||||
"фокусирате върху него в общ преглед"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Винаги да се показва превключвател на работното пространство"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Показва превключвател на работно пространство, дори когато само едно работно "
|
||||
"пространство се използва с динамични работни пространства"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Ключ за наслагване"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Деактивиране на клавиша за наслагване (суперклавиш)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Двоен супер ключ към App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Показва мрежата на приложението, когато натиснете бързо супер клавиш двойно"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Забавяне на изскачащи прозорци"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Премахва забавянето за всички изскачащи прозорци на превключвателя като alt-"
|
||||
"tab, ctrl-alt-tab, клавиатурна подредба, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Стартово състояние"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Когато GNOME Shell се стартира за първи път"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "работен плот"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Общ преглед"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Персонализирайте"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Цвят на акцента за икони"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Използвайте цвят на акцента за всички символични икони"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Обръщане на елементи от колоната на календара"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Обърнете позициите на елементите от колоната на календара в менюто на "
|
||||
"часовника"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Общ преглед Размер на разстоянието"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Размерът на разстоянието за мениджъра на контролите в общ преглед"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Размер на ъгъла на работното пространство"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Преглед на размера на ъгъла на работното пространство"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Размер на панела"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Размер на иконата на панела"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Размер на подложката на бутона на панела"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Размер на подложката на индикатора на панела"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Позиция на панела"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Позиция на менюто на часовника"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Отместване на позицията на менюто на часовника"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Размер на превключвателя на работното пространство"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Анимация"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "размер на иконата на тире"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Позиция на банера за известия"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Изскачаща позиция за известия, когато известията се показват на екрана"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD позиция"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Позицията на OSD, когато е на екрана, се показва на екрана"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Размер на визуализацията на прозореца"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab Размер на иконата за преглед на прозореца"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Размер на иконата Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Ширина на огледалото"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Височина на огледалото"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Максимално показвани резултати от търсене"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Максималният брой показани елементи от резултатите от търсенето, които се "
|
||||
"показват на страницата за търсене"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "По подразбиране"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "От Shell Theme"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Връх"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Отдолу"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Център"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Нали"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Наляво"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Без анимация"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Скорост по подразбиране"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Почти никакви"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Най-бързият"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "По-бързо"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Бърз"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Бавен"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "По-бавно"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Най-бавно"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Топ Старт"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Топ център"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Горен край"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Долно начало"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Долен център"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Долен край"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Централен старт"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Централен край"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Профил"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Можете да избирате между предварително дефинирани профили или просто да "
|
||||
"използвате свои собствени персонализирани настройки"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Персонализиран"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Минимален"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Супер минимално"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Замяна"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Тема Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Заменя темата на черупката частично, за да създаде минимален работен плот"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "поддръжка"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Поддръжка чрез Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Предпочитан метод"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "копие"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Поддръжка чрез Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Известие за поддръжка"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Управлявайте кога се показва известието за поддръжка"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Връзки"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Доклад за грешки"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Канал в YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Никога"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "На нови издания"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Месечно"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Адресът е копиран в клипборда"
|
730
extensions/48/just-perfection/po/ca.po
Normal file
|
@ -0,0 +1,730 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Ícar Nin Solana <icar.nin@pm.me>, 2021.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-03-16 19:11+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan \n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilitat"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Panell"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Tauler a la vista general"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Botó d'activitats"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Botó del tauler per canviar la visibilitat de la visió general"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menú del rellotge"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "També es coneix com a menú de data i mostra la data i l’hora al tauler"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Disposició del teclat"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Botó indicador del disseny del teclat al tauler"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menú d'accessibilitat"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Botó indicador del menú d'accessibilitat al tauler"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Configuració ràpida"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menú de configuració ràpida al tauler"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Botó de commutació del mode fosc"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botó de commutació del mode fosc al menú de configuració ràpida"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Botó de commutació de llum nocturna"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Botó de commutació de llum nocturna al menú de configuració ràpida"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Botó de commutació del mode avió"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botó de commutació del mode avió al menú de configuració ràpida"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicador de compartició de pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicador de compartició de pantalla al tauler"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicador de gravació de pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicador de gravació de pantalla al panell"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Rellotge mundial"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Rellotge mundial al menú del rellotge"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "El temps"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "El temps al menú del rellotge"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendari"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendari al menú del rellotge"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Esdeveniments"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Botó d'esdeveniments al menú del rellotge"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Cerqueu l'entrada a la vista general"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash conté les icones d'aplicacions favorites i obertes"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Separador de guions"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Línia separadora de guions que separa les aplicacions de fixació de les "
|
||||
"aplicacions de desenganxament"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicador d'execució de l'aplicació Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"L'indicador de punt al guió que mostra que l'aplicació s'està executant"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Botó Mostra les aplicacions"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Botó de guió que commuta la visibilitat de la llista d'aplicacions"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Visualització en pantalla (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Volum i brillantor a la pantalla quan es produeix el canvi"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Finestra emergent de l'espai de treball"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
"Finestra emergent que apareix a la pantalla quan canvieu l'espai de treball"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Commutador dels espais de treball"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"També fa referència a les miniatures de l’espai de treball que veieu a la "
|
||||
"vista general per seleccionar un espai de treball"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Àrea de treball App Grid"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Quadres d'espai de treball a la quadrícula de l'aplicació"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Botó de tancament del selector de finestres"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr ""
|
||||
"El botó de tancament de la vista prèvia de la finestra a la vista general"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Subtítol del selector de finestres"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "El text a la vista prèvia de la finestra a la vista general"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menú del fons de pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Quan feu clic dret sobre el fons de l'escriptori"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Ripple Box"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Efectes d'animació de hot corner"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Botó Captura de pantalla al menú de la finestra"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Botó de captura de pantalla al menú de clic dret de la barra de títol"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "icones"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Icona del panell de notificacions"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Icona d'alimentació"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Icona del selector de finestres"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "La icona de la vista prèvia de la finestra a la vista general"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportament"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Espai de treball Wraparound"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"El següent espai de treball serà el primer espai de treball quan estigueu a "
|
||||
"l’últim espai de treball. i l’espai de treball anterior serà l’últim espai "
|
||||
"de treball quan estigueu al primer espai de treball."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Vista de l'espai de treball"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Si l'espai de treball següent i anterior han de ser visibles a la visió "
|
||||
"general."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Commutador d'espai de treball Feu clic a la vista principal"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"El clic del commutador d'espai de treball sempre va a la vista principal de "
|
||||
"l'espai de treball."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "La finestra demana un focus d’atenció"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr ""
|
||||
"Elimina la finestra ja està llesta la notificació i se centra en la finestra"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Finestra maximitzada per defecte"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximitza totes les finestres en la creació"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Escriu per cercar"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Podeu iniciar la cerca sense l'entrada de cerca o fins i tot centrant-vos-hi "
|
||||
"en la vista general"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Mostra sempre el commutador d'espai de treball"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Mostra el commutador d'espai de treball fins i tot quan només s'utilitza un "
|
||||
"espai de treball amb espais de treball dinàmics"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Clau de superposició"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Desactiva la tecla de superposició (superclau)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Doble súper clau per a App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Mostra la graella d'aplicacions quan premeu la tecla super ràpida dues "
|
||||
"vegades"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Retard de la finestra emergent"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Elimina el retard de totes les finestres emergents del commutador, com ara "
|
||||
"alt-tab, ctrl-alt-tab, disseny de teclat,..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Estat d’inici"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Quan el GNOME Shell s’inicia per primera vegada"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Escriptori"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Visió general"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Personalitza"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Color d'accent per a les icones"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Utilitzeu el color d'accent per a totes les icones simbòliques"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Inverteix els elements de la columna del calendari"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Inverteix les posicions dels elements de la columna del calendari al menú "
|
||||
"del rellotge"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Visió general Mida de l'espai"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "La mida d'espai per al gestor de controls a la visió general"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Mida de la cantonada de fons de l’espai de treball"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Cantonada del fons de l’espai de treball Mida a la vista general"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Mida del tauler"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Mida de la icona del panell"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Mida del farciment del botó del tauler"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Indicador de panell de mida de farciment"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Posició del panell"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Posició del menú del rellotge"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Desplaçament del menú del rellotge"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Mida del commutador d'espais de treball"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animació"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "mida de la icona de guió"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Posició del bàner de notificacions"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Posició emergent de les notificacions quan apareixen les notificacions a la "
|
||||
"pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Posició OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "La posició OSD quan es mostra a la pantalla es mostra a la pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Mida de vista prèvia de la finestra"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "alt-tab Mida de la icona de vista prèvia de la finestra"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab Mida de la icona"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Amplada del mirall"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Alçada del mirall"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Màxim resultats de cerca mostrats"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"El màxim d'elements de resultats de cerca que es mostren a la pàgina de cerca"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Per defecte"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Pel tema de l'entorn"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Superior"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Centre"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Dreta"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Esquerra"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Sense animació"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Velocitat per defecte"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Gairebé cap"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "El més ràpid"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Més ràpid"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Ràpid"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lent"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Més lent"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "El més lent"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Inici superior"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Centre superior"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Extrem superior"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Inici inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Centre inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Extrem inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Inici del centre"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Centre final"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Podeu triar entre perfils predefinits o simplement podeu utilitzar la vostra "
|
||||
"pròpia configuració personalitzada"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personalitzat"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Mínim"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Súper Mínim"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Sobreescriu"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Tema del l'entorn"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Sobreescriu parcialment el tema de l'entorn per crear un escriptori "
|
||||
"minimalista"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Suport"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Suport via Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Mètode preferit"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Còpia"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Suport a través de Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notificació de suport"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Gestiona quan apareix la notificació d'assistència"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Enllaços"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Informe d'error"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Canal de YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "En Noves Estrenes"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensualment"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "S'ha copiat l'adreça al porta-retalls"
|
726
extensions/48/just-perfection/po/de.po
Executable file
|
@ -0,0 +1,726 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-18 04:55-0800\n"
|
||||
"Last-Translator: Just Perfection <justperfection.channel@gmail.com>\n"
|
||||
"Language-Team: German\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Sichtbarkeit"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Obere Leiste"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Panel in Übersicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Aktivitäten Schalter"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Schaltfläche im Panel zum Umschalten der Übersicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Uhr Menü"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Auch bekannt als Datumsmenü zeigt Datum und Uhrzeit im Panel an"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Tastaturbelegung"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Indikator für das Tastaturlayout im Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Eingabehilfen-Menü"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Indikator für das Eingabehilfemenü im Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Schnelleinstellungen"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Schnelleinstellungsmenü im Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Umschalttaste für Dunkelmodus"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Umschalttaste für Dunkelmodus im Menü „Schnelleinstellungen“"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Umschalttaste für Nachtlicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Umschalttaste für Nachtlicht im Menü „Schnelleinstellungen“"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Umschalttaste für Flugmodus"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Umschalttaste für Flugmodus im Menü „Schnelleinstellungen“"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Bildschirmfreigabe Indikator"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Bildschirmfreigabe Indikator im Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Bildschirmaufzeichnung Indikator"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Bildschirmaufzeichnung Indikator im Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Weltuhr"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Weltuhr im Uhrenmenü"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Wetter"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Wetter im Uhrmenü"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Kalender im Uhrmenü"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Veranstaltungen"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Schalter „Ereignisse“ im Uhr-Menü"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Suchfeld in der Übersicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash enthält Symbole für bevorzugte und geöffnete Anwendungen"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Dash Trenner"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Dash Trenner, der gepinnte von ungepinnten Apps trennt"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Laufanzeige der Dash-App"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Der Punktindikator im Strich zeigt an, dass die App ausgeführt wird"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Anwendungen anzeigen Schalter zeigen"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Schalter im Dash, der die Sichtbarkeit der Anwendungsliste umschaltet"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Bildschirmanzeige (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr ""
|
||||
"Lautstärke und Helligkeit auf dem Bildschirm, wenn die Änderung erfolgt"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Arbeitsflächen-Popup"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
"Popup, das auf dem Bildschirm angezeigt wird, wenn Sie die Arbeitsfläche "
|
||||
"wechseln"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Arbeitsflächen-Wechsler"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Bezieht sich auch auf Arbeitsflächen-Miniaturansichten, die Sie in der "
|
||||
"Übersicht sehen, um eine Arbeitsfläche auszuwählen"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Arbeitsflächen App-Raster"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Arbeitsflächen im App-Raster zeigen"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Schalter zum Schließen der Fensterauswahl"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Der Schließen-Schalter in der Fenstervorschau in der Übersicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Fensterauswahl-Beschriftung"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Der Text unter Fenstervorschau in der Übersicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Hintergrund-Menü"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Wenn Sie mit der rechten Maustaste auf den Desktop-Hintergrund klicken"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Ripple-Box"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Animationseffekte für Funktionale Ecken"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Screenshot Schalter im Fenstermenü"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Schalter zum Screenshot erstellen im Rechtsklickmenü der Titelleiste"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Symbole"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Panel-Benachrichtigungssymbol"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Energie Symbol"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Fensterwahl-Symbol"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Das Symbol unter der Fenstervorschau in der Übersicht"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Verhalten"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Arbeitsflächen-Umbruch"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Nächste Arbeitsfläche ist die erste Arbeitsfläche, wenn Sie sich auf der "
|
||||
"letzten Arbeitsfläche befinden. Und vorherige Arbeitsfläche ist letzte "
|
||||
"Arbeitsfläche, wenn Sie sich auf erster Arbeitsfläche befinden."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Einblick in den Arbeitsbereich"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Ob der nächste und vorherige Arbeitsbereich in der Übersicht sichtbar sein "
|
||||
"soll."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr ""
|
||||
"Klicken Sie auf den Arbeitsbereichs-Umschalter, um zur Hauptansicht zu "
|
||||
"gelangen"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Klicken Sie auf den Arbeitsbereichs-Umschalter, um immer zur Hauptansicht "
|
||||
"des Arbeitsbereichs zu gelangen."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Fenster fordert Aufmerksamkeitsfokus"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr ""
|
||||
"Entfernt \"Fenster ist bereit\"-Benachrichtigung und Fokus auf das Fenster"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Fenster standardmäßig maximiert"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximieren Sie alle Fenster bei der Erstellung"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Tippen zum suchen"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Sie können die Suche starten, ohne einen Sucheintrag oder überhaupt den "
|
||||
"Fokusin der Übersicht darauf zu haben"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Arbeitsflächen-Wechsler immer anzeigen"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Zeigt den Arbeitsflächen-Wechsler an, auch wenn nur eine Arbeitsfläche mit "
|
||||
"dynamischen Arbeitsflächen verwendet wird"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Overlay-Schlüssel"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Overlay-Taste deaktivieren (Super-Taste)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Doppel Super zum App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Zeigt das App-Raster an, wenn Sie schnell die Supertaste doppelt drücken"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Popup-Verzögerung"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Entfernt die Verzögerung für alle Switcher-Popups wie Alt-Tab, Strg-Alt-Tab, "
|
||||
"Tastaturlayout, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Status beim Systemstart"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Wenn GNOME Shell zum ersten Mal startet"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Übersicht"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Anpassen"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Akzentfarbe für Symbole"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Verwenden Sie eine Akzentfarbe für alle symbolischen Symbole"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Kalenderspaltenelemente umkehren"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Kehren Sie die Positionen der Kalenderspaltenelemente im Uhrmenü um"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Übersicht Abstandsgröße"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Die Abstandsgröße für Controls Manager in der Übersicht"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Arbeitsflächen-Hintergrund Ecken-Radius"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Größe der Abrundung des Arbeitsflächen-Hintergrunds in der Übersicht"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Panel Größe"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Panel-Icon Größe"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Panel-Button Abstand"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Panel-Indikator Abstand"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Panel Position"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Uhrmenü Position"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Uhrmenü Positionsversatz"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Größe des Arbeitsflächenumschalters"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animation"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Dash Symbolgröße"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Benachrichtigungsbanner Position"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Benachrichtigungs-Popup-Position, wenn Benachrichtigungen auf dem Bildschirm "
|
||||
"angezeigt werden"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD-Position"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "OSD-Position, wenn die Bildschirmanzeige auf dem Bildschirm erscheint"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Vorschaugröße des Alt-Tab-Fensters"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab Größe des Symbols für die Fenstervorschau"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab-Symbolgröße"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Looking Glass Breite"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Looking Glass Höhe"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Maximal angezeigte Suchergebnisse"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Die maximal angezeigten Suchergebniselemente werden auf der Suchseite "
|
||||
"angezeigt"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Nach Shell-Thema"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Oben"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Unten"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Mitte"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Rechts"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Keine Animation "
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Standardgeschwindigkeit"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Fast keiner"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Am schnellsten"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Schneller"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Schnell"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Langsam"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Langsamer"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Am langsamsten"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Oben Start"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Oben Mitte"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Oben Ende"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Unten Start"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Unten Mitte"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Unten Ende"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Mitte Start"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Mitte Ende"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Sie können zwischen vordefinierten Profilen wählen oder einfach Ihre eigenen "
|
||||
"benutzerdefinierten Einstellungen verwenden"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Benutzerdefiniert"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super-Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Überschreiben"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Shell-Thema"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Überschreibt das Shell-Design teilweise, um einen minimalen Desktop zu "
|
||||
"erstellen"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Support"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Support über Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Bevorzugte Methode"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Kopieren"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Support über Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Supportbenachrichtigung"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Verwalten, wann die Supportbenachrichtigung angezeigt wird"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Verknüpfungen"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Fehlerbericht"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube-Kanal"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nie"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Bei neuen Veröffentlichungen"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Monatlich"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Adresse in die Zwischenablage kopiert"
|
741
extensions/48/just-perfection/po/es.po
Executable file
|
@ -0,0 +1,741 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Óscar Fernández Díaz <oscfdezdz@tuta.io>, 2021.
|
||||
# Diego Iván <diegoivan.mae@gmail.com>, 2021.
|
||||
# Luci <FOSSgerme.deb@cyberfear.com>, 2022.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2022-06-26 23:01-0300\n"
|
||||
"Last-Translator: Luci <FOSSgerme.deb@cyberfear.com>\n"
|
||||
"Language-Team: Spanish; Castilian <FOSSgerme.deb@cyberfear.com>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Gtranslator 40.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidad"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Panel en Vista de Actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Botón de actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr ""
|
||||
"Botón en el panel para alternar la visibilidad de la vista de actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menú del Reloj"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr ""
|
||||
"También conocido como menú del calendario, muestra la fecha y la hora en el "
|
||||
"panel."
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Distribución del teclado"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Botón indicador de la distribución del teclado en el panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menú de Accesibilidad"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Botón indicador de menú de Accesibilidad en el panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Ajustes rápidos"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menú de configuración rápida en el panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Botón de alternancia del modo oscuro"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
"Botón de alternancia del modo oscuro en el menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Botón de alternancia de luz nocturna"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
"Botón de alternancia de luz nocturna en el menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Botón de alternancia del modo avión"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botón de alternancia del modo avión en el menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicador de pantalla compartida"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicador de uso compartido de pantalla en el panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicador de grabación de pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicador de grabación de pantalla en el panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Reloj mundial"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Reloj mundial en el menú del calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Clima"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Clima en el menú del calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendario en el menú del calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Eventos"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Eventos en el menú del calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Entrada de búsqueda en la vista de actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "El dash mantiene los íconos de aplicaciones favoritas y abiertas"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Separador del Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Linea en el dash que separa las aplicaciones fijadas de las no fijadas"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicador de ejecución de la aplicación Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"El indicador de puntos en el guión que muestra que la aplicación se está "
|
||||
"ejecutando"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Botón de Mostrar Aplicaciones"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Botón en el dash que muestra u oculta la cuadrícula de aplicaciones"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Visualización en pantalla (OSD) (On Screen Display)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Volumen y brillo en la pantalla cuando ocurre un cambio"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Carted de los Espacios de Trabajo"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Cartel que aparece cuando se cambia el espacio de trabajo"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Cambiador de Espacio de Trabajo"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"También conocido como miniaturas de espacios de trabajo, aparecen en la "
|
||||
"vista de actividades para seleccionar espacios de trabajo."
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Espacios de Trabajo en la Cuadrícula de Apps"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Espacios de trabajo en la cuadrícula de aplicaciones"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Botón de Cerrar en el Selector de Ventanas"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Botón cerrar de las ventanas en la vista de actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Título del Selector de Ventanas"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr ""
|
||||
"El texto debajo de la vista previa de la ventana en la vista de actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menú del Fondo de Pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Cuando haces clic derecho en el fondo del escritorio"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Efecto de Ondulación"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Efectos de animación de la esquina caliente"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Botón de Tomar captura de pantalla en el Menú de la Ventana"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Botón para tomar una captura de pantalla en el menú del click derecho de la "
|
||||
"ventana"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Iconos"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Icono de notificación del panel"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Icono de Energía"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Iconos del Selector de ventana"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr ""
|
||||
"El icono debajo de la vista previa de la ventana en la vista de actividades"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamiento"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Espacios de trabajo envolventes"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"El siguiente espacio de trabajo será el primer espacio de trabajo cuando se "
|
||||
"encuentre en el último espacio de trabajo. y el espacio de trabajo anterior "
|
||||
"será el último espacio de trabajo cuando esté en el primer espacio de "
|
||||
"trabajo."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Vistazo al espacio de trabajo"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Si el espacio de trabajo anterior y siguiente deben estar visibles en la "
|
||||
"descripción general."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Cambiar de espacio de trabajo Haga clic para ir a la vista principal"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"El clic en el cambio de espacio de trabajo siempre lleva a la vista "
|
||||
"principal del espacio de trabajo."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Ventana Exige el Foco"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Elimina la notificación de ventana preparada y la enfoca"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Ventana maximizada por defecto"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximizar todas las ventanas en la creación"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Escribir para buscar"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Puedes iniciar la búsqueda sin una entrada de búsqueda o sin siquiera "
|
||||
"centrarse en ella en la vista de actividades"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Mostrar siempre el conmutador de espacio de trabajo"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Muestra el conmutador de espacio de trabajo incluso cuando solo se utiliza "
|
||||
"un espacio de trabajo con espacios de trabajo dinámicos"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Tecla de superposición"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Deshabilitar la tecla de superposición (supertecla)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Doble tecla Super para la Cuadrícula de Apps"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Muestra la cuadrícula de aplicaciones cuando la tecla Super es rápidamente "
|
||||
"presionada dos veces"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Retraso de ventana emergente"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Elimina la demora para todas las ventanas emergentes del conmutador como alt-"
|
||||
"tab, ctrl-alt-tab, distribución del teclado, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Estado de inicio"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Cuando GNOME Shell se inicia por primera vez"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Escritorio"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Vista de Actividades"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Personalizar"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Color de énfasis para los íconos"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Usar color de énfasis para todos los íconos simbólicos"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Invertir elementos de la columna del calendario"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Invertir las posiciones de los elementos de la columna del calendario en el "
|
||||
"menú del reloj"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Resumen Espaciado Tamaño"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Resumen del tamaño del espacio para el administrador de controles"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Tamaño de las Esquinas de los Espacios de Trabajo"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr ""
|
||||
"Tamaño de las Esquinas de los Espacios de Trabajo en la Vista de Actividades"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Tamaño del Panel"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Tamaño de los Iconos del Panel"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Tamaño del Relleno de los Botones del Panel"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Tamaño del Relleno de los Indicadores del Panel"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Posición del panel"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Posición del Menú del Reloj"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Compensación del Menú del Reloj"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Tamaño del Cambiador de Espacios de Trabajo"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animación"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Tamaño de los Iconos del Dash"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Posición de las Notificaciones"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Posición de los carteles de Notificaciones al momento de mostrarse en "
|
||||
"pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Posición del OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr ""
|
||||
"La posición del OSD (On Screen Display) al momento de mostrarse en pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Tamaño de vista previa de la ventana Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Tamaño del icono de vista previa de la ventana Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Tamaño del icono Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Ancho del espejo"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Altura del espejo"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Resultados de búsqueda máximos mostrados"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"El máximo de elementos de resultados de búsqueda mostrados que aparecen en "
|
||||
"la página de búsqueda"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Predeterminada"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Por Tema del Shell"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Arriba"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Abajo"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Centro"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Derecha"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Izquierda"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Sin animación"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Velocidad Predeterminada"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Casi ninguno"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Mucho más rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Muy rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lento"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Muy lento"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Mucho más lento"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Superior Izquierda"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Superior Central"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Superior Derecha"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Inferior Izquierda"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Inferior Central"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Inferior Derecha"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Inicio Central"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Final Central"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Puede elegir entre perfiles predefinidos o puede simplemente usar su propia "
|
||||
"configuración personalizada"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personalizado"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Mínimo"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super mínimo"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Sobreescribir"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Tema de la Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Sobreescribe parcialmente el tema de la shell para crear un escritorio "
|
||||
"mínimo."
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Soporte"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Soporte a través de Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Método preferido"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Soporte a través de Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notificación de soporte"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Administrar cuándo aparece la notificación de soporte"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Enlaces"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Informe de error"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Canal de YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "En los nuevos lanzamientos"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensualmente"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Dirección copiada al portapapeles"
|
741
extensions/48/just-perfection/po/fr.po
Executable file
|
@ -0,0 +1,741 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2020-12-13 07:26-0800\n"
|
||||
"Last-Translator: Just Perfection <justperfection.channel@gmail.com>\n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilité"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Panneau dans la vue d'ensemble"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Bouton des activités"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Bouton dans le panneau pour basculer la visibilité de l'aperçu"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menu horloge"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr ""
|
||||
"Également connu sous le nom de menu de date, affiche la date et l'heure dans "
|
||||
"le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Disposition du clavier"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Bouton indicateur de disposition du clavier dans le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menu d'accessibilité"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Bouton indicateur de menu d'accessibilité dans le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Réglages rapides"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menu des paramètres rapides dans le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Bouton de basculement du mode sombre"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Bouton de basculement du mode sombre dans le menu Paramètres rapides"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Bouton de basculement de la veilleuse"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Bouton de basculement de la veilleuse dans le menu Paramètres rapides"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Bouton de basculement du mode avion"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Bouton de basculement du mode avion dans le menu Paramètres rapides"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicateur de partage d'écran"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicateur de partage d'écran dans le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicateur d'enregistrement d'écran"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicateur de partage d'écran dans le panneau"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Horloge mondiale"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Horloge mondiale dans le menu Horloge"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Météo"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Météo dans le menu de l'horloge"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendrier dans le menu de l'horloge"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Événements"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Bouton Événements dans le menu Horloge"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Barre de recherche"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Barre de recherche dans la vue d'ensemble"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Barre de raccourcis"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr ""
|
||||
"La barre de raccourcis contient les icônes d'applications favorites et "
|
||||
"ouvertes"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Séparateur de tiret"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Ligne de séparation en tiret qui sépare les applications à épingler des "
|
||||
"applications à détacher"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicateur de fonctionnement de l'application Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"L'indicateur de point dans le tiret qui indique que l'application est en "
|
||||
"cours d'exécution"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Afficher le bouton des applications"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr ""
|
||||
"Bouton dans le tableau de bord qui bascule la visibilité de la liste des "
|
||||
"applications"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "OSD"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr ""
|
||||
"Affichage du volume et de la luminosité à l'écran lorsque le changement se "
|
||||
"produit"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Fenêtre contextuelle de l'espace de travail"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Popup qui apparaît à l'écran lorsque vous changez d'espace de travail"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Commutateur d'espace de travail"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Fait également référence aux vignettes d'espace de travail que vous voyez "
|
||||
"dans la vue d'ensemble pour sélectionner un espace de travail"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Grille d'applications des espaces de travail"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Boîtes d'espace de travail dans la grille d'applications"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Bouton de fermeture du sélecteur de fenêtre"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr ""
|
||||
"Le bouton de fermeture sur l'aperçu de la fenêtre dans la vue d'ensemble"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Légende du sélecteur de fenêtre"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Le texte sous l'aperçu de la fenêtre en vue d'ensemble"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menu d'arrière-plan"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Lorsque vous faites un clic droit sur l'arrière-plan du bureau"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Boîte d'ondulation"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Effets d'animation de coin chaud"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Bouton Prendre une capture d'écran dans le menu Fenêtre"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Bouton Prendre une capture d'écran dans le menu contextuel de la barre de "
|
||||
"titre"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Icônes"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Icône de notification du panneau"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Icône de charge"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Icône de sélecteur de fenêtre"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "L'icône sous l'aperçu de la fenêtre dans la vue d'ensemble"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportement"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Enveloppe de l'espace de travail"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"L'espace de travail suivant sera le premier espace de travail lorsque vous "
|
||||
"serez dans le dernier espace de travail. et l'espace de travail précédent "
|
||||
"sera le dernier espace de travail lorsque vous êtes dans le premier espace "
|
||||
"de travail."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Aperçu de l'espace de travail"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Indique si l'espace de travail suivant et précédent doit être visible dans "
|
||||
"l'aperçu."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Changement d'espace de travail Cliquez sur la vue principale"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Le changement d'espace de travail en cliquant revient toujours à la vue "
|
||||
"principale de l'espace de travail."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "La fenêtre demande une attention particulière"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr ""
|
||||
"Supprime la notification \"la fenêtre est prête\" et l'attention sur la "
|
||||
"fenêtre"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Fenêtre agrandie par défaut"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximiser toutes les fenêtres lors de la création"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Tapez pour rechercher"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Vous pouvez lancer une recherche sans sélectionner la barre de recherche ou "
|
||||
"même en l'ayant désactivée dans l'aperçu"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Toujours afficher le sélecteur d'espace de travail"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Affiche le sélecteur d'espace de travail même lorsqu'un seul espace de "
|
||||
"travail est utilisé avec des espaces de travail dynamiques"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Clé de superposition"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Désactiver la touche de superposition (super clé)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Double appui sur Super affiche la grille d'applications"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Affiche la grille d'applications lorsque vous appuyez deux fois rapidement "
|
||||
"sur la touche super"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Délai de pop-up"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Supprime le délai pour toutes les fenêtres contextuelles du commutateur "
|
||||
"comme alt-tab, ctrl-alt-tab, la disposition du clavier, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "État de démarrage"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Lorsque GNOME Shell démarre pour la première fois"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Bureau"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Personnaliser"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Couleur d'accentuation pour les icônes"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Utilisez la couleur d'accentuation pour toutes les icônes symboliques"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Inverser les éléments de la colonne du calendrier"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Inverser les positions des éléments de la colonne du calendrier dans le menu "
|
||||
"de l'horloge"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Vue d'ensemble Espacement Taille"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr ""
|
||||
"La taille d'espacement pour le gestionnaire de contrôles en vue d'ensemble"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Taille du coin de l'arrière-plan de l'espace de travail"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr ""
|
||||
"Taille du coin de l'arrière-plan de l'espace de travail dans la vue "
|
||||
"d'ensemble"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Taille du panneau"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Taille de l'icône du panneau"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Marge intérieure des boutons du panneau"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Marge intérieure de l'indicateur de panneau"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Position du panneau"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Position du menu de l'horloge"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Décalage de la position du menu de l'horloge"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Taille du sélecteur d'espace de travail"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animation"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Taille des icônes de la barre de raccourcis"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Position des notifications"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Position des notifications lorsqu'elles s'affichent à l'écran"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Position de l'OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Position OSD lorsque l'affichage à l'écran apparaît sur l'écran"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Taille de l'aperçu de la fenêtre Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "alt-tab Taille de l'icône d'aperçu de la fenêtre"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Taille de l'icône Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Largeur du miroir"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Hauteur du miroir"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Résultats de recherche affichés au maximum"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Nombre maximal d'éléments de résultats de recherche affichés dans la page de "
|
||||
"recherche"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Par défaut"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Par thème Shell"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Haut"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Bas"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Centre"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Droite"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Gauche"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Pas d'animation"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Vitesse par défaut"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Presque aucun"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Le plus rapide"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Plus rapide"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Rapide"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lent"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Plus lent"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Le plus lent"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "En haut à gauche"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "En haut au centre"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "En haut à droite"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "En bas à gauche"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "En bas au centre"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "En bas à droite"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Démarrage central"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Extrémité centrale"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Vous pouvez choisir entre des profils prédéfinis ou vous pouvez simplement "
|
||||
"utiliser vos propres paramètres personnalisés"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personnalisé"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Thème Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "Remplace partiellement le thème du shell pour créer un bureau minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Assistance"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Assistance via Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Méthode préférée"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Copier"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Soutenir via Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notification d'assistance"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Gérer le moment où la notification d'assistance s'affiche"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Liens"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Signaler des bugs"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Chaîne YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Jamais"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Sur les nouvelles versions"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensuel"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Adresse copiée dans le presse-papiers"
|
736
extensions/48/just-perfection/po/gl.po
Normal file
|
@ -0,0 +1,736 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Fran Dieguez <frandieguez@gnome.org>, 2021.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-11-22 20:15+0100\n"
|
||||
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"
|
||||
"Language-Team: Galician <Proxecto Trasno <proxecto@trasno.gal>>\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Gtranslator 40.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidade"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Indica se mostrar o panel na Vista Xeral"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Botón de Actividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr ""
|
||||
"Indica se mostrar o botón no panel para trocar a visibilidade da vista xeral"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menú do reloxo"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Indica se mostrar o menú onde se mostra a data e a hora no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Distribución do teclado"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr ""
|
||||
"Indica se mostrar o botón indicador da distribución de teclado no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menú de accesibilidade"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Indica se mostrar o botón indicador do menú de accesibilidade no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menú de configuración rápida no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Botón de alternancia do modo escuro"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botón de alternancia do modo escuro no menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Botón de alternancia da luz nocturna"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Botón de alternancia da luz nocturna no menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Botón de alternancia do modo avión"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botón de alternancia do modo avión no menú de configuración rápida"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicador de compartir pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicador de uso compartido de pantalla no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicador de gravación da pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicador de gravación da pantalla no panel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Reloxo Mundial"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Reloxo mundial no menú do reloxo"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Tempo"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Tempo no menú do reloxo"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendario no menú do reloxo"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Eventos"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Botón de eventos no menú do reloxo"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Caixa de busca"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Indica se mostrar a caixa de busca na vista xeral"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr ""
|
||||
"Indica se mostrar o Dash que contén as iconas de aplicacións favoritas e "
|
||||
"abertas"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Separador de guións"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Liña separadora de guións que separa as aplicacións de fixación das "
|
||||
"aplicacións de desenganche"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicador de execución da aplicación Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"O indicador de punto no guión que mostra que a aplicación está en execución"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Botón de Aplicacións"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr ""
|
||||
"Indica se mostrar o botón no Dash que troca a visibilidade da lista de "
|
||||
"aplicacións"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Visualización en pantalla (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr ""
|
||||
"Indica se mostrar o indicador de volume e brillo en pantalla cando se cambia"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Indicador do espazo de traballo"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
"Indica se mostrar a xanela emerxente que aparece na pantalla cando cambia o "
|
||||
"espazo de traballo"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Trocador do espazo de traballo"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Tamén se refire ás miniaturas do espazo de traballo que pode ver na vista "
|
||||
"xeral para seleccionar un espazo de traballo"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Grella de aplicacións dos espazo de traballo"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Caixas de espazo de traballo na grella de aplicacións"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Botón de peche no selector de xanelas"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Indica se mostrar o botón de peche de xanela na vista xeral"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Lenda do selector de xanelas"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr ""
|
||||
"Indica se mostrar o texto debaixo da vista previa da xanela na vista xeral"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menú de fondo de pantalla"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr ""
|
||||
"Indica se mostrar o menú cando fas clic dereito sobre o fondo do escritorio"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Efecto de ondulación na esquina activa"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Indica se mostrar un efecto de ondulación na esquina activa"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Botón Facer captura de pantalla no menú Ventá"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Botón de captura de pantalla na barra de título do menú do botón dereito do "
|
||||
"rato"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Iconas"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Icona do panel de notificacións"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Icona de enerxía"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Icona do selector de xanelas"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr ""
|
||||
"Indica se mostrar na vista xeral a icona baixo a vista previa da xanela"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Espazos de traballo envolventes"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"O seguinte espazo de traballo será o primeiro espazo de traballo cando estea "
|
||||
"no último espazo de traballo. E o espazo de traballo anterior será o último "
|
||||
"espazo de traballo cando estea no primeiro espazo de traballo."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Peek do espazo de traballo"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Indica se o espazo de traballo seguinte e o anterior deberían estar visibles "
|
||||
"na vista xeral."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Cambiador de espazo de traballo Fai clic na vista principal"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"O clic do cambiador de espazo de traballo sempre vai á vista principal do "
|
||||
"espazo de traballo."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Xanela esixe atención"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Eliminar a notificación de xanela preparada e céntrase nela"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Fiestra maximizada por defecto"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximiza todas as fiestras na creación"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Escribir para buscar"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Pode iniciar a busca sen o campo de busca ou incluso centrarse nel na vista "
|
||||
"xeral"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Mostrar sempre o trocador de espazo de traballo"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Mostra o trocador de espazo de traballo incluso ao usar un espazo de "
|
||||
"traballo con espazos de traballo dinámicos"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Tecla de superposición"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Desactivar a tecla de superposición (super tecla)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Tecla Super dobre para App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Mostra a grella da aplicación cando premes dúas veces a tecla super rápido"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Atraso emerxente"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Elimina o atraso de todas as ventás emerxentes do conmutador como alt-tab, "
|
||||
"ctrl-alt-tab, deseño de teclado,..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Estado ao arrincar"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "O modo no que está GNOME Shell cando arrinca"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Escritorio"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Visión xeral"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Personalizar"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Cor de acento para as iconas"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Use cor de acento para todas as iconas simbólicas"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Inverte os elementos da columna do calendario"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Inverte as posicións dos elementos da columna do calendario no menú do reloxo"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Visión xeral Tamaño do espazo"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "O tamaño do espazo para o xestor de controis en xeral"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Tamaño da esquina do fondo do espazo de traballo"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Tamaño da esquina do fondo do espazo de traballo na vista xeral"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Tamaño do panel"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Tamaño da icona do panel"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Tamaño do recheo do botón do panel"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Tamaño do recheo do indicador do panel"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Posición do panel"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Posición do menú do reloxo"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Desprazamento da posición do menú do reloxo"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Tamaño do trocador de espazos de traballo"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animación"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Tamaño da icona do Dash"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Posición do báner de notificacións"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Posición das notificacións en pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Posición OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "A posición OSD cando se mostra na pantalla aparece na pantalla"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Tamaño da vista previa da xanela"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "alt-tab Tamaño da icona de vista previa da xanela"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Tamaño da icona Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Ancho do espello"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Altura do espello"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Máximo de resultados de busca mostrados"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"O máximo de elementos de resultados de busca que aparecen na páxina de busca"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Predeterminado"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Polo tema da Shell"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Arriba"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Abaixo"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "No centro"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Á dereita"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Á esquerda"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Sen animación"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Velocidade predeterminada"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Case ningún"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "A máis rápida"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Máis rápida"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Rápida"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Máis lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "A máis lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Arriba ao inicio"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Arriba centrado"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Arriba ao final"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Inicio inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Centro inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Extremo inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Inicio do centro"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Extremo Centro"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Pode escoller entre perfís predefinidos ou simplemente pode usar a súa "
|
||||
"propia configuración personalizada"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personalizado"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimalista"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Superminimista"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Sobrescribir"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Tema do Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Sobrescribe parcialmente o tema do Shell para crear un escritorio minimalista"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Apoio"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Soporte vía Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Método preferido"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Soporte vía Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notificación de soporte"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Xestiona cando aparece a notificación de asistencia"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Ligazóns"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Informar dun erro"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Canle de YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "En Novos Lanzamentos"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensuais"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Enderezo copiado no portapapeis"
|
734
extensions/48/just-perfection/po/it.po
Executable file
|
@ -0,0 +1,734 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Andrea Brandi <git@andreabrandi.com>, 2022.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2022-09-11 00:10+0200\n"
|
||||
"Last-Translator: Andrea Brandi <git@andreabrandi.com>\n"
|
||||
"Language-Team: Italian <git@andreabrandi.com>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Gtranslator 42.0\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilità"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Pannello nella Panoramica"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Pulsante Attività"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Attiva/disattiva il pulsante Attività"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menu dell'orologio"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Mostra la data e l'ora sul pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Disposizione tastiera"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Indicatore che mostra disposizione dei tasti sulla tastiera"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menu accessibilità"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Indicatore del menu accessibilità sul pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Impostazioni rapide"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menu delle impostazioni rapide nel pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Pulsante di attivazione/disattivazione modalità scura"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
"Pulsante di attivazione/disattivazione modalità scura nel menu Impostazioni "
|
||||
"rapide"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Pulsante di attivazione/disattivazione luce notturna"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
"Pulsante di attivazione/disattivazione luce notturna nel menu Impostazioni "
|
||||
"rapide"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Pulsante di attivazione/disattivazione modalità aereo"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
"Pulsante di attivazione/disattivazione modalità aereo nel menu Impostazioni "
|
||||
"rapide"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicatore di condivisione dello schermo"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicatore di condivisione dello schermo nel pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicatore di registrazione dello schermo"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicatore di registrazione dello schermo nel pannello"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Orologi mondiali"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Orologi mondiali nel menu dell'orologio"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Meteo"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Meteo nel menu dell'orologio"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendario nel menu dell'orologio"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Eventi"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Pulsante Eventi nel menu dell'orologio"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Ricerca"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Barra di ricerca nella panoramica"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Barra delle applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr ""
|
||||
"Contiene le icone delle applicazioni preferite e delle applicazioni aperte"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Separatore sulla barra delle applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Trattino per separare le app bloccate da quelle sbloccate sulla barra"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicatore di esecuzione dell'app Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"L'indicatore del punto nel trattino che mostra che l'app è in esecuzione"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Pulsante mostra applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Pulsante sulla barra per aprire la griglia delle applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Notifiche in sovrimpressione (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Notifica volume e luminosità sullo schermo quando vengono modificati"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Notifica quando si cambia l'area di lavoro"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Popup che appare sullo schermo quando si cambia l'area di lavoro"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Selettore dell'area di lavoro"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr "Miniature delle aree di lavoro nella panoramica delle attività"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Selettore dell'area di lavoro nella griglia delle applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Miniature delle aree di lavoro nella griglia delle applicazioni"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Pulsante per chiudere le finestre nella panoramica"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Pulsante per chiudere le finestre nella panoramica delle attività"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Descrizione delle finestre nella panoramica"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr ""
|
||||
"Testo mostrato sotto l'anteprima durante la selezione della finestra nella "
|
||||
"panoramica"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menu dello sfondo"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr ""
|
||||
"Menu attivabile facendo clic con il tasto destro sull'immagine di sfondo"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Animazione ondulata"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Animazione dell'angolo attivo"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Pulsante Cattura screenshot nel menu Finestra"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Pulsante Acquisisci screenshot nel menu di scelta rapida della barra del "
|
||||
"titolo"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Icone"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Icona di notifica del pannello"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Icona di alimentazione"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Icona finestre nella panoramica"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Mostra un'icona sotto l'anteprima delle finestre nella panoramica"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Aree di lavoro collegate"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Quando ci si trova nell'ultima area di lavoro, l'area successiva sarà la "
|
||||
"prima. Quando ci si trova nella prima area di lavoro, l'area precedente sarà "
|
||||
"l'ultima."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Sbirciatina dell'area di lavoro"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Se l'area di lavoro successiva e quella precedente devono essere visibili "
|
||||
"nella panoramica."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Workspace Switcher Fai clic sulla vista principale"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Il clic su Workspace Switcher porta sempre alla vista principale dell'area "
|
||||
"di lavoro."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "La finestra richiede attenzione"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Rimuove la notifica della finestra pronta e la rende subito attiva"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Finestra ingrandita per impostazione predefinita"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Massimizza tutte le finestre durante la creazione"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Digita per cercare"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Nella panoramica, effettua la ricerca senza selezionare il riquadro della "
|
||||
"ricerca."
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Mostra sempre il selettore dell'area di lavoro"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Mostra il selettore dell'area di lavoro anche quando viene utilizzata una "
|
||||
"sola area di lavoro con aree di lavoro dinamiche"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Chiave sovrapposta"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Disabilita tasto sovrapposto (tasto super)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Doppio tasto Super per griglia applicazioni"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Mostra griglia delle applicazioni premendo due volte consecutive il tasto "
|
||||
"Super"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Ritardo popup"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Rimuove il ritardo per tutti i popup di switcher come alt-tab, ctrl-alt-tab, "
|
||||
"layout di tastiera, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Stato di avvio"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Quando GNOME Shell si avvia per la prima volta"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Panoramica"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Personalizza"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Colore accento per le icone"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Utilizza il colore accento per tutte le icone simboliche"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Inverti elementi colonna calendario"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Inverti le posizioni degli elementi colonna calendario nel menu orologio"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Panoramica Dimensione spaziatura"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr ""
|
||||
"La dimensione della spaziatura per il gestore dei controlli in panoramica"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Angolo arrotondato dello sfondo dell'area di lavoro"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr ""
|
||||
"Dimensione dell'angolo dell'area di lavoro nella panoramica delle attività"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Dimensione del pannello"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Dimensione icone del pannello"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Spaziatura tra i pulsanti del pannello"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Spaziatura tra gli indicatori del pannello"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Posizione del pannello"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Posizione menu dell'orologio"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Spostamento posizione del menu dell'orologio"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Dimensione selettore dell'area di lavoro"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animazione"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Dimensione barra delle applicazioni"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Posizione banner delle notifiche"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Posizione del popup di notifica quando le notifiche vengono visualizzate "
|
||||
"sullo schermo"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Posizione notifiche OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Posizione delle notifiche OSD quando vengono mostrate sullo schermo"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Dimensione dell'anteprima Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Dimensione icona dell'anteprima Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Dimensione icona Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Larghezza Looking Glass"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Altezza Looking Glass"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Numero massimo di risultati di ricerca visualizzati"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Numero massimo di elementi risultato di ricerca visualizzati nella pagina di "
|
||||
"ricerca"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Predefinito"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Predefinito"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Sopra"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Sotto"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Al centro"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "A destra"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "A sinistra"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Nessuna"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Predefinita"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Quasi nessuno"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Molto veloce"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Più veloce"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Veloce"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Più lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Molto lenta"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "In alto a sinistra"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "In alto al centro"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "In alto a destra"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "In basso a sinistra"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "In basso al centro"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "In basso a destra"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Al centro a sinistra"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Al centro a destra"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profilo"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Scegliere uno dei profili predefiniti o utilizzare un profilo personalizzato"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personalizzato"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimale"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super minimale"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Sostituzione"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Tema Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "Ignora parzialmente il tema della shell per creare un desktop minimale"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Supporto"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Supporto tramite Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Metodo preferito"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Copia"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Supporta su Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notifica di supporto"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Gestisci quando viene visualizzata la notifica di supporto"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Collegamenti"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Segnala un errore"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Canale YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Sulle nuove uscite"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensile"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Indirizzo copiato negli appunti"
|
714
extensions/48/just-perfection/po/ja.po
Normal file
|
@ -0,0 +1,714 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Gnuey56 <gnuey56@proton.me>, 2023.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2024-05-02 21:05+0900\n"
|
||||
"Last-Translator: Gnuey56 <gnuey56@proton.me>\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 3.4.2\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "視覚"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "パネル"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "オーバービュー時のパネル"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "アクティビティボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "オーバービュー切り替えボタンの表示を切り替えます"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "時計メニュー"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "日付と時間を表示するパネルのメニューでもあります"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "キーボードレイアウト"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "パネルにあるキーボードレイアウトインジケーターボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "アクセシビリティメニュー"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "パネルにあるアクセシビリティメニューインジケーターのボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "クイックセッティング"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "パネルにあるクイックセッティングメニュー"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "ダーク モード トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "クイック設定メニューのダーク モード トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "ナイト ライト トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "クイック設定メニューのナイト ライト トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "機内モード トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "クイック設定メニューの機内モード トグル ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "スクリーン共有インジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "パネルにあるスクリーン共有インジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "スクリーン録画インジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "パネルにあるスクリーン録画インジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "世界時計"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "時計メニューにある世界時計"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "天気"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "時計メニューにある天気"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "カレンダー"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "時計メニューにあるカレンダー"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "イベント"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "時計メニューにあるイベントのボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "検索"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "オーバービュー内にある検索欄"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "お気に入りや開いているアプリ表示する Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Dash のセパレーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"ピン留めされているアプリとピン留めされていないアプリを分ける Dash のセパレー"
|
||||
"ター"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "ダッシュ実行アプリインジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "アプリが実行中であることをしめすダッシュ内のドット インジケーター"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "アプリケーションを表示ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Dash にあるアプリケーションリストを表示するボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "On Screen Display (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "音量や明るさを変更した時にスクリーンディスプレイに表示"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "ワークスペースポップアップ"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "ワークスペースを切り替えた時にスクリーン上に表示されるポップアップ"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "ワークスペーススイッチャー"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"オーバービュー内に表示され、ワークスペースを選択することができる、ワークス"
|
||||
"ペースのサムネイルボタンを指します"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "アプリグリッド内のワークスペース表示"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "アプリグリッド内に表示されるワークスペースボックス"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "ウィンドウ選択の“閉じる”ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "オーバービュー内のウィンドウプレビューのウィンドウを閉じるボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "ウィンドウ選択時に表示されるウィンドウタイトル"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "オーバービュー内のウィンドウプレビューの下に表示されるテキスト"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "バックグラウンドのメニュー"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "デスクトップ背景を右クリックすると表示されるメニュー"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "波紋ボックス"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "ホットコーナーのアニメーションエフェクト"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "ウィンドウメニューにある “スクリーンショットを撮る” ボタン"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"タイトルバーを右クリックして表示されるメニューのスクリーンショット撮影ボタン"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "アイコン"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "パネル通知アイコン"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "電源アイコン"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "ウィンドウ選択に表示されるアイコン"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "オーバービュー内でウィンドウプレビューの下に表示されるアイコン"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "振る舞い"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "ワークスペースの切り替え"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"最後のワークスペースにいる場合、次のワークスペースに進むと最初のワークスペー"
|
||||
"スに移動します。最初のワークスペースにいる場合、前のワークスペースに戻ると最"
|
||||
"後のワークスペースに移動します。"
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "ワークスペースのピーク"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "次と前のワークスペースをオーバービューに表示するかどうか。"
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "ワークスペース スイッチャーをクリックするとメイン ビューに移動します"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"ワークスペース スイッチャーをクリックすると、常にワークスペースのメイン "
|
||||
"ビューに移動します。"
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "ウィンドウをフォーカスさせる"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "ウィンドウの準備完了通知をオフにしてウィンドウをフォーカスさせます"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "デフォルトで最大化されるウィンドウ"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "ウィンドウ作成時にすべてのウィンドウを最大化する"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "タイプして検索"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr "オーバービュー内で検索欄や検索欄をフォーカスしたりせずに検索できます"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "常にワークスペーススイッチャーを表示"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"動的ワークスペースで1つのワークスペースしか使用していない場合でも、ワークス"
|
||||
"ペース切り替えを表示します"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "オーバーレイキー"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "オーバーレイキー(Super キー)を無効にする"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Super キーを二回押してアプリグリッドを表示"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "Super キーを素早く二回押してアプリグリッドを表示します"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "ポップアップ遅延"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Alt-Tab、Ctrl-Alt-Tab、キーボードレイアウト切り替えなどの、切り替えポップアッ"
|
||||
"プの遅延をなくします。"
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "起動時の状態"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "GNOME Shell が起動した最初の状態"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "デスクトップ"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "オーバービュー"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "カスタマイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "アイコンのアクセント カラー"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "すべてのシンボル アイコンにアクセント カラーを使用します"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "カレンダー列項目を反転"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "時計メニューのカレンダー列項目の位置を反転します"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "オーバービューのスペースサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "オーバービューの操作コントロール(ボタンや検索欄)の間の空白サイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "ワークスペースの角のサイズ(丸さ)"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "オーバービューに表示されるワークスペースの壁紙の角のサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "パネルサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "パネルアイコン"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "パネルボタンのパディングサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "パネルインジケーターのパディングサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "パネルの位置"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "時計メニューの位置"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "時計メニューのオフセット"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "ワークスペーススイッチャーのサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "アニメーション"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Dash アイコンのサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "通知バナーの位置"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "画面に通知が表示される時の通知ポップアップの位置"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD の位置"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "スクリーンディスプレイに表示される OSD の位置"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt Tab ショートカットのウィンドウプレビューサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt Tab ショートカットのウィンドウプレビューのアイコンサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt Tab ショートカットのアイコンサイズ"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Looking Glass の幅"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Looking Glass の高さ"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "検索結果の最大表示数"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "検索ページに表示される検索結果の最大表示数"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Shell テーマ"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "上"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "下"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "中央"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "右"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "左"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "アニメーションなし"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "デフォルトのスピード"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "ほとんどなし"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "最高"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "とても速い"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "速い"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "遅い"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "とても遅い"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "最低"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "左上"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "上の中央"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "右上"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "左下"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "下の中央"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "右下"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "中央の左"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "中央の右"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "プロファイル"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"用意されたプロファイルを使うことができますし、カスタマイズした設定を使うこと"
|
||||
"もできます"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "カスタム"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "ミニマル"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "超ミニマル"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "上書き"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Shell テーマ"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "ミニマルデスクトップを適用するために Shell テーマを上書きします"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "サポート"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Crypto によるサポート"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "推奨される方法"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "コピー"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Buy Me a Coffee で支援"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "サポート通知"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "サポート通知が表示されるタイミングを管理"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "リンク"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "バグを報告"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube チャンネル"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "なし"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "新リリース時"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "毎月"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "アドレスがクリップボードにコピーされました"
|
697
extensions/48/just-perfection/po/main.pot
Executable file
|
@ -0,0 +1,697 @@
|
|||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR Just Perfection
|
||||
# This file is distributed under the same license as the Just Perfection package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-01 08:45-0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr ""
|
708
extensions/48/just-perfection/po/ne.po
Executable file
|
@ -0,0 +1,708 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# 1BA4 <nabin7076@protonmail.com>, 2021.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-02-05 14:43+0545\n"
|
||||
"Last-Translator: 1BA4 <nabin7076@protonmail.com>\n"
|
||||
"Language-Team: Nepali <>\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
"X-Generator: Gtranslator 3.38.0\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "दृश्यता"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "प्यानल"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "अवलोकन मा प्यानल"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "एकटीभीटिज बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "अवलोकन दृश्यता टगल गर्न प्यानलमा बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "घडी मेनू"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "मिति मेनूको रूपमा पनि जानिन्छ प्यानलमा मिति र समय देखाउँदछ"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "कीबोर्ड लेआउट"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "प्यानलमा कीबोर्ड लेआउट सूचक बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "पहुँच मेनू"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "प्यानलमा पहुँच मेनू सूचक बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "द्रुत सेटिङहरू"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "प्यानलमा द्रुत सेटिङ मेनु"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "गाढा मोड टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "द्रुत सेटिङ मेनुमा गाढा मोड टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "रातको प्रकाश टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "द्रुत सेटिङ मेनुमा रातको प्रकाश टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "हवाइजहाज मोड टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "द्रुत सेटिङ मेनुमा हवाईजहाज मोड टगल बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "स्क्रिन साझेदारी सूचक"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "प्यानलमा स्क्रिन साझेदारी सूचक"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "स्क्रिन रेकर्डिङ सूचक"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "प्यानलमा स्क्रिन रेकर्डिङ सूचक"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "विश्व घडी"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "घडी मेनुमा विश्व घडी"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "मौसम"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "घडी मेनुमा मौसम"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "पात्रो"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "घडी मेनुमा पात्रो"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "घटनाहरू"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "घडी मेनुमा घटनाहरू बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "खोज"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "सिंहावलोकन मा खोज प्रविष्टि"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "ड्यास"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "ड्याससँग मनपर्ने र खोलिएका अनुप्रयोग आइकनहरू छन्"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "ड्यास विभाजक"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "ड्यास विभाजक रेखा जसले पिन एपहरूलाई अनपिन एपहरूबाट अलग गर्छ"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "ड्यास एप चलिरहेको सूचक"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "ड्यासमा डट सूचक जसले एप चलिरहेको देखाउँछ"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "अनुप्रयोग बटन देखाउनुहोस्"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "ड्यासमा बटन जुन अनुप्रयोग सूची दृश्यता टगल गर्दछ"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "अन स्क्रिन डिस्प्ले (ओएसडी)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "स्क्रिन डिस्प्लेमा भोल्यूम र चमक जब परिवर्तन हुन्छ"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "वोर्कस्पेस पप अप"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "पपअप जुन तपाईं कार्यस्थान परिवर्तन गर्दा स्क्रिनमा देखा पर्दछ"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "वोर्कस्पेस स्विचर"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"साथै कार्यक्षेत्र थम्बनेलहरूलाई जनाउँछ जुन तपाईंले कार्यस्थान छनौट गर्नको लागि अवलोकनमा "
|
||||
"देख्नुहुन्छ"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "कार्यक्षेत्र अनुप्रयोग ग्रिड"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "अनुप्रयोग ग्रिडमा कार्यक्षेत्र बक्सहरू"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "विन्डो पिकर बन्द बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "सिंहावलोकन मा विन्डो पूर्वावलोकन मा बन्द बटन"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "विन्डो पिकर क्याप्शन"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "सिंहावलोकन मा विन्डो पूर्वावलोकन अन्तर्गत पाठ"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "पृष्ठभूमि मेनू"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "जब तपाईं डेस्कटप पृष्ठभूमिमा दायाँ क्लिक गर्नुहुन्छ"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "लहर बक्स"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "तातो कुना एनीमेशन प्रभाव"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "विन्डो मेनुमा स्क्रिनसट बटन लिनुहोस्"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "शीर्षक पट्टीमा स्क्रिनसट बटन लिनुहोस् राइट क्लिक मेनु"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "आइकनहरू"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "प्यानल सूचना आइकन"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "पावर आइकन"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "विन्डो पिकर आइकन"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "सिंहावलोकनमा विन्डो पूर्वावलोकन मुनिको प्रतिमा"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "व्यवहार"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "कार्यक्षेत्र वरिपरि लपेट्नुहोस्"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"अर्को कार्यक्षेत्र पहिलो कार्यक्षेत्र हुनेछ जब तपाइँ अन्तिम कार्यक्षेत्रमा हुनुहुन्छ। र अघिल्लो "
|
||||
"कार्यक्षेत्र अन्तिम कार्यक्षेत्र हुनेछ जब तपाइँ पहिलो कार्यक्षेत्रमा हुनुहुन्छ।"
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "कार्यक्षेत्र पीक"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "अर्को र अघिल्लो कार्यस्थान सिंहावलोकनमा देखिने छ कि छैन।"
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "कार्यस्थान स्विचर मुख्य दृश्यमा क्लिक गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr "कार्यस्थान स्विचर क्लिक सधैं कार्यस्थानको मुख्य दृश्यमा जान्छ।"
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "विन्डोले ध्यान फोकसको माग गर्दछ"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "विन्डो हटाउछ सूचनाको लागि तयार छ र विन्डोमा फोकस गर्दछ"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "सञ्झ्याल पूर्वनिर्धारित द्वारा अधिकतम"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "सिर्जनामा सबै सञ्झ्यालहरू बढाउनुहोस्"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "खोजी गर्न टाइप गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"तपाईं खोजी प्रविष्टि बिना वा सुरु सिंहावलोकनमा यसमा केन्द्रित नगरी खोजी सुरू गर्न सक्नुहुनेछ"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "सँधै कार्यक्षेत्र स्विचर देखाउनुहोस्"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"डायनामिक वर्कस्पेसको साथ केवल एक कार्यक्षेत्र प्रयोग भएको बखत वर्कस्पेस स्विचर देखाउँदछ"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "ओभरले कुञ्जी"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "ओभरले कुञ्जी अक्षम गर्नुहोस् (सुपर कुञ्जी)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "एप ग्रिडमा डबल सुपर कुञ्जी"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "तपाईंले सुपर कुञ्जीलाई द्रुत रूपमा डबल हिट गर्दा एप ग्रिड देखाउँछ"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "पपअप ढिलाइ"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Alt-tab, ctrl-alt-ट्याब, किबोर्ड लेआउट, ... जस्ता सबै स्विचर पपअपहरूको लागि ढिलाइ "
|
||||
"हटाउँछ।"
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "सुरूवात स्थिति"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "जब जिनोम शेल पहिलो पटक सुरू हुन्छ"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "डेस्कटप"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "अवलोकन"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "अनुकूलन गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "आइकनहरूको लागि एक्सेन्ट रङ"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "सबै प्रतीकात्मक आइकनहरूको लागि एक्सेन्ट रङ प्रयोग गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "क्यालेन्डर स्तम्भ वस्तुहरू उल्टाउनुहोस्"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "घडी मेनुमा क्यालेन्डर स्तम्भ वस्तुहरूको स्थिति उल्टाउनुहोस्"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "अवलोकन स्पेसिङ साइज"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "सिंहावलोकनमा नियन्त्रण प्रबन्धकका लागि स्पेसिङ साइज"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "कार्यक्षेत्र पृष्ठभूमि कोने आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "सिंहावलोकन मा कार्यक्षेत्र पृष्ठभूमि कुना आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "प्यानल आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "प्यानल आइकन आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "प्यानल बटन प्याडिंग आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "प्यानल सूचक प्याडिंग आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "प्यानल स्थिति"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "घडी मेनू स्थिति"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "घडी मेनू स्थिति अफसेट"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "कार्यक्षेत्र स्विचर आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "एनिमेशन"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "ड्यास आइकन आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "सूचना ब्यानर स्थिति"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "सूचना पपअप स्थिति जब सूचनाहरू स्क्रीनमा देखा पर्दछ"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "ओएसडी पद"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "OSD स्थिति जब स्क्रिन डिस्प्ले स्क्रिनमा देखा पर्दछ"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "alt-tab विन्डो पूर्वावलोकन आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "alt-tab विन्डो पूर्वावलोकन प्रतिमा आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "alt-tab प्रतिमा आकार"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "हेर्दै गिलास चौडाइ"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "हेर्दै गिलास उचाइ"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "अधिकतम प्रदर्शित खोज परिणामहरू"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "खोज पृष्ठमा देखाइने अधिकतम प्रदर्शित खोज परिणाम वस्तुहरू"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "पूर्वनिर्धारित"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "शेल थिम द्वारा"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "माथि"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "तल"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "केन्द्र"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "सहि"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "बाँया"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "कुनै एनिमेशन छैन"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "पूर्वनिर्धारित गति"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "लगभग कुनै पनि छैन"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "सब भन्दा छिटो"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "छिटो"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "छिटो"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "ढिलो"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "ढिलो"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "सब भन्दा ढिलो"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "शीर्ष सुरू"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "शीर्ष केन्द्र"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "तलको सुरुवात"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "तल्लो केन्द्र"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "तलको अन्त्य"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "केन्द्र सुरु"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "केन्द्र अन्त्य"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "प्रोफाइल"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"तपाइँ पूर्वनिर्धारित प्रोफाइलहरू बीच छनौट गर्न सक्नुहुन्छ वा तपाइँ केवल तपाइँको आफ्नै अनुकूलित "
|
||||
"सेटिङहरू प्रयोग गर्न सक्नुहुन्छ"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "अनुकूलन"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "न्यूनतम"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "सुपर न्यूनतम"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "ओभरराइड"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "शेल थिम"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "न्यूनतम डेस्कटप सिर्जना गर्न आंशिक रूपमा शेल विषयवस्तु ओभरराइड गर्दछ"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "समर्थन"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "क्रिप्टो मार्फत समर्थन"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "रुचाइएको विधि"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "प्रतिलिपि गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Buy Me a Coffee मार्फत समर्थन"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "समर्थन सूचना"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "समर्थन सूचना देखा पर्दा व्यवस्थापन गर्नुहोस्"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "लिङ्कहरू"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "बग रिपोर्ट"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "युट्युब च्यानल"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "कहिल्यै नगर्नुहोस्"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "नयाँ रिलीजहरूमा"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "मासिक"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "क्लिपबोर्डमा ठेगाना प्रतिलिपि गरियो"
|
718
extensions/48/just-perfection/po/nl.po
Normal file
|
@ -0,0 +1,718 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2022-03-04 14:07+0100\n"
|
||||
"Last-Translator: Heimen Stoffels <vistausss@fastmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Zichtbaarheid"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Bovenbalk"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Bovenbalk op overzicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Activiteitenknop"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "De knop op de bovenbalk om het overzicht te tonen of verbergen."
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Klokmenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Het menu op de bovenbalk met de datum en tijd."
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Toetsenbordindeling"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "De toetsenbordindelingindicator op de bovenbalk."
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Toegankelijkheidsmenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "De toegankelijkheidsmenu-indicator op de bovenbalk."
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Snelle instellingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Snel instellingenmenu in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Donkere modus-schakelknop"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Donkere modus-schakelknop in het menu Snelle instellingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Nachtlamp-schakelknop"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Nachtlamp-schakelknop in het menu Snelle instellingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Vliegtuigmodus-schakelknop"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Vliegtuigmodus-schakelknop in het menu Snelle instellingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicator voor scherm delen"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicator voor scherm delen in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Schermopname-indicator"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Schermopname-indicator in paneel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Wereldklok"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "De wereldklok in het klokmenu."
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Weer"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Het weerbericht in het klokmenu."
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Kalender in klokmenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Evenementen"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Evenementenknop in klokmenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Het zoekvak op het overzicht."
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Vensteroverzicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Het overzicht met favoriete en geopende vensters."
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "streepjesscheidingsteken"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Scheidingslijn streepjescode die apps scheidt van apps losmaken"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Dash App Running-indicator"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "De puntindicator in het streepje geeft aan dat de app actief is"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Toepassingenknop tonen"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr ""
|
||||
"De knop op het overzicht waarmee u de toepassingenlijst kunt tonen of "
|
||||
"verbergen."
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Meldingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Toon volume- en helderheidsmeldingen bij het aanpassen ervan."
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Werkbladmeldingen"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "De melding die wordt getoond na het wisselen van werkblad."
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Werkbladwisselaar"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Ook van toepassing op de werkbladminiaturen die op het overzicht worden "
|
||||
"getoond."
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Werkbladoverzicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Het werkbladoverzicht op het toepassingenrooster."
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Sluitknop op vensteroverzicht"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "De sluitknop op venstervoorvertoningen op het overzicht."
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Vensternamen"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "De tekst onder venstervoorvertoningen op het overzicht."
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Achtergrondmenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Het rechtermuisknopmenu van het bureaublad."
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Rimpeling"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Animaties van de snelhoek"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Knop Screenshot maken in venstermenu"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Maak een screenshot-knop in de titelbalk rechtsklikmenu"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Pictogrammen"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Meldingspictogram op bovenbalk"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Energiepictogram"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Vensterkeuzepijl"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Het pictogram onder venstervoorvertoningen op het overzicht."
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Gedrag"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Doorlopende werkbladwisseling"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Als u op het laatste werkblad bent, dan is het volgende werkblad het eerste "
|
||||
"en vice-versa."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Werkruimte Kijk"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Of de volgende en vorige werkruimte in het overzicht zichtbaar moeten zijn."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Werkruimte-switcher Klik op de hoofdweergave"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Met de werkruimte-switcherklik gaat u altijd naar de hoofdweergave van de "
|
||||
"werkruimte."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Geen focus leggen op vensters die aandacht vereisen"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr ""
|
||||
"Toont geen melding ‘Venster is gereed’ en legt geen focus meer op zulke "
|
||||
"vensters."
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Venster standaard gemaximaliseerd"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximaliseer alle vensters bij het maken"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Typ om te zoeken"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"U kunt een zoekopdracht starten zonder dat het zoekveld of overzicht "
|
||||
"zichtbaar is."
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Werkbladwisselaar altijd tonen"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr "Toon de werkbladwisselaar óók als er slechts één werkblad is."
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Overlay-sleutel"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Overlay-toets uitschakelen (supertoets)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Eénknopssneltoets voor toepassingenlijst"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Toon de toepassingenlijst door tweemaal snel achter elkaar op de Super-toets "
|
||||
"te drukken."
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Pop-upvertraging"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Verwijdert de vertraging voor alle switcher-pop-ups zoals alt-tab, ctrl-alt-"
|
||||
"tab, toetsenbordindeling, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Opstarten"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Na een koude start beginnen op het"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Bureaublad"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Overzicht"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Aanpassen"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Accentkleur voor pictogrammen"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Gebruik accentkleur voor alle symbolische pictogrammen"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Kalenderkolomitems omkeren"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Kalenderkolomitems in het klokmenu omkeren"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Overzicht Afstandsmaat"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "De afstandsmaat voor controls manager in overzicht"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Hoekgrootte van werkbladachtergrond"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "De hoekgrootte van de werkbladachtergrond op het overzicht."
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Bovenbalkgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Bovenbalk-pictogramgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Opvulling van bovenbalkknoppen"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Opvulling van bovenbalkindicators"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Bovenbalkpositie"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Klokmenulocatie"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Klokmenuverschuiving"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Grootte van werkbladwisselaar"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animatie"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Pictogramgrootte op vensteroverzicht"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Meldingslocatie"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "De locatie op het scherm waar meldingen worden getoond."
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD-positie"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "OSD-positie wanneer de weergave op het scherm op het scherm verschijnt"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Venster Voorbeeldgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab Venster Voorbeeld Pictogram Grootte"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab-pictogramgrootte"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Breedte kijkglas"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Kijkglas Hoogte"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Maximum aantal weergegeven zoekresultaten"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Het maximum aantal weergegeven zoekresultaten dat op de zoekpagina wordt "
|
||||
"weergegeven"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Standaard"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Afhankelijk van Shell-thema"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Bovenaan"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Onderaan"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Midden"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Rechts"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Geen animatie"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Standaard"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Bijna geen"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Snelst"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Sneller"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Snel"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Langzaam"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Langzamer"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Langzaamst"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Linksboven"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Midden-boven"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Rechtsboven"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Linksonder"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Midden-onder"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Rechtsonder"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Midden start"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Midden einde"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profiel"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"U kunt kiezen tussen vooraf ingestelde profielen of uw eigen voorkeuren."
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Aangepast"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimalistisch"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Alleen het broodnodige"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Afdwingen"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Shell-thema"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Dwing een ander Shell-thema af om een minimale werkomgeving op te zetten."
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Ondersteuning"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Ondersteuning via crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Voorkeursmethode"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Kopiëren"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Ondersteunen op Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Ondersteuningsmelding"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Beheer wanneer de ondersteuningsmelding wordt weergegeven"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Bug melden"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube-kanaal"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nooit"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Bij nieuwe releases"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Maandelijks"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Adres gekopieerd naar klembord"
|
725
extensions/48/just-perfection/po/pt_BR.po
Normal file
|
@ -0,0 +1,725 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# zelling <zelling@zelling-desktop>, 2021.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-03-10 16:11-0300\n"
|
||||
"Last-Translator: zelling <zelling@zelling-desktop>\n"
|
||||
"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge."
|
||||
"net>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidade"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Painel em visão geral"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Botão de Atividades"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Botão no painel para alternar a visibilidade da visão geral"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Menu do Relógio"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Também conhecido como menu de data mostra a data e hora no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Layout do Teclado"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Botão indicador de layout de teclado no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Menu de Acessibilidade"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Botão indicador do Menu de acessibilidade no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Configurações rápidas"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Menu de configurações rápidas no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Botão de alternância do modo escuro"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botão de alternância do modo escuro no menu de configurações rápidas"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Botão de alternância da luz noturna"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Botão de alternância da luz noturna no menu de configurações rápidas"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Botão de alternância do modo avião"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Botão de alternância do modo avião no menu de configurações rápidas"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Indicador de compartilhamento de tela"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Indicador de compartilhamento de tela no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Indicador de gravação de tela"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Indicador de gravação de tela no painel"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Relógio mundial"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Relógio mundial no menu do relógio"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Clima"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Tempo no menu do relógio"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Calendário"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Calendário no menu do relógio"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Eventos"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Botão de eventos no menu do relógio"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Visão geral da entrada de pesquisa"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash mantém ícones de aplicativos favoritos e abertos"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Separador de traço"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Linha separadora de traço que separa os aplicativos fixados dos aplicativos "
|
||||
"desafixados"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Indicador de execução do aplicativo Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr ""
|
||||
"O indicador de ponto no traço que mostra que o aplicativo está em execução"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Mostrar botão de aplicativos"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Botão no travessão que alterna a visibilidade da lista de aplicativos"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "On Screen Display (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Volume e brilho na tela quando a mudança acontece"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Popup de Área de Trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Popup que aparece na tela quando você muda o espaço de trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Seletor de Área de Trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Também se refere às miniaturas da área de trabalho que você vê na visão "
|
||||
"geral para selecionar uma área de trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Grade de aplicativos dos espaços de trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Caixas de espaço de trabalho na grade do aplicativo"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Botão Fechar selecionador de janela"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "O botão Fechar na visualização da janela em visão geral"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Legenda do selecionador de janela"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "O texto sob a visualização da janela em visão geral"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Menu de Fundo"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Quando você clica com o botão direito no fundo da área de trabalho"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Ripple Box"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Efeitos de animação de canto quente"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Botão Tirar captura de tela no menu da janela"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Botão de captura de tela no menu do botão direito da barra de título"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "ícones"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Ícone de Notificação do Painel"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Botão de Energia"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Ícone do Seletor de Janela"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "O ícone sob a visualização da janela na visão geral"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Comportamento"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Wraparound do espaço de trabalho"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"A próxima área de trabalho será a primeira área de trabalho quando você "
|
||||
"estiver na última área de trabalho. e a área de trabalho anterior será a "
|
||||
"última quando você estiver na primeira."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Espiada do espaço de trabalho"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr ""
|
||||
"Se o próximo espaço de trabalho e o anterior devem estar visíveis na visão "
|
||||
"geral."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Clique no seletor de área de trabalho para a visualização principal"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"O clique no seletor de área de trabalho sempre vai para a visualização "
|
||||
"principal da área de trabalho."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "A janela exige atenção"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Remove a janela está pronta para notificação e foca na janela"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Janela maximizada por padrão"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximize todas as janelas na criação"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Digite Para Pesquisar"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Você pode começar pesquisar sem uma entrada de pesquisa ou mesmo focando na "
|
||||
"visão geral"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Sempre mostrar o alternador de espaço de trabalho"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Mostra o alternador de espaço de trabalho mesmo quando apenas um espaço de "
|
||||
"trabalho é usado com espaços de trabalho dinâmicos"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Chave de sobreposição"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Desativar tecla de sobreposição (superchave)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Superchave dupla para App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Mostra a grade do aplicativo quando você pressiona duas vezes a supertecla "
|
||||
"rapidamente"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Atraso de pop-up"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Remove o atraso de todos os pop-ups do switcher, como alt-tab, ctrl-alt-tab, "
|
||||
"layout do teclado, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Status de inicialização"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Quando o GNOME Shell é inicializado pela primeira vez"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Área de Trabalho"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Visão geral"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Customizar"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Cor de destaque para ícones"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Use cor de destaque para todos os ícones simbólicos"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Inverter itens da coluna do calendário"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr ""
|
||||
"Inverter as posições dos itens da coluna do calendário no menu do relógio"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Tamanho do Espaçamento Visão Geral"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr ""
|
||||
"O tamanho do espaçamento para o gerenciador de controles na visão geral"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Tamanho do canto do plano de fundo da área de trabalho"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Visão geral do tamanho do canto do plano de fundo da área de trabalho"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Tamanho do painel"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Tamanho do ícone do painel"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Tamanho do preenchimento do botão do painel"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Tamanho do enchimento do indicador do painel"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Posição do Painel"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Posição do Menu do Relógio"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Ajuste da Posição do Menu do Relógio"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Tamanho do Seletor de Área de Trabalho"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animação"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "tamanho do ícone do traço"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Posição do banner de notificação"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr ""
|
||||
"Posição do pop-up de notificação quando as notificações aparecem na tela"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Posição OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "A posição do OSD quando na tela aparece na tela"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Tamanho da Visualização da Janela"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Tamanho do ícone de visualização da janela Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Tamanho do ícone Alt-Tab"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Largura do Espelho"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Altura do Espelho"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Máximo de resultados de pesquisa exibidos"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"O máximo de itens de resultados de pesquisa exibidos aparecendo na página de "
|
||||
"pesquisa"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Pelo Tema Shell"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Topo"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Baixo"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Centro"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Direita"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Deixou"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Sem Animação"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Velocidade Padrão"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Quase nenhum"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "O mais rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Mais rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Rápido"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Lento"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Mais devagar"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Mais lento"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Início principal"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Centro Superior"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Extremidade superior"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Começo inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Centro Inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Extremidade inferior"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Início central"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Extremidade central"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Você pode escolher entre perfis predefinidos ou simplesmente usar suas "
|
||||
"próprias configurações personalizadas"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Personalizado"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Mínimo"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Sobrescrever"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Tema do Shell"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "Sobrescreve o tema do shell parcialmente para criar um desktop minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Suporte"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Suporte via criptografia"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Método preferido"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Suporte via Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Notificação de suporte"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Gerenciar quando a notificação de suporte aparece"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Links"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Relatório de erro"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Canal do YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Em novos lançamentos"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Mensalmente"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Endereço copiado para a área de transferência"
|
719
extensions/48/just-perfection/po/ru.po
Executable file
|
@ -0,0 +1,719 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Just Perfection <justperfection.channel@gmail.com>, 2020.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2022-05-18 18:02+0700\n"
|
||||
"Last-Translator: VBB <librusekus35790@gmail.com>\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.0.1\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Видимость"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Панель"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Панель в режиме Обзора"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Кнопка Обзор"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Кнопка на панели для перехода в режим Обзора"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Центр уведомлений/Часы"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Показывает дату и время на панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Раскладка клавиатуры"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Индикатор раскладки клавиатуры на панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Меню специальных возможностей"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Меню специальных возможностей на панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Быстрые настройки"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Меню быстрых настроек в панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Кнопка переключения темного режима"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка переключения темного режима в меню быстрых настроек"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Кнопка переключения ночного режима"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка переключения ночного режима в меню быстрых настроек"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Кнопка переключения режима полета"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка переключения режима полета в меню быстрых настроек"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Индикатор совместного использования экрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Индикатор общего доступа к экрану на панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Индикатор записи экрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Индикатор записи экрана на панели"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Мировые часы"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Мировые часы в центре уведомлений"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Погода"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Погода в центре уведомлений"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Календарь"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Календарь в центре уведомлений"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "События"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "События в центре уведомлений"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Строка поиска"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Строка поиска в Обзоре"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash панель"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash содержит иконки избранных и открытых приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Разделитель тире"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Линия-разделитель тире, которая отделяет закрепленные приложения от "
|
||||
"открепляемых приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Индикатор работы приложения Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Точка-индикатор в тире, показывающая, что приложение запущено."
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Показать кнопку приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Кнопка на Dash панели, которая выводит список приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Экранная индикация"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Появляется на экране при изменении громкости или яркости"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Всплывающий индикатор рабочих столов"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Индикатор, который появляется на экране при смене рабочего стола"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Переключатель рабочих столов"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr "Эскизы рабочих столов, которые вы видите в Обзоре."
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Рабочие столы в списке приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Эскизы рабочих столов в списке приложений"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Кнопки закрытия окон в Обзоре"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Кнопки закрытия, появляющиеся на эскизах окон в Обзоре"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Заголовки окон в Обзоре"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Текст под эскизами окон в Обзоре"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Меню рабочего стола"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Когда вы щелкаете правой кнопкой мыши по рабочему столу"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Пульсация"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Анимация горячего угла"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Кнопка «Сделать снимок экрана» в меню «Окно»"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Кнопка «Сделать снимок экрана» в меню правой кнопки мыши в строке заголовка"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Иконки"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Индикатор уведомлений"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Значок питания"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Иконки окон в обзоре"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Иконки под окнами в Обзоре"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Поведение"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Зацикливание рабочих столов"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"За последним рабочим столом будет следовать первый. А перед первым рабочим "
|
||||
"столом будет располагаться последний."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Обзор рабочей области"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "Должна ли следующая и предыдущая рабочая область быть видна в обзоре."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr ""
|
||||
"Переключатель рабочей области Щелкните для перехода в главное представление"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Переключатель рабочей области Щелкните, чтобы перейти в главное "
|
||||
"представление рабочей области."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Окно требует внимания"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Убрать уведомление о готовности окна и сразу фокусироваться на нём"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Окно развернуто по умолчанию"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Развернуть все окна создания"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Введите для поиска"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Вы можете начать поиск в Обзоре, если строки поиска нету, либо если она "
|
||||
"есть, не нажимая на неё"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Всегда показывать переключатель рабочих столов"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Отображать переключатель, даже если используется только один рабочий стол с "
|
||||
"активированным режимом динамических рабочих столов"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Ключ наложения"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Отключить наложение ключа (суперклавиши)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Двойной Super для перехода к списку приложений"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "Открывать список приложений при быстром двойном нажатии Super"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Задержка всплывающего окна"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Удаляет задержку для всех всплывающих окон переключателей, таких как alt-"
|
||||
"tab, ctrl-alt-tab, раскладка клавиатуры, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Место входа"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Что будет отображаться при запуске GNOME Shell"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Рабочий стол"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Обзор"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Цвет акцента для значков"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Использовать цвет акцента для всех символических значков"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Инвертировать элементы столбца календаря"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Инвертировать позиции элементов столбца календаря в меню часов"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Обзор Интервал Размер"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Размер интервала для диспетчера элементов управления в обзоре"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Размер угла рабочего стола"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Размер угла рабочего стола в Обзоре"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Размер панели"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Размер значка панели"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Отступ между кнопками панели"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Отступ между индикаторами на панели"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Расположение панели"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Расположение центра уведомлений"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Смещение центра уведомлений"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Размер переключателя рабочих столов"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Анимации"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Размер иконок Dash панели"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Расположение уведомлений"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Расположение всплывающих уведомлений на экране"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Позиция экранного меню"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Положение экранного меню, когда на экране отображается экранное меню"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Размер предварительного просмотра окна"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab Размер значка предварительного просмотра окна"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab Размер значка"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Ширина зеркала"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Зазеркалье Высота"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Максимальное количество отображаемых результатов поиска"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Максимальное количество отображаемых результатов поиска, отображаемых на "
|
||||
"странице поиска"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "По умолчанию"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Следовать теме"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Вверху"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Внизу"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "По центру"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Справа"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Слева"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Без анимаций"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "По умолчанию"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Почти ничего"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Очень быстро"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Быстрее"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Быстро"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Медленно"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Медленнее"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Очень медленно"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Сверху слева"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Сверху по центру"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Сверху справа"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Нижний старт"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Внизу по центру"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Нижний конец"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Центральный старт"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Центральный конец"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Профиль"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Вы можете выбрать предустановленный профиль или использовать собственные "
|
||||
"настройки"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Пользовательский"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Минимальный"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Очень минимальный"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Переопределение"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Тема оболочки"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Частично переопределяет тему оболочки для создания минималистичного рабочего "
|
||||
"стола"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Поддержка"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Поддержка через Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Предпочтительный метод"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Копировать"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Поддержать через Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Уведомление о поддержке"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Управление отображением уведомления о поддержке"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Ссылки"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Сообщить об ошибке"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Канал YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Никогда"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "В новых выпусках"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Ежемесячно"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Адрес скопирован в буфер обмена"
|
708
extensions/48/just-perfection/po/sv.po
Executable file
|
@ -0,0 +1,708 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-04-13 22:01+0200\n"
|
||||
"Last-Translator: Morgan Antonsson <morgan.antonsson@gmail.com>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.4.1\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Synlighet"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Systemrad"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Panel i översikt"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Knappen Aktiviteter"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Knapp i panelen för att växla synlighet"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Klockmeny"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Även känd som datummeny visar datum och tid i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Tangentbordslayout"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Knapp för tangentbordslayout i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Tillgänglighetsmeny"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Knapp för tillgänglighetsmeny i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Snabbinställningar"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Snabbinställningsmeny i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Växlingsknapp för mörkt läge"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Växlingsknapp för mörkt läge i snabbinställningsmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Växlingsknapp för nattljus"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Växlingsknapp för nattljus i snabbinställningsmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Växlingsknapp för flygplansläge"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Växlingsknapp för flygplansläge i snabbinställningsmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Skärmdelningsindikator"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Skärmdelningsindikator i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Skärminspelningsindikator"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Skärminspelningsindikator i panelen"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Världsklocka"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Världsklocka i klockmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Väder"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Väder i klockmeny"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Kalender i klockmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "evenemang"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Händelseknapp i klockmenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Sökruta"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Sökpost i översikt"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Snabbstartspanel"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash har favorit- och öppnade applikationsikoner"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Dash Separator"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "Streckavgränsningslinje som skiljer pin-appar från unpin-appar"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Dash App Running Indicator"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Punktindikatorn i streck som visar att appen körs"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Knapp för att visa programöversiktsvyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Knapp i streck som växlar mellan applikationslistans synlighet"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "Skärmöverlagring (OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Volym och ljusstyrka på skärmen när ändringen sker"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Arbetsyteväxlar-popup"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Pop-up som visas på skärmen när du ändrar arbetsytan"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Arbetsyteväxlare"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Hänvisar också till arbetsytans miniatyrer som du ser i översikten för att "
|
||||
"välja en arbetsyta"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Arbetsytor App Grid"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Arbetsytor i app-rutnät"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Fönsterväljare Stäng -knapp"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Stängknappen på fönsters förhandsvisning i översikt"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Fönsterväljare Bildtext"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Texten under fönsters förhandsvisning i översikt"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Bakgrundsmeny"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "När du högerklickar på skrivbordsbakgrund"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Rippelbox"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Heta hörn animationseffekter"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Ta skärmdump-knappen i fönstermenyn"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "Ta skärmdump-knappen i titelfältets högerklicksmeny"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Ikoner"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Aviseringsikon"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Strömikon"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Ikon för fönsterplockare"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Ikonen under förhandsgranskning av fönster i översikt"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Beteende"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Arbetsyta Wraparound"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Nästa arbetsyta blir den första arbetsytan när du är i den sista arbetsytan. "
|
||||
"och tidigare arbetsyta blir den sista arbetsytan när du är i den första "
|
||||
"arbetsytan."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Workspace Peek"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "Om nästa och föregående arbetsyta ska synas i översikt."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "Workspace Switcher Klicka till huvudvyn"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr "Workspace switcher click går alltid till huvudvyn av arbetsytan."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Fönster kräver uppmärksamhetsfokus"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Tar bort fönstret är redo anmälan och fokusera på fönstret"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Fönster maximerat som standard"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Maximera alla fönster vid skapande"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Skriv för att söka"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr "Sök utan synlig sökruta eller utan att fokusera den i översiktsvyn"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Visa alltid arbetsytans växlare"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Visar arbetsytväxlare även när endast en arbetsyta används med dynamiska "
|
||||
"arbetsytor"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Överläggstangent"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Inaktivera överlagringsnyckel (supernyckel)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Dubbel supernyckel till App Grid"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "Visar apprutnät när du dubbeltrycker supersnabbt"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Popup-fördröjning"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Tar bort fördröjningen för alla växlarpopups som alt-tab, ctrl-alt-tab, "
|
||||
"tangentbordslayout, ..."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Startstatus"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "När GNOME Shell startar för första gången"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Skrivbord"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Översikt"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Anpassa"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Accentfärg för ikoner"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Använd accentfärg för alla symboliska ikoner"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Invertera kalenderkolumnobjekt"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Invertera positionerna för kalenderkolumnposterna i klockmenyn"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Översikt Avstånd Storlek"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Avståndsstorleken för kontrollhanterare i översikt"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Arbetsyta Bakgrund Hörnstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Arbetsytans bakgrundshörnstorlek i översikt"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Panelstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Panelikonens storlek"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Panelknapps vadderingsstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Panelindikator vadderingsstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Systemradsplacering"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Klockmenyplacering"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Klockmenyoffset"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Arbetsyteväxlarens storlek"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Animering"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "streck ikonstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Meddelande Banner Position"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Meddelande popup-position när aviseringar dyker upp på skärmen"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "OSD-position"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "OSD-position när skärmvisning visas på skärmen"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab Fönster Förhandsvisningsstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab Fönster Förhandsvisningsikon Storlek"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab-ikonstorlek"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Looking Glass Bredd"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Looking Glass Höjd"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Maximalt visade sökresultat"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "Det maximala antalet visade sökresultatobjekt som visas på söksidan"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "Från skaltema"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Överkant"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Nederkant"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "Mitten"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Höger"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Vänster"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Ingen animering"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Standardhastighet"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Nästan ingen"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Snabbast"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Snabbare"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Snabb"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Långsam"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Långsammare"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Långsammast"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Top Start"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Top Center"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Toppänden"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Nedre start"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Nedre mitten"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Nedre änden"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "Center Start"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "Center End"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Du kan välja mellan fördefinierade profiler eller så kan du helt enkelt "
|
||||
"använda dina egna anpassade inställningar"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Beställnings"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Super Minimal"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Åsidosätt"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Skaltema"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "Åsidosätt skaltemat delvis för att göra skrivbordet kompakt"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Stöd"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Support via Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Föredragen metod"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Kopiera"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Support via Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Supportmeddelande"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Hantera när supportmeddelandet dyker upp"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Länkar"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Buggrapport"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube-kanal"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Aldrig"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "På nya releaser"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Månatlig"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Adress kopierad till urklipp"
|
724
extensions/48/just-perfection/po/uk.po
Normal file
|
@ -0,0 +1,724 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# volkov <volkovissocool@gmail.com>, 2024.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2024-12-13 15:24+0200\n"
|
||||
"Last-Translator: volkov <volkovissocool@gmail.com>\n"
|
||||
"Language-Team: volkov <volkovissocool@gmail.com>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "Видимість"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "Панель"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "Панель у Діяльності"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "Кнопка Діяльності"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "Кнопка на панелі, щоб перемикати видимість Діяльності"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "Меню годинника"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "Також відоме як меню дати, яка показує дату та час у панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "Розкладка клавіатури"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "Кнопка індикатора розкладки клавіатури на панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "Меню доступності"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "Індикатор меню доступності на панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "Швидкі налаштування"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "Меню швидких налаштувань на панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "Кнопка перемикання темного режиму"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка перемикання темного режиму в меню швидких налаштувань"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "Кнопка перемикання нічного світла"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка перемикання нічного світла в меню швидких налаштувань"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "Кнопка перемикання режиму польоту"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "Кнопка перемикання режиму польоту в меню швидких налаштувань"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "Індикатор доступу до екрану"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "Індикатор доступу до екрану на панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "Індикатор запису екрана"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "Індикатор запису екрану на панелі"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "Світові годинники"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "Світові годинники у меню годинників"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "Погода"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "Погода у меню годинника"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "Календар"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "Календар у меню годинника"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "Події"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "Кнопка подій у меню годинника"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "Поле пошуку у Діяльності"
|
||||
|
||||
# Я щось не дуже впевнений як це перекласти, але цей "Dash" це вон то меню з додатками які користувач додає в улюблені та ті додатки які зараз запущені (помічені білим кружечком).
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Панель додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Ця панель тримає піктограми ваших улюблених та відкритих додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Розділювач панелі додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr ""
|
||||
"Цей розділювач малює лінію між закріпленими та не закріпленими додатками"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Індикатор відкритих додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "Точка-індикатор на панелі, яка показує, що додаток відкрито"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "Показувати кнопку додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Кнопка яка перемикає видимість списку додатків"
|
||||
|
||||
# Я не знаю чи існує офіційний якись переклад для цього, тому залишаю як є. Якшо хтось придумає, то виправте.
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr ""
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "Індикатори гучності та яскравості коли зміна стається"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "Індикатор перемикання робочих просторів"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "Індикатор який з'являється, коли ви змінюєте робочий простір"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "Перемикач робочих просторів"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr ""
|
||||
"Те що відомо як попередній перегляд робочих просторів які ви можете бачити "
|
||||
"коли відкрили Діяльність, щоб обрати робочий простір"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "Робочі простори у сітці додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "Прямокутники робочих просторів на сітці додатків"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "Кнопка закриття у виборі вікна"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "Кнопка, щоб закрити вікно у Діяльністі"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "Підпис у виборі вікна"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "Текст під переглядом вікна у Діяльності"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "Меню тла"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "Коли ви клацаєте правою кнопкою по тлу робочого столу"
|
||||
|
||||
# Та хз я, шо то таке. Самі придумайте.
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "Ripple Box"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "Ефект анімації Гарячого кута"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "Кнопка \"Зробити знімок\" у меню вікна"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr ""
|
||||
"Кнопка \"Зробити знімок\" коли ви клацаєте правою кнопкою по заголовку вікна"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "Піктограми"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "Піктограма сповіщень на панелі"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "Піктограма електроживлення"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "Піктограма вибору вікна"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "Піктограма під вікном у ДІяльності"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "Поведінка"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "Огортання робочих просторів"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"Наступний робочий простір стане першим коли ви у останньому робочому "
|
||||
"просторі, і попередній стане останнім робочим простором коли ви у першому."
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "Підглядання на робочі простори"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "Чи будуть наступні і попередні робочі простори видимі у Діяльності."
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr ""
|
||||
"Перемикач робочої області Натисніть, щоб перейти до головного перегляду"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr ""
|
||||
"Натискання перемикача робочої області завжди переходить до головного "
|
||||
"перегляду робочої області."
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "Вікна потребують уваги"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "Видаляє сповіщення <\"Додаток\" готовий> і фокусується на вікні"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "Вікна будуть розгортатися за замовченням"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "Розгортати усі вікна при створенні"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "Ввід тексту для пошуку"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr ""
|
||||
"Ви можете почати пошук без поля пошуку або необхідності сфокусуватися на "
|
||||
"ньому у Діяльність"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "Завжди показувати перемикачі робочих просторів"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr ""
|
||||
"Показує перемикач робочих просторів, навіть коли існує лише один простір з "
|
||||
"\"Динамічні робочі простори\""
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "Кнопка Діяльності"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "Вимкнути кнопку Діяльності (кнопка super)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "Подвійне натискання super щоб перейти у сітку додатків"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr ""
|
||||
"Показує сітку додатків, коли ви швидко два рази натискаєте кнопку super"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "Затримка індикаторів"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr ""
|
||||
"Прибирає затримку з усіх індикаторів перемикання, такі як alt-tab, ctrl-alt-"
|
||||
"tab, зміна розкладки клавіатури, тощо."
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "Стан при завантаженні"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "Коли оболонка GNOME уперше запускається"
|
||||
|
||||
# Я якшо чесно взагалі не знаю про шо це, бо у мене в розширенні цього нема.
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "Робочий стіл"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "Діяльність"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "Налаштувати"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "Акцентний колір для значків"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "Використовуйте акцентний колір для всіх символічних значків"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "Інвертувати елементи стовпця календаря"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "Інвертуйте позиції елементів стовпця календаря в меню годинника"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "Відстань у Діяльності"
|
||||
|
||||
# Взагалі не маю гадки шо то таке.
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "Розмір відстані для менеджеру керувань у Діяльності"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "Розмір кутів тла робочого простору"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "Розмір кутів тла робочого простору у Діяльності"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "Розмір панелі"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "Розмір піктограм на панелі додатків"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "Розмір піктограм кнопок панелі"
|
||||
|
||||
# Це мається на увазі он ті піктограми на верхній панелі, де відображається індикатор розкладки клави, блютуз, вайфай і все таке.
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "Розмір підкладки індикаторів панелі"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "Позиція панелі"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "Позиція меню годинника"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "Зсув позиції меню годинника"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "Розмір перемикача робочих просторів"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "Анімація"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Розмір піктограм на панелі додатків"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "Позиція банера сповіщень"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "Позиція банеру сповіщень, коли сповіщення з'являються на екрані"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "Позиція OSD"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "Позиція OSD коли якісь індикатори з'являються на екрані"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Розмір перегляду меню \"Alt Tab\""
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Розмір піктограми меню \"Alt Tab\""
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Розмір піктограми меню \"Alt Tab\""
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "Ширина Looking Glass"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "Висота Looking Glass"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "Максимальна кількість відображених результатів пошуку"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr ""
|
||||
"Максимальна кількість елементів результатів пошуку, які відображаються на "
|
||||
"сторінці пошуку"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "За замовченням"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "З налаштувань теми оболонки"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "Зверху"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "Знизу"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "По центру"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "Справа"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "Зліва"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "Без анімацій"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "Швидкіть за замовченням"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "Майже немає"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "Дуже швидка"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "Ще швидше"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "Швидка"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "Повільно"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "Ще повільніше"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "Дуже повільно"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "Зверху з початку"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "Зверху по центру"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "Зверху з кінця"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "Знизу з початку"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "Знизу по центру"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "Знизу з кінця"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "По центру з початку"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "По центру з кінця"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "Профіль"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr ""
|
||||
"Ви можете обрати поміж вже налаштованих профілів або використовувати власні "
|
||||
"налаштування"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "Власний"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "Мінімалістичний"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "Дуже мінімалістичний"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "Перезаписати"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Тема оболонки"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr ""
|
||||
"Частково перезаписати тему оболонки, щоб створити мінімалістичний робочий "
|
||||
"стіл"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "Підтримка"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "Підтримка через Crypto"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "Бажаний метод"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "Копія"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "Підтримати нас через Buy Me a Coffee"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "Сповіщення служби підтримки"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "Укажіть, коли з’являється сповіщення служби підтримки"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "Посилання"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "Звітувати про ваду"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "Канал YouTube"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "Ніколи"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "Про нові випуски"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "Щомісяця"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "Адресу скопійовано в буфер обміну"
|
700
extensions/48/just-perfection/po/zh_CN.po
Executable file
|
@ -0,0 +1,700 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# Dingzhong Chen <wsxy162@gmail.com>, 2021.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-04-15 06:33+0800\n"
|
||||
"Last-Translator: Dingzhong Chen <wsxy162@gmail.com>\n"
|
||||
"Language-Team: Chinese - China <i18n-zh@googlegroups.com>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Gtranslator 3.38.0\n"
|
||||
"Plural-Forms: nplurals=1; plural=0\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "显示"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "面板"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "概览中的面板"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "活动按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "面板中的按钮可切换概览可见性"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "时钟菜单"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "在面板中显示日期和时间的日期菜单"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "键盘布局(输入法)"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "面板中的键盘布局指示器按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "辅助功能菜单"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "面板中的辅助功能菜单指示器按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "快速设置"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "面板中的快速设置菜单"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "暗模式切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "快速设置菜单中的暗模式切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "夜灯切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "快速设置菜单中的夜灯切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "飞行模式切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "快速设置菜单中的飞行模式切换按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "屏幕共享指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "面板中的屏幕共享指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "录屏指示灯"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "面板中的屏幕录制指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "世界时钟"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "时钟菜单中的世界时钟"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "天气"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "时钟菜单中的天气"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "日历"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "时钟菜单中的日历"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "活动"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "时钟菜单中的事件按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "概览中的搜索条目"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash 包含最喜欢和打开的应用程序图标"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "Dash 分隔符"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "将固定应用程序与未固定应用程序分开的 Dash 分隔线"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Dash 应用程序运行指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "破折号中的点指示器显示应用程序正在运行"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "显示应用程序按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "Dash 中用于切换应用程序列表可见性的按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "屏幕显示(OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "发生变化时屏幕显示的音量和亮度"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "工作区弹窗"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "更改工作区时出现在屏幕上的弹出窗口"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "工作区切换器"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr "也指您在概览中看到的用于选择工作区的工作区缩略图"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "工作区应用程序网格"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "应用程序网格中的工作区缩略图"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "窗口选择器关闭按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "概览中窗口预览的关闭按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "窗口选择器标题"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "概览中窗口预览下的文本"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "后台菜单"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "当您右键单击桌面背景时"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "波纹盒"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "热角动画效果"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "窗口菜单中的“截屏”按钮"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "标题栏右键菜单中的截图按钮"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "图标"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "面板通知图标"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "电源图标"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "窗口选择器图标"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "概览中窗口预览下的图标"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "行为"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "工作区环绕"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"当您在最后一个工作区时,下一个工作区将是第一个工作区。 当您在第一个工作区时,"
|
||||
"上一个工作区将是最后一个工作区。"
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "工作区一览"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "下一个和上一个工作区是否应在概览中可见。"
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "工作区切换器单击进入主视图"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr "工作区切换器单击始终进入工作区的主视图。"
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "窗口要求关注焦点"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "删除窗口已准备就绪通知,并专注于窗口"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "默认情况下窗口最大化"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "创建时最大化所有窗口"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "打字并搜索"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr "不需要搜索框甚至不用聚焦到概览视图,你就可以开始搜索"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "始终显示工作区切换器"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr "即使只有一个工作区与动态工作区一起使用,也会显示工作区切换器"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "覆盖键"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "禁用覆盖键(超级键)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "App Grid 的双超级键"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "当您快速双击超级键时显示应用程序网格"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "弹出延迟"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr "删除所有切换器弹出窗口的延迟,如 alt-tab、ctrl-alt-tab、键盘布局......"
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "启动状态"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "GNOME Shell 首次启动时"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "桌面"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "概述"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "定制"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "图标的强调色"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "对所有符号图标使用强调色"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "反转日历列项"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "反转时钟菜单中日历列项的位置"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "总览间距大小"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "控制管理器的间距大小概览"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "工作区背景角大小"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "工作区背景角尺寸概览"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "面板尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "面板图标大小"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "面板按钮填充尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "面板指示器填充尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "面板位置"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "时钟菜单位置"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "时钟菜单位置偏移"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "工作区切换器尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "动画"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Dash 图标大小"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "通知横幅位置"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "通知出现在屏幕上时的通知弹出位置"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "屏显位置"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "屏幕显示时的 OSD 位置显示在屏幕上"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab 窗口预览大小"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab 窗口预览图标大小"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab 图标大小"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "镜子宽度"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "镜子高度"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "显示的最大搜索结果"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "搜索页面中显示的最大搜索结果项"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "默认"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "依照 Shell 主题"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "顶部"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "底部"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "中间"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "左边"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "右边"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "无动画"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "默认速度"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "几乎没有"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "最快"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "更快"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "快"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "慢"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "更慢"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "最慢"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "最开始"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "顶部中心"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "高端"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "底部开始"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "底部中心"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "底端"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "中心开始"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "中心端"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "轮廓"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr "您可以在预定义的配置文件之间进行选择,也可以简单地使用自己的自定义设置"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "风俗"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "最小"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "极简"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "覆盖"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Shell 主题"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "覆盖掉部分的 Shell 主题以创建最小桌面"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "支持"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "通过加密支持"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "首选方法"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "复制"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "通过 Buy Me a Coffee 提供支持"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "支持通知"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "管理支持通知的显示时间"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "链接"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "错误报告"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube 频道"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "从不"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "新版本发布时"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "每月"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "地址已复制到剪贴板"
|
699
extensions/48/just-perfection/po/zh_TW.po
Normal file
|
@ -0,0 +1,699 @@
|
|||
# Just Perfection GNOME Shell Extension Translation
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
# This file is distributed under GPL v3
|
||||
# r0930514 <r0930514@gmail.com>, 2021.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Just Perfection 3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-29 14:44-0800\n"
|
||||
"PO-Revision-Date: 2021-06-10 10:43+0800\n"
|
||||
"Last-Translator: r0930514 <r0930514@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.4.3\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: src/data/ui/visibility.ui:6 src/data/ui/visibility.ui:11
|
||||
msgid "Visibility"
|
||||
msgstr "顯示"
|
||||
|
||||
#: src/data/ui/visibility.ui:15
|
||||
msgid "Panel"
|
||||
msgstr "面板"
|
||||
|
||||
#: src/data/ui/visibility.ui:27
|
||||
msgid "Panel in Overview"
|
||||
msgstr "概覽中的面板"
|
||||
|
||||
#: src/data/ui/visibility.ui:40
|
||||
msgid "Activities Button"
|
||||
msgstr "概覽按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:41
|
||||
msgid "Button in panel to toggle overview visibility"
|
||||
msgstr "面板中的按鈕可切換概覽可見性"
|
||||
|
||||
#: src/data/ui/visibility.ui:53
|
||||
msgid "Clock Menu"
|
||||
msgstr "時鐘選單"
|
||||
|
||||
#: src/data/ui/visibility.ui:54
|
||||
msgid "Also known as date menu shows date and time in panel"
|
||||
msgstr "也稱為日期選單在面板中顯示日期和時間"
|
||||
|
||||
#: src/data/ui/visibility.ui:66
|
||||
msgid "Keyboard Layout"
|
||||
msgstr "鍵盤佈局(輸入法)"
|
||||
|
||||
#: src/data/ui/visibility.ui:67
|
||||
msgid "Keyboard Layout indicator button in panel"
|
||||
msgstr "面板中的鍵盤佈局指示器按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:79
|
||||
msgid "Accessibility Menu"
|
||||
msgstr "輔助功能選單"
|
||||
|
||||
#: src/data/ui/visibility.ui:80
|
||||
msgid "Accessibility Menu indicator button in panel"
|
||||
msgstr "面板中的輔助功能選單指示器按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:92
|
||||
msgid "Quick Settings"
|
||||
msgstr "快速設置"
|
||||
|
||||
#: src/data/ui/visibility.ui:93
|
||||
msgid "Quick settings menu in panel"
|
||||
msgstr "面板中的快速設置菜單"
|
||||
|
||||
#: src/data/ui/visibility.ui:105
|
||||
msgid "Dark Mode Toggle Button"
|
||||
msgstr "暗模式切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:106
|
||||
msgid "Dark Mode Toggle Button in Quick settings menu"
|
||||
msgstr "快速設定選單中的暗模式切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:118
|
||||
msgid "Night Light Toggle Button"
|
||||
msgstr "夜燈切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:119
|
||||
msgid "Night Light Toggle Button in Quick settings menu"
|
||||
msgstr "快速設定選單中的夜燈切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:131
|
||||
msgid "Airplane Mode Toggle Button"
|
||||
msgstr "飛航模式切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:132
|
||||
msgid "Airplane Mode Toggle Button in Quick settings menu"
|
||||
msgstr "快速設定選單中的飛行模式切換按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:144
|
||||
msgid "Screen Sharing Indicator"
|
||||
msgstr "屏幕共享指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:145
|
||||
msgid "Screen sharing indicator in panel"
|
||||
msgstr "面板中的屏幕共享指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:157
|
||||
msgid "Screen Recording Indicator"
|
||||
msgstr "錄屏指示燈"
|
||||
|
||||
#: src/data/ui/visibility.ui:158
|
||||
msgid "Screen recording indicator in panel"
|
||||
msgstr "面板中的屏幕錄製指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:170
|
||||
msgid "World Clock"
|
||||
msgstr "世界時鐘"
|
||||
|
||||
#: src/data/ui/visibility.ui:171
|
||||
msgid "World clock in clock menu"
|
||||
msgstr "時鐘菜單中的世界時鐘"
|
||||
|
||||
#: src/data/ui/visibility.ui:183
|
||||
msgid "Weather"
|
||||
msgstr "天氣"
|
||||
|
||||
#: src/data/ui/visibility.ui:184
|
||||
msgid "Weather in clock menu"
|
||||
msgstr "時鐘菜單中的天氣"
|
||||
|
||||
#: src/data/ui/visibility.ui:196
|
||||
msgid "Calendar"
|
||||
msgstr "日曆"
|
||||
|
||||
#: src/data/ui/visibility.ui:197
|
||||
msgid "Calendar in clock menu"
|
||||
msgstr "時鐘菜單中的日曆"
|
||||
|
||||
#: src/data/ui/visibility.ui:209
|
||||
msgid "Events"
|
||||
msgstr "活動"
|
||||
|
||||
#: src/data/ui/visibility.ui:210
|
||||
msgid "Events button in clock menu"
|
||||
msgstr "時鐘菜單中的事件按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:222
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: src/data/ui/visibility.ui:223
|
||||
msgid "Search entry in overview"
|
||||
msgstr "概覽中的搜索項目"
|
||||
|
||||
#: src/data/ui/visibility.ui:235
|
||||
msgid "Dash"
|
||||
msgstr "Dash"
|
||||
|
||||
#: src/data/ui/visibility.ui:236
|
||||
msgid "Dash holds favorite and opened applications icons"
|
||||
msgstr "Dash 包含最喜歡和打開的應用程式圖示"
|
||||
|
||||
#: src/data/ui/visibility.ui:248
|
||||
msgid "Dash Separator"
|
||||
msgstr "破折號分隔符"
|
||||
|
||||
#: src/data/ui/visibility.ui:249
|
||||
msgid "Dash separator line that separates pin apps from unpin apps"
|
||||
msgstr "將固定應用程序與取消固定應用程序分開的破折號分隔線"
|
||||
|
||||
#: src/data/ui/visibility.ui:261
|
||||
msgid "Dash App Running Indicator"
|
||||
msgstr "Dash 應用程式運行指示器"
|
||||
|
||||
#: src/data/ui/visibility.ui:262
|
||||
msgid "The dot indicator in dash that shows the app is running"
|
||||
msgstr "破折號中的點指示器顯示應用程式正在運行"
|
||||
|
||||
#: src/data/ui/visibility.ui:274
|
||||
msgid "Show Applications Button"
|
||||
msgstr "顯示應用程式按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:275
|
||||
msgid "Button in dash that toggles applications list visibility"
|
||||
msgstr "短划線中用於切換應用程式列表可見性的按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:287
|
||||
msgid "On Screen Display (OSD)"
|
||||
msgstr "螢幕顯示(OSD)"
|
||||
|
||||
#: src/data/ui/visibility.ui:288
|
||||
msgid "Volume and brightness on screen display when the change happens"
|
||||
msgstr "音量和亮度發生變化時顯示在螢幕上"
|
||||
|
||||
#: src/data/ui/visibility.ui:300
|
||||
msgid "Workspace Popup"
|
||||
msgstr "工作區彈出"
|
||||
|
||||
#: src/data/ui/visibility.ui:301
|
||||
msgid "Popup that appears on the screen when you change the workspace"
|
||||
msgstr "更改工作區時出現在螢幕上的彈出視窗"
|
||||
|
||||
#: src/data/ui/visibility.ui:313
|
||||
msgid "Workspace Switcher"
|
||||
msgstr "工作區切換器"
|
||||
|
||||
#: src/data/ui/visibility.ui:314
|
||||
msgid ""
|
||||
"Also refers to workspace thumbnails that you see in overview for selecting a "
|
||||
"workspace"
|
||||
msgstr "也指您在概覽中看到的用於選擇工作區的工作區縮圖"
|
||||
|
||||
#: src/data/ui/visibility.ui:326
|
||||
msgid "Workspaces App Grid"
|
||||
msgstr "工作區應用程序網格"
|
||||
|
||||
#: src/data/ui/visibility.ui:327
|
||||
msgid "Workspace boxes in app grid"
|
||||
msgstr "應用程序網格中的工作區框"
|
||||
|
||||
#: src/data/ui/visibility.ui:339
|
||||
msgid "Window Picker Close Button"
|
||||
msgstr "窗口選擇器關閉按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:340
|
||||
msgid "The close button on window preview in overview"
|
||||
msgstr "概覽中窗口預覽的關閉按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:352
|
||||
msgid "Window Picker Caption"
|
||||
msgstr "窗口選擇器標題"
|
||||
|
||||
#: src/data/ui/visibility.ui:353
|
||||
msgid "The text under window preview in overview"
|
||||
msgstr "概覽中窗口預覽下的文本"
|
||||
|
||||
#: src/data/ui/visibility.ui:365
|
||||
msgid "Background Menu"
|
||||
msgstr "後台選單"
|
||||
|
||||
#: src/data/ui/visibility.ui:366
|
||||
msgid "When you right click on desktop background"
|
||||
msgstr "當你右鍵單擊桌面背景時"
|
||||
|
||||
#: src/data/ui/visibility.ui:378
|
||||
msgid "Ripple Box"
|
||||
msgstr "波紋盒"
|
||||
|
||||
#: src/data/ui/visibility.ui:379
|
||||
msgid "Hot corner animation effects"
|
||||
msgstr "熱角動畫效果"
|
||||
|
||||
#: src/data/ui/visibility.ui:391
|
||||
msgid "Take Screenshot button in Window Menu"
|
||||
msgstr "窗口菜單中的“截屏”按鈕"
|
||||
|
||||
#: src/data/ui/visibility.ui:392
|
||||
msgid "Take screenshot button in title bar right click menu"
|
||||
msgstr "標題欄右鍵菜單中的截圖按鈕"
|
||||
|
||||
#: src/data/ui/icons.ui:6 src/data/ui/icons.ui:11
|
||||
msgid "Icons"
|
||||
msgstr "圖示"
|
||||
|
||||
#: src/data/ui/icons.ui:15
|
||||
msgid "Panel Notification Icon"
|
||||
msgstr "面板通知圖示"
|
||||
|
||||
#: src/data/ui/icons.ui:27
|
||||
msgid "Power Icon"
|
||||
msgstr "電源圖示"
|
||||
|
||||
#: src/data/ui/icons.ui:39
|
||||
msgid "Window Picker Icon"
|
||||
msgstr "視窗選擇器圖示"
|
||||
|
||||
#: src/data/ui/icons.ui:40
|
||||
msgid "The icon under window preview in overview"
|
||||
msgstr "概覽窗口預覽下的圖標"
|
||||
|
||||
#: src/data/ui/behavior.ui:6 src/data/ui/behavior.ui:11
|
||||
msgid "Behavior"
|
||||
msgstr "行為"
|
||||
|
||||
#: src/data/ui/behavior.ui:15
|
||||
msgid "Workspace Wraparound"
|
||||
msgstr "工作區環繞"
|
||||
|
||||
#: src/data/ui/behavior.ui:16
|
||||
msgid ""
|
||||
"Next workspace will be the first workspace when you are in the last "
|
||||
"workspace. and previous workspace will be the last workspace when you are in "
|
||||
"the first workspace."
|
||||
msgstr ""
|
||||
"當您在最後一個工作區時,下一個工作區將是第一個工作區。 當您在第一個工作區時,"
|
||||
"上一個工作區將是最後一個工作區。"
|
||||
|
||||
#: src/data/ui/behavior.ui:28
|
||||
msgid "Workspace Peek"
|
||||
msgstr "工作區一覽"
|
||||
|
||||
#: src/data/ui/behavior.ui:29
|
||||
msgid "Whether the next and previous workspace should be visible in overview."
|
||||
msgstr "下一個和上一個工作區是否應在概覽中可見。"
|
||||
|
||||
#: src/data/ui/behavior.ui:41
|
||||
msgid "Workspace Switcher Click to The Main View"
|
||||
msgstr "工作區切換器點選至主視圖"
|
||||
|
||||
#: src/data/ui/behavior.ui:42
|
||||
msgid "Workspace switcher click always goes to the main view of the workspace."
|
||||
msgstr "工作區切換器按一下始終會轉到工作區的主視圖。"
|
||||
|
||||
#: src/data/ui/behavior.ui:54
|
||||
msgid "Window Demands Attention Focus"
|
||||
msgstr "視窗要求關注焦點"
|
||||
|
||||
#: src/data/ui/behavior.ui:55
|
||||
msgid "Removes window is ready notification and focus on the window"
|
||||
msgstr "刪除視窗已準備就緒通知,並直接專注於視窗"
|
||||
|
||||
#: src/data/ui/behavior.ui:67
|
||||
msgid "Window Maximized by Default"
|
||||
msgstr "預設情況下視窗最大化"
|
||||
|
||||
#: src/data/ui/behavior.ui:68
|
||||
msgid "Maximize all windows on creation"
|
||||
msgstr "創建時最大化所有視窗"
|
||||
|
||||
#: src/data/ui/behavior.ui:80
|
||||
msgid "Type to Search"
|
||||
msgstr "打字直接搜索"
|
||||
|
||||
#: src/data/ui/behavior.ui:81
|
||||
msgid ""
|
||||
"You can start search without search entry or even focusing on it in overview"
|
||||
msgstr "不需要搜索框甚至不用聚焦到概覽視圖,你就可以開始搜索"
|
||||
|
||||
#: src/data/ui/behavior.ui:93
|
||||
msgid "Always Show Workspace Switcher"
|
||||
msgstr "始終顯示工作區切換器"
|
||||
|
||||
#: src/data/ui/behavior.ui:94
|
||||
msgid ""
|
||||
"Shows workspace switcher even when only one workspace used with dynamic "
|
||||
"workspaces"
|
||||
msgstr "即使只有一個工作區與動態工作區一起使用,也會顯示工作區切換器"
|
||||
|
||||
#: src/data/ui/behavior.ui:106
|
||||
msgid "Overlay Key"
|
||||
msgstr "覆蓋鍵"
|
||||
|
||||
#: src/data/ui/behavior.ui:107
|
||||
msgid "Disable overlay key (super key)"
|
||||
msgstr "停用覆蓋鍵(超級鍵)"
|
||||
|
||||
#: src/data/ui/behavior.ui:119
|
||||
msgid "Double Super to App Grid"
|
||||
msgstr "App Grid 的雙超級鍵"
|
||||
|
||||
#: src/data/ui/behavior.ui:120
|
||||
msgid "Shows app grid when you double hit super key fast"
|
||||
msgstr "當您快速雙擊超級鍵時顯示應用程序網格"
|
||||
|
||||
#: src/data/ui/behavior.ui:133
|
||||
msgid "Popup Delay"
|
||||
msgstr "彈出延遲"
|
||||
|
||||
#: src/data/ui/behavior.ui:134
|
||||
msgid ""
|
||||
"Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, "
|
||||
"keyboard layout, ..."
|
||||
msgstr "刪除所有切換器彈出窗口的延遲,如 alt-tab、ctrl-alt-tab、鍵盤佈局......"
|
||||
|
||||
#: src/data/ui/behavior.ui:146
|
||||
msgid "Startup Status"
|
||||
msgstr "啟動狀態"
|
||||
|
||||
#: src/data/ui/behavior.ui:147
|
||||
msgid "When GNOME Shell is starting up for the first time"
|
||||
msgstr "GNOME Shell 首次啟動時"
|
||||
|
||||
#: src/data/ui/behavior.ui:159
|
||||
msgid "Desktop"
|
||||
msgstr "桌面"
|
||||
|
||||
#: src/data/ui/behavior.ui:160
|
||||
msgid "Overview"
|
||||
msgstr "概述"
|
||||
|
||||
#: src/data/ui/customize.ui:6 src/data/ui/customize.ui:11
|
||||
msgid "Customize"
|
||||
msgstr "自定義"
|
||||
|
||||
#: src/data/ui/customize.ui:15
|
||||
msgid "Accent Color for Icons"
|
||||
msgstr "圖示的強調色"
|
||||
|
||||
#: src/data/ui/customize.ui:16
|
||||
msgid "Use accent color for all symbolic icons"
|
||||
msgstr "對所有符號圖示使用強調色"
|
||||
|
||||
#: src/data/ui/customize.ui:28
|
||||
msgid "Invert Calendar Column Items"
|
||||
msgstr "反轉日曆列項"
|
||||
|
||||
#: src/data/ui/customize.ui:29
|
||||
msgid "Invert the positions of the calendar column items in clock menu"
|
||||
msgstr "反轉時鐘選單中日曆列項目的位置"
|
||||
|
||||
#: src/data/ui/customize.ui:41
|
||||
msgid "Overview Spacing Size"
|
||||
msgstr "總覽間距大小"
|
||||
|
||||
#: src/data/ui/customize.ui:42
|
||||
msgid "The spacing size for controls manager in overview"
|
||||
msgstr "控制管理器的間距大小概覽"
|
||||
|
||||
#: src/data/ui/customize.ui:49
|
||||
msgid "Workspace Background Corner Size"
|
||||
msgstr "工作區背景角大小"
|
||||
|
||||
#: src/data/ui/customize.ui:50
|
||||
msgid "Workspace background corner size in overview"
|
||||
msgstr "工作區背景角尺寸概覽"
|
||||
|
||||
#: src/data/ui/customize.ui:57
|
||||
msgid "Panel Size"
|
||||
msgstr "面板尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:64
|
||||
msgid "Panel Icon Size"
|
||||
msgstr "面板圖標大小"
|
||||
|
||||
#: src/data/ui/customize.ui:71
|
||||
msgid "Panel Button Padding Size"
|
||||
msgstr "面板按鈕填充尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:78
|
||||
msgid "Panel Indicator Padding Size"
|
||||
msgstr "面板指示器填充尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:85
|
||||
msgid "Panel Position"
|
||||
msgstr "面板位置"
|
||||
|
||||
#: src/data/ui/customize.ui:92
|
||||
msgid "Clock Menu Position"
|
||||
msgstr "時鐘選單位置"
|
||||
|
||||
#: src/data/ui/customize.ui:99
|
||||
msgid "Clock Menu Position Offset"
|
||||
msgstr "時鐘選單位置偏移"
|
||||
|
||||
#: src/data/ui/customize.ui:106
|
||||
msgid "Workspace Switcher Size"
|
||||
msgstr "工作區切換器尺寸"
|
||||
|
||||
#: src/data/ui/customize.ui:113
|
||||
msgid "Animation"
|
||||
msgstr "動畫"
|
||||
|
||||
#: src/data/ui/customize.ui:120
|
||||
msgid "Dash Icon Size"
|
||||
msgstr "Dash圖示大小"
|
||||
|
||||
#: src/data/ui/customize.ui:127
|
||||
msgid "Notification Banner Position"
|
||||
msgstr "通知橫幅位置"
|
||||
|
||||
#: src/data/ui/customize.ui:128
|
||||
msgid "Notification popup position when notifications show up on the screen"
|
||||
msgstr "通知出現在屏幕上時的通知彈出位置"
|
||||
|
||||
#: src/data/ui/customize.ui:135
|
||||
msgid "OSD Position"
|
||||
msgstr "屏顯位置"
|
||||
|
||||
#: src/data/ui/customize.ui:136
|
||||
msgid "OSD position when on screen display shows up on the screen"
|
||||
msgstr "屏幕顯示時的 OSD 位置顯示在屏幕上"
|
||||
|
||||
#: src/data/ui/customize.ui:143
|
||||
msgid "Alt Tab Window Preview Size"
|
||||
msgstr "Alt-Tab 窗口預覽大小"
|
||||
|
||||
#: src/data/ui/customize.ui:150
|
||||
msgid "Alt Tab Window Preview Icon Size"
|
||||
msgstr "Alt-Tab 窗口預覽圖標大小"
|
||||
|
||||
#: src/data/ui/customize.ui:157
|
||||
msgid "Alt Tab Icon Size"
|
||||
msgstr "Alt-Tab 圖標大小"
|
||||
|
||||
#: src/data/ui/customize.ui:164
|
||||
msgid "Looking Glass Width"
|
||||
msgstr "鏡子寬度"
|
||||
|
||||
#: src/data/ui/customize.ui:171
|
||||
msgid "Looking Glass Height"
|
||||
msgstr "鏡子高度"
|
||||
|
||||
#: src/data/ui/customize.ui:178
|
||||
msgid "Maximum Displayed Search Results"
|
||||
msgstr "最大顯示搜尋結果"
|
||||
|
||||
#: src/data/ui/customize.ui:179
|
||||
msgid "The maximum displayed search result items showing up in the search page"
|
||||
msgstr "搜尋頁面顯示的最大搜尋結果項目數"
|
||||
|
||||
#: src/data/ui/customize.ui:191 src/data/ui/customize.ui:707
|
||||
#: src/data/ui/customize.ui:757 src/data/ui/customize.ui:782
|
||||
#: src/data/ui/customize.ui:797 src/data/ui/customize.ui:808
|
||||
#: src/data/ui/customize.ui:819 src/data/ui/customize.ui:830
|
||||
#: src/data/ui/customize.ui:845 src/data/ui/customize.ui:860
|
||||
#: src/data/ui/profile.ui:43
|
||||
msgid "Default"
|
||||
msgstr "預設"
|
||||
|
||||
#: src/data/ui/customize.ui:347 src/data/ui/customize.ui:415
|
||||
#: src/data/ui/customize.ui:485 src/data/ui/customize.ui:551
|
||||
#: src/data/ui/customize.ui:618
|
||||
msgid "By Shell Theme"
|
||||
msgstr "依照 Shell 主題"
|
||||
|
||||
#: src/data/ui/customize.ui:685
|
||||
msgid "Top"
|
||||
msgstr "頂部"
|
||||
|
||||
#: src/data/ui/customize.ui:686
|
||||
msgid "Bottom"
|
||||
msgstr "底部"
|
||||
|
||||
#: src/data/ui/customize.ui:692 src/data/ui/customize.ui:790
|
||||
msgid "Center"
|
||||
msgstr "中間"
|
||||
|
||||
#: src/data/ui/customize.ui:693
|
||||
msgid "Right"
|
||||
msgstr "左側"
|
||||
|
||||
#: src/data/ui/customize.ui:694
|
||||
msgid "Left"
|
||||
msgstr "右側"
|
||||
|
||||
#: src/data/ui/customize.ui:743
|
||||
msgid "No Animation"
|
||||
msgstr "無動畫"
|
||||
|
||||
#: src/data/ui/customize.ui:744
|
||||
msgid "Default Speed"
|
||||
msgstr "預設速度"
|
||||
|
||||
#: src/data/ui/customize.ui:745
|
||||
msgid "Almost None"
|
||||
msgstr "幾乎沒有"
|
||||
|
||||
#: src/data/ui/customize.ui:746
|
||||
msgid "Fastest"
|
||||
msgstr "最快"
|
||||
|
||||
#: src/data/ui/customize.ui:747
|
||||
msgid "Faster"
|
||||
msgstr "更快"
|
||||
|
||||
#: src/data/ui/customize.ui:748
|
||||
msgid "Fast"
|
||||
msgstr "快"
|
||||
|
||||
#: src/data/ui/customize.ui:749
|
||||
msgid "Slow"
|
||||
msgstr "慢"
|
||||
|
||||
#: src/data/ui/customize.ui:750
|
||||
msgid "Slower"
|
||||
msgstr "更慢"
|
||||
|
||||
#: src/data/ui/customize.ui:751
|
||||
msgid "Slowest"
|
||||
msgstr "最慢"
|
||||
|
||||
#: src/data/ui/customize.ui:771 src/data/ui/customize.ui:783
|
||||
msgid "Top Start"
|
||||
msgstr "最開始"
|
||||
|
||||
#: src/data/ui/customize.ui:772 src/data/ui/customize.ui:784
|
||||
msgid "Top Center"
|
||||
msgstr "頂部中心"
|
||||
|
||||
#: src/data/ui/customize.ui:773 src/data/ui/customize.ui:785
|
||||
msgid "Top End"
|
||||
msgstr "高端"
|
||||
|
||||
#: src/data/ui/customize.ui:774 src/data/ui/customize.ui:786
|
||||
msgid "Bottom Start"
|
||||
msgstr "底部開始"
|
||||
|
||||
#: src/data/ui/customize.ui:775 src/data/ui/customize.ui:787
|
||||
msgid "Bottom Center"
|
||||
msgstr "底部中心"
|
||||
|
||||
#: src/data/ui/customize.ui:776 src/data/ui/customize.ui:788
|
||||
msgid "Bottom End"
|
||||
msgstr "底端"
|
||||
|
||||
#: src/data/ui/customize.ui:789
|
||||
msgid "Center Start"
|
||||
msgstr "中心開始"
|
||||
|
||||
#: src/data/ui/customize.ui:791
|
||||
msgid "Center End"
|
||||
msgstr "中心端"
|
||||
|
||||
#: src/data/ui/profile.ui:6 src/data/ui/profile.ui:11
|
||||
msgid "Profile"
|
||||
msgstr "輪廓"
|
||||
|
||||
#: src/data/ui/profile.ui:18
|
||||
msgid ""
|
||||
"You can choose between pre-defined profiles or you can simply use your own "
|
||||
"customized settings"
|
||||
msgstr "您可以在預定義的配置文件之間進行選擇,也可以簡單地使用自己的自定義設置"
|
||||
|
||||
#: src/data/ui/profile.ui:53
|
||||
msgid "Custom"
|
||||
msgstr "風俗"
|
||||
|
||||
#: src/data/ui/profile.ui:63
|
||||
msgid "Minimal"
|
||||
msgstr "最小"
|
||||
|
||||
#: src/data/ui/profile.ui:73
|
||||
msgid "Super Minimal"
|
||||
msgstr "超極小"
|
||||
|
||||
#: src/data/ui/profile.ui:90
|
||||
msgid "Override"
|
||||
msgstr "覆蓋"
|
||||
|
||||
#: src/data/ui/profile.ui:94
|
||||
msgid "Shell Theme"
|
||||
msgstr "Shell 主題"
|
||||
|
||||
#: src/data/ui/profile.ui:95
|
||||
msgid "Overrides the shell theme partially to create a minimal desktop"
|
||||
msgstr "覆蓋掉部分的 Shell 主題以建立最小的桌面"
|
||||
|
||||
#: src/data/ui/profile.ui:110
|
||||
msgid "Support"
|
||||
msgstr "支援"
|
||||
|
||||
#: src/data/ui/profile.ui:135
|
||||
msgid "Support Via Crypto"
|
||||
msgstr "透過加密支援"
|
||||
|
||||
#: src/data/ui/profile.ui:136
|
||||
msgid "Preferred Method"
|
||||
msgstr "首選方法"
|
||||
|
||||
#: src/data/ui/profile.ui:167
|
||||
msgid "Copy"
|
||||
msgstr "複製"
|
||||
|
||||
#: src/data/ui/profile.ui:184
|
||||
msgid "Support via Buy Me a Coffee"
|
||||
msgstr "通過 Buy Me a Coffee 提供支持"
|
||||
|
||||
#: src/data/ui/profile.ui:202
|
||||
msgid "Support Notification"
|
||||
msgstr "支援通知"
|
||||
|
||||
#: src/data/ui/profile.ui:203
|
||||
msgid "Manage when the support notification shows up"
|
||||
msgstr "管理支援通知的顯示時間"
|
||||
|
||||
#: src/data/ui/profile.ui:213
|
||||
msgid "Links"
|
||||
msgstr "鏈接"
|
||||
|
||||
#: src/data/ui/profile.ui:217
|
||||
msgid "Bug Report"
|
||||
msgstr "錯誤報告"
|
||||
|
||||
#: src/data/ui/profile.ui:229
|
||||
msgid "YouTube Channel"
|
||||
msgstr "YouTube 頻道"
|
||||
|
||||
#: src/data/ui/profile.ui:266
|
||||
msgid "Never"
|
||||
msgstr "絕不"
|
||||
|
||||
#: src/data/ui/profile.ui:267
|
||||
msgid "On New Releases"
|
||||
msgstr "關於新發布"
|
||||
|
||||
#: src/data/ui/profile.ui:268
|
||||
msgid "Monthly"
|
||||
msgstr "每月"
|
||||
|
||||
#: src/data/ui/profile.ui:273
|
||||
msgid "Address copied to the clipboard"
|
||||
msgstr "位址已複製到剪貼簿"
|
43
extensions/48/just-perfection/scripts/build.sh
Executable file
|
@ -0,0 +1,43 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Script to build the extension zip and install the package
|
||||
#
|
||||
# This Script is released under GPL v3 license
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
|
||||
set -e
|
||||
|
||||
# cd to the repo root
|
||||
cd "$( cd "$( dirname "$0" )" && pwd )/.."
|
||||
|
||||
echo "Compiling Resources..."
|
||||
glib-compile-resources \
|
||||
--sourcedir src/data \
|
||||
src/data/resources.gresource.xml
|
||||
|
||||
echo "Packing extension..."
|
||||
gnome-extensions pack src \
|
||||
--force \
|
||||
--podir="../po" \
|
||||
--extra-source="data/resources.gresource" \
|
||||
--extra-source="lib" \
|
||||
--extra-source="../LICENSE" \
|
||||
--extra-source="../CHANGELOG.md"
|
||||
|
||||
echo "Packing Done!"
|
||||
|
||||
while getopts i flag; do
|
||||
case $flag in
|
||||
|
||||
i) gnome-extensions install --force \
|
||||
just-perfection-desktop@just-perfection.shell-extension.zip && \
|
||||
echo "Extension is installed. Now restart the GNOME Shell." || \
|
||||
{ echo "ERROR: Could not install the extension!"; exit 1; };;
|
||||
|
||||
*) echo "ERROR: Invalid flag!"
|
||||
echo "Use '-i' to install the extension to your system."
|
||||
echo "To just build it, run the script without any flag."
|
||||
exit 1;;
|
||||
esac
|
||||
done
|
||||
|
34
extensions/48/just-perfection/scripts/update-pot.sh
Executable file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Script to update main.pot and *.po files
|
||||
#
|
||||
# This Script is released under GPL v3 license
|
||||
# Copyright (C) 2020-2025 Javad Rahmatzadeh
|
||||
|
||||
set -e
|
||||
|
||||
# cd to the repo root
|
||||
cd "$( cd "$( dirname "$0" )" && pwd )/.."
|
||||
|
||||
find -name *.ui -o -name *.js | xargs \
|
||||
xgettext \
|
||||
--from-code=UTF-8 \
|
||||
--copyright-holder="Just Perfection" \
|
||||
--package-name="Just Perfection" \
|
||||
--package-version="3" \
|
||||
--output="po/main.pot"
|
||||
|
||||
for file in po/*.po
|
||||
do
|
||||
echo -n "Updating $(basename "$file" .po)"
|
||||
msgmerge -U "$file" po/main.pot
|
||||
|
||||
if grep --silent "#, fuzzy" "$file"; then
|
||||
fuzzy+=("$(basename "$file" .po)")
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ -v fuzzy ]]; then
|
||||
echo "WARNING: Translations have unclear strings and need an update: ${fuzzy[*]}"
|
||||
fi
|
||||
|
4
extensions/48/just-perfection/src/data/css/prefs.css
Executable file
|
@ -0,0 +1,4 @@
|
|||
.qr-code-row
|
||||
{
|
||||
border: 0;
|
||||
}
|
234
extensions/48/just-perfection/src/data/imgs/donation.svg
Executable file
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 7.9 KiB |
After Width: | Height: | Size: 8 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-bnb.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 7.5 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-lbry.svg
Normal file
After Width: | Height: | Size: 8.3 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-ltc.svg
Normal file
After Width: | Height: | Size: 8 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 10 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-usdc.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-usdt.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-xlm.svg
Normal file
After Width: | Height: | Size: 8.2 KiB |
1
extensions/48/just-perfection/src/data/imgs/qr-xrp.svg
Normal file
After Width: | Height: | Size: 7.9 KiB |
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<gresources>
|
||||
<gresource prefix="/org/gnome/Shell/Extensions/justperfection">
|
||||
<file preprocess="xml-stripblanks">ui/behavior.ui</file>
|
||||
<file preprocess="xml-stripblanks">ui/customize.ui</file>
|
||||
<file preprocess="xml-stripblanks">ui/icons.ui</file>
|
||||
<file preprocess="xml-stripblanks">ui/profile.ui</file>
|
||||
<file preprocess="xml-stripblanks">ui/visibility.ui</file>
|
||||
<file preprocess="xml-stripblanks">imgs/donation.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-bitcoin.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-bitcoin-cash.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-bnb.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-cardano.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-dogecoin.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-ethereum.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-lbry.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-ltc.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-monero.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-shiba-inu.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-solana.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-usdc.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-usdt.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-xlm.svg</file>
|
||||
<file preprocess="xml-stripblanks">imgs/qr-xrp.svg</file>
|
||||
<file>css/prefs.css</file>
|
||||
</gresource>
|
||||
</gresources>
|
164
extensions/48/just-perfection/src/data/ui/behavior.ui
Executable file
|
@ -0,0 +1,164 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
|
||||
<object class="AdwPreferencesPage" id="behavior">
|
||||
<property name="name">behavior</property>
|
||||
<property name="title" translatable="yes">Behavior</property>
|
||||
<property name="icon-name">applications-engineering-symbolic</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="behavior_group">
|
||||
<property name="title" translatable="yes">Behavior</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_wrap_around_row">
|
||||
<property name="title" translatable="yes">Workspace Wraparound</property>
|
||||
<property name="subtitle" translatable="yes">Next workspace will be the first workspace when you are in the last workspace. and previous workspace will be the last workspace when you are in the first workspace.</property>
|
||||
<property name="activatable-widget">workspace_wrap_around_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_wrap_around_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_peek_row">
|
||||
<property name="title" translatable="yes">Workspace Peek</property>
|
||||
<property name="subtitle" translatable="yes">Whether the next and previous workspace should be visible in overview.</property>
|
||||
<property name="activatable-widget">workspace_peek_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_peek_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_thumbnail_to_main_view_row">
|
||||
<property name="title" translatable="yes">Workspace Switcher Click to The Main View</property>
|
||||
<property name="subtitle" translatable="yes">Workspace switcher click always goes to the main view of the workspace.</property>
|
||||
<property name="activatable-widget">workspace_thumbnail_to_main_view_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_thumbnail_to_main_view_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_demands_attention_focus_row">
|
||||
<property name="title" translatable="yes">Window Demands Attention Focus</property>
|
||||
<property name="subtitle" translatable="yes">Removes window is ready notification and focus on the window</property>
|
||||
<property name="activatable-widget">window_demands_attention_focus_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_demands_attention_focus_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_maximized_on_create_row">
|
||||
<property name="title" translatable="yes">Window Maximized by Default</property>
|
||||
<property name="subtitle" translatable="yes">Maximize all windows on creation</property>
|
||||
<property name="activatable-widget">window_maximized_on_create_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_maximized_on_create_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="type_to_search_row">
|
||||
<property name="title" translatable="yes">Type to Search</property>
|
||||
<property name="subtitle" translatable="yes">You can start search without search entry or even focusing on it in overview</property>
|
||||
<property name="activatable-widget">type_to_search_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="type_to_search_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_switcher_should_show_row">
|
||||
<property name="title" translatable="yes">Always Show Workspace Switcher</property>
|
||||
<property name="subtitle" translatable="yes">Shows workspace switcher even when only one workspace used with dynamic workspaces</property>
|
||||
<property name="activatable-widget">workspace_switcher_should_show_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_switcher_should_show_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="overlay_key_row">
|
||||
<property name="title" translatable="yes">Overlay Key</property>
|
||||
<property name="subtitle" translatable="yes">Disable overlay key (super key)</property>
|
||||
<property name="activatable-widget">overlay_key_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="overlay_key_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="double_super_to_appgrid_row">
|
||||
<property name="title" translatable="yes">Double Super to App Grid</property>
|
||||
<property name="subtitle" translatable="yes">Shows app grid when you double hit super key fast</property>
|
||||
<property name="activatable-widget">double_super_to_appgrid_switch</property>
|
||||
<property name="sensitive" bind-source="overlay_key_switch" bind-property="active" bind-flags="sync-create"/>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="double_super_to_appgrid_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="switcher_popup_delay_row">
|
||||
<property name="title" translatable="yes">Popup Delay</property>
|
||||
<property name="subtitle" translatable="yes">Removes the delay for all switcher popups like alt-tab, ctrl-alt-tab, keyboard layout, ...</property>
|
||||
<property name="activatable-widget">switcher_popup_delay_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="switcher_popup_delay_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="startup_status_row">
|
||||
<property name="title" translatable="yes">Startup Status</property>
|
||||
<property name="subtitle" translatable="yes">When GNOME Shell is starting up for the first time</property>
|
||||
<property name="model">startup_status_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="startup_status_model">
|
||||
<items>
|
||||
<item translatable="yes">Desktop</item>
|
||||
<item translatable="yes">Overview</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
</interface>
|
904
extensions/48/just-perfection/src/data/ui/customize.ui
Executable file
|
@ -0,0 +1,904 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
|
||||
<object class="AdwPreferencesPage" id="customize">
|
||||
<property name="name">customize</property>
|
||||
<property name="title" translatable="yes">Customize</property>
|
||||
<property name="icon-name">applications-utilities-symbolic</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="customize_group">
|
||||
<property name="title" translatable="yes">Customize</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="accent_color_icon_row">
|
||||
<property name="title" translatable="yes">Accent Color for Icons</property>
|
||||
<property name="subtitle" translatable="yes">Use accent color for all symbolic icons</property>
|
||||
<property name="activatable-widget">accent_color_icon_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="accent_color_icon_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="invert_calendar_column_items_row">
|
||||
<property name="title" translatable="yes">Invert Calendar Column Items</property>
|
||||
<property name="subtitle" translatable="yes">Invert the positions of the calendar column items in clock menu</property>
|
||||
<property name="activatable-widget">invert_calendar_column_items_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="invert_calendar_column_items_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="controls_manager_spacing_size_row">
|
||||
<property name="title" translatable="yes">Overview Spacing Size</property>
|
||||
<property name="subtitle" translatable="yes">The spacing size for controls manager in overview</property>
|
||||
<property name="model">controls_manager_spacing_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="workspace_background_corner_size_row">
|
||||
<property name="title" translatable="yes">Workspace Background Corner Size</property>
|
||||
<property name="subtitle" translatable="yes">Workspace background corner size in overview</property>
|
||||
<property name="model">workspace_background_corner_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="panel_size_row">
|
||||
<property name="title" translatable="yes">Panel Size</property>
|
||||
<property name="model">panel_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="panel_icon_size_row">
|
||||
<property name="title" translatable="yes">Panel Icon Size</property>
|
||||
<property name="model">panel_icon_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="panel_button_padding_size_row">
|
||||
<property name="title" translatable="yes">Panel Button Padding Size</property>
|
||||
<property name="model">panel_button_padding_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="panel_indicator_padding_size_row">
|
||||
<property name="title" translatable="yes">Panel Indicator Padding Size</property>
|
||||
<property name="model">panel_indicator_padding_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="top_panel_position_row">
|
||||
<property name="title" translatable="yes">Panel Position</property>
|
||||
<property name="model">top_panel_position_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="clock_menu_position_row">
|
||||
<property name="title" translatable="yes">Clock Menu Position</property>
|
||||
<property name="model">clock_menu_position_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwSpinRow" id="clock_menu_position_offset_row">
|
||||
<property name="title" translatable="yes">Clock Menu Position Offset</property>
|
||||
<property name="adjustment">clock_menu_position_offset_adjustment</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="workspace_switcher_size_row">
|
||||
<property name="title" translatable="yes">Workspace Switcher Size</property>
|
||||
<property name="model">workspace_switcher_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="animation_row">
|
||||
<property name="title" translatable="yes">Animation</property>
|
||||
<property name="model">animation_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="dash_icon_size_row">
|
||||
<property name="title" translatable="yes">Dash Icon Size</property>
|
||||
<property name="model">dash_icon_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="notification_banner_position_row">
|
||||
<property name="title" translatable="yes">Notification Banner Position</property>
|
||||
<property name="subtitle" translatable="yes">Notification popup position when notifications show up on the screen</property>
|
||||
<property name="model">notification_banner_position_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="osd_position_row">
|
||||
<property name="title" translatable="yes">OSD Position</property>
|
||||
<property name="subtitle" translatable="yes">OSD position when on screen display shows up on the screen</property>
|
||||
<property name="model">osd_position_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="alt_tab_window_preview_size_row">
|
||||
<property name="title" translatable="yes">Alt Tab Window Preview Size</property>
|
||||
<property name="model">alt_tab_window_preview_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="alt_tab_small_icon_size_row">
|
||||
<property name="title" translatable="yes">Alt Tab Window Preview Icon Size</property>
|
||||
<property name="model">alt_tab_small_icon_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="alt_tab_icon_size_row">
|
||||
<property name="title" translatable="yes">Alt Tab Icon Size</property>
|
||||
<property name="model">alt_tab_icon_size_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="looking_glass_width_row">
|
||||
<property name="title" translatable="yes">Looking Glass Width</property>
|
||||
<property name="model">looking_glass_width_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="looking_glass_height_row">
|
||||
<property name="title" translatable="yes">Looking Glass Height</property>
|
||||
<property name="model">looking_glass_height_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="max_displayed_search_results_row">
|
||||
<property name="title" translatable="yes">Maximum Displayed Search Results</property>
|
||||
<property name="subtitle" translatable="yes">The maximum displayed search result items showing up in the search page</property>
|
||||
<property name="model">max_displayed_search_results_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="controls_manager_spacing_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>1</item>
|
||||
<item>2</item>
|
||||
<item>3</item>
|
||||
<item>4</item>
|
||||
<item>5</item>
|
||||
<item>6</item>
|
||||
<item>7</item>
|
||||
<item>8</item>
|
||||
<item>9</item>
|
||||
<item>10</item>
|
||||
<item>11</item>
|
||||
<item>12</item>
|
||||
<item>13</item>
|
||||
<item>14</item>
|
||||
<item>15</item>
|
||||
<item>16</item>
|
||||
<item>17</item>
|
||||
<item>18</item>
|
||||
<item>19</item>
|
||||
<item>20</item>
|
||||
<item>21</item>
|
||||
<item>22</item>
|
||||
<item>23</item>
|
||||
<item>24</item>
|
||||
<item>25</item>
|
||||
<item>26</item>
|
||||
<item>27</item>
|
||||
<item>28</item>
|
||||
<item>29</item>
|
||||
<item>30</item>
|
||||
<item>31</item>
|
||||
<item>32</item>
|
||||
<item>33</item>
|
||||
<item>34</item>
|
||||
<item>35</item>
|
||||
<item>36</item>
|
||||
<item>37</item>
|
||||
<item>38</item>
|
||||
<item>39</item>
|
||||
<item>40</item>
|
||||
<item>41</item>
|
||||
<item>42</item>
|
||||
<item>43</item>
|
||||
<item>44</item>
|
||||
<item>45</item>
|
||||
<item>46</item>
|
||||
<item>47</item>
|
||||
<item>48</item>
|
||||
<item>49</item>
|
||||
<item>50</item>
|
||||
<item>51</item>
|
||||
<item>52</item>
|
||||
<item>53</item>
|
||||
<item>54</item>
|
||||
<item>55</item>
|
||||
<item>56</item>
|
||||
<item>57</item>
|
||||
<item>58</item>
|
||||
<item>59</item>
|
||||
<item>60</item>
|
||||
<item>61</item>
|
||||
<item>62</item>
|
||||
<item>63</item>
|
||||
<item>64</item>
|
||||
<item>65</item>
|
||||
<item>66</item>
|
||||
<item>67</item>
|
||||
<item>68</item>
|
||||
<item>69</item>
|
||||
<item>70</item>
|
||||
<item>71</item>
|
||||
<item>72</item>
|
||||
<item>73</item>
|
||||
<item>74</item>
|
||||
<item>75</item>
|
||||
<item>76</item>
|
||||
<item>77</item>
|
||||
<item>78</item>
|
||||
<item>79</item>
|
||||
<item>80</item>
|
||||
<item>81</item>
|
||||
<item>82</item>
|
||||
<item>83</item>
|
||||
<item>84</item>
|
||||
<item>85</item>
|
||||
<item>86</item>
|
||||
<item>87</item>
|
||||
<item>88</item>
|
||||
<item>89</item>
|
||||
<item>90</item>
|
||||
<item>91</item>
|
||||
<item>92</item>
|
||||
<item>93</item>
|
||||
<item>94</item>
|
||||
<item>95</item>
|
||||
<item>96</item>
|
||||
<item>97</item>
|
||||
<item>98</item>
|
||||
<item>99</item>
|
||||
<item>100</item>
|
||||
<item>101</item>
|
||||
<item>102</item>
|
||||
<item>103</item>
|
||||
<item>104</item>
|
||||
<item>105</item>
|
||||
<item>106</item>
|
||||
<item>107</item>
|
||||
<item>108</item>
|
||||
<item>109</item>
|
||||
<item>110</item>
|
||||
<item>111</item>
|
||||
<item>112</item>
|
||||
<item>113</item>
|
||||
<item>114</item>
|
||||
<item>115</item>
|
||||
<item>116</item>
|
||||
<item>117</item>
|
||||
<item>118</item>
|
||||
<item>119</item>
|
||||
<item>120</item>
|
||||
<item>121</item>
|
||||
<item>122</item>
|
||||
<item>123</item>
|
||||
<item>124</item>
|
||||
<item>125</item>
|
||||
<item>126</item>
|
||||
<item>127</item>
|
||||
<item>128</item>
|
||||
<item>129</item>
|
||||
<item>130</item>
|
||||
<item>131</item>
|
||||
<item>132</item>
|
||||
<item>133</item>
|
||||
<item>134</item>
|
||||
<item>135</item>
|
||||
<item>136</item>
|
||||
<item>137</item>
|
||||
<item>138</item>
|
||||
<item>139</item>
|
||||
<item>140</item>
|
||||
<item>141</item>
|
||||
<item>142</item>
|
||||
<item>143</item>
|
||||
<item>144</item>
|
||||
<item>145</item>
|
||||
<item>146</item>
|
||||
<item>147</item>
|
||||
<item>148</item>
|
||||
<item>149</item>
|
||||
<item>150</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="workspace_background_corner_size_model">
|
||||
<items>
|
||||
<item translatable="yes">By Shell Theme</item>
|
||||
<item>0px</item>
|
||||
<item>1px</item>
|
||||
<item>2px</item>
|
||||
<item>3px</item>
|
||||
<item>4px</item>
|
||||
<item>5px</item>
|
||||
<item>6px</item>
|
||||
<item>7px</item>
|
||||
<item>8px</item>
|
||||
<item>9px</item>
|
||||
<item>10px</item>
|
||||
<item>11px</item>
|
||||
<item>12px</item>
|
||||
<item>13px</item>
|
||||
<item>14px</item>
|
||||
<item>15px</item>
|
||||
<item>16px</item>
|
||||
<item>17px</item>
|
||||
<item>18px</item>
|
||||
<item>19px</item>
|
||||
<item>20px</item>
|
||||
<item>21px</item>
|
||||
<item>22px</item>
|
||||
<item>23px</item>
|
||||
<item>24px</item>
|
||||
<item>25px</item>
|
||||
<item>26px</item>
|
||||
<item>27px</item>
|
||||
<item>28px</item>
|
||||
<item>29px</item>
|
||||
<item>30px</item>
|
||||
<item>31px</item>
|
||||
<item>32px</item>
|
||||
<item>33px</item>
|
||||
<item>34px</item>
|
||||
<item>35px</item>
|
||||
<item>36px</item>
|
||||
<item>37px</item>
|
||||
<item>38px</item>
|
||||
<item>39px</item>
|
||||
<item>40px</item>
|
||||
<item>41px</item>
|
||||
<item>42px</item>
|
||||
<item>43px</item>
|
||||
<item>44px</item>
|
||||
<item>45px</item>
|
||||
<item>46px</item>
|
||||
<item>47px</item>
|
||||
<item>48px</item>
|
||||
<item>49px</item>
|
||||
<item>50px</item>
|
||||
<item>51px</item>
|
||||
<item>52px</item>
|
||||
<item>53px</item>
|
||||
<item>54px</item>
|
||||
<item>55px</item>
|
||||
<item>56px</item>
|
||||
<item>57px</item>
|
||||
<item>58px</item>
|
||||
<item>59px</item>
|
||||
<item>60px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
|
||||
<object class="GtkStringList" id="panel_size_model">
|
||||
<items>
|
||||
<item translatable="yes">By Shell Theme</item>
|
||||
<item>1px</item>
|
||||
<item>2px</item>
|
||||
<item>3px</item>
|
||||
<item>4px</item>
|
||||
<item>5px</item>
|
||||
<item>6px</item>
|
||||
<item>7px</item>
|
||||
<item>8px</item>
|
||||
<item>9px</item>
|
||||
<item>10px</item>
|
||||
<item>11px</item>
|
||||
<item>12px</item>
|
||||
<item>13px</item>
|
||||
<item>14px</item>
|
||||
<item>15px</item>
|
||||
<item>16px</item>
|
||||
<item>17px</item>
|
||||
<item>18px</item>
|
||||
<item>19px</item>
|
||||
<item>20px</item>
|
||||
<item>21px</item>
|
||||
<item>22px</item>
|
||||
<item>23px</item>
|
||||
<item>24px</item>
|
||||
<item>25px</item>
|
||||
<item>26px</item>
|
||||
<item>27px</item>
|
||||
<item>28px</item>
|
||||
<item>29px</item>
|
||||
<item>30px</item>
|
||||
<item>31px</item>
|
||||
<item>32px</item>
|
||||
<item>33px</item>
|
||||
<item>34px</item>
|
||||
<item>35px</item>
|
||||
<item>36px</item>
|
||||
<item>37px</item>
|
||||
<item>38px</item>
|
||||
<item>39px</item>
|
||||
<item>40px</item>
|
||||
<item>41px</item>
|
||||
<item>42px</item>
|
||||
<item>43px</item>
|
||||
<item>44px</item>
|
||||
<item>45px</item>
|
||||
<item>46px</item>
|
||||
<item>47px</item>
|
||||
<item>48px</item>
|
||||
<item>49px</item>
|
||||
<item>50px</item>
|
||||
<item>51px</item>
|
||||
<item>52px</item>
|
||||
<item>53px</item>
|
||||
<item>54px</item>
|
||||
<item>55px</item>
|
||||
<item>56px</item>
|
||||
<item>57px</item>
|
||||
<item>58px</item>
|
||||
<item>59px</item>
|
||||
<item>60px</item>
|
||||
<item>61px</item>
|
||||
<item>62px</item>
|
||||
<item>63px</item>
|
||||
<item>64px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="panel_icon_size_model">
|
||||
<items>
|
||||
<item translatable="yes">By Shell Theme</item>
|
||||
<item>1px</item>
|
||||
<item>2px</item>
|
||||
<item>3px</item>
|
||||
<item>4px</item>
|
||||
<item>5px</item>
|
||||
<item>6px</item>
|
||||
<item>7px</item>
|
||||
<item>8px</item>
|
||||
<item>9px</item>
|
||||
<item>10px</item>
|
||||
<item>11px</item>
|
||||
<item>12px</item>
|
||||
<item>13px</item>
|
||||
<item>14px</item>
|
||||
<item>15px</item>
|
||||
<item>16px</item>
|
||||
<item>17px</item>
|
||||
<item>18px</item>
|
||||
<item>19px</item>
|
||||
<item>20px</item>
|
||||
<item>21px</item>
|
||||
<item>22px</item>
|
||||
<item>23px</item>
|
||||
<item>24px</item>
|
||||
<item>25px</item>
|
||||
<item>26px</item>
|
||||
<item>27px</item>
|
||||
<item>28px</item>
|
||||
<item>29px</item>
|
||||
<item>30px</item>
|
||||
<item>31px</item>
|
||||
<item>32px</item>
|
||||
<item>33px</item>
|
||||
<item>34px</item>
|
||||
<item>35px</item>
|
||||
<item>36px</item>
|
||||
<item>37px</item>
|
||||
<item>38px</item>
|
||||
<item>39px</item>
|
||||
<item>40px</item>
|
||||
<item>41px</item>
|
||||
<item>42px</item>
|
||||
<item>43px</item>
|
||||
<item>44px</item>
|
||||
<item>45px</item>
|
||||
<item>46px</item>
|
||||
<item>47px</item>
|
||||
<item>48px</item>
|
||||
<item>49px</item>
|
||||
<item>50px</item>
|
||||
<item>51px</item>
|
||||
<item>52px</item>
|
||||
<item>53px</item>
|
||||
<item>54px</item>
|
||||
<item>55px</item>
|
||||
<item>56px</item>
|
||||
<item>57px</item>
|
||||
<item>58px</item>
|
||||
<item>59px</item>
|
||||
<item>60px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="panel_button_padding_size_model">
|
||||
<items>
|
||||
<item translatable="yes">By Shell Theme</item>
|
||||
<item>0px</item>
|
||||
<item>1px</item>
|
||||
<item>2px</item>
|
||||
<item>3px</item>
|
||||
<item>4px</item>
|
||||
<item>5px</item>
|
||||
<item>6px</item>
|
||||
<item>7px</item>
|
||||
<item>8px</item>
|
||||
<item>9px</item>
|
||||
<item>10px</item>
|
||||
<item>11px</item>
|
||||
<item>12px</item>
|
||||
<item>13px</item>
|
||||
<item>14px</item>
|
||||
<item>15px</item>
|
||||
<item>16px</item>
|
||||
<item>17px</item>
|
||||
<item>18px</item>
|
||||
<item>19px</item>
|
||||
<item>20px</item>
|
||||
<item>21px</item>
|
||||
<item>22px</item>
|
||||
<item>23px</item>
|
||||
<item>24px</item>
|
||||
<item>25px</item>
|
||||
<item>26px</item>
|
||||
<item>27px</item>
|
||||
<item>28px</item>
|
||||
<item>29px</item>
|
||||
<item>30px</item>
|
||||
<item>31px</item>
|
||||
<item>32px</item>
|
||||
<item>33px</item>
|
||||
<item>34px</item>
|
||||
<item>35px</item>
|
||||
<item>36px</item>
|
||||
<item>37px</item>
|
||||
<item>38px</item>
|
||||
<item>39px</item>
|
||||
<item>40px</item>
|
||||
<item>41px</item>
|
||||
<item>42px</item>
|
||||
<item>43px</item>
|
||||
<item>44px</item>
|
||||
<item>45px</item>
|
||||
<item>46px</item>
|
||||
<item>47px</item>
|
||||
<item>48px</item>
|
||||
<item>49px</item>
|
||||
<item>50px</item>
|
||||
<item>51px</item>
|
||||
<item>52px</item>
|
||||
<item>53px</item>
|
||||
<item>54px</item>
|
||||
<item>55px</item>
|
||||
<item>56px</item>
|
||||
<item>57px</item>
|
||||
<item>58px</item>
|
||||
<item>59px</item>
|
||||
<item>60px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="panel_indicator_padding_size_model">
|
||||
<items>
|
||||
<item translatable="yes">By Shell Theme</item>
|
||||
<item>0px</item>
|
||||
<item>1px</item>
|
||||
<item>2px</item>
|
||||
<item>3px</item>
|
||||
<item>4px</item>
|
||||
<item>5px</item>
|
||||
<item>6px</item>
|
||||
<item>7px</item>
|
||||
<item>8px</item>
|
||||
<item>9px</item>
|
||||
<item>10px</item>
|
||||
<item>11px</item>
|
||||
<item>12px</item>
|
||||
<item>13px</item>
|
||||
<item>14px</item>
|
||||
<item>15px</item>
|
||||
<item>16px</item>
|
||||
<item>17px</item>
|
||||
<item>18px</item>
|
||||
<item>19px</item>
|
||||
<item>20px</item>
|
||||
<item>21px</item>
|
||||
<item>22px</item>
|
||||
<item>23px</item>
|
||||
<item>24px</item>
|
||||
<item>25px</item>
|
||||
<item>26px</item>
|
||||
<item>27px</item>
|
||||
<item>28px</item>
|
||||
<item>29px</item>
|
||||
<item>30px</item>
|
||||
<item>31px</item>
|
||||
<item>32px</item>
|
||||
<item>33px</item>
|
||||
<item>34px</item>
|
||||
<item>35px</item>
|
||||
<item>36px</item>
|
||||
<item>37px</item>
|
||||
<item>38px</item>
|
||||
<item>39px</item>
|
||||
<item>40px</item>
|
||||
<item>41px</item>
|
||||
<item>42px</item>
|
||||
<item>43px</item>
|
||||
<item>44px</item>
|
||||
<item>45px</item>
|
||||
<item>46px</item>
|
||||
<item>47px</item>
|
||||
<item>48px</item>
|
||||
<item>49px</item>
|
||||
<item>50px</item>
|
||||
<item>51px</item>
|
||||
<item>52px</item>
|
||||
<item>53px</item>
|
||||
<item>54px</item>
|
||||
<item>55px</item>
|
||||
<item>56px</item>
|
||||
<item>57px</item>
|
||||
<item>58px</item>
|
||||
<item>59px</item>
|
||||
<item>60px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="top_panel_position_model">
|
||||
<items>
|
||||
<item translatable="yes">Top</item>
|
||||
<item translatable="yes">Bottom</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="clock_menu_position_model">
|
||||
<items>
|
||||
<item translatable="yes">Center</item>
|
||||
<item translatable="yes">Right</item>
|
||||
<item translatable="yes">Left</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkAdjustment" id="clock_menu_position_offset_adjustment">
|
||||
<property name="lower">0</property>
|
||||
<property name="upper">20</property>
|
||||
<property name="value">0</property>
|
||||
<property name="step-increment">1</property>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="workspace_switcher_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>1%</item>
|
||||
<item>2%</item>
|
||||
<item>3%</item>
|
||||
<item>4%</item>
|
||||
<item>5%</item>
|
||||
<item>6%</item>
|
||||
<item>7%</item>
|
||||
<item>8%</item>
|
||||
<item>9%</item>
|
||||
<item>10%</item>
|
||||
<item>11%</item>
|
||||
<item>12%</item>
|
||||
<item>13%</item>
|
||||
<item>14%</item>
|
||||
<item>15%</item>
|
||||
<item>16%</item>
|
||||
<item>17%</item>
|
||||
<item>18%</item>
|
||||
<item>19%</item>
|
||||
<item>20%</item>
|
||||
<item>21%</item>
|
||||
<item>22%</item>
|
||||
<item>23%</item>
|
||||
<item>24%</item>
|
||||
<item>25%</item>
|
||||
<item>26%</item>
|
||||
<item>27%</item>
|
||||
<item>28%</item>
|
||||
<item>29%</item>
|
||||
<item>30%</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="animation_model">
|
||||
<items>
|
||||
<item translatable="yes">No Animation</item>
|
||||
<item translatable="yes">Default Speed</item>
|
||||
<item translatable="yes">Almost None</item>
|
||||
<item translatable="yes">Fastest</item>
|
||||
<item translatable="yes">Faster</item>
|
||||
<item translatable="yes">Fast</item>
|
||||
<item translatable="yes">Slow</item>
|
||||
<item translatable="yes">Slower</item>
|
||||
<item translatable="yes">Slowest</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="dash_icon_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>16px</item>
|
||||
<item>22px</item>
|
||||
<item>24px</item>
|
||||
<item>32px</item>
|
||||
<item>40px</item>
|
||||
<item>48px</item>
|
||||
<item>56px</item>
|
||||
<item>64px</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="notification_banner_position_model">
|
||||
<items>
|
||||
<item translatable="yes">Top Start</item>
|
||||
<item translatable="yes">Top Center</item>
|
||||
<item translatable="yes">Top End</item>
|
||||
<item translatable="yes">Bottom Start</item>
|
||||
<item translatable="yes">Bottom Center</item>
|
||||
<item translatable="yes">Bottom End</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="osd_position_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item translatable="yes">Top Start</item>
|
||||
<item translatable="yes">Top Center</item>
|
||||
<item translatable="yes">Top End</item>
|
||||
<item translatable="yes">Bottom Start</item>
|
||||
<item translatable="yes">Bottom Center</item>
|
||||
<item translatable="yes">Bottom End</item>
|
||||
<item translatable="yes">Center Start</item>
|
||||
<item translatable="yes">Center</item>
|
||||
<item translatable="yes">Center End</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="alt_tab_window_preview_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>32</item>
|
||||
<item>64</item>
|
||||
<item>128</item>
|
||||
<item>256</item>
|
||||
<item>512</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="alt_tab_small_icon_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>32</item>
|
||||
<item>64</item>
|
||||
<item>128</item>
|
||||
<item>256</item>
|
||||
<item>512</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="alt_tab_icon_size_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>32</item>
|
||||
<item>64</item>
|
||||
<item>128</item>
|
||||
<item>256</item>
|
||||
<item>512</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="looking_glass_width_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>10%</item>
|
||||
<item>20%</item>
|
||||
<item>30%</item>
|
||||
<item>40%</item>
|
||||
<item>50%</item>
|
||||
<item>60%</item>
|
||||
<item>70%</item>
|
||||
<item>80%</item>
|
||||
<item>90%</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="looking_glass_height_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>10%</item>
|
||||
<item>20%</item>
|
||||
<item>30%</item>
|
||||
<item>40%</item>
|
||||
<item>50%</item>
|
||||
<item>60%</item>
|
||||
<item>70%</item>
|
||||
<item>80%</item>
|
||||
<item>90%</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="max_displayed_search_results_model">
|
||||
<items>
|
||||
<item translatable="yes">Default</item>
|
||||
<item>1</item>
|
||||
<item>2</item>
|
||||
<item>3</item>
|
||||
<item>4</item>
|
||||
<item>5</item>
|
||||
<item>6</item>
|
||||
<item>7</item>
|
||||
<item>8</item>
|
||||
<item>9</item>
|
||||
<item>10</item>
|
||||
<item>11</item>
|
||||
<item>12</item>
|
||||
<item>13</item>
|
||||
<item>14</item>
|
||||
<item>15</item>
|
||||
<item>16</item>
|
||||
<item>17</item>
|
||||
<item>18</item>
|
||||
<item>19</item>
|
||||
<item>20</item>
|
||||
<item>21</item>
|
||||
<item>22</item>
|
||||
<item>23</item>
|
||||
<item>24</item>
|
||||
<item>25</item>
|
||||
<item>26</item>
|
||||
<item>27</item>
|
||||
<item>28</item>
|
||||
<item>29</item>
|
||||
<item>30</item>
|
||||
<item>31</item>
|
||||
<item>32</item>
|
||||
<item>33</item>
|
||||
<item>34</item>
|
||||
<item>35</item>
|
||||
<item>36</item>
|
||||
<item>37</item>
|
||||
<item>38</item>
|
||||
<item>39</item>
|
||||
<item>40</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
</interface>
|
55
extensions/48/just-perfection/src/data/ui/icons.ui
Executable file
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
|
||||
<object class="AdwPreferencesPage" id="icons">
|
||||
<property name="name">icons</property>
|
||||
<property name="title" translatable="yes">Icons</property>
|
||||
<property name="icon-name">emblem-photos-symbolic</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="icons_group">
|
||||
<property name="title" translatable="yes">Icons</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="panel_notification_icon_row">
|
||||
<property name="title" translatable="yes">Panel Notification Icon</property>
|
||||
<property name="activatable-widget">panel_notification_icon_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="panel_notification_icon_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="power_icon_row">
|
||||
<property name="title" translatable="yes">Power Icon</property>
|
||||
<property name="activatable-widget">power_icon_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="power_icon_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_picker_icon_row">
|
||||
<property name="title" translatable="yes">Window Picker Icon</property>
|
||||
<property name="subtitle" translatable="yes">The icon under window preview in overview</property>
|
||||
<property name="activatable-widget">window_picker_icon_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_picker_icon_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
|
||||
</interface>
|
276
extensions/48/just-perfection/src/data/ui/profile.ui
Executable file
|
@ -0,0 +1,276 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
|
||||
<object class="AdwPreferencesPage" id="profile">
|
||||
<property name="name">profile</property>
|
||||
<property name="title" translatable="yes">Profile</property>
|
||||
<property name="icon-name">view-list-symbolic</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="profile_group">
|
||||
<property name="title" translatable="yes">Profile</property>
|
||||
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">False</property>
|
||||
<property name="valign">center</property>
|
||||
<property name="label" translatable="yes">You can choose between pre-defined profiles or you can simply use your own customized settings</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="width-chars">0</property>
|
||||
<property name="margin-top">12</property>
|
||||
<property name="margin-bottom">12</property>
|
||||
<style>
|
||||
<class name="dim-label"/>
|
||||
</style>
|
||||
<attributes>
|
||||
<attribute name="scale" value="0.9"/>
|
||||
</attributes>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="hexpand">0</property>
|
||||
<property name="vexpand">0</property>
|
||||
<child>
|
||||
<object class="GtkToggleButton" id="profile_default">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="label" translatable="yes">Default</property>
|
||||
<property name="active">1</property>
|
||||
<property name="hexpand">1</property>
|
||||
<property name="vexpand">1</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkToggleButton" id="profile_custom">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="label" translatable="yes">Custom</property>
|
||||
<property name="group">profile_default</property>
|
||||
<property name="hexpand">1</property>
|
||||
<property name="vexpand">1</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkToggleButton" id="profile_minimal">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="label" translatable="yes">Minimal</property>
|
||||
<property name="group">profile_default</property>
|
||||
<property name="hexpand">1</property>
|
||||
<property name="vexpand">1</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkToggleButton" id="profile_superminimal">
|
||||
<property name="visible">True</property>
|
||||
<property name="can-focus">True</property>
|
||||
<property name="label" translatable="yes">Super Minimal</property>
|
||||
<property name="group">profile_default</property>
|
||||
<property name="hexpand">1</property>
|
||||
<property name="vexpand">1</property>
|
||||
</object>
|
||||
</child>
|
||||
<style>
|
||||
<class name="linked"/>
|
||||
</style>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="override_group">
|
||||
<property name="title" translatable="yes">Override</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="theme_row">
|
||||
<property name="title" translatable="yes">Shell Theme</property>
|
||||
<property name="subtitle" translatable="yes">Overrides the shell theme partially to create a minimal desktop</property>
|
||||
<property name="activatable-widget">theme_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="theme_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="support_group">
|
||||
<property name="title" translatable="yes">Support</property>
|
||||
<property name="description">Your support helps maintain and improve Just Perfection, develop new features, and ensure smooth updates. Even a small donation makes a big difference!
|
||||
|
||||
Thank you for your support!</property>
|
||||
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="halign">center</property>
|
||||
<child>
|
||||
<object class="GtkPicture" id="donation_picture">
|
||||
<property name="can-shrink">False</property>
|
||||
<property name="file">resource:///org/gnome/Shell/Extensions/justperfection/imgs/donation.svg</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="support_crypto_group">
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="support_crypto_row">
|
||||
<property name="title" translatable="yes">Support Via Crypto</property>
|
||||
<property name="subtitle" translatable="yes">Preferred Method</property>
|
||||
<property name="model">support_crypto_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="qr_row">
|
||||
<property name="halign">center</property>
|
||||
<style>
|
||||
<class name="qr-code-row" />
|
||||
</style>
|
||||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="orientation">vertical</property>
|
||||
<child>
|
||||
<object class="GtkPicture" id="qr_picture">
|
||||
<property name="can-shrink">False</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="AdwEntryRow" id="crypto_address_row">
|
||||
<property name="editable">False</property>
|
||||
<property name="show-apply-button">False</property>
|
||||
<child>
|
||||
<object class="GtkButton" id="crypto_address_copy_button">
|
||||
<property name="valign">center</property>
|
||||
<property name="icon_name">edit-copy-symbolic</property>
|
||||
<property name="tooltip-text" translatable="yes">Copy</property>
|
||||
<style>
|
||||
<class name="flat"/>
|
||||
</style>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="support_links_group">
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Support via Buy Me a Coffee</property>
|
||||
<property name="activatable-widget">buymeacoffee_linkbutton</property>
|
||||
<child>
|
||||
<object class="GtkLinkButton" id="buymeacoffee_linkbutton">
|
||||
<property name="uri">https://www.buymeacoffee.com/justperfection</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="support_notifier_group">
|
||||
|
||||
<child>
|
||||
<object class="AdwComboRow" id="support_notifier_type_row">
|
||||
<property name="title" translatable="yes">Support Notification</property>
|
||||
<property name="subtitle" translatable="yes">Manage when the support notification shows up</property>
|
||||
<property name="model">support_notifier_type_model</property>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="links_group">
|
||||
<property name="title" translatable="yes">Links</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">Bug Report</property>
|
||||
<property name="activatable-widget">bug_report_linkbutton</property>
|
||||
<child>
|
||||
<object class="GtkLinkButton" id="bug_report_linkbutton">
|
||||
<property name="uri">https://gitlab.gnome.org/jrahmatzadeh/just-perfection/-/issues</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow">
|
||||
<property name="title" translatable="yes">YouTube Channel</property>
|
||||
<property name="activatable-widget">youtube_linkbutton</property>
|
||||
<child>
|
||||
<object class="GtkLinkButton" id="youtube_linkbutton">
|
||||
<property name="uri">https://www.youtube.com/channel/UCIPetZTndV_mB3GT6tNQ2Zw</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="support_crypto_model">
|
||||
<items>
|
||||
<item>Dogecoin</item>
|
||||
<item>Bitcoin</item>
|
||||
<item>Bitcoin Cash</item>
|
||||
<item>Ethereum</item>
|
||||
<item>XRP</item>
|
||||
<item>USDT (Tether)</item>
|
||||
<item>USDC</item>
|
||||
<item>Solana</item>
|
||||
<item>Cardano (ADA)</item>
|
||||
<item>BNB (BSC Network)</item>
|
||||
<item>Litecoin (LTC)</item>
|
||||
<item>Stellar (XLM)</item>
|
||||
<item>Monero</item>
|
||||
<item>LBRY</item>
|
||||
<item>Shiba Inu</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="GtkStringList" id="support_notifier_type_model">
|
||||
<items>
|
||||
<item translatable="yes">Never</item>
|
||||
<item translatable="yes">On New Releases</item>
|
||||
</items>
|
||||
</object>
|
||||
|
||||
<object class="AdwToast" id="toast_added_to_clipboard">
|
||||
<property name="title" translatable="yes">Address copied to the clipboard</property>
|
||||
<property name="timeout">2</property>
|
||||
</object>
|
||||
|
||||
</interface>
|
408
extensions/48/just-perfection/src/data/ui/visibility.ui
Executable file
|
@ -0,0 +1,408 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
|
||||
<object class="AdwPreferencesPage" id="visibility">
|
||||
<property name="name">visibility</property>
|
||||
<property name="title" translatable="yes">Visibility</property>
|
||||
<property name="icon-name">weather-clear-symbolic</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwPreferencesGroup" id="visibility_group">
|
||||
<property name="title" translatable="yes">Visibility</property>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="panel_row">
|
||||
<property name="title" translatable="yes">Panel</property>
|
||||
<property name="activatable-widget">panel_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="panel_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="panel_in_overview_row">
|
||||
<property name="title" translatable="yes">Panel in Overview</property>
|
||||
<property name="activatable-widget">panel_in_overview_switch</property>
|
||||
<property name="sensitive" bind-source="panel_switch" bind-property="active" bind-flags="invert-boolean|sync-create"/>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="panel_in_overview_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="activities_button_row">
|
||||
<property name="title" translatable="yes">Activities Button</property>
|
||||
<property name="subtitle" translatable="yes">Button in panel to toggle overview visibility</property>
|
||||
<property name="activatable-widget">activities_button_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="activities_button_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="clock_menu_row">
|
||||
<property name="title" translatable="yes">Clock Menu</property>
|
||||
<property name="subtitle" translatable="yes">Also known as date menu shows date and time in panel</property>
|
||||
<property name="activatable-widget">clock_menu_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="clock_menu_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="keyboard_layout_row">
|
||||
<property name="title" translatable="yes">Keyboard Layout</property>
|
||||
<property name="subtitle" translatable="yes">Keyboard Layout indicator button in panel</property>
|
||||
<property name="activatable-widget">keyboard_layout_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="keyboard_layout_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="accessibility_menu_row">
|
||||
<property name="title" translatable="yes">Accessibility Menu</property>
|
||||
<property name="subtitle" translatable="yes">Accessibility Menu indicator button in panel</property>
|
||||
<property name="activatable-widget">accessibility_menu_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="accessibility_menu_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="quick_settings_row">
|
||||
<property name="title" translatable="yes">Quick Settings</property>
|
||||
<property name="subtitle" translatable="yes">Quick settings menu in panel</property>
|
||||
<property name="activatable-widget">quick_settings_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="quick_settings_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="quick_settings_dark_mode_row">
|
||||
<property name="title" translatable="yes">Dark Mode Toggle Button</property>
|
||||
<property name="subtitle" translatable="yes">Dark Mode Toggle Button in Quick settings menu</property>
|
||||
<property name="activatable-widget">quick_settings_dark_mode_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="quick_settings_dark_mode_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="quick_settings_night_light_row">
|
||||
<property name="title" translatable="yes">Night Light Toggle Button</property>
|
||||
<property name="subtitle" translatable="yes">Night Light Toggle Button in Quick settings menu</property>
|
||||
<property name="activatable-widget">quick_settings_night_light_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="quick_settings_night_light_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="quick_settings_airplane_mode_row">
|
||||
<property name="title" translatable="yes">Airplane Mode Toggle Button</property>
|
||||
<property name="subtitle" translatable="yes">Airplane Mode Toggle Button in Quick settings menu</property>
|
||||
<property name="activatable-widget">quick_settings_airplane_mode_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="quick_settings_airplane_mode_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="screen_sharing_indicator_row">
|
||||
<property name="title" translatable="yes">Screen Sharing Indicator</property>
|
||||
<property name="subtitle" translatable="yes">Screen sharing indicator in panel</property>
|
||||
<property name="activatable-widget">screen_sharing_indicator_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="screen_sharing_indicator_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="screen_recording_indicator_row">
|
||||
<property name="title" translatable="yes">Screen Recording Indicator</property>
|
||||
<property name="subtitle" translatable="yes">Screen recording indicator in panel</property>
|
||||
<property name="activatable-widget">screen_recording_indicator_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="screen_recording_indicator_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="world_clock_row">
|
||||
<property name="title" translatable="yes">World Clock</property>
|
||||
<property name="subtitle" translatable="yes">World clock in clock menu</property>
|
||||
<property name="activatable-widget">world_clock_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="world_clock_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="weather_row">
|
||||
<property name="title" translatable="yes">Weather</property>
|
||||
<property name="subtitle" translatable="yes">Weather in clock menu</property>
|
||||
<property name="activatable-widget">weather_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="weather_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="calendar_row">
|
||||
<property name="title" translatable="yes">Calendar</property>
|
||||
<property name="subtitle" translatable="yes">Calendar in clock menu</property>
|
||||
<property name="activatable-widget">calendar_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="calendar_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="events_button_row">
|
||||
<property name="title" translatable="yes">Events</property>
|
||||
<property name="subtitle" translatable="yes">Events button in clock menu</property>
|
||||
<property name="activatable-widget">events_button_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="events_button_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="search_row">
|
||||
<property name="title" translatable="yes">Search</property>
|
||||
<property name="subtitle" translatable="yes">Search entry in overview</property>
|
||||
<property name="activatable-widget">search_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="search_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="dash_row">
|
||||
<property name="title" translatable="yes">Dash</property>
|
||||
<property name="subtitle" translatable="yes">Dash holds favorite and opened applications icons</property>
|
||||
<property name="activatable-widget">dash_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="dash_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="dash_separator_row">
|
||||
<property name="title" translatable="yes">Dash Separator</property>
|
||||
<property name="subtitle" translatable="yes">Dash separator line that separates pin apps from unpin apps</property>
|
||||
<property name="activatable-widget">dash_separator_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="dash_separator_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="dash_app_running_row">
|
||||
<property name="title" translatable="yes">Dash App Running Indicator</property>
|
||||
<property name="subtitle" translatable="yes">The dot indicator in dash that shows the app is running</property>
|
||||
<property name="activatable-widget">dash_app_running_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="dash_app_running_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="show_apps_button_row">
|
||||
<property name="title" translatable="yes">Show Applications Button</property>
|
||||
<property name="subtitle" translatable="yes">Button in dash that toggles applications list visibility</property>
|
||||
<property name="activatable-widget">show_apps_button_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="show_apps_button_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="osd_row">
|
||||
<property name="title" translatable="yes">On Screen Display (OSD)</property>
|
||||
<property name="subtitle" translatable="yes">Volume and brightness on screen display when the change happens</property>
|
||||
<property name="activatable-widget">osd_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="osd_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_popup_row">
|
||||
<property name="title" translatable="yes">Workspace Popup</property>
|
||||
<property name="subtitle" translatable="yes">Popup that appears on the screen when you change the workspace</property>
|
||||
<property name="activatable-widget">workspace_popup_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_popup_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspace_row">
|
||||
<property name="title" translatable="yes">Workspace Switcher</property>
|
||||
<property name="subtitle" translatable="yes">Also refers to workspace thumbnails that you see in overview for selecting a workspace</property>
|
||||
<property name="activatable-widget">workspace_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspace_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="workspaces_in_app_grid_row">
|
||||
<property name="title" translatable="yes">Workspaces App Grid</property>
|
||||
<property name="subtitle" translatable="yes">Workspace boxes in app grid</property>
|
||||
<property name="activatable-widget">workspaces_in_app_grid_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="workspaces_in_app_grid_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_preview_close_button_row">
|
||||
<property name="title" translatable="yes">Window Picker Close Button</property>
|
||||
<property name="subtitle" translatable="yes">The close button on window preview in overview</property>
|
||||
<property name="activatable-widget">window_preview_close_button_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_preview_close_button_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_preview_caption_row">
|
||||
<property name="title" translatable="yes">Window Picker Caption</property>
|
||||
<property name="subtitle" translatable="yes">The text under window preview in overview</property>
|
||||
<property name="activatable-widget">window_preview_caption_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_preview_caption_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="background_menu_row">
|
||||
<property name="title" translatable="yes">Background Menu</property>
|
||||
<property name="subtitle" translatable="yes">When you right click on desktop background</property>
|
||||
<property name="activatable-widget">background_menu_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="background_menu_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="ripple_box_row">
|
||||
<property name="title" translatable="yes">Ripple Box</property>
|
||||
<property name="subtitle" translatable="yes">Hot corner animation effects</property>
|
||||
<property name="activatable-widget">ripple_box_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="ripple_box_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<object class="AdwActionRow" id="window_menu_take_screenshot_button_row">
|
||||
<property name="title" translatable="yes">Take Screenshot button in Window Menu</property>
|
||||
<property name="subtitle" translatable="yes">Take screenshot button in title bar right click menu</property>
|
||||
<property name="activatable-widget">window_menu_take_screenshot_button_switch</property>
|
||||
<child>
|
||||
<object class="GtkSwitch" id="window_menu_take_screenshot_button_switch">
|
||||
<property name="valign">center</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
</child>
|
||||
|
||||
</object>
|
||||
|
||||
</interface>
|
||||
|
160
extensions/48/just-perfection/src/extension.js
Executable file
|
@ -0,0 +1,160 @@
|
|||
/**
|
||||
* Extension
|
||||
*
|
||||
* @author Javad Rahmatzadeh <j.rahmatzadeh@gmail.com>
|
||||
* @copyright 2020-2025
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
import Clutter from 'gi://Clutter';
|
||||
import Gio from 'gi://Gio';
|
||||
import GLib from 'gi://GLib';
|
||||
import GObject from 'gi://GObject';
|
||||
import Meta from 'gi://Meta';
|
||||
import St from 'gi://St';
|
||||
|
||||
import * as AltTab from 'resource:///org/gnome/shell/ui/altTab.js';
|
||||
import * as BackgroundMenu from 'resource:///org/gnome/shell/ui/backgroundMenu.js';
|
||||
import * as LookingGlass from 'resource:///org/gnome/shell/ui/lookingGlass.js';
|
||||
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
|
||||
import * as MessageTray from 'resource:///org/gnome/shell/ui/messageTray.js';
|
||||
import * as OSDWindow from 'resource:///org/gnome/shell/ui/osdWindow.js';
|
||||
import * as OverviewControls from 'resource:///org/gnome/shell/ui/overviewControls.js';
|
||||
import * as Panel from 'resource:///org/gnome/shell/ui/panel.js';
|
||||
import * as PanelMenu from 'resource:///org/gnome/shell/ui/panelMenu.js';
|
||||
import * as Search from 'resource:///org/gnome/shell/ui/search.js';
|
||||
import * as SearchController from 'resource:///org/gnome/shell/ui/searchController.js';
|
||||
import * as SwitcherPopup from 'resource:///org/gnome/shell/ui/switcherPopup.js';
|
||||
import * as WindowMenu from 'resource:///org/gnome/shell/ui/windowMenu.js';
|
||||
import * as WindowPreview from 'resource:///org/gnome/shell/ui/windowPreview.js';
|
||||
import * as Workspace from 'resource:///org/gnome/shell/ui/workspace.js';
|
||||
import * as WorkspacesView from 'resource:///org/gnome/shell/ui/workspacesView.js';
|
||||
import * as WorkspaceSwitcherPopup from 'resource:///org/gnome/shell/ui/workspaceSwitcherPopup.js';
|
||||
import * as WorkspaceThumbnail from 'resource:///org/gnome/shell/ui/workspaceThumbnail.js';
|
||||
|
||||
import * as Config from 'resource:///org/gnome/shell/misc/config.js';
|
||||
import * as Util from 'resource:///org/gnome/shell/misc/util.js';
|
||||
|
||||
import {Extension} from 'resource:///org/gnome/shell/extensions/extension.js';
|
||||
|
||||
import {API} from './lib/API.js';
|
||||
import {Manager} from './lib/Manager.js';
|
||||
import {SupportNotifier} from './lib/SupportNotifier.js';
|
||||
|
||||
/**
|
||||
* Extension entry point
|
||||
*/
|
||||
export default class JustPerfection extends Extension
|
||||
{
|
||||
/**
|
||||
* Instance of API
|
||||
*
|
||||
* @type {API|null}
|
||||
*/
|
||||
#api = null;
|
||||
|
||||
/**
|
||||
* Instance of Manager
|
||||
*
|
||||
* @type {Manager|null}
|
||||
*/
|
||||
#manager = null;
|
||||
|
||||
/**
|
||||
* Instance of SupportNotifier
|
||||
*
|
||||
* @type {SupportNotifier|null}
|
||||
*/
|
||||
#supportNotifier = null;
|
||||
|
||||
/**
|
||||
* Enable extension
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
enable()
|
||||
{
|
||||
const shellVersion = parseFloat(Config.PACKAGE_VERSION);
|
||||
const extensionVersion = parseInt(this.metadata.version);
|
||||
|
||||
let InterfaceSettings = new Gio.Settings({schema_id: 'org.gnome.desktop.interface'});
|
||||
|
||||
this.#api = new API(
|
||||
{
|
||||
Main,
|
||||
BackgroundMenu,
|
||||
OverviewControls,
|
||||
WorkspaceSwitcherPopup,
|
||||
SwitcherPopup,
|
||||
InterfaceSettings,
|
||||
Search,
|
||||
SearchController,
|
||||
WorkspaceThumbnail,
|
||||
WorkspacesView,
|
||||
Panel,
|
||||
PanelMenu,
|
||||
WindowPreview,
|
||||
Workspace,
|
||||
LookingGlass,
|
||||
MessageTray,
|
||||
OSDWindow,
|
||||
WindowMenu,
|
||||
AltTab,
|
||||
St,
|
||||
GLib,
|
||||
Clutter,
|
||||
Util,
|
||||
Meta,
|
||||
GObject,
|
||||
},
|
||||
shellVersion
|
||||
);
|
||||
|
||||
this.#api.open();
|
||||
|
||||
let settings = this.getSettings();
|
||||
|
||||
this.#manager = new Manager(
|
||||
{
|
||||
API: this.#api,
|
||||
Settings: settings,
|
||||
},
|
||||
shellVersion
|
||||
);
|
||||
|
||||
this.#manager.registerSettingsSignals();
|
||||
this.#manager.applyAll();
|
||||
|
||||
this.#supportNotifier = new SupportNotifier(
|
||||
{
|
||||
MessageTray,
|
||||
Main,
|
||||
Gio,
|
||||
Settings: settings,
|
||||
},
|
||||
shellVersion,
|
||||
extensionVersion,
|
||||
this
|
||||
);
|
||||
|
||||
this.#supportNotifier.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Disable extension
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
disable()
|
||||
{
|
||||
this.#manager?.revertAll();
|
||||
this.#manager = null;
|
||||
|
||||
this.#api?.close();
|
||||
this.#api = null;
|
||||
|
||||
this.#supportNotifier?.stop();
|
||||
this.#supportNotifier = null;
|
||||
}
|
||||
}
|
||||
|
3459
extensions/48/just-perfection/src/lib/API.js
Executable file
1591
extensions/48/just-perfection/src/lib/Manager.js
Executable file
513
extensions/48/just-perfection/src/lib/Prefs/Prefs.js
Executable file
|
@ -0,0 +1,513 @@
|
|||
/**
|
||||
* Prefs Library
|
||||
*
|
||||
* @author Javad Rahmatzadeh <j.rahmatzadeh@gmail.com>
|
||||
* @copyright 2020-2025
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
/**
|
||||
* prefs widget for showing prefs window
|
||||
*/
|
||||
export class Prefs
|
||||
{
|
||||
/**
|
||||
* Current shell version
|
||||
*
|
||||
* @type {number|null}
|
||||
*/
|
||||
#shellVersion = null;
|
||||
|
||||
/**
|
||||
* Instance of PrefsKeys
|
||||
*
|
||||
* @type {PrefsKeys|null}
|
||||
*/
|
||||
#prefsKeys = null;
|
||||
|
||||
/**
|
||||
* Instance of Gtk.Builder
|
||||
*
|
||||
* @type {Gtk.Builder|null}
|
||||
*/
|
||||
#builder = null;
|
||||
|
||||
/**
|
||||
* Instance of Gio.Settings
|
||||
*
|
||||
* @type {Settings|null}
|
||||
*/
|
||||
#settings = null;
|
||||
|
||||
/**
|
||||
* Instance of Gtk.CssProvider
|
||||
*
|
||||
* @type {Gtk.CssProvider|null}
|
||||
*/
|
||||
#cssProvider = null;
|
||||
|
||||
/**
|
||||
* Instance of Resource
|
||||
*
|
||||
* @type {Gio.Resource|null}
|
||||
*/
|
||||
#resource = null;
|
||||
|
||||
/**
|
||||
* Instance of Gtk
|
||||
*
|
||||
* @type {Gtk|null}
|
||||
*/
|
||||
#gtk = null;
|
||||
|
||||
/**
|
||||
* Instance of Gdk
|
||||
*
|
||||
* @type {Gdk|null}
|
||||
*/
|
||||
#gdk = null;
|
||||
|
||||
/**
|
||||
* Instance of Gio
|
||||
*
|
||||
* @type {Gio|null}
|
||||
*/
|
||||
#gio = null;
|
||||
|
||||
/**
|
||||
* All available profile names
|
||||
*
|
||||
* @type {Array}
|
||||
*/
|
||||
#profiles = [
|
||||
'default',
|
||||
'minimal',
|
||||
'superminimal',
|
||||
];
|
||||
|
||||
/**
|
||||
* All available crypto addresses for donation
|
||||
*
|
||||
* The order should be the same as what we have in the combobox .ui file
|
||||
*
|
||||
* @type {Array}
|
||||
*/
|
||||
#cryptoAddresses = [
|
||||
['Dogecoin', 'DULPjoiDuhZCmv5LDeJuqYPC8Uy7NK7DnW'],
|
||||
['Bitcoin', 'bc1qn6p0k8sapmxgedn8qjhd5gm2yzy46t5s296lnd'],
|
||||
['Bitcoin Cash', 'qzhuj2kdw4zjrg8r2j7knx5uzqdcpv5lwv5uxq04e0'],
|
||||
['Ethereum', '0xE4A6C46E1095C49688645c132672cB04d1402026'],
|
||||
['XRP', 'rMvJGGw3eWat3vm7TRjUb5XAtazoSm399R'],
|
||||
['USDT', '0xE4A6C46E1095C49688645c132672cB04d1402026'],
|
||||
['USDC', '0xE4A6C46E1095C49688645c132672cB04d1402026'],
|
||||
['Solana', '3M9d8arcHiuqAwso9zTX4pvZRoaeVVomkovWmGCYgDG2'],
|
||||
['Cardano', 'addr1qxgrpcsdpyuh7dl4m2mk2vpuss68zjze9y83wpsuxjyafg5sxr3q6zfe0umltk4hv5crepp5w9y9j2g0zurpcdyf6j3qeu2hqs'],
|
||||
['BNB', '0xE4A6C46E1095C49688645c132672cB04d1402026'],
|
||||
['LTC', 'LVz4se3wepdgCNGkE8V53VB47ViAjZb7F1'],
|
||||
['XLM', 'GDZOVYXD6PGG77V5HGHN767AGPIYZ3ZHNUC53BSXMIDRSTKVFVUJJFHZ'],
|
||||
['Monero', '49uPJDZCoFJMoeLAZKDpuTScHjdfgfzksMNurZdt2J4x8meKUZZwUiq3tBs9xYVq9G8PzxjwH6zkXeEZKz3JgdfiGo3aZN5'],
|
||||
['LBRY', 'bPMi1WVgtMDjdX3V4ofAtMt5qMj4xYM4A1'],
|
||||
['Shiba Inu', '0xE4A6C46E1095C49688645c132672cB04d1402026'],
|
||||
];
|
||||
|
||||
/**
|
||||
* class constructor
|
||||
*
|
||||
* @param {Object} dependencies
|
||||
* 'Builder' instance of Gtk::Builder
|
||||
* 'Settings' instance of Gio::Settings
|
||||
* 'CssProvider': instance of Gtk::CssProvider
|
||||
* 'Gtk' reference to Gtk
|
||||
* 'Gdk' reference to Gdk
|
||||
* 'Gio' reference to Gio
|
||||
* @param {PrefsKeys.PrefsKeys} prefsKeys instance of PrefsKeys
|
||||
* @param {number} shellVersion float in major.minor format
|
||||
*/
|
||||
constructor(dependencies, prefsKeys, shellVersion)
|
||||
{
|
||||
this.#settings = dependencies['Settings'] || null;
|
||||
this.#builder = dependencies['Builder'] || null;
|
||||
this.#cssProvider = dependencies['CssProvider'] || null;
|
||||
this.#gtk = dependencies['Gtk'] || null;
|
||||
this.#gdk = dependencies['Gdk'] || null;
|
||||
this.#gio = dependencies['Gio'] || null;
|
||||
|
||||
this.#prefsKeys = prefsKeys;
|
||||
this.#shellVersion = shellVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* fill prefs window
|
||||
*
|
||||
* @param {Adw.PreferencesWindow} window prefs dialog
|
||||
* @param {string} ResourcesFolderPath folder path to resources folder
|
||||
* @param {string} gettextDomain gettext domain
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
fillPrefsWindow(window, ResourcesFolderPath, gettextDomain)
|
||||
{
|
||||
// changing the order here can change the elements order in ui
|
||||
let uiFilenames = [
|
||||
'profile',
|
||||
'visibility',
|
||||
'icons',
|
||||
'behavior',
|
||||
'customize',
|
||||
];
|
||||
|
||||
this.#loadResource(ResourcesFolderPath);
|
||||
|
||||
this.#cssProvider.load_from_resource(
|
||||
`/org/gnome/Shell/Extensions/justperfection/css/prefs.css`
|
||||
);
|
||||
this.#gtk.StyleContext.add_provider_for_display(
|
||||
this.#gdk.Display.get_default(),
|
||||
this.#cssProvider,
|
||||
this.#gtk.STYLE_PROVIDER_PRIORITY_APPLICATION
|
||||
);
|
||||
|
||||
this.#builder.set_translation_domain(gettextDomain);
|
||||
for (let uiFilename of uiFilenames) {
|
||||
this.#builder.add_from_resource(
|
||||
`/org/gnome/Shell/Extensions/justperfection/ui/${uiFilename}.ui`
|
||||
);
|
||||
}
|
||||
|
||||
for (let uiFilename of uiFilenames) {
|
||||
let page = this.#builder.get_object(uiFilename);
|
||||
window.add(page);
|
||||
}
|
||||
|
||||
this.#setValues();
|
||||
this.#guessProfile();
|
||||
this.#onlyShowSupportedRows();
|
||||
this.#loadCryptoSupportAddress();
|
||||
this.#registerAllSignals(window);
|
||||
|
||||
this.#setWindowSize(window);
|
||||
|
||||
window.search_enabled = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* load resource
|
||||
*
|
||||
* @param {string} folder path to the resources folder
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#loadResource(path)
|
||||
{
|
||||
this.#resource = this.#gio.Resource.load(`${path}/resources.gresource`);
|
||||
this.#gio.resources_register(this.#resource);
|
||||
}
|
||||
|
||||
/**
|
||||
* set window size
|
||||
*
|
||||
* @param {Adw.PreferencesWindow} window prefs window
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#setWindowSize(window)
|
||||
{
|
||||
let [pmWidth, pmHeight, pmScale] = this.#getPrimaryMonitorInfo();
|
||||
let sizeTolerance = 50;
|
||||
let width = 640;
|
||||
let height = 810;
|
||||
|
||||
if (
|
||||
(pmWidth / pmScale) - sizeTolerance >= width &&
|
||||
(pmHeight / pmScale) - sizeTolerance >= height
|
||||
) {
|
||||
window.set_default_size(width, height);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get primary monitor info
|
||||
*
|
||||
* @returns {Array} [width, height, scale]
|
||||
*/
|
||||
#getPrimaryMonitorInfo()
|
||||
{
|
||||
let display = this.#gdk.Display.get_default();
|
||||
|
||||
let pm = display.get_monitors().get_item(0);
|
||||
|
||||
if (!pm) {
|
||||
return [700, 500, 1];
|
||||
}
|
||||
|
||||
let geo = pm.get_geometry();
|
||||
let scale = pm.get_scale_factor();
|
||||
|
||||
return [geo.width, geo.height, scale];
|
||||
}
|
||||
|
||||
/**
|
||||
* register all signals
|
||||
*
|
||||
* @param {Adw.PreferencesWindow} window prefs dialog
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#registerAllSignals(window)
|
||||
{
|
||||
this.#registerKeySignals();
|
||||
this.#registerProfileSignals();
|
||||
this.#registerCryptoSupportSignals(window);
|
||||
this.#registerCloseSignal(window);
|
||||
}
|
||||
|
||||
/**
|
||||
* register close signal
|
||||
*
|
||||
* @param {Adw.PreferencesWindow} window prefs dialog
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#registerCloseSignal(window)
|
||||
{
|
||||
window.connect('close-request', () => {
|
||||
if (this.#resource) {
|
||||
this.#gio.resources_unregister(this.#resource);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* register signals of all prefs keys
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#registerKeySignals()
|
||||
{
|
||||
// all available keys
|
||||
for (let [, key] of Object.entries(this.#prefsKeys.keys)) {
|
||||
|
||||
switch (key.widgetType) {
|
||||
|
||||
case 'GtkSwitch':
|
||||
this.#builder.get_object(key.widgetId).connect('state-set', (w) => {
|
||||
this.#settings.set_boolean(key.name, w.get_active());
|
||||
this.#guessProfile();
|
||||
});
|
||||
break;
|
||||
|
||||
case 'AdwActionRow':
|
||||
this.#builder.get_object(key.widgetId).connect('notify::selected-item', (w) => {
|
||||
let index = w.get_selected();
|
||||
let value = (index in key.maps) ? key.maps[index] : index;
|
||||
this.#settings.set_int(key.name, value);
|
||||
this.#guessProfile();
|
||||
});
|
||||
break;
|
||||
|
||||
case 'AdwSpinRow':
|
||||
this.#builder.get_object(key.widgetId).connect('notify::value', (w) => {
|
||||
let value = w.get_value();
|
||||
this.#settings.set_int(key.name, value);
|
||||
this.#guessProfile();
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* register profile signals
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#registerProfileSignals()
|
||||
{
|
||||
for (let profile of this.#profiles) {
|
||||
let widget = this.#builder.get_object(`profile_${profile}`);
|
||||
if (!widget) {
|
||||
break;
|
||||
}
|
||||
widget.connect('clicked', (w) => {
|
||||
this.#setValues(profile);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* register crypto support signals
|
||||
*
|
||||
* @param {Adw.PreferencesWindow} window prefs dialog
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#registerCryptoSupportSignals(window)
|
||||
{
|
||||
let comboRow = this.#builder.get_object(`support_crypto_row`);
|
||||
let copyButton = this.#builder.get_object(`crypto_address_copy_button`);
|
||||
let addressEntry = this.#builder.get_object(`crypto_address_row`);
|
||||
let toast = this.#builder.get_object(`toast_added_to_clipboard`);
|
||||
|
||||
comboRow.connect('notify::selected-item', (w) => {
|
||||
let selectedIndex = w.get_selected();
|
||||
this.#loadCryptoSupportAddress(selectedIndex);
|
||||
});
|
||||
|
||||
copyButton.connect('clicked', () => {
|
||||
let display = this.#gdk.Display.get_default();
|
||||
let clipboard = display.get_clipboard();
|
||||
clipboard.set(addressEntry.text);
|
||||
window.add_toast(toast);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* load crypto address into the ui
|
||||
*
|
||||
* @param {number} index coming from the crypto name combobox
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#loadCryptoSupportAddress(index = 0)
|
||||
{
|
||||
let addressEntry = this.#builder.get_object(`crypto_address_row`);
|
||||
let qrPicture = this.#builder.get_object(`qr_picture`);
|
||||
|
||||
let name = this.#cryptoAddresses[index][0];
|
||||
let filename = name.replace(' ', '-').toLowerCase();
|
||||
let address = this.#cryptoAddresses[index][1]
|
||||
|
||||
qrPicture.set_resource(
|
||||
`/org/gnome/Shell/Extensions/justperfection/imgs/qr-${filename}.svg`
|
||||
);
|
||||
addressEntry.title = `${name} Address`;
|
||||
addressEntry.text = address;
|
||||
}
|
||||
|
||||
/**
|
||||
* can check all current values and guess the profile based on the values
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#guessProfile()
|
||||
{
|
||||
let totalCount = 0;
|
||||
let matchCount = {};
|
||||
|
||||
for (let profile of this.#profiles) {
|
||||
matchCount[profile] = 0;
|
||||
}
|
||||
|
||||
for (let [, key] of Object.entries(this.#prefsKeys.keys)) {
|
||||
|
||||
if (!key.supported) {
|
||||
continue;
|
||||
}
|
||||
|
||||
let value;
|
||||
|
||||
switch (key.widgetType) {
|
||||
case 'GtkSwitch':
|
||||
value = this.#builder.get_object(key.widgetId).get_active();
|
||||
break;
|
||||
case 'AdwActionRow':
|
||||
value = this.#builder.get_object(key.widgetId).get_selected();
|
||||
break;
|
||||
case 'AdwSpinRow':
|
||||
value = this.#builder.get_object(key.widgetId).get_value();
|
||||
break;
|
||||
default:
|
||||
value = '';
|
||||
continue;
|
||||
}
|
||||
|
||||
for (let profile of this.#profiles) {
|
||||
if (key.profiles[profile] === value) {
|
||||
matchCount[profile]++;
|
||||
}
|
||||
}
|
||||
|
||||
totalCount++;
|
||||
}
|
||||
|
||||
let currentProfile = 'custom';
|
||||
for (let profile of this.#profiles) {
|
||||
if (matchCount[profile] === totalCount) {
|
||||
currentProfile = profile;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
let widget = this.#builder.get_object(`profile_${currentProfile}`);
|
||||
if (widget) {
|
||||
widget.set_active(true);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* set values for all elements
|
||||
*
|
||||
* @param {string} profile profile name or null for get it from gsettings
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#setValues(profile)
|
||||
{
|
||||
for (let [, key] of Object.entries(this.#prefsKeys.keys)) {
|
||||
|
||||
let widget = this.#builder.get_object(key.widgetId);
|
||||
|
||||
let value;
|
||||
|
||||
switch (key.widgetType) {
|
||||
|
||||
case 'GtkSwitch':
|
||||
value
|
||||
= (profile)
|
||||
? key.profiles[profile]
|
||||
: this.#settings.get_boolean(key.name);
|
||||
|
||||
widget.set_active(value);
|
||||
break;
|
||||
|
||||
case 'AdwActionRow':
|
||||
let index
|
||||
= (profile)
|
||||
? key.profiles[profile]
|
||||
: this.#settings.get_int(key.name);
|
||||
|
||||
for (let k in key.maps) {
|
||||
if (key.maps[k] === index) {
|
||||
index = k;
|
||||
break;
|
||||
}
|
||||
}
|
||||
widget.set_selected(index);
|
||||
break;
|
||||
|
||||
case 'AdwSpinRow':
|
||||
value
|
||||
= (profile)
|
||||
? key.profiles[profile]
|
||||
: this.#settings.get_int(key.name);
|
||||
|
||||
widget.set_value(value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* apply all supported keys to the elements
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#onlyShowSupportedRows()
|
||||
{
|
||||
for (let [, key] of Object.entries(this.#prefsKeys.keys)) {
|
||||
let row = this.#builder.get_object(`${key.id}_row`);
|
||||
let visible = key.supported;
|
||||
row.visible = visible;
|
||||
}
|
||||
}
|
||||
};
|
871
extensions/48/just-perfection/src/lib/Prefs/PrefsKeys.js
Executable file
|
@ -0,0 +1,871 @@
|
|||
/**
|
||||
* PrefsKeys Library
|
||||
*
|
||||
* @author Javad Rahmatzadeh <j.rahmatzadeh@gmail.com>
|
||||
* @copyright 2020-2025
|
||||
* @license GPL-3.0-only
|
||||
*/
|
||||
|
||||
/**
|
||||
* prefs keys
|
||||
*/
|
||||
export class PrefsKeys
|
||||
{
|
||||
/**
|
||||
* Current shell version
|
||||
*
|
||||
* @type {number|null}
|
||||
*/
|
||||
#shellVersion = null;
|
||||
|
||||
/**
|
||||
* class constructor
|
||||
*
|
||||
* @param {number} shellVersion float in major.minor format
|
||||
*/
|
||||
constructor(shellVersion)
|
||||
{
|
||||
this.#shellVersion = shellVersion;
|
||||
|
||||
/**
|
||||
* holds all keys generated by this.#setKey()
|
||||
*
|
||||
* @member {Object}
|
||||
*/
|
||||
this.keys = {};
|
||||
|
||||
this.#setDefaults();
|
||||
}
|
||||
|
||||
/**
|
||||
* set all default keys
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#setDefaults()
|
||||
{
|
||||
this.#setKey(
|
||||
'panel',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-in-overview',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'activities-button',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'clock-menu',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'keyboard-layout',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'accessibility-menu',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'quick-settings',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'quick-settings-dark-mode',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'quick-settings-night-light',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'quick-settings-airplane-mode',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'screen-sharing-indicator',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'screen-recording-indicator',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'search',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'dash',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'dash-separator',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'dash-app-running',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'osd',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-popup',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'background-menu',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'show-apps-button',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspaces-in-app-grid',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-preview-caption',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-preview-close-button',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'ripple-box',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'world-clock',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'weather',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'calendar',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'events-button',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-menu-take-screenshot-button',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-notification-icon',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'power-icon',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-picker-icon',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'type-to-search',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-demands-attention-focus',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'window-maximized-on-create',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-switcher-should-show',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'startup-status',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 1,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-wrap-around',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-peek',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-thumbnail-to-main-view',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'overlay-key',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'double-super-to-appgrid',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'switcher-popup-delay',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: true,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'accent-color-icon',
|
||||
'GtkSwitch',
|
||||
(this.#shellVersion >= 47),
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'controls-manager-spacing-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 22,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-background-corner-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 15,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'top-panel-position',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'clock-menu-position',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'clock-menu-position-offset',
|
||||
'AdwSpinRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'workspace-switcher-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'animation',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 1,
|
||||
minimal: 1,
|
||||
superminimal: 1,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'dash-icon-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 1,
|
||||
superminimal: 0,
|
||||
},
|
||||
{
|
||||
'1': 16,
|
||||
'2': 22,
|
||||
'3': 24,
|
||||
'4': 32,
|
||||
'5': 40,
|
||||
'6': 48,
|
||||
'7': 56,
|
||||
'8': 64,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'notification-banner-position',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 1,
|
||||
minimal: 1,
|
||||
superminimal: 1,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-button-padding-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-indicator-padding-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'panel-icon-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'osd-position',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'looking-glass-width',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'looking-glass-height',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'alt-tab-window-preview-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
},
|
||||
{
|
||||
'0': 0,
|
||||
'1': 32,
|
||||
'2': 64,
|
||||
'3': 128,
|
||||
'4': 256,
|
||||
'5': 512,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'alt-tab-small-icon-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
},
|
||||
{
|
||||
'0': 0,
|
||||
'1': 32,
|
||||
'2': 64,
|
||||
'3': 128,
|
||||
'4': 256,
|
||||
'5': 512,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'alt-tab-icon-size',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
},
|
||||
{
|
||||
'0': 0,
|
||||
'1': 32,
|
||||
'2': 64,
|
||||
'3': 128,
|
||||
'4': 256,
|
||||
'5': 512,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'max-displayed-search-results',
|
||||
'AdwActionRow',
|
||||
true,
|
||||
{
|
||||
default: 0,
|
||||
minimal: 0,
|
||||
superminimal: 0,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'invert-calendar-column-items',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: false,
|
||||
superminimal: false,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'theme',
|
||||
'GtkSwitch',
|
||||
true,
|
||||
{
|
||||
default: false,
|
||||
minimal: true,
|
||||
superminimal: true,
|
||||
}
|
||||
);
|
||||
|
||||
this.#setKey(
|
||||
'support-notifier-type',
|
||||
'AdwActionRow'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* set key
|
||||
*
|
||||
* @param {string} name should be the same as gsettings key name
|
||||
* @param {string} widgetType gtk widget type like 'GtkSwitch'.
|
||||
* @param {boolean} supported whether supported in the current shell
|
||||
* @param {Object} profiles values for each profile. for example:
|
||||
* {default: true, minimal: false}
|
||||
* @param {Object} [maps] for example for combobox you can specify
|
||||
* if the index is 1 use 32 as value:
|
||||
* {1 : 32}
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
#setKey(name, widgetType, supported = true, profiles = {}, maps = {})
|
||||
{
|
||||
let id = name.replace(/-/g, '_');
|
||||
let widgetName = widgetType.toLowerCase().replace('gtk', '');
|
||||
|
||||
let widgetId
|
||||
= (widgetType === 'AdwActionRow' || widgetType === 'AdwSpinRow')
|
||||
? `${id}_row`
|
||||
: `${id}_${widgetName}`;
|
||||
|
||||
this.keys[id] = {
|
||||
widgetType,
|
||||
name,
|
||||
id,
|
||||
widgetId,
|
||||
supported,
|
||||
profiles,
|
||||
maps,
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* delete key
|
||||
*
|
||||
* @param {string} id key id
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
deleteKey(id)
|
||||
{
|
||||
delete(this.keys[id]);
|
||||
}
|
||||
};
|
||||
|