Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf5230ef6c | ||
|
|
1a0601dda8 | ||
|
|
9117b2266c | ||
|
|
af7903dba7 | ||
|
|
f99b42e732 | ||
|
|
7074217b7c | ||
|
|
8c07f6bee9 | ||
|
|
ad52860a5e | ||
|
|
76a55e9b89 | ||
|
|
031a121bc5 | ||
|
|
23b5594c24 | ||
|
|
f28f08645a | ||
|
|
229a624553 | ||
|
|
a7204736a8 | ||
|
|
b39931e759 | ||
|
|
db3e910b76 | ||
|
|
0ff77736da | ||
|
|
2b36863442 | ||
|
|
cca1be6b70 | ||
|
|
aea1f5187a | ||
|
|
deb7ee8ef6 | ||
|
|
a35336d3c2 | ||
|
|
7f44a3647c | ||
|
|
e98e5d0d62 | ||
|
|
71464c91c2 | ||
|
|
3c32cacb14 | ||
|
|
f82915d153 | ||
|
|
59aa0f66f3 | ||
|
|
ef149aab93 | ||
|
|
59c351de63 | ||
|
|
76e73b9154 | ||
|
|
69901c72a3 | ||
|
|
155d517fe8 | ||
|
|
ceee4d64dc | ||
|
|
ab8090e0e2 | ||
|
|
68e3798dd8 | ||
|
|
2191d533b5 | ||
|
|
18f0366307 | ||
|
|
5b1f7704a6 | ||
|
|
488eeffeaf | ||
|
|
79c76a87e2 | ||
|
|
1958ce7794 | ||
|
|
42652088a3 | ||
|
|
2b9ea7519b | ||
|
|
1634af39dc |
16
.gitignore
vendored
16
.gitignore
vendored
@@ -1,14 +1,22 @@
|
||||
ABOUT-NLS
|
||||
Makefile
|
||||
Makefile.in
|
||||
Makefile.in.in
|
||||
aclocal.m4
|
||||
autom4te.cache/
|
||||
config/
|
||||
configure
|
||||
config.log
|
||||
config.status
|
||||
aclocal.m4
|
||||
autom4te.cache/
|
||||
data/*.json
|
||||
po/gnome-shell-extensions.pot
|
||||
m4/
|
||||
po/*.header
|
||||
po/*.sed
|
||||
po/*.sin
|
||||
po/Makevars.template
|
||||
po/POTFILES
|
||||
po/Rules-quot
|
||||
po/gnome-shell-extensions.pot
|
||||
po/stamp-it
|
||||
staging/
|
||||
zip-files/
|
||||
@@ -17,7 +25,5 @@ zip-files/
|
||||
*.gmo
|
||||
metadata.json
|
||||
*.desktop
|
||||
*.desktop.in
|
||||
*.gschema.xml
|
||||
*.gschema.valid
|
||||
*.session
|
||||
|
||||
71
NEWS
71
NEWS
@@ -1,3 +1,74 @@
|
||||
3.22.2
|
||||
======
|
||||
* updated translations (zh_CN)
|
||||
|
||||
3.22.1
|
||||
======
|
||||
* window-list: Update icon on app changes
|
||||
|
||||
3.22.0
|
||||
======
|
||||
* updated translations (en_GB)
|
||||
|
||||
3.21.92
|
||||
=======
|
||||
* update style
|
||||
* updated translations (pl, vi)
|
||||
|
||||
3.21.91
|
||||
=======
|
||||
* updated translations (pl)
|
||||
|
||||
3.21.90
|
||||
=======
|
||||
* updated translations (es, gu)
|
||||
|
||||
3.21.4
|
||||
======
|
||||
* apps-menu: Fix entries from non-standard AppDir directories
|
||||
|
||||
3.21.3
|
||||
======
|
||||
* adjust to gnome-shell changes
|
||||
* updated translations (oc)
|
||||
|
||||
3.21.2
|
||||
======
|
||||
* version bump, nothing to see here
|
||||
|
||||
3.20.1
|
||||
======
|
||||
* update classic style
|
||||
* updated translations (gd, oc)
|
||||
|
||||
3.20.0
|
||||
======
|
||||
* version bump, nothing to see here
|
||||
|
||||
3.19.92
|
||||
=======
|
||||
* version bump, nothing to see here
|
||||
|
||||
3.19.91
|
||||
=======
|
||||
* updated translations (oc)
|
||||
|
||||
3.19.90
|
||||
=======
|
||||
* version bump, nothing to see here
|
||||
|
||||
3.19.4
|
||||
======
|
||||
* screenshot-window-sizer: HiDPI support
|
||||
* Fix gnome-shell component in classic session
|
||||
* updated translations (lt)
|
||||
|
||||
3.19.3
|
||||
======
|
||||
* native-window-placement: Don't let border overlap title
|
||||
* apps-menu: Fix handling of .desktop files in subdirectories
|
||||
* updated translations (is)
|
||||
|
||||
3.19.2
|
||||
======
|
||||
* updated translations (gd)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([gnome-shell-extensions],[3.19.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
AC_INIT([gnome-shell-extensions],[3.22.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([config])
|
||||
@@ -12,7 +12,9 @@ GETTEXT_PACKAGE=gnome-shell-extensions
|
||||
AC_SUBST(GETTEXT_PACKAGE)
|
||||
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
|
||||
[The prefix for our gettext translation domains.])
|
||||
IT_PROG_INTLTOOL(0.26)
|
||||
|
||||
AM_GNU_GETTEXT_VERSION([0.19.6])
|
||||
AM_GNU_GETTEXT([external])
|
||||
|
||||
PKG_PROG_PKG_CONFIG([0.22])
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
include $(top_srcdir)/include.mk
|
||||
|
||||
sessiondir = $(datadir)/gnome-session/sessions
|
||||
session_in_in_files = gnome-classic.session.desktop.in.in
|
||||
session_in_files = $(session_in_in_files:.session.desktop.in.in=.session.desktop.in)
|
||||
session_in_files = gnome-classic.session.desktop.in
|
||||
session_DATA = $(session_in_files:.session.desktop.in=.session)
|
||||
|
||||
xsessiondir = $(datadir)/xsessions
|
||||
@@ -39,17 +38,15 @@ theme_sources = \
|
||||
$(SASS) --sourcemap=none --update -f -q $<; \
|
||||
fi
|
||||
|
||||
gsettings_in_files = org.gnome.shell.extensions.classic-overrides.gschema.xml.in
|
||||
gsettings_SCHEMAS = $(gsettings_in_files:.xml.in=.xml)
|
||||
gsettings_SCHEMAS = org.gnome.shell.extensions.classic-overrides.gschema.xml
|
||||
|
||||
@INTLTOOL_XML_NOMERGE_RULE@
|
||||
@GSETTINGS_RULES@
|
||||
|
||||
%.desktop.in:%.desktop.in.in
|
||||
$(AM_V_GEN) sed \
|
||||
-e "s|\@bindir\@|$(bindir)|" \
|
||||
-e "s|\@VERSION\@|$(VERSION)|" \
|
||||
$< > $@
|
||||
%.desktop:%.desktop.in
|
||||
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
|
||||
|
||||
%.session: %.session.desktop.in
|
||||
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
|
||||
|
||||
comma:=,
|
||||
empty:=
|
||||
@@ -61,15 +58,11 @@ extension_list:=$(subst $(space),$(comma),$(extensions))
|
||||
-e "s|\@CLASSIC_EXTENSIONS\@|$(extension_list)|g" \
|
||||
$< > $@
|
||||
|
||||
%.session: %.session.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
|
||||
|
||||
@INTLTOOL_DESKTOP_RULE@
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(session_in_in_files) \
|
||||
$(session_in_files) \
|
||||
$(xsession_in_files) \
|
||||
$(mode_in_files) \
|
||||
$(gsettings_in_files) \
|
||||
$(gsettings_SCHEMAS) \
|
||||
$(theme_DATA) \
|
||||
$(NULL)
|
||||
|
||||
@@ -77,5 +70,4 @@ CLEANFILES = \
|
||||
$(session_DATA) \
|
||||
$(xsession_DATA) \
|
||||
$(mode_DATA) \
|
||||
$(gsettings_SCHEMAS) \
|
||||
$(NULL)
|
||||
|
||||
@@ -200,7 +200,7 @@ StScrollBar {
|
||||
border-radius: 9px;
|
||||
color: #eeeeec;
|
||||
background-color: rgba(23, 25, 26, 0.95);
|
||||
border: 3px solid rgba(238, 238, 236, 0.5); }
|
||||
border: 1px solid rgba(238, 238, 236, 0.2); }
|
||||
.modal-dialog .modal-dialog-content-box {
|
||||
padding: 24px; }
|
||||
.modal-dialog .run-dialog-entry {
|
||||
@@ -225,7 +225,7 @@ StScrollBar {
|
||||
/* End Session Dialog */
|
||||
.end-session-dialog {
|
||||
spacing: 42px;
|
||||
border: 3px solid rgba(238, 238, 236, 0.2); }
|
||||
border: 1px solid rgba(238, 238, 236, 0.2); }
|
||||
|
||||
.end-session-dialog-list {
|
||||
padding-top: 20px; }
|
||||
@@ -400,6 +400,77 @@ StScrollBar {
|
||||
width: 48px;
|
||||
height: 48px; }
|
||||
|
||||
/* Audio selection dialog */
|
||||
.audio-device-selection-dialog {
|
||||
spacing: 30px; }
|
||||
|
||||
.audio-selection-content {
|
||||
spacing: 20px;
|
||||
padding: 24px; }
|
||||
|
||||
.audio-selection-title {
|
||||
font-weight: bold;
|
||||
text-align: center; }
|
||||
|
||||
.audio-selection-box {
|
||||
spacing: 20px; }
|
||||
|
||||
.audio-selection-device {
|
||||
border: 1px solid rgba(238, 238, 236, 0.2);
|
||||
border-radius: 12px; }
|
||||
.audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus {
|
||||
background-color: #4a90d9; }
|
||||
|
||||
.audio-selection-device-box {
|
||||
padding: 20px;
|
||||
spacing: 20px; }
|
||||
|
||||
.audio-selection-device-icon {
|
||||
icon-size: 64px; }
|
||||
|
||||
/* Access Dialog */
|
||||
.access-dialog {
|
||||
spacing: 30px; }
|
||||
|
||||
.access-dialog-main-layout {
|
||||
padding: 12px 20px 0;
|
||||
spacing: 12px; }
|
||||
|
||||
.access-dialog-content {
|
||||
max-width: 28em;
|
||||
spacing: 20px; }
|
||||
|
||||
.access-dialog-icon {
|
||||
min-width: 48px;
|
||||
icon-size: 48px; }
|
||||
|
||||
.access-dialog-title {
|
||||
font-weight: bold; }
|
||||
|
||||
.access-dialog-subtitle {
|
||||
color: black;
|
||||
font-weight: bold; }
|
||||
|
||||
/* Geolocation Dialog */
|
||||
.geolocation-dialog {
|
||||
spacing: 30px; }
|
||||
|
||||
.geolocation-dialog-main-layout {
|
||||
spacing: 12px; }
|
||||
|
||||
.geolocation-dialog-content {
|
||||
spacing: 20px; }
|
||||
|
||||
.geolocation-dialog-icon {
|
||||
icon-size: 48px; }
|
||||
|
||||
.geolocation-dialog-title {
|
||||
font-weight: bold; }
|
||||
|
||||
.geolocation-dialog-reason {
|
||||
color: black;
|
||||
font-weight: bold; }
|
||||
|
||||
/* Network Agent Dialog */
|
||||
.network-dialog-secret-table {
|
||||
spacing-rows: 15px;
|
||||
@@ -488,6 +559,9 @@ StScrollBar {
|
||||
border-radius: 0.3em;
|
||||
background-color: rgba(11, 12, 13, 0.5);
|
||||
color: #eeeeec; }
|
||||
.osd-window .level-bar {
|
||||
background-color: #eeeeec;
|
||||
border-radius: 0.3em; }
|
||||
|
||||
/* App Switcher */
|
||||
.switcher-popup {
|
||||
@@ -531,6 +605,10 @@ StScrollBar {
|
||||
width: 96px;
|
||||
height: 96px; }
|
||||
|
||||
/* Window Cycler */
|
||||
.cycler-highlight {
|
||||
border: 5px solid #4a90d9; }
|
||||
|
||||
/* Workspace Switcher */
|
||||
.workspace-switcher-group {
|
||||
padding: 12px; }
|
||||
@@ -719,7 +797,7 @@ StScrollBar {
|
||||
border-radius: 1.4em; }
|
||||
.calendar-day-base:hover, .calendar-day-base:focus {
|
||||
background-color: #fafafa; }
|
||||
.calendar-day-base:active {
|
||||
.calendar-day-base:active, .calendar-day-base:selected {
|
||||
color: white;
|
||||
background-color: #4a90d9;
|
||||
border-color: transparent; }
|
||||
@@ -753,6 +831,17 @@ StScrollBar {
|
||||
color: rgba(46, 52, 54, 0.15);
|
||||
opacity: 0.5; }
|
||||
|
||||
.calendar-week-number {
|
||||
font-size: 70%;
|
||||
font-weight: bold;
|
||||
width: 2.3em;
|
||||
height: 1.8em;
|
||||
border-radius: 2px;
|
||||
padding: 0.5em 0 0;
|
||||
margin: 6px;
|
||||
background-color: rgba(46, 52, 54, 0.3);
|
||||
color: #ededed; }
|
||||
|
||||
/* Message list */
|
||||
.message-list {
|
||||
width: 31.5em; }
|
||||
@@ -811,6 +900,23 @@ StScrollBar {
|
||||
padding: 8px;
|
||||
font-size: .9em; }
|
||||
|
||||
.message-media-control {
|
||||
padding: 6px; }
|
||||
.message-media-control:last-child:ltr {
|
||||
padding-right: 18px; }
|
||||
.message-media-control:last-child:rtl {
|
||||
padding-left: 18px; }
|
||||
|
||||
.media-message-cover-icon {
|
||||
icon-size: 32px; }
|
||||
.media-message-cover-icon.fallback {
|
||||
color: white;
|
||||
background-color: #ededed;
|
||||
border: 2px solid #ededed;
|
||||
border-radius: 2px;
|
||||
icon-size: 16px;
|
||||
padding: 8px; }
|
||||
|
||||
.system-switch-user-submenu-icon.user-icon {
|
||||
icon-size: 20px;
|
||||
padding: 0 2px; }
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
[Desktop Entry]
|
||||
_Name=GNOME Classic
|
||||
_Comment=This session logs you into GNOME Classic
|
||||
Name=GNOME Classic
|
||||
Comment=This session logs you into GNOME Classic
|
||||
Exec=env GNOME_SHELL_SESSION_MODE=classic gnome-session --session gnome-classic
|
||||
TryExec=gnome-session
|
||||
Icon=
|
||||
Type=Application
|
||||
DesktopNames=GNOME-Classic;GNOME
|
||||
DesktopNames=GNOME-Classic;GNOME;
|
||||
|
||||
3
data/gnome-classic.session.desktop.in
Normal file
3
data/gnome-classic.session.desktop.in
Normal file
@@ -0,0 +1,3 @@
|
||||
[GNOME Session]
|
||||
Name=GNOME Classic
|
||||
RequiredComponents=org.gnome.Shell;gnome-settings-daemon;nautilus-classic;
|
||||
@@ -1,3 +0,0 @@
|
||||
[GNOME Session]
|
||||
_Name=GNOME Classic
|
||||
RequiredComponents=gnome-shell;gnome-settings-daemon;nautilus-classic;
|
||||
Submodule data/gnome-shell-sass updated: 63e059c923...b2190083c2
@@ -4,43 +4,43 @@
|
||||
gettext-domain="gnome-shell-extensions">
|
||||
<key name="attach-modal-dialogs" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Attach modal dialog to the parent window</_summary>
|
||||
<_description>
|
||||
<summary>Attach modal dialog to the parent window</summary>
|
||||
<description>
|
||||
This key overrides the key in org.gnome.mutter when running
|
||||
GNOME Shell.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
|
||||
<key name="button-layout" type="s">
|
||||
<default>"appmenu:minimize,maximize,close"</default>
|
||||
<_summary>Arrangement of buttons on the titlebar</_summary>
|
||||
<_description>
|
||||
<summary>Arrangement of buttons on the titlebar</summary>
|
||||
<description>
|
||||
This key overrides the key in org.gnome.desktop.wm.preferences when running GNOME Shell.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
|
||||
<key name="edge-tiling" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Enable edge tiling when dropping windows on screen edges</_summary>
|
||||
<_description>
|
||||
<summary>Enable edge tiling when dropping windows on screen edges</summary>
|
||||
<description>
|
||||
This key overrides the key in org.gnome.mutter when running GNOME Shell.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
|
||||
<key name="workspaces-only-on-primary" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Workspaces only on primary monitor</_summary>
|
||||
<_description>
|
||||
<summary>Workspaces only on primary monitor</summary>
|
||||
<description>
|
||||
This key overrides the key in org.gnome.mutter when running GNOME Shell.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
|
||||
<key name="focus-change-on-pointer-rest" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Delay focus changes in mouse mode until the pointer stops moving</_summary>
|
||||
<_description>
|
||||
<summary>Delay focus changes in mouse mode until the pointer stops moving</summary>
|
||||
<description>
|
||||
This key overrides the key in org.gnome.mutter when running GNOME Shell.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -7,6 +7,7 @@ const Shell = imports.gi.Shell;
|
||||
|
||||
const AltTab = imports.ui.altTab;
|
||||
const Main = imports.ui.main;
|
||||
const WindowManager = imports.ui.windowManager;
|
||||
|
||||
let injections = {};
|
||||
|
||||
@@ -33,20 +34,32 @@ function enable() {
|
||||
return injections['_keyPressHandler'].call(this, keysym, action);
|
||||
};
|
||||
|
||||
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._startWindowSwitcher));
|
||||
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._startWindowSwitcher));
|
||||
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._startWindowSwitcher));
|
||||
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._startWindowSwitcher));
|
||||
Main.wm._forcedWindowSwitcher = function(display, screen, window, binding) {
|
||||
/* prevent a corner case where both popups show up at once */
|
||||
if (this._workspaceSwitcherPopup != null)
|
||||
this._workspaceSwitcherPopup.destroy();
|
||||
|
||||
let tabPopup = new AltTab.WindowSwitcherPopup();
|
||||
|
||||
if (!tabPopup.show(binding.is_reversed(), binding.get_name(), binding.get_mask()))
|
||||
tabPopup.destroy();
|
||||
};
|
||||
|
||||
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
|
||||
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
|
||||
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
|
||||
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._forcedWindowSwitcher));
|
||||
}
|
||||
|
||||
function disable() {
|
||||
var prop;
|
||||
|
||||
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||
setKeybinding('switch-applications', Lang.bind(Main.wm, Main.wm._startSwitcher));
|
||||
setKeybinding('switch-group', Lang.bind(Main.wm, Main.wm._startSwitcher));
|
||||
setKeybinding('switch-applications-backward', Lang.bind(Main.wm, Main.wm._startSwitcher));
|
||||
setKeybinding('switch-group-backward', Lang.bind(Main.wm, Main.wm._startSwitcher));
|
||||
|
||||
for (prop in injections)
|
||||
AltTab.WindowSwitcherPopup.prototype[prop] = injections[prop];
|
||||
delete Main.wm._forcedWindowSwitcher;
|
||||
}
|
||||
|
||||
@@ -397,18 +397,17 @@ const ApplicationsButton = new Lang.Class({
|
||||
while ((nextType = iter.next()) != GMenu.TreeItemType.INVALID) {
|
||||
if (nextType == GMenu.TreeItemType.ENTRY) {
|
||||
let entry = iter.get_entry();
|
||||
let appInfo = entry.get_app_info();
|
||||
let id;
|
||||
try {
|
||||
id = appInfo.get_id(); // catch non-UTF8 filenames
|
||||
id = entry.get_desktop_file_id(); // catch non-UTF8 filenames
|
||||
} catch(e) {
|
||||
continue;
|
||||
}
|
||||
let app = appSys.lookup_app(id);
|
||||
if (appInfo.should_show()) {
|
||||
let menu_id = dir.get_menu_id();
|
||||
if (!app)
|
||||
app = new Shell.App({ app_info: entry.get_app_info() });
|
||||
if (app.get_app_info().should_show())
|
||||
this.applicationsByCategory[categoryId].push(app);
|
||||
}
|
||||
} else if (nextType == GMenu.TreeItemType.DIRECTORY) {
|
||||
let subdir = iter.get_directory();
|
||||
if (!subdir.get_is_nodisplay())
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
<key name="application-list" type="as">
|
||||
<!-- FIXME: should be a(su), when JS supports more of GVariant -->
|
||||
<default>[ ]</default>
|
||||
<_summary>Application and workspace list</_summary>
|
||||
<_description>A list of strings, each containing an application id (desktop file name), followed by a colon and the workspace number</_description>
|
||||
<summary>Application and workspace list</summary>
|
||||
<description>A list of strings, each containing an application id (desktop file name), followed by a colon and the workspace number</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -2,8 +2,8 @@
|
||||
<schema id="org.gnome.shell.extensions.example" path="/org/gnome/shell/extensions/example/">
|
||||
<key name="hello-text" type="s">
|
||||
<default>''</default>
|
||||
<_summary>Alternative greeting text.</_summary>
|
||||
<_description>If not empty, it contains the text that will be shown when clicking on the panel.</_description>
|
||||
<summary>Alternative greeting text.</summary>
|
||||
<description>If not empty, it contains the text that will be shown when clicking on the panel.</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -407,31 +407,16 @@ function enable() {
|
||||
/// This is almost a direct copy of the original relayout function. Differences are marked.
|
||||
winInjections['relayout'] = Workspace.WindowOverlay.prototype.relayout;
|
||||
Workspace.WindowOverlay.prototype.relayout = function(animate) {
|
||||
let button = this.closeButton;
|
||||
winInjections['relayout'].call(this, animate);
|
||||
let title = this.title;
|
||||
let border = this.border;
|
||||
|
||||
Tweener.removeTweens(button);
|
||||
this._parentActor.set_child_above_sibling(title, border);
|
||||
|
||||
Tweener.removeTweens(title);
|
||||
Tweener.removeTweens(border);
|
||||
|
||||
let [cloneX, cloneY, cloneWidth, cloneHeight] = this._windowClone.slot;
|
||||
|
||||
let layout = Meta.prefs_get_button_layout();
|
||||
let side = layout.left_buttons.indexOf(Meta.ButtonFunction.CLOSE) > -1 ? St.Side.LEFT : St.Side.RIGHT;
|
||||
|
||||
let buttonX;
|
||||
let buttonY = cloneY - (button.height - button._overlap);
|
||||
if (side == St.Side.LEFT)
|
||||
buttonX = cloneX - (button.width - button._overlap);
|
||||
else
|
||||
buttonX = cloneX + (cloneWidth - button._overlap);
|
||||
|
||||
if (animate)
|
||||
this._animateOverlayActor(button, Math.floor(buttonX), Math.floor(buttonY), button.width);
|
||||
else
|
||||
button.set_position(Math.floor(buttonX), Math.floor(buttonY));
|
||||
|
||||
// Clutter.Actor.get_preferred_width() will return the fixed width if one
|
||||
// is set, so we need to reset the width by calling set_width(-1), to forward
|
||||
// the call down to StLabel.
|
||||
@@ -455,19 +440,6 @@ function enable() {
|
||||
title.width = titleWidth;
|
||||
title.set_position(Math.floor(titleX), Math.floor(titleY));
|
||||
}
|
||||
|
||||
let borderX = cloneX - this.borderSize;
|
||||
let borderY = cloneY - this.borderSize;
|
||||
let borderWidth = cloneWidth + 2 * this.borderSize;
|
||||
let borderHeight = cloneHeight + 2 * this.borderSize;
|
||||
|
||||
if (animate) {
|
||||
this._animateOverlayActor(this.border, borderX, borderY,
|
||||
borderWidth, borderHeight);
|
||||
} else {
|
||||
this.border.set_position(borderX, borderY);
|
||||
this.border.set_size(borderWidth, borderHeight);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
<schema id="org.gnome.shell.extensions.native-window-placement" path="/org/gnome/shell/extensions/native-window-placement/">
|
||||
<key name="use-more-screen" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Use more screen for windows</_summary>
|
||||
<_description>Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and consolidating
|
||||
them further to reduce the bounding box. This setting applies only with the natural placement strategy.</_description>
|
||||
<summary>Use more screen for windows</summary>
|
||||
<description>Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and consolidating
|
||||
them further to reduce the bounding box. This setting applies only with the natural placement strategy.</description>
|
||||
</key>
|
||||
<key name="window-captions-on-top" type="b">
|
||||
<default>true</default>
|
||||
<_summary>Place window captions on top</_summary>
|
||||
<_description>If true, place window captions on top the respective thumbnail, overriding shell default of placing it at
|
||||
the bottom. Changing this setting requires restarting the shell to have any effect.</_description>
|
||||
<summary>Place window captions on top</summary>
|
||||
<description>If true, place window captions on top the respective thumbnail, overriding shell default of placing it at
|
||||
the bottom. Changing this setting requires restarting the shell to have any effect.</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -82,12 +82,20 @@ function cycleScreenshotSizes(display, screen, window, binding) {
|
||||
let workArea = window.get_work_area_current_monitor();
|
||||
let outerRect = window.get_frame_rect();
|
||||
|
||||
// Double both axes if on a hidpi display
|
||||
let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor;
|
||||
let scaledSizes = SIZES.map(function(size) {
|
||||
return size.map(function(wh) {
|
||||
return wh * scaleFactor;
|
||||
});
|
||||
});
|
||||
|
||||
// Find the nearest 16:9 size for the current window size
|
||||
let nearestIndex;
|
||||
let nearestError;
|
||||
|
||||
for (let i = 0; i < SIZES.length; i++) {
|
||||
let [width, height] = SIZES[i];
|
||||
for (let i = 0; i < scaledSizes.length; i++) {
|
||||
let [width, height] = scaledSizes[i];
|
||||
|
||||
// ignore sizes bigger than the workArea
|
||||
if (width > workArea.width || height > workArea.height)
|
||||
@@ -102,11 +110,11 @@ function cycleScreenshotSizes(display, screen, window, binding) {
|
||||
}
|
||||
|
||||
// get the next size up or down from ideal
|
||||
let newIndex = (nearestIndex + (backwards ? -1 : 1)) % SIZES.length;
|
||||
let newIndex = (nearestIndex + (backwards ? -1 : 1)) % scaledSizes.length;
|
||||
let newWidth, newHeight;
|
||||
[newWidth, newHeight] = SIZES[newIndex];
|
||||
[newWidth, newHeight] = scaledSizes[newIndex];
|
||||
if (newWidth > workArea.width || newHeight > workArea.height)
|
||||
[newWidth, newHeight] = SIZES[0];
|
||||
[newWidth, newHeight] = scaledSizes[0];
|
||||
|
||||
// Push the window onscreen if it would be resized offscreen
|
||||
let newX = outerRect.x;
|
||||
@@ -119,7 +127,9 @@ function cycleScreenshotSizes(display, screen, window, binding) {
|
||||
window.move_resize_frame(true, newX, newY, newWidth, newHeight);
|
||||
|
||||
let newOuterRect = window.get_frame_rect();
|
||||
let message = newOuterRect.width + 'x' + newOuterRect.height;
|
||||
let message = '%d×%d'.format(
|
||||
(newOuterRect.width / scaleFactor),
|
||||
(newOuterRect.height / scaleFactor));
|
||||
|
||||
// The new size might have been constrained by geometry hints (e.g. for
|
||||
// a terminal) - in that case, include the actual ratio to the message
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
path="/org/gnome/shell/extensions/screenshot-window-sizer/">
|
||||
<key type="as" name="cycle-screenshot-sizes">
|
||||
<default><![CDATA[['<Alt><Control>s']]]></default>
|
||||
<_summary>Cycle Screenshot Sizes</_summary>
|
||||
<summary>Cycle Screenshot Sizes</summary>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -2,8 +2,8 @@
|
||||
<schema id="org.gnome.shell.extensions.user-theme" path="/org/gnome/shell/extensions/user-theme/">
|
||||
<key name="name" type="s">
|
||||
<default>""</default>
|
||||
<_summary>Theme name</_summary>
|
||||
<_description>The name of the theme, to be loaded from ~/.themes/name/gnome-shell</_description>
|
||||
<summary>Theme name</summary>
|
||||
<description>The name of the theme, to be loaded from ~/.themes/name/gnome-shell</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
@@ -12,40 +12,39 @@
|
||||
background-gradient-start: #fff;
|
||||
background-gradient-end: #eee;
|
||||
color: #000;
|
||||
-st-natural-width: 18.7em;
|
||||
max-width: 18.75em;
|
||||
color: #2e3436;
|
||||
background-color: #eee;
|
||||
border-radius: 2px;
|
||||
padding: 4px 6px 2px;
|
||||
text-shadow: 0 0 transparent;
|
||||
padding: 3px 6px 1px;
|
||||
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5);
|
||||
text-shadow: 0 0 transparent;
|
||||
}
|
||||
|
||||
.bottom-panel .window-button:hover > StWidget {
|
||||
background-color: #fff;
|
||||
background-gradient-start: #fff;
|
||||
background-gradient-end: #fefefe;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
.bottom-panel .window-button:active > StWidget {
|
||||
.bottom-panel .window-button:active > StWidget,
|
||||
.bottom-panel .window-button:focus > StWidget {
|
||||
box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
|
||||
background-color: #ededed;
|
||||
background-gradient-start: #ededed;
|
||||
background-gradient-end: #ededed;
|
||||
}
|
||||
|
||||
.bottom-panel .window-button.focused > StWidget {
|
||||
background-color: #ddd;
|
||||
background-color: #ddd;
|
||||
background-gradient-end: #dedede;
|
||||
color: white;
|
||||
box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5);
|
||||
box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.bottom-panel .window-button.focused:hover > StWidget {
|
||||
background-color: #b9b9b9;
|
||||
background-gradient-end: #c0c0c0;
|
||||
background-color: #e9e9e9;
|
||||
}
|
||||
|
||||
.bottom-panel .window-button.minimized > StWidget {
|
||||
color: #000;
|
||||
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.4);
|
||||
color: #888;
|
||||
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.bottom-panel .window-button.minimized > StWidget {
|
||||
box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
@@ -152,6 +152,12 @@ const WindowTitle = new Lang.Class({
|
||||
this._iconThemeChangedId =
|
||||
this._textureCache.connect('icon-theme-changed',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._notifyWmClass =
|
||||
this._metaWindow.connect('notify::wm-class',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._notifyAppId =
|
||||
this._metaWindow.connect('notify::gtk-application-id',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._updateIcon();
|
||||
|
||||
this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
|
||||
@@ -193,6 +199,8 @@ const WindowTitle = new Lang.Class({
|
||||
this._textureCache.disconnect(this._iconThemeChangedId);
|
||||
this._metaWindow.disconnect(this._notifyTitleId);
|
||||
this._metaWindow.disconnect(this._notifyMinimizedId);
|
||||
this._metaWindow.disconnect(this._notifyWmClass);
|
||||
this._metaWindow.disconnect(this._notifyAppId);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -9,19 +9,19 @@
|
||||
<key name="grouping-mode"
|
||||
enum="org.gnome.shell.extensions.window-list.GroupingMode">
|
||||
<default>'never'</default>
|
||||
<_summary>When to group windows</_summary>
|
||||
<_description>
|
||||
<summary>When to group windows</summary>
|
||||
<description>
|
||||
Decides when to group windows from the same application on the
|
||||
window list. Possible values are "never", "auto" and "always".
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
<key name="show-on-all-monitors" type="b">
|
||||
<default>false</default>
|
||||
<_summary>Show the window list on all monitors</_summary>
|
||||
<_description>
|
||||
<summary>Show the window list on all monitors</summary>
|
||||
<description>
|
||||
Whether to show the window list on all connected monitors or
|
||||
only on the primary one.
|
||||
</_description>
|
||||
</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
68
po/Makevars
Normal file
68
po/Makevars
Normal file
@@ -0,0 +1,68 @@
|
||||
# Makefile variables for PO directory in any package using GNU gettext.
|
||||
|
||||
# Usually the message domain is the same as the package name.
|
||||
DOMAIN = $(PACKAGE)
|
||||
|
||||
# These two variables depend on the location of this directory.
|
||||
subdir = po
|
||||
top_builddir = ..
|
||||
|
||||
# These options get passed to xgettext.
|
||||
XGETTEXT_OPTIONS = --from-code=UTF-8 --keyword=_ --keyword=N_ \
|
||||
--keyword=C_:1c,2 --keyword=NC_:1c,2 \
|
||||
--keyword=g_dngettext:2,3 --add-comments \
|
||||
--flag=g_dngettext:2:pass-c-format \
|
||||
--flag=g_strdup_printf:1:c-format \
|
||||
--flag=g_string_printf:2:c-format \
|
||||
--flag=g_string_append_printf:2:c-format \
|
||||
--flag=g_error_new:3:c-format \
|
||||
--flag=g_set_error:4:c-format \
|
||||
--flag=g_markup_printf_escaped:1:c-format \
|
||||
--flag=g_log:3:c-format \
|
||||
--flag=g_print:1:c-format \
|
||||
--flag=g_printerr:1:c-format \
|
||||
--flag=g_printf:1:c-format \
|
||||
--flag=g_fprintf:2:c-format \
|
||||
--flag=g_sprintf:2:c-format \
|
||||
--flag=g_snprintf:3:c-format
|
||||
|
||||
|
||||
# This is the copyright holder that gets inserted into the header of the
|
||||
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
|
||||
# package. (Note that the msgstr strings, extracted from the package's
|
||||
# sources, belong to the copyright holder of the package.) Translators are
|
||||
# expected to transfer the copyright for their translations to this person
|
||||
# or entity, or to disclaim their copyright. The empty string stands for
|
||||
# the public domain; in this case the translators are expected to disclaim
|
||||
# their copyright.
|
||||
COPYRIGHT_HOLDER = Translation copyright holder
|
||||
# This is the email address or URL to which the translators shall report
|
||||
# bugs in the untranslated strings:
|
||||
# - Strings which are not entire sentences, see the maintainer guidelines
|
||||
# in the GNU gettext documentation, section 'Preparing Strings'.
|
||||
# - Strings which use unclear terms or require additional context to be
|
||||
# understood.
|
||||
# - Strings which make invalid assumptions about notation of date, time or
|
||||
# money.
|
||||
# - Pluralisation problems.
|
||||
# - Incorrect English spelling.
|
||||
# - Incorrect formatting.
|
||||
# It can be your email address, or a mailing list address where translators
|
||||
# can write to without being subscribed, or the URL of a web page through
|
||||
# which the translators can contact you.
|
||||
MSGID_BUGS_ADDRESS = http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&keywords=I18N+L10N&component=extensions
|
||||
|
||||
# This is the list of locale categories, beyond LC_MESSAGES, for which the
|
||||
# message catalogs shall be used. It is usually empty.
|
||||
EXTRA_LOCALE_CATEGORIES =
|
||||
|
||||
# Ignore the timestamp of the .pot file, as git clones do not have
|
||||
# deterministic timestamps, and .po files are updated by translators
|
||||
# (only) in GNOME projects.
|
||||
PO_DEPENDS_ON_POT = no
|
||||
|
||||
# This tells whether or not to forcibly update $(DOMAIN).pot and
|
||||
# regenerate PO files on "make dist". Possible values are "yes" and
|
||||
# "no". Set this to no if the POT file and PO files are maintained
|
||||
# externally.
|
||||
DIST_DEPENDS_ON_UPDATE_PO = no
|
||||
@@ -1,24 +1,24 @@
|
||||
data/gnome-classic.desktop.in
|
||||
data/gnome-classic.session.desktop.in.in
|
||||
data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in
|
||||
data/gnome-classic.session.desktop.in
|
||||
data/org.gnome.shell.extensions.classic-overrides.gschema.xml
|
||||
extensions/alternate-tab/prefs.js
|
||||
extensions/apps-menu/extension.js
|
||||
extensions/auto-move-windows/extension.js
|
||||
extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in
|
||||
extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml
|
||||
extensions/auto-move-windows/prefs.js
|
||||
extensions/drive-menu/extension.js
|
||||
extensions/example/extension.js
|
||||
extensions/example/org.gnome.shell.extensions.example.gschema.xml.in
|
||||
extensions/example/org.gnome.shell.extensions.example.gschema.xml
|
||||
extensions/example/prefs.js
|
||||
extensions/native-window-placement/extension.js
|
||||
extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in
|
||||
extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml
|
||||
extensions/places-menu/extension.js
|
||||
extensions/places-menu/placeDisplay.js
|
||||
extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in
|
||||
extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml
|
||||
extensions/user-theme/extension.js
|
||||
extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in
|
||||
extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml
|
||||
extensions/window-list/extension.js
|
||||
extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in
|
||||
extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml
|
||||
extensions/window-list/prefs.js
|
||||
extensions/windowsNavigator/extension.js
|
||||
extensions/workspace-indicator/extension.js
|
||||
|
||||
2
po/as.po
2
po/as.po
@@ -11,7 +11,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-08-13 17:37+0530\n"
|
||||
"Last-Translator: Nilamdyuti Goswami <ngoswami@redhat.com>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
"Language: en_US\n"
|
||||
"Language: as\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-09-22 16:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
"Language: bn-IN\n"
|
||||
"Language: bn_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-08-17 14:38+0200\n"
|
||||
"Last-Translator: Gil Forcada <gilforcada@guifi.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
"Language: ca-XV\n"
|
||||
"Language: ca@valencia\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bits\n"
|
||||
|
||||
2
po/de.po
2
po/de.po
@@ -15,7 +15,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2015-01-08 23:43+0100\n"
|
||||
"Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n"
|
||||
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
|
||||
"Language: de_DE\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
211
po/en_GB.po
211
po/en_GB.po
@@ -7,10 +7,11 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-05-27 22:05+0100\n"
|
||||
"PO-Revision-Date: 2012-09-21 21:00-0400\n"
|
||||
"Last-Translator: Philip Withnall <philip@tecnocode.co.uk>\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2016-08-19 21:17+0000\n"
|
||||
"PO-Revision-Date: 2016-09-18 12:40+0200\n"
|
||||
"Last-Translator: David King <amigadave@amigadave.com>\n"
|
||||
"Language-Team: Sugar Labs\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,38 +21,32 @@ msgstr ""
|
||||
"X-Generator: Virtaal 0.7.1\n"
|
||||
"X-Project-Style: gnome\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1
|
||||
#: ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
|
||||
msgid "GNOME Classic"
|
||||
msgstr "GNOME Classic"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:2
|
||||
#: data/gnome-classic.desktop.in:4
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "This session logs you into GNOME Classic"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:1
|
||||
msgid "GNOME Shell Classic"
|
||||
msgstr "GNOME Shell Classic"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:2
|
||||
msgid "Window management and application launching"
|
||||
msgstr "Window management and application launching"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:7
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "Attach modal dialogue to the parent window"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:8
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:25
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:33
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:41
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:16
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "Arrangement of buttons on the titlebar"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:17
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
@@ -59,55 +54,55 @@ msgstr ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:24
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr "Enable edge tiling when dropping windows on screen edges"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:32
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Workspaces only on primary monitor"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:40
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
#: extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
msgstr "Thumbnail only"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:21
|
||||
#: extensions/alternate-tab/prefs.js:21
|
||||
msgid "Application icon only"
|
||||
msgstr "Application icon only"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:22
|
||||
#: extensions/alternate-tab/prefs.js:22
|
||||
msgid "Thumbnail and application icon"
|
||||
msgstr "Thumbnail and application icon"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:37
|
||||
#: extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr "Present windows as"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:62
|
||||
#: extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Show only windows in the current workspace"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Activities Overview"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:113
|
||||
#: extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Favourites"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:282
|
||||
#: extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Applications"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6
|
||||
msgid "Application and workspace list"
|
||||
msgstr "Application and workspace list"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
@@ -115,49 +110,49 @@ msgstr ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:55
|
||||
#: extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "Application"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:64
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
#: extensions/auto-move-windows/prefs.js:69
|
||||
#: extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "Workspace"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:80
|
||||
msgid "Add rule"
|
||||
msgstr "Add rule"
|
||||
#: extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
msgstr "Add Rule"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:94
|
||||
#: extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr "Create new matching rule"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:98
|
||||
#: extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#: extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "Ejecting drive '%s' failed:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:123
|
||||
#: extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "Removable devices"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:150
|
||||
#: extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Open File"
|
||||
|
||||
#: ../extensions/example/extension.js:17
|
||||
#: extensions/example/extension.js:17
|
||||
msgid "Hello, world!"
|
||||
msgstr "Hello, world!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:5
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "Alternative greeting text."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:6
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
@@ -165,7 +160,13 @@ msgstr ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
#: extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
@@ -175,15 +176,11 @@ msgstr ""
|
||||
"as such it has little functionality on its own.\n"
|
||||
"Nevertheless it's possible to customize the greeting message."
|
||||
|
||||
#: ../extensions/example/prefs.js:36
|
||||
msgid "Message:"
|
||||
msgstr "Message:"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "Use more screen for windows"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
@@ -193,11 +190,11 @@ msgstr ""
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
||||
msgid "Place window captions on top"
|
||||
msgstr "Place window captions on top"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
@@ -207,99 +204,95 @@ msgstr ""
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
"restarting the shell to have any effect."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
#: extensions/places-menu/extension.js:78
|
||||
#: extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "Places"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Failed to launch \"%s\""
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: extensions/places-menu/placeDisplay.js:101
|
||||
#: extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Computer"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Browse Network"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Cycle Screenshot Sizes"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Memory"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
||||
msgid "Theme name"
|
||||
msgstr "Theme name"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
#: extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "Unminimise"
|
||||
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
#: extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "Minimise"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "Unmaximise"
|
||||
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
#: extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Maximise"
|
||||
|
||||
#: ../extensions/window-list/extension.js:300
|
||||
#: extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Minimise all"
|
||||
|
||||
#: ../extensions/window-list/extension.js:308
|
||||
#: extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Unminimise all"
|
||||
|
||||
#: ../extensions/window-list/extension.js:316
|
||||
#: extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Maximise all"
|
||||
|
||||
#: ../extensions/window-list/extension.js:325
|
||||
#: extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Unmaximise all"
|
||||
|
||||
#: ../extensions/window-list/extension.js:334
|
||||
#: extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Close all"
|
||||
|
||||
#: ../extensions/window-list/extension.js:644
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
#: extensions/window-list/extension.js:661
|
||||
#: extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Workspace Indicator"
|
||||
|
||||
#: ../extensions/window-list/extension.js:798
|
||||
#: extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Window List"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
||||
msgid "When to group windows"
|
||||
msgstr "When to group windows"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
@@ -307,35 +300,63 @@ msgstr ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:30
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "Show the window list on all monitors"
|
||||
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
msgstr ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
|
||||
#: extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "Window Grouping"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:49
|
||||
#: extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "Never group windows"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "Group windows when space is limited"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "Always group windows"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace names:"
|
||||
msgstr "Workspace names:"
|
||||
#: extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "Show on all monitors"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:152
|
||||
#: extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "Workspace Names"
|
||||
|
||||
#: extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:186
|
||||
#: extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Workspace %d"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "GNOME Shell Classic"
|
||||
|
||||
#~ msgid "Window management and application launching"
|
||||
#~ msgstr "Window management and application launching"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Memory"
|
||||
|
||||
#~ msgid "The application icon mode."
|
||||
#~ msgstr "The application icon mode."
|
||||
|
||||
|
||||
56
po/es.po
56
po/es.po
@@ -11,11 +11,11 @@ msgstr ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2016-07-21 00:52+0000\n"
|
||||
"PO-Revision-Date: 2015-01-08 18:20+0100\n"
|
||||
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
||||
"Language-Team: Español; Castellano <gnome-es-list@gnome.org>\n"
|
||||
"Language-Team: Español; Castellano <gnome-es-list@gnome.org>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -88,15 +88,15 @@ msgstr "Presentar ventanas como"
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Mostrar ventanas solamente en el área de trabajo actual"
|
||||
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Vista de actividades"
|
||||
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Favoritos"
|
||||
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Aplicaciones"
|
||||
@@ -136,13 +136,13 @@ msgstr "Añadir"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "Falló al expulsar el dispositivo «%s»:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "Dispositivos extraíbles"
|
||||
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Abrir archivo"
|
||||
@@ -152,7 +152,7 @@ msgstr "¡Hola, mundo!"
|
||||
msgstr "¡Hola, mundo!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
msgid "Alternative greeting text."
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "Texto de bienvenida alternativo."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
@@ -166,6 +166,8 @@ msgstr ""
|
||||
#: ../extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
@@ -211,21 +213,21 @@ msgstr ""
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "Lugares"
|
||||
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Falló al lanzar «%s»"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:101
|
||||
#: ../extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Equipo"
|
||||
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Carpeta personal"
|
||||
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Examinar la red"
|
||||
@@ -233,14 +235,6 @@ msgstr "Examinar la red"
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Tamaños de capturas de pantalla cíclicos"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Memoria"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
@@ -269,32 +263,32 @@ msgstr "Desmaximizar"
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Maximizar"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Minimizar todo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Desminimizar todo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Maximizar todo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Desmaximizar todo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Cerrar todo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:661
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Indicador de área de trabajo"
|
||||
|
||||
|
||||
#: ../extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Lista de ventanas"
|
||||
@@ -355,6 +349,12 @@ msgstr "Nombre"
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Área de trabajo %d"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Memoria"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "GNOME Shell clásico"
|
||||
|
||||
2
po/fa.po
2
po/fa.po
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2015-09-11 23:44+0430\n"
|
||||
"Last-Translator: Arash Mousavi <mousavi.arash@gmail.com>\n"
|
||||
"Language-Team: Persian <>\n"
|
||||
"Language: fa_IR\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
2
po/fr.po
2
po/fr.po
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-08-25 23:50+0200\n"
|
||||
"Last-Translator: Alain Lojewski <allomervan@gmail.com>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
"Language: \n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
124
po/gd.po
124
po/gd.po
@@ -1,14 +1,14 @@
|
||||
# Scottish Gaelic translation for gnome-shell-extensions.
|
||||
# Copyright (C) 2015 gnome-shell-extensions's COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||
# GunChleoc <fios@foramnagaidhlig.net>, 2015.
|
||||
# GunChleoc <fios@foramnagaidhlig.net>, 2015, 2016.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2015-11-17 16:36+0000\n"
|
||||
"PO-Revision-Date: 2015-11-17 17:12+0100\n"
|
||||
"POT-Creation-Date: 2016-04-29 09:49+0000\n"
|
||||
"PO-Revision-Date: 2016-04-29 11:09+0100\n"
|
||||
"Last-Translator: GunChleoc <fios@foramnagaidhlig.net>\n"
|
||||
"Language-Team: Fòram na Gàidhlig\n"
|
||||
"Language: gd\n"
|
||||
@@ -30,11 +30,45 @@ msgstr "GNOME clasaigeach"
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "Clàraidh an seisean seo a-steach gu GNOME clasaigeach thu"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "Ceangail còmhradh mòdach ris an uinneag-pàraint"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr ""
|
||||
"Tar-àithnidh an iuchair seo an iuchair ann an org.gnome.mutter nuair a thèid "
|
||||
"Slige GNOME a ruith."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "Seòrsachadh nam putanan air a' bhàr-tiotail"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"Tar-àithnidh an iuchair seo an iuchair ann an "
|
||||
"org.gnome.desktop.wm.preferences nuair a thèid Slige GNOME a ruith."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr ""
|
||||
"Cuir leacadh nan oirean an comas nuair a thèid uinneagan a leigeil às aig "
|
||||
"oir na sgrìn"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
#| msgid "Workspace Indicator"
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Rumannan-obrach air a' phrìomh-sgrìn a-mhàin"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr ""
|
||||
"Cuir dàil air atharraichean an fòcais ann am modh luchaige gus an sguir an "
|
||||
"tomhaire air gluasad"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
msgstr "Dealbhagan a-mhàin"
|
||||
@@ -68,10 +102,17 @@ msgid "Applications"
|
||||
msgstr "Aplacaidean"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
#| msgid "Application icon only"
|
||||
msgid "Application and workspace list"
|
||||
msgstr "Ìomhaigheag na h-aplacaid is liosta nan rumannan-obrach"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"Liosta dhe shreangan le id aplacaid (ainm faidhle desktop) aig gach tè air a "
|
||||
"leantainn le còilean is àireamh an ruim-obrach"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "Aplacaid"
|
||||
@@ -110,6 +151,18 @@ msgstr "Fosgail am faidhle"
|
||||
msgid "Hello, world!"
|
||||
msgstr "Shin thu, a shaoghail!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "Teacsa fàilteachaidh eile."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgstr ""
|
||||
"Mur eil seo falamh, tha an teacsa 'na bhroinn a thèid a shealltainn le "
|
||||
"briogadh air a' phanail."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Teachdaireachd"
|
||||
@@ -126,6 +179,36 @@ msgstr ""
|
||||
"deagh-ghiùlan airson na Slige agus mar sin cha dèan e fhèin mòran.\n"
|
||||
"'S urrainn dhut an teachdaireachd fàilteachaidh a ghnàthachadh co-dhiù."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "Cleachd cuid nas motha dhen sgrìn airson uinneagan"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
msgstr ""
|
||||
"Feuch barrachd rum air an sgrìn a chleachdadh nuair a thèid dealbhagan nan "
|
||||
"uinneagan a chur ann le gleusadh a-rèir co-mheas deilbh na sgrìn agus le "
|
||||
"barrachd co-dhaingneachaidh ach am bi am bogsa-iadhaidh nas lugha. Cha bhi "
|
||||
"an roghainn seo an sàs ach leis an ro-innleachd suidheachaidh nàdarra."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
msgid "Place window captions on top"
|
||||
msgstr "Cuir caipseanan nan uinneagan air a' bharr"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
"restarting the shell to have any effect."
|
||||
msgstr ""
|
||||
"Mas e true a th' ann, thèid caipseanan nan uinneagan a chur ri barr nan "
|
||||
"dealbhagan, a' tar-àithneadh bun-roghainn na slige a chuireas aig a' bhonn "
|
||||
"iad. Ma dh'atharraicheas tu an roghainn seo, feumaidh tu an t-slige a "
|
||||
"thòiseachadh às ùr gus an dèid a cur an sàs."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
@@ -149,6 +232,18 @@ msgstr "Dachaigh"
|
||||
msgid "Browse Network"
|
||||
msgstr "Brabhsaich an lìonra"
|
||||
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Cuartaich meudan nan glacaidhean-sgrìn"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
msgstr "Ainm an ùrlair"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Ainm an ùrlair a thèid a luchdadh o ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Dùin"
|
||||
@@ -199,15 +294,30 @@ msgid "Window List"
|
||||
msgstr "Liosta nan uinneagan"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
|
||||
#| msgid "Never group windows"
|
||||
msgid "When to group windows"
|
||||
msgstr "Cuin a thèid na h-uinneagan a bhuidhneachadh"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
msgstr ""
|
||||
"Mìnichidh seo cuin a thèid uinneagan aig an aon aplacaid a bhuidhneachadh "
|
||||
"air liosta nan uinneagan. 'S e \"never\", \"auto\" agus \"always\" a tha sna "
|
||||
"roghainnean dligheach."
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:3
|
||||
#| msgid "Show on all monitors"
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "Seall liosta nan uinneagan air a h-uile sgrìn"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
msgstr ""
|
||||
"Co-dhiù an dèid liosta nan uinneagan a shealltainn air gach sgrìn "
|
||||
"cheangailte no air a' phrìomh-thè a-mhàin."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "Buidhneachadh nan uinneagan"
|
||||
|
||||
162
po/gu.po
162
po/gu.po
@@ -5,21 +5,21 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug."
|
||||
"cgi?product=gnome-shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2014-09-02 07:39+0000\n"
|
||||
"PO-Revision-Date: 2014-09-02 15:45+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2016-05-05 09:58+0000\n"
|
||||
"PO-Revision-Date: 2016-07-11 22:04+0200\n"
|
||||
"Last-Translator: વિશાલ ભલાણી <vishalbhalani89@gmail.com>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
"Language: \n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Lokalize 1.0\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-DamnedLies-Scope: partial\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1
|
||||
#: ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
#: ../data/gnome-classic.desktop.in.h:1 ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
msgid "GNOME Classic"
|
||||
msgstr "GNOME ક્લાસિક"
|
||||
|
||||
@@ -27,14 +27,6 @@ msgstr "GNOME ક્લાસિક"
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "આ સત્ર તમને GNOME ક્લાસિકમાં પ્રવેશ આપે છે"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:1
|
||||
msgid "GNOME Shell Classic"
|
||||
msgstr "GNOME શેલ ક્લાસિક"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:2
|
||||
msgid "Window management and application launching"
|
||||
msgstr "વિન્ડો સંચાલન અને કાર્યક્રમ શરૂઆત"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "મુખ્ય વિન્ડોમાં મોડલ સંવાદને જોડો"
|
||||
@@ -48,13 +40,8 @@ msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "શીર્ષકપટ્ટી પર બટનોની ગોઠવણ"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#| msgid ""
|
||||
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"આ કી org.gnome.desktop.wm.preferences માં કી ઉપર લખાઇ જશે જ્યારે GNOME શેલ ચાલી રહ્યુ હોય."
|
||||
msgid "This key overrides the key in org.gnome.desktop.wm.preferences when running GNOME Shell."
|
||||
msgstr "આ કી org.gnome.desktop.wm.preferences માં કી ઉપર લખાઇ જશે જ્યારે GNOME શેલ ચાલી રહ્યુ હોય."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
@@ -88,15 +75,15 @@ msgstr "આ તરીકે વિન્ડોને હાજર કરો"
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "વર્તમાન કામ કરવાની જગ્યામાં ફક્ત વિન્ડોને બતાવો"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: ../extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "પ્રવૃત્તિ દૃશ્ય"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:113
|
||||
#: ../extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "પસંદીદા"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:282
|
||||
#: ../extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "કાર્યક્રમો"
|
||||
|
||||
@@ -106,23 +93,21 @@ msgstr "કાર્યક્રમ અને કામ કરવાની જ
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
"A list of strings, each containing an application id (desktop file name), followed by a colon "
|
||||
"and the workspace number"
|
||||
msgstr ""
|
||||
"શબ્દમાળાઓની યાદી, દરેક રંગ અને કામ કરવાની જગ્યા નંબર દ્દારા અનુસરેલ કાર્યક્રમ id "
|
||||
"(ડેસ્કટોપ ફાઇલ નામ) ને સામવી રહ્યુ છે"
|
||||
"શબ્દમાળાઓની યાદી, દરેક રંગ અને કામ કરવાની જગ્યા નંબર દ્દારા અનુસરેલ કાર્યક્રમ id (ડેસ્કટોપ ફાઇલ નામ) ને "
|
||||
"સામવી રહ્યુ છે"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "કાર્યક્રમ"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
#: ../extensions/auto-move-windows/prefs.js:69 ../extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "કાર્ય કરવાની જગ્યા"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
#| msgid "Add rule"
|
||||
msgid "Add Rule"
|
||||
msgstr "નિયમ ઉમેરો"
|
||||
|
||||
@@ -139,11 +124,11 @@ msgstr "ઉમેરો"
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "ડ્રાઇવ '%s' બહાર નીકાળતી વખતે નિષ્ફળતા:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:123
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "દૂર કરી શકાય તેવા ઉપકરણો"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:150
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "ફાઇલને ખોલો"
|
||||
|
||||
@@ -156,24 +141,23 @@ msgid "Alternative greeting text."
|
||||
msgstr "વૈકલ્પિક શુભેચ્છા લખાણ."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgid "If not empty, it contains the text that will be shown when clicking on the panel."
|
||||
msgstr "જો ખાલી ન હોય તો, તે લખાણને સમાવે છે કે જે બતાવશે જ્યારે પેનલ પર ક્લિક કરી રહ્યા હોય."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
#| msgid "Message:"
|
||||
msgid "Message"
|
||||
msgstr "સંદેશો"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
"Example aims to show how to build well behaved extensions for the Shell and as such it has "
|
||||
"little functionality on its own.\n"
|
||||
"Nevertheless it's possible to customize the greeting message."
|
||||
msgstr ""
|
||||
"શેલ માટે સારી વર્તણૂકવાળા શેલ એક્સટેન્શનને કેવી રીતે બનાવવા તે આ ઉદાહરણ બતાવે છે તેની સાથે "
|
||||
"તેની પાસે તેની પોતાની પર થોડી કાર્યક્ષમતા છે.\n"
|
||||
"શેલ માટે સારી વર્તણૂકવાળા શેલ એક્સટેન્શનને કેવી રીતે બનાવવા તે આ ઉદાહરણ બતાવે છે તેની સાથે તેની પાસે તેની પોતાની "
|
||||
"પર થોડી કાર્યક્ષમતા છે.\n"
|
||||
"તેમ છતાં શુભેચ્છા સંદેશ કસ્ટમાઇઝ કરવા માટે શક્ય છે."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
@@ -182,13 +166,12 @@ msgstr "વિન્ડો માટે વધારે સ્ક્રીનન
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and "
|
||||
"consolidating them further to reduce the bounding box. This setting applies only with the "
|
||||
"natural placement strategy."
|
||||
msgstr ""
|
||||
"સ્ક્રીન આશરે દરને અપનાવીને વિન્ડો થમ્ભનેઇલને સ્થિત કરવા માટે વધારે સ્ક્રીનને વાપરવાનો પ્રયત્ન "
|
||||
"કરો, અને બાઉન્ડીંગ બોક્સને ઘટાડવા માટે તેઓને આગળ આશ્ર્વાસન આપો. આ સુયોજન ફક્ત કુદરતી સ્થાન "
|
||||
"યોજના સાથે લાગુ થાય છે."
|
||||
"સ્ક્રીન આશરે દરને અપનાવીને વિન્ડો થમ્ભનેઇલને સ્થિત કરવા માટે વધારે સ્ક્રીનને વાપરવાનો પ્રયત્ન કરો, અને બાઉન્ડીંગ "
|
||||
"બોક્સને ઘટાડવા માટે તેઓને આગળ આશ્ર્વાસન આપો. આ સુયોજન ફક્ત કુદરતી સ્થાન યોજના સાથે લાગુ થાય છે."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
msgid "Place window captions on top"
|
||||
@@ -196,44 +179,34 @@ msgstr "ટોચે વિન્ડો કૅપ્શન વિન્ડોન
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
"restarting the shell to have any effect."
|
||||
"If true, place window captions on top the respective thumbnail, overriding shell default of "
|
||||
"placing it at the bottom. Changing this setting requires restarting the shell to have any "
|
||||
"effect."
|
||||
msgstr ""
|
||||
"જો true હોય તો, થમ્ભનેઇલ પર કૅપ્શન વિન્ડોને સ્થિત કરો, નીચે તેને સ્થિત કરીને શેલ મૂળભૂત પર "
|
||||
"લખી રહ્યા છે. આ સુયોજનને બદલવાથી કોઇપણ અસર લાવવા માટે શેલને પુન:શરૂ કરવાની જરૂર છે."
|
||||
"જો true હોય તો, થમ્ભનેઇલ પર કૅપ્શન વિન્ડોને સ્થિત કરો, નીચે તેને સ્થિત કરીને શેલ મૂળભૂત પર લખી રહ્યા છે. આ "
|
||||
"સુયોજનને બદલવાથી કોઇપણ અસર લાવવા માટે શેલને પુન:શરૂ કરવાની જરૂર છે."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
#: ../extensions/places-menu/extension.js:78 ../extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "સ્થાનો"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: ../extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "\"%s\" ને શરૂ કરવામાં નિષ્ફળતા"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: ../extensions/places-menu/placeDisplay.js:101 ../extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "કમ્પ્યૂટર"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: ../extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "ઘર"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: ../extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "નેટવર્ક બ્રાઉઝ કરો"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "મેમરી"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
msgstr "થીમનું નામ"
|
||||
@@ -262,33 +235,31 @@ msgstr "મહત્તમમાંથી પાછુ લાવો"
|
||||
msgid "Maximize"
|
||||
msgstr "મહત્તમ કરો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:300
|
||||
#: ../extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "બધુ મહત્તમ કરો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:308
|
||||
#: ../extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "બધાને ન્યૂનત્તમમાંથી પાછુ લાવો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:316
|
||||
#: ../extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "બધુ મહત્તમ કરો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:325
|
||||
#: ../extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "બધાને મહત્તમમાંથી પાછુ લાવો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:334
|
||||
#: ../extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "બધુ બંધ કરો"
|
||||
|
||||
#: ../extensions/window-list/extension.js:644
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
#: ../extensions/window-list/extension.js:661 ../extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "કામ કરવાની જગ્યાનું સૂચક"
|
||||
|
||||
#: ../extensions/window-list/extension.js:798
|
||||
#| msgid "Window Grouping"
|
||||
#: ../extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "વિન્ડો યાદી"
|
||||
|
||||
@@ -298,30 +269,33 @@ msgstr "વિન્ડોના જૂથ ક્યારે પાડવા"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
"Decides when to group windows from the same application on the window list. Possible values "
|
||||
"are \"never\", \"auto\" and \"always\"."
|
||||
msgstr ""
|
||||
"વિન્ડોની મેનુ પર એક જ કાર્યક્રમમાંથી વિન્ડોના જૂથો કયારે પાડવા તે નક્કી કરે છે. \"ક્યારેય "
|
||||
"નહિ\", \"આપોઆપ\" અને \"હંમેશા\" તેની શક્ય કિંમતો છે."
|
||||
"વિન્ડોની મેનુ પર એક જ કાર્યક્રમમાંથી વિન્ડોના જૂથો કયારે પાડવા તે નક્કી કરે છે. \"ક્યારેય નહિ\", \"આપોઆપ\" "
|
||||
"અને \"હંમેશા\" તેની શક્ય કિંમતો છે."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:30
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "વિન્ડો જૂથ થઈ રહ્યુ છે"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:49
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "જૂથ વિન્ડો કદી નહિં"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "જૂથ વિન્ડો જ્યારે જગ્યા મર્યાદિત હોય"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: ../extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "હંમેશા જૂથ વિન્ડો"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "બધા મોનિટર પર બતાવો"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
#| msgid "Workspace names:"
|
||||
msgid "Workspace Names"
|
||||
msgstr "કામ કરવાની જગ્યાના નામો"
|
||||
|
||||
@@ -334,6 +308,18 @@ msgstr "નામ"
|
||||
msgid "Workspace %d"
|
||||
msgstr "કામ કરવાની જગ્યા %d"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "GNOME શેલ ક્લાસિક"
|
||||
|
||||
#~ msgid "Window management and application launching"
|
||||
#~ msgstr "વિન્ડો સંચાલન અને કાર્યક્રમ શરૂઆત"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "મેમરી"
|
||||
|
||||
#~ msgid "Suspend"
|
||||
#~ msgstr "અટકાવો"
|
||||
|
||||
|
||||
69
po/is.po
69
po/is.po
@@ -7,10 +7,10 @@ msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2015-01-15 08:36+0000\n"
|
||||
"PO-Revision-Date: 2015-01-26 13:42+0000\n"
|
||||
"POT-Creation-Date: 2015-12-04 22:18+0000\n"
|
||||
"PO-Revision-Date: 2015-12-05 12:20+0000\n"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
|
||||
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.org>\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -29,12 +29,14 @@ msgstr "Þessi seta skráir þig inn í klassískt GNOME"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr ""
|
||||
msgstr "Festa kvaðningarglugga við yfirglugga"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr ""
|
||||
"Þetta hefur forgang fram yfir lykilinn í kjörstillingum org.gnome.mutter "
|
||||
"þegar GNOME Skelin er keyrð."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
@@ -45,10 +47,12 @@ msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"Þetta hefur forgang fram yfir lykilinn í kjörstillingum "
|
||||
"org.gnome.desktop.wm.þegar GNOME Skelin er keyrð."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr ""
|
||||
msgstr "Virkja flísalögn við jaðra þegar gluggum er sleppt á skjájaðra"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
msgid "Workspaces only on primary monitor"
|
||||
@@ -57,6 +61,7 @@ msgstr "Vinnusvæði einungis á aðalskjá"
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr ""
|
||||
"Fresta breytingum á virkni í músarham þar til bendillinn hefur stöðvast"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
@@ -72,7 +77,7 @@ msgstr "Smámynd og táknmynd"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr ""
|
||||
msgstr "Birta glugga sem"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
@@ -82,11 +87,11 @@ msgstr "Birta eingöngu glugga á núverandi vinnusvæði"
|
||||
msgid "Activities Overview"
|
||||
msgstr "Virkniyfirlit"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:114
|
||||
#: ../extensions/apps-menu/extension.js:110
|
||||
msgid "Favorites"
|
||||
msgstr "Eftirlæti"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:283
|
||||
#: ../extensions/apps-menu/extension.js:279
|
||||
msgid "Applications"
|
||||
msgstr "Forrit"
|
||||
|
||||
@@ -99,6 +104,8 @@ msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"Listi yfir textastrengi, þar sem hver þeirra inniheldur forritsauðkenni "
|
||||
"(heiti skjáborðsskrár) að viðbættum tvípunkti og svo númeri vinnusvæðis"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
@@ -115,7 +122,7 @@ msgstr "Bæta við reglu"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr ""
|
||||
msgstr "Búa til nýja samsvörunarreglu"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
@@ -130,7 +137,7 @@ msgstr "Útspýting drifsins '%s' mistókst:"
|
||||
msgid "Removable devices"
|
||||
msgstr "Útskiptanleg tæki"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:151
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Opna skrá"
|
||||
|
||||
@@ -147,11 +154,15 @@ msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgstr ""
|
||||
"Ef þetta er ekki autt, inniheldur það textann sem birtist þegar smellt er á "
|
||||
"spjaldið."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Skilaboð"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
@@ -161,7 +172,7 @@ msgstr ""
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
msgid "Use more screen for windows"
|
||||
msgstr ""
|
||||
msgstr "Nota meira af skjánum fyrir glugga"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
@@ -208,14 +219,6 @@ msgstr "Flakka um net"
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Fletta í gegnum skjámyndastærðir"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "Örgjörvi"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Minni"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
msgstr "Heiti þema"
|
||||
@@ -224,52 +227,52 @@ msgstr "Heiti þema"
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Heiti á þema, hlaðið inn frá ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
#: ../extensions/window-list/extension.js:109
|
||||
msgid "Close"
|
||||
msgstr "Loka"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: ../extensions/window-list/extension.js:119
|
||||
msgid "Unminimize"
|
||||
msgstr "Endurheimta"
|
||||
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
msgid "Minimize"
|
||||
msgstr "Lágmarka"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: ../extensions/window-list/extension.js:126
|
||||
msgid "Unmaximize"
|
||||
msgstr "Minnka glugga"
|
||||
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
msgid "Maximize"
|
||||
msgstr "Hámarka"
|
||||
|
||||
#: ../extensions/window-list/extension.js:390
|
||||
#: ../extensions/window-list/extension.js:399
|
||||
msgid "Minimize all"
|
||||
msgstr "Lágmarka allt"
|
||||
|
||||
#: ../extensions/window-list/extension.js:398
|
||||
#: ../extensions/window-list/extension.js:407
|
||||
msgid "Unminimize all"
|
||||
msgstr "Endurheimta allt"
|
||||
|
||||
#: ../extensions/window-list/extension.js:406
|
||||
#: ../extensions/window-list/extension.js:415
|
||||
msgid "Maximize all"
|
||||
msgstr "Hámarka allt"
|
||||
|
||||
#: ../extensions/window-list/extension.js:415
|
||||
#: ../extensions/window-list/extension.js:424
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Minnka allt"
|
||||
|
||||
#: ../extensions/window-list/extension.js:424
|
||||
#: ../extensions/window-list/extension.js:433
|
||||
msgid "Close all"
|
||||
msgstr "Loka öllu"
|
||||
|
||||
#: ../extensions/window-list/extension.js:706
|
||||
#: ../extensions/window-list/extension.js:650
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Vinnusvæðavísir"
|
||||
|
||||
#: ../extensions/window-list/extension.js:869
|
||||
#: ../extensions/window-list/extension.js:809
|
||||
msgid "Window List"
|
||||
msgstr "Gluggalisti"
|
||||
|
||||
@@ -329,4 +332,8 @@ msgstr "Heiti"
|
||||
msgid "Workspace %d"
|
||||
msgstr "Vinnusvæði %d"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "Örgjörvi"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Minni"
|
||||
|
||||
86
po/lt.po
86
po/lt.po
@@ -9,8 +9,8 @@ msgstr ""
|
||||
"Project-Id-Version: lt\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2015-02-23 20:41+0000\n"
|
||||
"PO-Revision-Date: 2015-02-23 23:09+0200\n"
|
||||
"POT-Creation-Date: 2016-01-05 10:22+0000\n"
|
||||
"PO-Revision-Date: 2016-01-05 17:17+0200\n"
|
||||
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
|
||||
"Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n"
|
||||
"Language: lt\n"
|
||||
@@ -19,7 +19,7 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Gtranslator 2.91.6\n"
|
||||
"X-Generator: Poedit 1.8.6\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1
|
||||
#: ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
@@ -49,7 +49,7 @@ msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"Šis raktas padaro org.gnome.desktop.wm.preferences raktą neveiksniu "
|
||||
"Šis raktas padaro org.gnome.desktop.wm.preferences raktą neveiksniu, "
|
||||
"naudojant GNOME Shell."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
@@ -58,7 +58,7 @@ msgstr "Įjungti išplėtimą kraštuose nutempiant langus į ekrano kraštus"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Darbalaukiai tik pagrindiniame monitoriuje"
|
||||
msgstr "Darbo sritys tik pagrindiniame monitoriuje"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
@@ -82,31 +82,31 @@ msgstr "Pateikti langus kaip"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Rodyti tik dabartinio darbalaukio langus"
|
||||
msgstr "Rodyti tik dabartinės darbo srities langus"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: ../extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Veiklų apžvalga"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:114
|
||||
#: ../extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Mėgiamiausi"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:283
|
||||
#: ../extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Programos"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
msgid "Application and workspace list"
|
||||
msgstr "Programų ir darbalaukių sąrašas"
|
||||
msgstr "Programų ir darbo sričių sąrašas"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"Eilučių sąrašas, kur kiekviena turi programos id (darbastalio failo vardą), "
|
||||
"po jo dvitaškis ir darbalaukio numeris"
|
||||
"Eilučių sąrašas, kur kiekviena eilutė turi programos id (darbalaukio failo "
|
||||
"vardą), po jo dvitaškis ir darbo srities numeris"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
@@ -115,7 +115,7 @@ msgstr "Programa"
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "Darbalaukis"
|
||||
msgstr "Darbo sritis"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
@@ -138,7 +138,7 @@ msgstr "Laikmenos „%s“ išstūmimas nepavyko:"
|
||||
msgid "Removable devices"
|
||||
msgstr "Išimami įrenginiai"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:151
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Atverti failą"
|
||||
|
||||
@@ -161,6 +161,8 @@ msgstr ""
|
||||
msgid "Message"
|
||||
msgstr "Pranešimas"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
@@ -196,7 +198,7 @@ msgid ""
|
||||
"restarting the shell to have any effect."
|
||||
msgstr ""
|
||||
"Jei teigiama, patalpinti lango antraštes virš atitinkamos miniatiūros, "
|
||||
"nepaisant numatyto talpinimo apačioje. Pakeitus šiuos nustatymus reikės "
|
||||
"nepaisant numatyto talpinimo apačioje. Pakeitus šiuos nustatymus, reikės "
|
||||
"paleisti apvalkalą iš naujo."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
@@ -204,21 +206,21 @@ msgstr ""
|
||||
msgid "Places"
|
||||
msgstr "Vietos"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: ../extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Nepavyko paleisti „%s“"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: ../extensions/places-menu/placeDisplay.js:101
|
||||
#: ../extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Kompiuteris"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: ../extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Namų aplankas"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: ../extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Naršyti tinklą"
|
||||
|
||||
@@ -226,14 +228,6 @@ msgstr "Naršyti tinklą"
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Sukti ekranvaizdžių dydžius ratu"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Atmintis"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
msgstr "Temos pavadinimas"
|
||||
@@ -242,52 +236,52 @@ msgstr "Temos pavadinimas"
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Temos pavadinimas, kuri bus įkrauta iš ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:109
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Užverti"
|
||||
|
||||
#: ../extensions/window-list/extension.js:119
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "Grąžinti iš sumažinimo"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "Sumažinti"
|
||||
|
||||
#: ../extensions/window-list/extension.js:126
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "Grąžinti iš išdidinimo"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Išdidinti"
|
||||
|
||||
#: ../extensions/window-list/extension.js:396
|
||||
#: ../extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Sumažinti visus"
|
||||
|
||||
#: ../extensions/window-list/extension.js:404
|
||||
#: ../extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Grąžinti visus iš sumažinimo"
|
||||
|
||||
#: ../extensions/window-list/extension.js:412
|
||||
#: ../extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Išdidinti visus"
|
||||
|
||||
#: ../extensions/window-list/extension.js:421
|
||||
#: ../extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Grąžinti visus iš išdidinimo"
|
||||
|
||||
#: ../extensions/window-list/extension.js:430
|
||||
#: ../extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Užverti visus"
|
||||
|
||||
#: ../extensions/window-list/extension.js:647
|
||||
#: ../extensions/window-list/extension.js:661
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Darbalaukio indikatorius"
|
||||
msgstr "Darbo srities indikatorius"
|
||||
|
||||
#: ../extensions/window-list/extension.js:804
|
||||
#: ../extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Langų sąrašas"
|
||||
|
||||
@@ -337,7 +331,7 @@ msgstr "Rodyti visuose monitoriuose"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "Darbalaukių pavadinimai"
|
||||
msgstr "Darbo sričių pavadinimai"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
@@ -346,7 +340,13 @@ msgstr "Pavadinimas"
|
||||
#: ../extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Darbalaukis %d"
|
||||
msgstr "Darbo sritis %d"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Atmintis"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "Klasikinis GNOME Shell"
|
||||
|
||||
2
po/nb.po
2
po/nb.po
@@ -11,7 +11,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-12-31 00:49+0100\n"
|
||||
"Last-Translator: Åka Sikrom <a4@hush.com>\n"
|
||||
"Language-Team: Norwegian bokmål <i18n-nb@lister.ping.uio.no>\n"
|
||||
"Language: Norwegian bokmål\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
236
po/oc.po
236
po/oc.po
@@ -2,15 +2,16 @@
|
||||
# Copyright (C) 2011-12 Listed translators
|
||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||
# Cédric Valmary (Tot en òc) <cvalmary@yahoo.fr>, 2015.
|
||||
# Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>, 2016.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2013-09-27 14:18+0000\n"
|
||||
"PO-Revision-Date: 2015-05-18 16:36+0200\n"
|
||||
"Last-Translator: Cédric Valmary (Tot en òc) <cvalmary@yahoo.fr>\n"
|
||||
"Language-Team: Tot en òc (totenoc.eu)\n"
|
||||
"POT-Creation-Date: 2016-05-09 19:09+0000\n"
|
||||
"PO-Revision-Date: 2016-05-08 18:59+0200\n"
|
||||
"Last-Translator: Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>\n"
|
||||
"Language-Team: Tot En Òc\n"
|
||||
"Language: oc\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -26,15 +27,7 @@ msgstr "GNOME Classic"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:2
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "Aquesta sesilha vos connècta a GNOME Classic"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:1
|
||||
msgid "GNOME Shell Classic"
|
||||
msgstr "GNOME Shell Classic"
|
||||
|
||||
#: ../data/gnome-shell-classic.desktop.in.in.h:2
|
||||
msgid "Window management and application launching"
|
||||
msgstr "Gestion de las fenèstras e aviada d'aplicacions"
|
||||
msgstr "Aquesta session vos connècta a GNOME Classic"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
@@ -48,16 +41,28 @@ msgstr ""
|
||||
"cors d'execucion."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "òrdre dels botons dins la barra de títol"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"Aquesta clau remplaça la clau dins org.gnome.desktop.wm.preferences quand "
|
||||
"GNOME Shell es en cors d'execucion."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr ""
|
||||
"Activar la disposicion verticala quand las fenèstras son depausadas als "
|
||||
"bòrds de l'ecran"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Espacis de trabalh unicament sus l'ecran principal"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr ""
|
||||
"Retardar los cambiaments de focus en mòde mirga fins al moment que lo "
|
||||
@@ -75,23 +80,23 @@ msgstr "Icòna d'aplicacion solament"
|
||||
msgid "Thumbnail and application icon"
|
||||
msgstr "Vinheta e icòna d'aplicacion"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:37
|
||||
#: ../extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr "Presentar la fenèstra coma"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:62
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Afichar pas las fenèstras que sus l'espaci de trabalh actual"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: ../extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Vista d'ensemble de las activitats"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:113
|
||||
#: ../extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Favorits"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:282
|
||||
#: ../extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Aplicacions"
|
||||
|
||||
@@ -108,37 +113,37 @@ msgstr ""
|
||||
"d'aplicacion (nom de fichièr desktop), seguit per un dos-punts e lo numèro "
|
||||
"de l'espaci de trabalh"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:55
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "Aplicacion"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:64
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "Espaci de trabalh"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:80
|
||||
msgid "Add rule"
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
msgstr "Apondre una règla"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:94
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr "Crear una règla novèla de concordància"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:98
|
||||
#: ../extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
msgstr "Apondre"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:73
|
||||
#, javascript-format, javascript-format
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "L'ejeccion del disc « %s » a fracassat :"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:90
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "Periferics amovibles"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:117
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Dobrir lo fichièr"
|
||||
|
||||
@@ -155,23 +160,24 @@ msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgstr ""
|
||||
"S'es pas void, conten lo tèxte que s'aficha quand clicatz "
|
||||
"sul tablèu de bòrd."
|
||||
"S'es pas void, conten lo tèxte que s'aficha quand clicatz sul tablèu de bòrd."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Message"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
"Nevertheless it's possible to customize the greeting message."
|
||||
msgstr ""
|
||||
"Example a per tòca de far veire cossí bastir de bonas èxtensions pel Shell e "
|
||||
"Exemple a per tòca de far veire cossí bastir de bonas èxtensions pel Shell e "
|
||||
"en tant que tal, a pas tant de foncionalitats en se qu'aquò.\n"
|
||||
"Pasmens, es possible de personalizar lo messatge d'acuèlh."
|
||||
|
||||
#: ../extensions/example/prefs.js:36
|
||||
msgid "Message:"
|
||||
msgstr "Messatge :"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "Utilizar mai d'ecran per las fenèstras"
|
||||
@@ -182,10 +188,10 @@ msgid ""
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
msgstr ""
|
||||
"Ensaja d'utilizar mai d'espaci d'ecran per plaçar las vinhetas de las fenèstras "
|
||||
"en s'adaptant a las proporcions de l'ecran e en las consolidant mai per "
|
||||
"redusir la zòna englobanta. Aqueste paramètre s'aplica pas qu'en utilizant "
|
||||
"l'estrategia de plaçament « natural »."
|
||||
"Ensaja d'utilizar mai d'espaci d'ecran per plaçar las vinhetas de las "
|
||||
"fenèstras en s'adaptant a las proporcions de l'ecran e en las consolidant "
|
||||
"mai per reduire la zòna englobanta. Aqueste paramètre s'aplica pas qu'en "
|
||||
"utilizant l'estrategia de plaçament « natural »."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
msgid "Place window captions on top"
|
||||
@@ -206,31 +212,27 @@ msgstr ""
|
||||
msgid "Places"
|
||||
msgstr "Emplaçaments"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:56
|
||||
#, javascript-format, javascript-format
|
||||
#: ../extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Impossible d'aviar « %s »"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:98
|
||||
#: ../extensions/places-menu/placeDisplay.js:121
|
||||
#: ../extensions/places-menu/placeDisplay.js:101
|
||||
#: ../extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Ordenador"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:199
|
||||
#: ../extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Dorsièr personal"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:286
|
||||
#: ../extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Percórrer la ret"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Memòria"
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Passar a la talha de captura seguenta"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
msgid "Theme name"
|
||||
@@ -240,52 +242,52 @@ msgstr "Nom del tèma"
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Lo nom del tèma, de cargar a partir de ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:92
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Tampar"
|
||||
|
||||
#: ../extensions/window-list/extension.js:102
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "Restablir"
|
||||
|
||||
#: ../extensions/window-list/extension.js:103
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "Redusir"
|
||||
msgstr "Reduire"
|
||||
|
||||
#: ../extensions/window-list/extension.js:109
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "Restablir"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Maximizar"
|
||||
|
||||
#: ../extensions/window-list/extension.js:270
|
||||
#: ../extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Redusir tot"
|
||||
msgstr "Reduire tot"
|
||||
|
||||
#: ../extensions/window-list/extension.js:278
|
||||
#: ../extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Restablir tot"
|
||||
|
||||
#: ../extensions/window-list/extension.js:286
|
||||
#: ../extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Maximizar tot"
|
||||
|
||||
#: ../extensions/window-list/extension.js:295
|
||||
#: ../extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Restablir tot"
|
||||
|
||||
#: ../extensions/window-list/extension.js:304
|
||||
#: ../extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Tampar tot"
|
||||
|
||||
#: ../extensions/window-list/extension.js:591
|
||||
#: ../extensions/window-list/extension.js:661
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Indicator d'espaci de trabalh"
|
||||
|
||||
#: ../extensions/window-list/extension.js:743
|
||||
#: ../extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Lista de fenèstras"
|
||||
|
||||
@@ -302,35 +304,72 @@ msgstr ""
|
||||
"de las fenèstras. Las valors possiblas son « never » (pas jamai), « auto » e "
|
||||
"« always » (totjorn)."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:30
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:3
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "Afichar la lista de las fenèstras sus totes los ecrans"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:4
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
msgstr ""
|
||||
"Indica se cal afichar la lista de las fenèstras sus totes los ecrans "
|
||||
"connectats o solament l'ecran principal."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "Regropament de fenèstras"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:49
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "Regropar pas jamai las fenèstras"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "Regropar las fenèstras quand l'espaci es limitat"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: ../extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "Regropar totjorn las fenèstras"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace names:"
|
||||
msgstr "Noms dels espacis de trabalh :"
|
||||
#: ../extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "Afichar sus totes los ecrans"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:152
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "Noms dels espacis de trabalh"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:186
|
||||
#, javascript-format, javascript-format
|
||||
#: ../extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Espaci de trabalh %d"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "GNOME Shell Classic"
|
||||
|
||||
#~ msgid "Window management and application launching"
|
||||
#~ msgstr "Gestion de las fenèstras e aviada d'aplicacions"
|
||||
|
||||
#~ msgid "Add rule"
|
||||
#~ msgstr "Apondre una règla"
|
||||
|
||||
#~ msgid "Message:"
|
||||
#~ msgstr "Messatge :"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Memòria"
|
||||
|
||||
#~ msgid "Workspace names:"
|
||||
#~ msgstr "Noms dels espacis de trabalh :"
|
||||
|
||||
#~ msgid "Suspend"
|
||||
#~ msgstr "Metre en velha"
|
||||
|
||||
@@ -347,7 +386,7 @@ msgstr "Espaci de trabalh %d"
|
||||
#~ msgstr "Gerís la visibilitat de l'element de menú « mesa en velha »"
|
||||
|
||||
#~ msgid "Enable hibernating"
|
||||
#~ msgstr "Activer l'hibernation"
|
||||
#~ msgstr "Activar l'ivernacion"
|
||||
|
||||
#~ msgid "Control the visibility of the Hibernate menu item"
|
||||
#~ msgstr "Gerís la visibilitat de l'element de menú « ivernacion »"
|
||||
@@ -359,7 +398,7 @@ msgstr "Espaci de trabalh %d"
|
||||
#~ msgstr "Esquèrra"
|
||||
|
||||
#~ msgid "Right"
|
||||
#~ msgstr "Drecha"
|
||||
#~ msgstr "Dreita"
|
||||
|
||||
#~ msgid "Upside-down"
|
||||
#~ msgstr "Capvirat"
|
||||
@@ -369,38 +408,3 @@ msgstr "Espaci de trabalh %d"
|
||||
|
||||
#~ msgid "Display Settings"
|
||||
#~ msgstr "Afichar los paramètres"
|
||||
|
||||
#~ msgid "Arrangement of buttons on the titlebar"
|
||||
#~ msgstr "Ordre des boutons dans la barre de titre"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
#~ "GNOME Shell."
|
||||
#~ msgstr ""
|
||||
#~ "Cette clé remplace la clé dans org.gnome.desktop.wm.preferences lorsque "
|
||||
#~ "GNOME Shell est en cours d'exécution."
|
||||
|
||||
#~ msgid "Add Rule"
|
||||
#~ msgstr "Ajouter une règle"
|
||||
|
||||
#~ msgid "Message"
|
||||
#~ msgstr "Message"
|
||||
|
||||
#~ msgid "Cycle Screenshot Sizes"
|
||||
#~ msgstr "Passer à la taille de capture suivante"
|
||||
|
||||
#~ msgid "Show the window list on all monitors"
|
||||
#~ msgstr "Afficher la liste des fenêtres sur tous les écrans"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Whether to show the window list on all connected monitors or only on the "
|
||||
#~ "primary one."
|
||||
#~ msgstr ""
|
||||
#~ "Indique s'il faut afficher la liste des fenêtres sur tous les écrans "
|
||||
#~ "connectés ou seulement l'écran principal."
|
||||
|
||||
#~ msgid "Show on all monitors"
|
||||
#~ msgstr "Afficher sur tous les écrans"
|
||||
|
||||
#~ msgid "Workspace Names"
|
||||
#~ msgstr "Noms des espaces de travail"
|
||||
|
||||
196
po/pl.po
196
po/pl.po
@@ -1,204 +1,202 @@
|
||||
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
||||
# Aviary.pl
|
||||
# Jeśli masz jakiekolwiek uwagi odnoszące się do tłumaczenia lub chcesz
|
||||
# pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas:
|
||||
# gnomepl@aviary.pl
|
||||
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2011-2015.
|
||||
# Aviary.pl <gnomepl@aviary.pl>, 2011-2015.
|
||||
# Polish translation for gnome-shell-extensions.
|
||||
# Copyright © 2011-2016 the gnome-shell-extensions authors.
|
||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2011-2016.
|
||||
# Aviary.pl <community-poland@mozilla.org>, 2011-2016.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-08-24 16:18+0200\n"
|
||||
"PO-Revision-Date: 2015-08-24 16:19+0200\n"
|
||||
"POT-Creation-Date: 2016-08-29 23:17+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 02:54+0200\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Polish <gnomepl@aviary.pl>\n"
|
||||
"Language-Team: Polish <community-poland@mozilla.org>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-Language: Polish\n"
|
||||
"X-Poedit-Country: Poland\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1
|
||||
#: ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
|
||||
msgid "GNOME Classic"
|
||||
msgstr "Klasyczne GNOME"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:2
|
||||
#: data/gnome-classic.desktop.in:4
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "Ta sesja loguje do klasycznego środowiska GNOME"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:7
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "Dołączanie modalnych okien dialogowych do okien nadrzędnych"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:8
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:25
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:33
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:41
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr ""
|
||||
"Ten klucz zastępuje klucz w „org.gnome.mutter”, kiedy uruchomiona jest "
|
||||
"Ten klucz zastępuje klucz w „org.gnome.mutter”, kiedy uruchomiona jest "
|
||||
"powłoka GNOME."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:16
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "Kolejność przycisków na pasku tytułowym"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:17
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"Ten klucz zastępuje klucz w „org.gnome.desktop.wm.preferences”, kiedy "
|
||||
"Ten klucz zastępuje klucz w „org.gnome.desktop.wm.preferences”, kiedy "
|
||||
"uruchomiona jest powłoka GNOME."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:24
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr ""
|
||||
"Włączenie kafelkowania przy krawędziach podczas przenoszenia okien do "
|
||||
"krawędzi ekranu"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:32
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Obszary robocze tylko na pierwszym monitorze"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:40
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr ""
|
||||
"Opóźnienie zmiany aktywności w trybie myszy do momentu, w którym kursor się "
|
||||
"Opóźnienie zmiany aktywności w trybie myszy do momentu, w którym kursor się "
|
||||
"zatrzymuje"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
#: extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
msgstr "Tylko miniatury"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:21
|
||||
#: extensions/alternate-tab/prefs.js:21
|
||||
msgid "Application icon only"
|
||||
msgstr "Tylko ikony programów"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:22
|
||||
#: extensions/alternate-tab/prefs.js:22
|
||||
msgid "Thumbnail and application icon"
|
||||
msgstr "Miniatura i ikona programu"
|
||||
msgstr "Miniatura i ikona programu"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:38
|
||||
#: extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr "Wyświetlanie okien jako"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
#: extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym"
|
||||
msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:38
|
||||
#: extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Ekran podglądu"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:109
|
||||
#: extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Ulubione"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:261
|
||||
#: extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Programy"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6
|
||||
msgid "Application and workspace list"
|
||||
msgstr "Lista programów i obszarów roboczych"
|
||||
msgstr "Lista programów i obszarów roboczych"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"Lista ciągów, każdy zawierający identyfikator programu (nazwę pliku ."
|
||||
"desktop) z przecinkiem i numerem obszaru roboczego"
|
||||
"desktop) z przecinkiem i numerem obszaru roboczego"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
#: extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "Program"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
#: extensions/auto-move-windows/prefs.js:69
|
||||
#: extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "Obszar roboczy"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
#: extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
msgstr "Dodaj regułę"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
#: extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr "Utwórz nową pasującą regułę"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:111
|
||||
#: extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#: extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "Wysunięcie napędu „%s” się nie powiodło:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
#: extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "Urządzenia wymienne"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
#: extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Otwórz plik"
|
||||
|
||||
#: ../extensions/example/extension.js:17
|
||||
#: extensions/example/extension.js:17
|
||||
msgid "Hello, world!"
|
||||
msgstr "Witaj, świecie!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:5
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "Alternatywny tekst powitalny."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:6
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgstr ""
|
||||
"Jeśli nie jest puste, to zawiera tekst wyświetlany po kliknięciu na panelu."
|
||||
"Jeśli nie jest puste, to zawiera tekst wyświetlany po kliknięciu panelu."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
#: extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Wiadomość"
|
||||
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: ../extensions/example/prefs.js:43
|
||||
#: extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
"Nevertheless it's possible to customize the greeting message."
|
||||
msgstr ""
|
||||
"Przykład, jak tworzyć poprawne rozszerzenia dla powłoki, posiadający jak "
|
||||
"Przykład, jak tworzyć poprawne rozszerzenia dla powłoki, mające jak "
|
||||
"najmniej własnych funkcji.\n"
|
||||
"Niemniej można dostosować wiadomość powitalną."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "Użycie więcej miejsca dla okien"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
msgstr ""
|
||||
"Próbuje użyć więcej miejsca do umieszczania miniatur okien przez "
|
||||
"zaadaptowanie formatu ekranu i zbliżenie ich do siebie. To ustawienie ma "
|
||||
"zaadaptowanie formatu ekranu i zbliżenie ich do siebie. To ustawienie ma "
|
||||
"wpływ tylko na naturalną strategię umieszczania okien."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
||||
msgid "Place window captions on top"
|
||||
msgstr "Umieszczanie podpisów okien na górze"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
@@ -209,107 +207,107 @@ msgstr ""
|
||||
"powłokę. Zmiana tego ustawienia wymaga ponownego uruchomienia powłoki, aby "
|
||||
"uwzględnić zmiany."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
#: extensions/places-menu/extension.js:78
|
||||
#: extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "Miejsca"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Uruchomienie „%s” się nie powiodło"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: extensions/places-menu/placeDisplay.js:101
|
||||
#: extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Komputer"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Katalog domowy"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Przeglądaj sieć"
|
||||
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Zmiana rozmiaru zrzutu ekranu"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
||||
msgid "Theme name"
|
||||
msgstr "Nazwa motywu"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Nazwa motywu do wczytania z katalogu ~/.themes/name/gnome-shell"
|
||||
msgstr "Nazwa motywu do wczytania z katalogu ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
#: extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "Cofnij minimalizację"
|
||||
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
#: extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "Zminimalizuj"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "Cofnij maksymalizację"
|
||||
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
#: extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Zmaksymalizuj"
|
||||
|
||||
#: ../extensions/window-list/extension.js:402
|
||||
#: extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Zminimalizuj wszystkie"
|
||||
|
||||
#: ../extensions/window-list/extension.js:410
|
||||
#: extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Cofnij minimalizację wszystkich"
|
||||
|
||||
#: ../extensions/window-list/extension.js:418
|
||||
#: extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Zmaksymalizuj wszystkie"
|
||||
|
||||
#: ../extensions/window-list/extension.js:427
|
||||
#: extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Cofnij maksymalizację wszystkich"
|
||||
|
||||
#: ../extensions/window-list/extension.js:436
|
||||
#: extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Zamknij wszystkie"
|
||||
|
||||
#: ../extensions/window-list/extension.js:655
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
#: extensions/window-list/extension.js:661
|
||||
#: extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Wskaźnik obszaru roboczego"
|
||||
|
||||
#: ../extensions/window-list/extension.js:814
|
||||
#: extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Lista okien"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
||||
msgid "When to group windows"
|
||||
msgstr "Kiedy grupować okna"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
msgstr ""
|
||||
"Określa, kiedy grupować okna tego samego programu na liście okien. Możliwe "
|
||||
"wartości to „never” (nigdy), „auto” (automatycznie) i „always” (zawsze)."
|
||||
"wartości to „never” (nigdy), „auto” (automatycznie) i „always” (zawsze)."
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:3
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "Wyświetlanie listy okien na wszystkich monitorach"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:4
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
@@ -317,35 +315,35 @@ msgstr ""
|
||||
"Określa, czy wyświetlać listę okien na wszystkich podłączonych monitorach, "
|
||||
"czy tylko na głównym."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
#: extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "Grupowanie okien"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "Bez grupowania okien"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "Grupowanie okien, kiedy miejsce jest ograniczone"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:52
|
||||
#: extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "Stałe grupowanie okien"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:75
|
||||
#: extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "Wyświetlanie na wszystkich monitorach"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
#: extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "Nazwy obszarów roboczych"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:157
|
||||
#: extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:198
|
||||
#: extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Obszar roboczy %d"
|
||||
msgstr "%d. obszar roboczy"
|
||||
|
||||
2
po/sl.po
2
po/sl.po
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-12-26 18:22+0100\n"
|
||||
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
|
||||
"Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n"
|
||||
"Language: sl_SI\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2015-03-05 22:45+0200\n"
|
||||
"Last-Translator: Miroslav Nikolić <miroslavnikolic@rocketmail.com>\n"
|
||||
"Language-Team: Serbian <gnom@prevod.org>\n"
|
||||
"Language: sr\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
2
po/tr.po
2
po/tr.po
@@ -14,7 +14,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2015-02-14 15:43+0000\n"
|
||||
"Last-Translator: Muhammet Kara <muhammetk@gmail.com>\n"
|
||||
"Language-Team: Türkçe <gnome-turk@gnome.org>\n"
|
||||
"Language: tr_TR\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
194
po/vi.po
194
po/vi.po
@@ -1,16 +1,16 @@
|
||||
# Vietnamese translation for gnome-shell-extensions.
|
||||
# Copyright © 2014 GNOME i18n Project for Vietnamese.
|
||||
# Copyright © 2016 GNOME i18n Project for Vietnamese.
|
||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||
# Nguyễn Thái Ngọc Duy <pclouds@gmail.com>, 2011.
|
||||
# Trần Ngọc Quân <vnwildman@gmail.com>, 2014.
|
||||
# Trần Ngọc Quân <vnwildman@gmail.com>, 2014, 2016.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2014-12-29 20:38+0000\n"
|
||||
"PO-Revision-Date: 2014-12-30 08:41+0700\n"
|
||||
"POT-Creation-Date: 2016-08-29 23:17+0000\n"
|
||||
"PO-Revision-Date: 2016-09-05 15:11+0700\n"
|
||||
"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <gnome-vi-list@gnome.org>\n"
|
||||
"Language: vi\n"
|
||||
@@ -18,32 +18,34 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Poedit 1.5.5\n"
|
||||
"X-Generator: Gtranslator 2.91.7\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1
|
||||
#: ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
|
||||
msgid "GNOME Classic"
|
||||
msgstr "GNOME cổ điển"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:2
|
||||
#: data/gnome-classic.desktop.in:4
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "Phiên làm việc này đăng nhập bạn vào GNOME Cổ điển"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:7
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "Gắn hộp thoại dạng luôn nằm trên cửa sổ mẹ"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:8
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:25
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:33
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:41
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr ""
|
||||
"Khóa này sẽ đè lên khóa có trong org.gnome.mutter khi chạy Hệ vỏ GNOME."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:16
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "Sắp xếp các nút trên thanh tiêu đề"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:17
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
@@ -51,105 +53,105 @@ msgstr ""
|
||||
"Khóa này sẽ đè lên khóa có trong org.gnome.desktop.wm.preferences khi đang "
|
||||
"chạy Hệ vỏ GNOME."
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:24
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr "Bật xếp lớp ở cạnh khi thả cửa sổ vào cạnh màn hình"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:32
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "Vùng làm việc chỉ ở trên màn hình chính"
|
||||
msgstr "Không gian làm việc chỉ ở trên màn hình chính"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:40
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr "Khoảng trễ chờ cho con chuột ngừng di chuyển"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
#: extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
msgstr "Chỉ ảnh nhỏ"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:21
|
||||
#: extensions/alternate-tab/prefs.js:21
|
||||
msgid "Application icon only"
|
||||
msgstr "Chỉ có ảnh nhỏ đại diện cho ứng dụng"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:22
|
||||
#: extensions/alternate-tab/prefs.js:22
|
||||
msgid "Thumbnail and application icon"
|
||||
msgstr "Ảnh thu nhỏ và biểu tượng của ứng dụng"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:38
|
||||
#: extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr "Cửa sổ hiện tại như là"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
#: extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "Chỉ hiển thị các cửa sổ trong vùng làm việc hiện tại"
|
||||
msgstr "Chỉ hiển thị các cửa sổ trong không gian làm việc hiện tại"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "Tổng quan hoạt động"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:114
|
||||
#: extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "Ưa thích"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:283
|
||||
#: extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "Ứng dụng"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6
|
||||
msgid "Application and workspace list"
|
||||
msgstr "Danh sách ứng dụng và vùng làm việc"
|
||||
msgstr "Danh sách ứng dụng và không gian làm việc"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"Một danh sách chuỗi, mỗi chuỗi là một mã số của ứng dụng (tên tập tin ."
|
||||
"desktop), theo sau là dấu hai chấm và mã số vùng làm việc"
|
||||
"desktop), theo sau là dấu hai chấm và mã số không gian làm việc"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
#: extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "Ứng dụng"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
#: extensions/auto-move-windows/prefs.js:69
|
||||
#: extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "Vùng làm việc"
|
||||
msgstr "Không gian làm việc"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
#: extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
msgstr "Thêm quy tắc"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
#: extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr "Tạo mới một quy tắc khớp mẫu"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:111
|
||||
#: extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
msgstr "Thêm"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#: extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "Gặp lỗi khi đẩy đĩa “%s” ra:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
#: extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "Đĩa di động"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:151
|
||||
#: extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "Mở tập tin"
|
||||
|
||||
#: ../extensions/example/extension.js:17
|
||||
#: extensions/example/extension.js:17
|
||||
msgid "Hello, world!"
|
||||
msgstr "Xin chào!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:5
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "Lời chào thay thế."
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:6
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
@@ -157,11 +159,13 @@ msgstr ""
|
||||
"Nếu không rỗng, nó sẽ chứa chữ mà chữ này sẽ được hiển thị khi bấm chuột "
|
||||
"trên bảng điều khiển."
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
#: extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "Thông báo"
|
||||
|
||||
#: ../extensions/example/prefs.js:43
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
@@ -171,11 +175,11 @@ msgstr ""
|
||||
"tốt cho Hệ vỏ và do vậy nó chỉ có một ít chức năng.\n"
|
||||
"Tuy thế nó có khả năng cá nhân hóa lời chào."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "Dùng nhiều màn hình cho các cửa sổ"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
@@ -185,11 +189,11 @@ msgstr ""
|
||||
"sửa cho thích hợp với tỷ lệ dạng màn hình, và hợp nhất chúng hơn nữa để giảm "
|
||||
"bớt ô hạn biên. Cài đặt này chỉ áp dụng với chiến lược sắp đặt tự nhiên."
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
||||
msgid "Place window captions on top"
|
||||
msgstr "Đặt thanh tiêu đề cửa sổ ở trên đỉnh"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
@@ -199,103 +203,95 @@ msgstr ""
|
||||
"đè lên cách ứng xử mặc định của hệ vỏ là ở dưới đáy.Những thay đổi này cần "
|
||||
"khởi động lại hệ vỏ để có tác dụng."
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78
|
||||
#: ../extensions/places-menu/extension.js:81
|
||||
#: extensions/places-menu/extension.js:78
|
||||
#: extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "Mở nhanh"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "Gặp lỗi khi khởi chạy \"%s\""
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: extensions/places-menu/placeDisplay.js:101
|
||||
#: extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "Máy tính"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "Thư mục riêng"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "Duyệt mạng"
|
||||
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr "Đổi kích thước cửa sổ để chụp màn hình"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:214
|
||||
msgid "CPU"
|
||||
msgstr "CPU"
|
||||
|
||||
#: ../extensions/systemMonitor/extension.js:267
|
||||
msgid "Memory"
|
||||
msgstr "Bộ nhớ"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
||||
msgid "Theme name"
|
||||
msgstr "Tên chủ đề"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "Tên chủ đề, được tải từ ~/.themes/name/gnome-shell"
|
||||
msgstr "Tên của chủ đề, được tải từ ~/.themes/name/gnome-shell"
|
||||
|
||||
#: ../extensions/window-list/extension.js:110
|
||||
#: extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "Đóng"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "Thôi thu nhỏ"
|
||||
|
||||
#: ../extensions/window-list/extension.js:121
|
||||
#: extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "Thu nhỏ"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "Thôi phóng lớn"
|
||||
|
||||
#: ../extensions/window-list/extension.js:128
|
||||
#: extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "Phóng to hết cỡ "
|
||||
msgstr "Phóng to hết cỡ"
|
||||
|
||||
#: ../extensions/window-list/extension.js:390
|
||||
#: extensions/window-list/extension.js:403
|
||||
msgid "Minimize all"
|
||||
msgstr "Thu nhỏ tất cả"
|
||||
|
||||
#: ../extensions/window-list/extension.js:398
|
||||
#: extensions/window-list/extension.js:411
|
||||
msgid "Unminimize all"
|
||||
msgstr "Thôi thu nhỏ tất cả"
|
||||
|
||||
#: ../extensions/window-list/extension.js:406
|
||||
#: extensions/window-list/extension.js:419
|
||||
msgid "Maximize all"
|
||||
msgstr "Phóng to tất cả"
|
||||
|
||||
#: ../extensions/window-list/extension.js:415
|
||||
#: extensions/window-list/extension.js:428
|
||||
msgid "Unmaximize all"
|
||||
msgstr "Thôi phóng to tất cả"
|
||||
|
||||
#: ../extensions/window-list/extension.js:424
|
||||
#: extensions/window-list/extension.js:437
|
||||
msgid "Close all"
|
||||
msgstr "Đóng tất cả"
|
||||
|
||||
#: ../extensions/window-list/extension.js:706
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
#: extensions/window-list/extension.js:661
|
||||
#: extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "Bộ chỉ thị vùng làm việc"
|
||||
msgstr "Bộ chỉ thị không gian làm việc"
|
||||
|
||||
#: ../extensions/window-list/extension.js:869
|
||||
#: extensions/window-list/extension.js:820
|
||||
msgid "Window List"
|
||||
msgstr "Danh sách cửa sổ"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
||||
msgid "When to group windows"
|
||||
msgstr "Khi nào thì nhóm các cửa sổ lại"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
@@ -303,11 +299,11 @@ msgstr ""
|
||||
"Quyết định khi nào thì nhóm các cửa sổ của cùng một ứng dụng trên danh sách "
|
||||
"cửa số. Các giá trị có thể là \"never\", \"auto\" và \"always\"."
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:3
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "Hiển thị danh sách cửa sổ ở mọi màn hình"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:4
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
@@ -315,38 +311,44 @@ msgstr ""
|
||||
"Có hiển thị danh sách cửa sổ trên mọi màn hình đã kết nối hay chỉ trên màn "
|
||||
"hình chính mà thôi."
|
||||
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
#: extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "Nhóm cửa sổ lại"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "Không bao giờ nhóm các cửa sổ lại với nhau"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "Nhóm các cửa sổ lại với nhau khi không đủ chỗ"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:52
|
||||
#: extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "Luôn nhóm các cửa sổ lại với nhau"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:75
|
||||
#: extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "Hiển thị trên mọi màn hình"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
#: extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "Tên vùng làm việc"
|
||||
msgstr "Tên không gian làm việc"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:157
|
||||
#: extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:198
|
||||
#: extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "Vùng làm việc %d"
|
||||
msgstr "Không gian làm việc %d"
|
||||
|
||||
#~ msgid "CPU"
|
||||
#~ msgstr "CPU"
|
||||
|
||||
#~ msgid "Memory"
|
||||
#~ msgstr "Bộ nhớ"
|
||||
|
||||
#~ msgid "GNOME Shell Classic"
|
||||
#~ msgstr "Hệ vỏ GNOME cổ điển"
|
||||
|
||||
264
po/zh_CN.po
264
po/zh_CN.po
@@ -11,316 +11,327 @@ msgstr ""
|
||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=extensions\n"
|
||||
"POT-Creation-Date: 2015-04-17 08:12+0000\n"
|
||||
"PO-Revision-Date: 2015-05-03 10:39+0800\n"
|
||||
"POT-Creation-Date: 2016-10-11 08:03+0000\n"
|
||||
"PO-Revision-Date: 2016-10-18 17:53+0800\n"
|
||||
"Last-Translator: YunQiang Su <wzssyqa@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: Poedit 1.7.6\n"
|
||||
"X-Generator: Poedit 1.8.9\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:1 ../data/gnome-classic.session.desktop.in.in.h:1
|
||||
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
|
||||
msgid "GNOME Classic"
|
||||
msgstr "GNOME 经典模式"
|
||||
|
||||
#: ../data/gnome-classic.desktop.in.h:2
|
||||
#: data/gnome-classic.desktop.in:4
|
||||
msgid "This session logs you into GNOME Classic"
|
||||
msgstr "该会话将登录到“GNOME 经典模式”"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:7
|
||||
msgid "Attach modal dialog to the parent window"
|
||||
msgstr "将模式对话框附着到父窗口"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
|
||||
msgid "This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:8
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:25
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:33
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:41
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
|
||||
msgstr "当运行 GNOME Shell 时该键会覆盖 org.gnome.mutter 中的键。"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:16
|
||||
msgid "Arrangement of buttons on the titlebar"
|
||||
msgstr "标题栏上按钮的排列"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:17
|
||||
msgid ""
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running GNOME "
|
||||
"Shell."
|
||||
msgstr "当运行 GNOME Shell 时该键会覆盖 org.gnome.desktop.wm.preferences 中的键。"
|
||||
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
|
||||
"GNOME Shell."
|
||||
msgstr ""
|
||||
"当运行 GNOME Shell 时该键会覆盖 org.gnome.desktop.wm.preferences 中的键。"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:24
|
||||
msgid "Enable edge tiling when dropping windows on screen edges"
|
||||
msgstr "启用将窗口拖拽到屏幕边缘时平铺显示的功能"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:32
|
||||
msgid "Workspaces only on primary monitor"
|
||||
msgstr "仅在主显示器上显示工作区"
|
||||
|
||||
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
|
||||
#: data/org.gnome.shell.extensions.classic-overrides.gschema.xml:40
|
||||
msgid "Delay focus changes in mouse mode until the pointer stops moving"
|
||||
msgstr "将鼠标模式下焦点的切换推迟到光标停止移动之后"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:20
|
||||
#: extensions/alternate-tab/prefs.js:20
|
||||
msgid "Thumbnail only"
|
||||
msgstr "仅缩略图"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:21
|
||||
#: extensions/alternate-tab/prefs.js:21
|
||||
msgid "Application icon only"
|
||||
msgstr "仅应用程序图标"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:22
|
||||
#: extensions/alternate-tab/prefs.js:22
|
||||
msgid "Thumbnail and application icon"
|
||||
msgstr "缩略图和应用程序图标"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:38
|
||||
#: extensions/alternate-tab/prefs.js:38
|
||||
msgid "Present windows as"
|
||||
msgstr "窗口展现为"
|
||||
|
||||
#: ../extensions/alternate-tab/prefs.js:69
|
||||
#: extensions/alternate-tab/prefs.js:69
|
||||
msgid "Show only windows in the current workspace"
|
||||
msgstr "仅显示当前工作区中的窗口"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:39
|
||||
#: extensions/apps-menu/extension.js:38
|
||||
msgid "Activities Overview"
|
||||
msgstr "活动概览"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:110
|
||||
#: extensions/apps-menu/extension.js:109
|
||||
msgid "Favorites"
|
||||
msgstr "收藏"
|
||||
|
||||
#: ../extensions/apps-menu/extension.js:279
|
||||
#: extensions/apps-menu/extension.js:266
|
||||
msgid "Applications"
|
||||
msgstr "应用程序"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:6
|
||||
msgid "Application and workspace list"
|
||||
msgstr "应用程序和工作区列表"
|
||||
|
||||
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||
#: extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml:7
|
||||
msgid ""
|
||||
"A list of strings, each containing an application id (desktop file name), followed by "
|
||||
"a colon and the workspace number"
|
||||
msgstr "一系列字符串,每个字符串包含一个应用程序标识(桌面文件名称)、冒号加工作区号"
|
||||
"A list of strings, each containing an application id (desktop file name), "
|
||||
"followed by a colon and the workspace number"
|
||||
msgstr ""
|
||||
"一系列字符串,每个字符串包含一个应用程序标识(桌面文件名称)、冒号加工作区号"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:60
|
||||
#: extensions/auto-move-windows/prefs.js:60
|
||||
msgid "Application"
|
||||
msgstr "应用程序"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:69
|
||||
#: ../extensions/auto-move-windows/prefs.js:127
|
||||
#: extensions/auto-move-windows/prefs.js:69
|
||||
#: extensions/auto-move-windows/prefs.js:127
|
||||
msgid "Workspace"
|
||||
msgstr "工作区"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:85
|
||||
#: extensions/auto-move-windows/prefs.js:85
|
||||
msgid "Add Rule"
|
||||
msgstr "添加规则"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:106
|
||||
#: extensions/auto-move-windows/prefs.js:106
|
||||
msgid "Create new matching rule"
|
||||
msgstr "创建新的匹配规则"
|
||||
|
||||
#: ../extensions/auto-move-windows/prefs.js:111
|
||||
#: extensions/auto-move-windows/prefs.js:111
|
||||
msgid "Add"
|
||||
msgstr "添加"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:106
|
||||
#: extensions/drive-menu/extension.js:106
|
||||
#, javascript-format
|
||||
msgid "Ejecting drive '%s' failed:"
|
||||
msgstr "弹出驱动器“%s”失败:"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:124
|
||||
#: extensions/drive-menu/extension.js:124
|
||||
msgid "Removable devices"
|
||||
msgstr "可移动设备"
|
||||
|
||||
#: ../extensions/drive-menu/extension.js:149
|
||||
#: extensions/drive-menu/extension.js:149
|
||||
msgid "Open File"
|
||||
msgstr "打开文件管理器"
|
||||
|
||||
#: ../extensions/example/extension.js:17
|
||||
#: extensions/example/extension.js:17
|
||||
msgid "Hello, world!"
|
||||
msgstr "Hello, world!"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:5
|
||||
msgid "Alternative greeting text."
|
||||
msgstr "替代的祝福语。"
|
||||
|
||||
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
|
||||
#: extensions/example/org.gnome.shell.extensions.example.gschema.xml:6
|
||||
msgid ""
|
||||
"If not empty, it contains the text that will be shown when clicking on the panel."
|
||||
"If not empty, it contains the text that will be shown when clicking on the "
|
||||
"panel."
|
||||
msgstr "如果不为空,所包含的文本会在点击面板时显示。"
|
||||
|
||||
#: ../extensions/example/prefs.js:30
|
||||
#: extensions/example/prefs.js:30
|
||||
msgid "Message"
|
||||
msgstr "消息"
|
||||
|
||||
#: ../extensions/example/prefs.js:43
|
||||
#. TRANSLATORS: Example is the name of the extension, should not be
|
||||
#. translated
|
||||
#: extensions/example/prefs.js:43
|
||||
msgid ""
|
||||
"Example aims to show how to build well behaved extensions for the Shell and as such "
|
||||
"it has little functionality on its own.\n"
|
||||
"Example aims to show how to build well behaved extensions for the Shell and "
|
||||
"as such it has little functionality on its own.\n"
|
||||
"Nevertheless it's possible to customize the greeting message."
|
||||
msgstr ""
|
||||
"示例意在展示如何为 Shell 创建良好工作的扩展,本身功能有限。\n"
|
||||
"尽管如此,它还是具备定制祝福语的功能。"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
||||
msgid "Use more screen for windows"
|
||||
msgstr "展现窗口时利用更多屏幕空间"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
||||
msgid ""
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen aspect "
|
||||
"ratio, and consolidating them further to reduce the bounding box. This setting "
|
||||
"applies only with the natural placement strategy."
|
||||
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||
"This setting applies only with the natural placement strategy."
|
||||
msgstr ""
|
||||
"尝试通过适应屏幕宽高比,以及相互组合以减少包围框,在摆放窗口缩略图时利用更多屏幕空间。"
|
||||
"此设置只应用于自然摆放策略。"
|
||||
"尝试通过适应屏幕宽高比,以及相互组合以减少包围框,在摆放窗口缩略图时利用更多"
|
||||
"屏幕空间。此设置只应用于自然摆放策略。"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
||||
msgid "Place window captions on top"
|
||||
msgstr "窗口说明文字在上"
|
||||
|
||||
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
||||
msgid ""
|
||||
"If true, place window captions on top the respective thumbnail, overriding shell "
|
||||
"default of placing it at the bottom. Changing this setting requires restarting the "
|
||||
"shell to have any effect."
|
||||
"If true, place window captions on top the respective thumbnail, overriding "
|
||||
"shell default of placing it at the bottom. Changing this setting requires "
|
||||
"restarting the shell to have any effect."
|
||||
msgstr ""
|
||||
"如果设置为 true,则将窗口说明文字放置在对应窗口的缩略图上方,而不是默认的下方。修改此"
|
||||
"设置需要重启 GNOME Shell 以使设置生效。"
|
||||
"如果设置为 true,则将窗口说明文字放置在对应窗口的缩略图上方,而不是默认的下"
|
||||
"方。修改此设置需要重启 GNOME Shell 以使设置生效。"
|
||||
|
||||
#: ../extensions/places-menu/extension.js:78 ../extensions/places-menu/extension.js:81
|
||||
#: extensions/places-menu/extension.js:78
|
||||
#: extensions/places-menu/extension.js:81
|
||||
msgid "Places"
|
||||
msgstr "位置"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:57
|
||||
#: extensions/places-menu/placeDisplay.js:59
|
||||
#, javascript-format
|
||||
msgid "Failed to launch \"%s\""
|
||||
msgstr "无法启动“%s”"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:99
|
||||
#: ../extensions/places-menu/placeDisplay.js:122
|
||||
#: extensions/places-menu/placeDisplay.js:101
|
||||
#: extensions/places-menu/placeDisplay.js:124
|
||||
msgid "Computer"
|
||||
msgstr "计算机"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:200
|
||||
#: extensions/places-menu/placeDisplay.js:267
|
||||
msgid "Home"
|
||||
msgstr "主文件夹"
|
||||
|
||||
#: ../extensions/places-menu/placeDisplay.js:287
|
||||
#: extensions/places-menu/placeDisplay.js:311
|
||||
msgid "Browse Network"
|
||||
msgstr "浏览网络"
|
||||
|
||||
#: ../extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml.in.h:1
|
||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
||||
msgid "Cycle Screenshot Sizes"
|
||||
msgstr ""
|
||||
msgstr "循环调整窗口截图大小"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
||||
msgid "Theme name"
|
||||
msgstr "主题名称"
|
||||
|
||||
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:6
|
||||
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||
msgstr "从 ~/.themes/name/gnome-shell 加载的主题名称"
|
||||
|
||||
#: ../extensions/window-list/extension.js:109
|
||||
#: extensions/window-list/extension.js:110
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: ../extensions/window-list/extension.js:119
|
||||
#: extensions/window-list/extension.js:120
|
||||
msgid "Unminimize"
|
||||
msgstr "取消最小化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:120
|
||||
#: extensions/window-list/extension.js:121
|
||||
msgid "Minimize"
|
||||
msgstr "最小化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:126
|
||||
#: extensions/window-list/extension.js:127
|
||||
msgid "Unmaximize"
|
||||
msgstr "取消最大化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:127
|
||||
#: extensions/window-list/extension.js:128
|
||||
msgid "Maximize"
|
||||
msgstr "最大化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:399
|
||||
#: extensions/window-list/extension.js:411
|
||||
msgid "Minimize all"
|
||||
msgstr "全部最小化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:407
|
||||
#: extensions/window-list/extension.js:419
|
||||
msgid "Unminimize all"
|
||||
msgstr "全部取消最小化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:415
|
||||
#: extensions/window-list/extension.js:427
|
||||
msgid "Maximize all"
|
||||
msgstr "全部最大化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:424
|
||||
#: extensions/window-list/extension.js:436
|
||||
msgid "Unmaximize all"
|
||||
msgstr "全部取消最大化"
|
||||
|
||||
#: ../extensions/window-list/extension.js:433
|
||||
#: extensions/window-list/extension.js:445
|
||||
msgid "Close all"
|
||||
msgstr "全部关闭"
|
||||
|
||||
#: ../extensions/window-list/extension.js:650
|
||||
#: ../extensions/workspace-indicator/extension.js:30
|
||||
#: extensions/window-list/extension.js:669
|
||||
#: extensions/workspace-indicator/extension.js:30
|
||||
msgid "Workspace Indicator"
|
||||
msgstr "工作区指示器"
|
||||
|
||||
#: ../extensions/window-list/extension.js:809
|
||||
#: extensions/window-list/extension.js:828
|
||||
msgid "Window List"
|
||||
msgstr "窗口列表"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
||||
msgid "When to group windows"
|
||||
msgstr "何时分组窗口"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
||||
msgid ""
|
||||
"Decides when to group windows from the same application on the window list. Possible "
|
||||
"values are \"never\", \"auto\" and \"always\"."
|
||||
"Decides when to group windows from the same application on the window list. "
|
||||
"Possible values are \"never\", \"auto\" and \"always\"."
|
||||
msgstr ""
|
||||
"决定何时对窗口列表上的同一应用的窗口进行分组。可用值有“never”(从不)、“auto”(自动)"
|
||||
"和“always”(总是)。"
|
||||
"决定何时对窗口列表上的同一应用的窗口进行分组。可用值有“never”(从"
|
||||
"不)、“auto”(自动)和“always”(总是)。"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:3
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
||||
msgid "Show the window list on all monitors"
|
||||
msgstr "在所有显示器上显示窗口列表"
|
||||
|
||||
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:4
|
||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:21
|
||||
msgid ""
|
||||
"Whether to show the window list on all connected monitors or only on the primary one."
|
||||
"Whether to show the window list on all connected monitors or only on the "
|
||||
"primary one."
|
||||
msgstr "是否在所有连接的显示器上显示窗口列表或仅在主显示器上显示。"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:32
|
||||
#: extensions/window-list/prefs.js:32
|
||||
msgid "Window Grouping"
|
||||
msgstr "窗口分组"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:50
|
||||
#: extensions/window-list/prefs.js:50
|
||||
msgid "Never group windows"
|
||||
msgstr "从不将窗口分组"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:51
|
||||
#: extensions/window-list/prefs.js:51
|
||||
msgid "Group windows when space is limited"
|
||||
msgstr "当空间有限时将窗口分组"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:52
|
||||
#: extensions/window-list/prefs.js:52
|
||||
msgid "Always group windows"
|
||||
msgstr "总是对窗口分组"
|
||||
|
||||
#: ../extensions/window-list/prefs.js:75
|
||||
#: extensions/window-list/prefs.js:75
|
||||
msgid "Show on all monitors"
|
||||
msgstr "在所有显示器上显示"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:141
|
||||
#: extensions/workspace-indicator/prefs.js:141
|
||||
msgid "Workspace Names"
|
||||
msgstr "工作区名称"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:157
|
||||
#: extensions/workspace-indicator/prefs.js:157
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#: ../extensions/workspace-indicator/prefs.js:198
|
||||
#: extensions/workspace-indicator/prefs.js:198
|
||||
#, javascript-format
|
||||
msgid "Workspace %d"
|
||||
msgstr "工作区 %d"
|
||||
@@ -380,12 +391,12 @@ msgstr "工作区 %d"
|
||||
#~ msgstr "应用程序图标模式。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Configures how the windows are shown in the switcher. Valid possibilities are "
|
||||
#~ "'thumbnail-only' (shows a thumbnail of the window), 'app-icon-only' (shows only "
|
||||
#~ "the application icon) or 'both'."
|
||||
#~ "Configures how the windows are shown in the switcher. Valid possibilities "
|
||||
#~ "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-"
|
||||
#~ "only' (shows only the application icon) or 'both'."
|
||||
#~ msgstr ""
|
||||
#~ "配置窗口在切换器中的显示方式。有效值包括“仅缩略图”(显示窗口的缩略图)、“仅应用程序图"
|
||||
#~ "标”(仅显示应用程序图标)或“全部”。"
|
||||
#~ "配置窗口在切换器中的显示方式。有效值包括“仅缩略图”(显示窗口的缩略图)、“仅"
|
||||
#~ "应用程序图标”(仅显示应用程序图标)或“全部”。"
|
||||
|
||||
#~ msgid "Drag here to add favorites"
|
||||
#~ msgstr "拖放到这里以添加收藏"
|
||||
@@ -403,7 +414,8 @@ msgstr "工作区 %d"
|
||||
#~ msgstr "Dock 位置"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets the position of the dock in the screen. Allowed values are 'right' or 'left'"
|
||||
#~ "Sets the position of the dock in the screen. Allowed values are 'right' "
|
||||
#~ "or 'left'"
|
||||
#~ msgstr "设置 Dock 在屏幕上的位置。允许的值有“右”或“左”。"
|
||||
|
||||
#~ msgid "Icon size"
|
||||
@@ -419,7 +431,8 @@ msgstr "工作区 %d"
|
||||
#~ msgstr "自动隐藏效果"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets the effect of the hide dock. Allowed values are 'resize', 'rescale' and 'move'"
|
||||
#~ "Sets the effect of the hide dock. Allowed values are 'resize', 'rescale' "
|
||||
#~ "and 'move'"
|
||||
#~ msgstr "设置隐藏 Dock 的效果。允许的值有“resize”、“rescale”和“move”"
|
||||
|
||||
#~ msgid "Autohide duration"
|
||||
@@ -432,7 +445,8 @@ msgstr "工作区 %d"
|
||||
#~ msgstr "显示器"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets monitor to display dock in. The default value (-1) is the primary monitor."
|
||||
#~ "Sets monitor to display dock in. The default value (-1) is the primary "
|
||||
#~ "monitor."
|
||||
#~ msgstr "设置显示 Dock 的显示器。默认值(-1)是主显示器。"
|
||||
|
||||
#~ msgid "%s is away."
|
||||
@@ -466,38 +480,40 @@ msgstr "工作区 %d"
|
||||
#~ "Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and "
|
||||
#~ "workspace_icons. See the configuration dialogs for details."
|
||||
#~ msgstr ""
|
||||
#~ "设置 Alt-Tab 行为。可取的值有:native(原生)、all_thumbnails(所有缩略图) 和 "
|
||||
#~ "workspace_icons(工作区内图标)。详情参阅配置对话框。"
|
||||
#~ "设置 Alt-Tab 行为。可取的值有:native(原生)、all_thumbnails(所有缩略图) "
|
||||
#~ "和 workspace_icons(工作区内图标)。详情参阅配置对话框。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This mode presents all applications from all workspaces in one selection list. "
|
||||
#~ "Instead of using the application icon of every window, it uses small thumbnails "
|
||||
#~ "resembling the window itself."
|
||||
#~ "This mode presents all applications from all workspaces in one selection "
|
||||
#~ "list. Instead of using the application icon of every window, it uses "
|
||||
#~ "small thumbnails resembling the window itself."
|
||||
#~ msgstr ""
|
||||
#~ "此模式将在一个选择列表中展示全部工作区中的所有应用程序。它使用小缩略图而非各窗口的"
|
||||
#~ "应用程序图标来代表窗口。"
|
||||
#~ "此模式将在一个选择列表中展示全部工作区中的所有应用程序。它使用小缩略图而非"
|
||||
#~ "各窗口的应用程序图标来代表窗口。"
|
||||
|
||||
#~ msgid "Workspace & Icons"
|
||||
#~ msgstr "工作区和图标"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This mode let's you switch between the applications of your current workspace and "
|
||||
#~ "gives you additionally the option to switch to the last used application of your "
|
||||
#~ "previous workspace. This is always the last symbol in the list and is segregated "
|
||||
#~ "by a separator/vertical line if available. \n"
|
||||
#~ "This mode let's you switch between the applications of your current "
|
||||
#~ "workspace and gives you additionally the option to switch to the last "
|
||||
#~ "used application of your previous workspace. This is always the last "
|
||||
#~ "symbol in the list and is segregated by a separator/vertical line if "
|
||||
#~ "available. \n"
|
||||
#~ "Every window is represented by its application icon."
|
||||
#~ msgstr ""
|
||||
#~ "此模式让您在当前工作区中的应用程序及上个工作区、上次使用的应用程序间切换。上次使用"
|
||||
#~ "这项总是列表中的最后一个符号,并以分隔符或竖线区别(若可能)。\n"
|
||||
#~ "此模式让您在当前工作区中的应用程序及上个工作区、上次使用的应用程序间切换。"
|
||||
#~ "上次使用这项总是列表中的最后一个符号,并以分隔符或竖线区别(若可能)。\n"
|
||||
#~ "每个窗口以其应用程序图标展示。"
|
||||
|
||||
#~ msgid "Move current selection to front before closing the popup"
|
||||
#~ msgstr "在关闭弹出界面前将当前选择移到前面"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The Alternate Tab can be used in different modes, that affect the way windows are "
|
||||
#~ "chosen and presented."
|
||||
#~ msgstr "Alternate Tab 有多种使用模式,所使用模式会影响窗口展示和选择的方式。"
|
||||
#~ "The Alternate Tab can be used in different modes, that affect the way "
|
||||
#~ "windows are chosen and presented."
|
||||
#~ msgstr ""
|
||||
#~ "Alternate Tab 有多种使用模式,所使用模式会影响窗口展示和选择的方式。"
|
||||
|
||||
#~ msgid "Removable Devices"
|
||||
#~ msgstr "可移动设备"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"PO-Revision-Date: 2014-08-19 20:22+0800\n"
|
||||
"Last-Translator: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>\n"
|
||||
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\n"
|
||||
"Language: zh_TW\n"
|
||||
"Language: zh_HK\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
11
settings.mk
11
settings.mk
@@ -1,10 +1,9 @@
|
||||
gschemas_in = $(gschemaname).gschema.xml.in
|
||||
gsettings_SCHEMAS = $(gschemaname).gschema.xml
|
||||
|
||||
@INTLTOOL_XML_NOMERGE_RULE@
|
||||
|
||||
gsettings_SCHEMAS = $(gschemas_in:.xml.in=.xml)
|
||||
%.desktop:%.desktop.in
|
||||
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
|
||||
|
||||
@GSETTINGS_RULES@
|
||||
|
||||
CLEANFILES += $(gschemas_in:.xml.in=.valid) $(gsettings_SCHEMAS)
|
||||
EXTRA_DIST += $(gschemas_in)
|
||||
CLEANFILES += $(gsettings_SCHEMAS:.xml=.valid)
|
||||
EXTRA_DIST += $(gsettings_SCHEMAS)
|
||||
|
||||
Reference in New Issue
Block a user