Compare commits

...

16 Commits

Author SHA1 Message Date
Giovanni Campagna 7cf25a3bc0 Bump version to 3.5.91
To go along GNOME Shell 3.5.91
2012-09-05 00:54:38 +02:00
Giovanni Campagna fdad0263ec various: update for gnome-shell changes
The panel changed the way it builds the buttons outside the system
status area.
- Update alternative-status-menu to the new way of accessing panel
  contents.
- Update apps-menu to the new way of adding items to the panel.
- Move places-menu to the left now that it is possible without hacks.
2012-09-05 00:50:35 +02:00
Giovanni Campagna c5181cda46 alternate-tab: make the highlight square again
Fixes a regression from a78a16b4a7
2012-09-05 00:50:35 +02:00
Giovanni Campagna 56f6eccc82 i18n: Updated Italian translation 2012-09-05 00:50:35 +02:00
Giovanni Campagna 6a74326a61 place-menu: use symbolic icons for places
This makes us more consisten with the other menus and with the sidebar
in Files.
Also, reduce the icon size to 16px, same as the other menus.
2012-09-05 00:50:35 +02:00
Giovanni Campagna 48d4956ee0 Port all extensions to the new symbolic icon handling
St.IconType was removed from master, St.Icon users are expected to add '-symbolic'
themselves.
2012-09-05 00:50:35 +02:00
Giovanni Campagna 0ab46d5c70 xrandr-indicator: port to 2012
Someone left this poor extension in the last century.
Port to GDBus, port to Lang.Class, port to addSettingsAction, port to new
symbolic icon handling.
2012-09-05 00:50:35 +02:00
Giovanni Campagna cd7d9aa2a4 Auto-move-windows: don't manage workspaces if they're not dynamic
The workspace management done by auto-move-windows is semi-dynamic,
in that it collects empty workspaces at the end, and ensures there
is always one free.
This is undesirable when the user explicitly choose static
workspaces in the tweak tool or in dconf-editor.
2012-09-05 00:50:35 +02:00
Giovanni Campagna ea3d27c311 SystemMonitor: left align the indicator container
MessageTray.actor now has ClutterBinLayout layout manager, so we need
to tell it esplicitly where to place us.
2012-09-05 00:50:35 +02:00
Piotr Drąg 6c050118f4 Updated Polish translation 2012-09-04 00:17:04 +02:00
Fran Diéguez dfb942f6fe Updated Galician translations 2012-08-30 04:16:23 +02:00
Matej Urbančič 262efe3c9e Updated Slovenian translation 2012-08-29 09:11:42 +02:00
Giovanni Campagna d1d099fbbf alternate-tab: don't crash if a window is not associated with an app
A dialog for which the parent application is closed may end up without
an app. In that case, show only the thumbnail, or if showing icons only,
show a missing icon.
2012-08-29 02:05:02 +02:00
Giovanni Campagna 45da997dd3 alternate-tab: don't assume that at least two windows exist
Initial selection would go out of the array bounds if only one window
existed.
2012-08-29 02:05:02 +02:00
Daniel Mustieles d91c949068 Updated Spanish translation 2012-08-25 12:07:40 +02:00
Piotr Drąg 5a028aab52 Updated Polish translation 2012-08-22 20:04:42 +02:00
16 changed files with 545 additions and 386 deletions
+11
View File
@@ -1,3 +1,14 @@
3.5.91
======
* various crashers were fixed in alternative-tab
* auto-move-windows now can be made to work with static workspaces
* place-menu is now on the left and uses symbolic icons like Files
* StIconType usage was removed from all extensions, after it was
removed in core
* systemMonitor, xrandr-indicator, apps-menu, places-menu,
alternative-status-menu were updated for the newer shell
* updated translations (es, gl, it, pl, sl)
3.5.90 3.5.90
====== ======
* alternate-tab has been reworked again, the old mode switch * alternate-tab has been reworked again, the old mode switch
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.5.90],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions]) AC_INIT([gnome-shell-extensions],[3.5.91],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
+20 -10
View File
@@ -149,10 +149,11 @@ const AltTabPopup = new Lang.Class({
this._appSwitcher.connect('item-entered', Lang.bind(this, this._windowEntered)); this._appSwitcher.connect('item-entered', Lang.bind(this, this._windowEntered));
// make the initial selection // make the initial selection
this._currentWindow = 0;
if (backward) if (backward)
this._select(windows.length - 1); this._select(this._previousWindow());
else else
this._select(1); this._select(this._nextWindow());
this.actor.opacity = 0; this.actor.opacity = 0;
this.actor.show(); this.actor.show();
@@ -362,17 +363,26 @@ const WindowIcon = new Lang.Class({
y_expand: true }); y_expand: true });
this._iconBin.add_actor(this.clone); this._iconBin.add_actor(this.clone);
this.appIcon = this.app.create_icon_texture(size / 2); if (this.app) {
this.appIcon.x_expand = this.appIcon.y_expand = true; this.appIcon = this.app.create_icon_texture(size / 2);
this.appIcon.x_align = Clutter.ActorAlign.END; this.appIcon.x_expand = this.appIcon.y_expand = true;
this.appIcon.y_align = Clutter.ActorAlign.END; this.appIcon.x_align = Clutter.ActorAlign.END;
this._iconBin.add_actor(this.appIcon); this.appIcon.y_align = Clutter.ActorAlign.END;
this._iconBin.add_actor(this.appIcon);
}
break; break;
case AppIconMode.APP_ICON_ONLY: case AppIconMode.APP_ICON_ONLY:
size = 96; size = 96;
this.appIcon = this.app.create_icon_texture(size); if (this.app) {
this.appIcon.x_expand = this.appIcon.y_expand = true; this.appIcon = this.app.create_icon_texture(size);
this.appIcon.x_expand = this.appIcon.y_expand = true;
} else {
this.appIcon = new St.Icon({ icon_name: 'icon-missing',
icon_size: size,
x_expand: true,
y_expand: true });
}
this._iconBin.add_actor(this.appIcon); this._iconBin.add_actor(this.appIcon);
} }
@@ -385,7 +395,7 @@ const WindowList = new Lang.Class({
Extends: AltTab.SwitcherList, Extends: AltTab.SwitcherList,
_init : function(windows, settings) { _init : function(windows, settings) {
this.parent(false); this.parent(true);
this.windows = windows; this.windows = windows;
this.icons = []; this.icons = [];
@@ -48,7 +48,7 @@ function init(metadata) {
} }
function enable() { function enable() {
let statusMenu = Main.panel._statusArea.userMenu; let statusMenu = Main.panel.statusArea.userMenu;
settings = Convenience.getSettings(); settings = Convenience.getSettings();
@@ -96,7 +96,7 @@ function enable() {
} }
function disable() { function disable() {
let statusMenu = Main.panel._statusArea.userMenu; let statusMenu = Main.panel.statusArea.userMenu;
let children = statusMenu.menu._getMenuItems(); let children = statusMenu.menu._getMenuItems();
let index = children.length; let index = children.length;
+2 -4
View File
@@ -38,7 +38,7 @@ const ApplicationsButton = new Lang.Class({
Extends: PanelMenu.SystemStatusButton, Extends: PanelMenu.SystemStatusButton,
_init: function() { _init: function() {
this.parent('start-here'); this.parent('start-here-symbolic');
this._appSys = Shell.AppSystem.get_default(); this._appSys = Shell.AppSystem.get_default();
this._installedChangedId = this._appSys.connect('installed-changed', Lang.bind(this, this._refresh)); this._installedChangedId = this._appSys.connect('installed-changed', Lang.bind(this, this._refresh));
@@ -99,9 +99,7 @@ let appsMenuButton;
function enable() { function enable() {
appsMenuButton = new ApplicationsButton(); appsMenuButton = new ApplicationsButton();
Main.panel._leftBox.insert_child_at_index(appsMenuButton.actor, 1); Main.panel.addToStatusArea('apps-menu', appsMenuButton, 1, 'left');
Main.panel._leftBox.child_set(appsMenuButton.actor, { y_fill : true } );
Main.panel._menus.addMenu(appsMenuButton.menu);
} }
function disable() { function disable() {
+68 -67
View File
@@ -87,75 +87,76 @@ function init() {
settings = Convenience.getSettings(); settings = Convenience.getSettings();
} }
function myCheckWorkspaces() {
let i;
let emptyWorkspaces = new Array(Main._workspaces.length);
for (i = 0; i < Main._workspaces.length; i++) {
let lastRemoved = Main._workspaces[i]._lastRemovedWindow;
if (lastRemoved &&
(lastRemoved.get_window_type() == Meta.WindowType.SPLASHSCREEN ||
lastRemoved.get_window_type() == Meta.WindowType.DIALOG ||
lastRemoved.get_window_type() == Meta.WindowType.MODAL_DIALOG))
emptyWorkspaces[i] = false;
else
emptyWorkspaces[i] = true;
}
let windows = global.get_window_actors();
for (i = 0; i < windows.length; i++) {
let win = windows[i];
if (win.get_meta_window().is_on_all_workspaces())
continue;
let workspaceIndex = win.get_workspace();
emptyWorkspaces[workspaceIndex] = false;
}
// If we don't have an empty workspace at the end, add one
if (!emptyWorkspaces[emptyWorkspaces.length -1]) {
global.screen.append_new_workspace(false, global.get_current_time());
emptyWorkspaces.push(false);
}
let activeWorkspaceIndex = global.screen.get_active_workspace_index();
let activeIsLast = activeWorkspaceIndex == global.screen.n_workspaces - 2;
let removingTrailWorkspaces = (emptyWorkspaces[activeWorkspaceIndex] &&
activeIsLast);
// Don't enter the overview when removing multiple empty workspaces at startup
let showOverview = (removingTrailWorkspaces &&
!emptyWorkspaces.every(function(x) { return x; }));
if (removingTrailWorkspaces) {
// "Merge" the empty workspace we are removing with the one at the end
Main.wm.blockAnimations();
}
// Delete other empty workspaces; do it from the end to avoid index changes
for (i = emptyWorkspaces.length - 2; i >= 0; i--) {
if (emptyWorkspaces[i])
global.screen.remove_workspace(Main._workspaces[i], global.get_current_time());
else
break;
}
if (removingTrailWorkspaces) {
global.screen.get_workspace_by_index(global.screen.n_workspaces - 1).activate(global.get_current_time());
Main.wm.unblockAnimations();
if (!Main.overview.visible && showOverview)
Main.overview.show();
}
Main._checkWorkspacesId = 0;
return false;
}
function enable() { function enable() {
prevCheckWorkspaces = Main._checkWorkspaces; prevCheckWorkspaces = Main._checkWorkspaces;
Main._checkWorkspaces = function() { if (Meta.prefs_get_dynamic_workspaces())
let i; Main._checkWorkspaces = myCheckWorkspaces;
let emptyWorkspaces = new Array(Main._workspaces.length);
for (i = 0; i < Main._workspaces.length; i++) {
let lastRemoved = Main._workspaces[i]._lastRemovedWindow;
if (lastRemoved &&
(lastRemoved.get_window_type() == Meta.WindowType.SPLASHSCREEN ||
lastRemoved.get_window_type() == Meta.WindowType.DIALOG ||
lastRemoved.get_window_type() == Meta.WindowType.MODAL_DIALOG))
emptyWorkspaces[i] = false;
else
emptyWorkspaces[i] = true;
}
let windows = global.get_window_actors();
for (i = 0; i < windows.length; i++) {
let win = windows[i];
if (win.get_meta_window().is_on_all_workspaces())
continue;
let workspaceIndex = win.get_workspace();
emptyWorkspaces[workspaceIndex] = false;
}
// If we don't have an empty workspace at the end, add one
if (!emptyWorkspaces[emptyWorkspaces.length -1]) {
global.screen.append_new_workspace(false, global.get_current_time());
emptyWorkspaces.push(false);
}
let activeWorkspaceIndex = global.screen.get_active_workspace_index();
let activeIsLast = activeWorkspaceIndex == global.screen.n_workspaces - 2;
let removingTrailWorkspaces = (emptyWorkspaces[activeWorkspaceIndex] &&
activeIsLast);
// Don't enter the overview when removing multiple empty workspaces at startup
let showOverview = (removingTrailWorkspaces &&
!emptyWorkspaces.every(function(x) { return x; }));
if (removingTrailWorkspaces) {
// "Merge" the empty workspace we are removing with the one at the end
Main.wm.blockAnimations();
}
// Delete other empty workspaces; do it from the end to avoid index changes
for (i = emptyWorkspaces.length - 2; i >= 0; i--) {
if (emptyWorkspaces[i])
global.screen.remove_workspace(Main._workspaces[i], global.get_current_time());
else
break;
}
if (removingTrailWorkspaces) {
global.screen.get_workspace_by_index(global.screen.n_workspaces - 1).activate(global.get_current_time());
Main.wm.unblockAnimations();
if (!Main.overview.visible && showOverview)
Main.overview.show();
}
Main._checkWorkspacesId = 0;
return false;
};
winMover = new WindowMover(); winMover = new WindowMover();
} }
+2 -3
View File
@@ -30,8 +30,7 @@ const DriveMenuItem = new Lang.Class({
this.addActor(this.label); this.addActor(this.label);
this.actor.label_actor = this.label; this.actor.label_actor = this.label;
let ejectIcon = new St.Icon({ icon_name: 'media-eject', let ejectIcon = new St.Icon({ icon_name: 'media-eject-symbolic',
icon_type: St.IconType.SYMBOLIC,
style_class: 'popup-menu-icon ' }); style_class: 'popup-menu-icon ' });
let ejectButton = new St.Button({ child: ejectIcon }); let ejectButton = new St.Button({ child: ejectIcon });
ejectButton.connect('clicked', Lang.bind(this, this._eject)); ejectButton.connect('clicked', Lang.bind(this, this._eject));
@@ -54,7 +53,7 @@ const DriveMenu = new Lang.Class({
Extends: PanelMenu.SystemStatusButton, Extends: PanelMenu.SystemStatusButton,
_init: function() { _init: function() {
this.parent('media-eject', _("Removable devices")); this.parent('media-eject-symbolic', _("Removable devices"));
this._manager = new PlaceDisplay.PlacesManager(); this._manager = new PlaceDisplay.PlacesManager();
this._updatedId = this._manager.connect('mounts-updated', Lang.bind(this, this._update)); this._updatedId = this._manager.connect('mounts-updated', Lang.bind(this, this._update));
-1
View File
@@ -141,7 +141,6 @@ Source.prototype = {
if (!this._iconUri) { if (!this._iconUri) {
iconBox.child = new St.Icon({ icon_name: 'avatar-default', iconBox.child = new St.Icon({ icon_name: 'avatar-default',
icon_type: St.IconType.FULLCOLOR,
icon_size: iconBox._size }); icon_size: iconBox._size });
} else { } else {
let textureCache = St.TextureCache.get_default(); let textureCache = St.TextureCache.get_default();
+38 -7
View File
@@ -1,6 +1,6 @@
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */ /* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
const Gdk = imports.gi.Gdk; const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib; const GLib = imports.gi.GLib;
const Lang = imports.lang; const Lang = imports.lang;
const Shell = imports.gi.Shell; const Shell = imports.gi.Shell;
@@ -19,14 +19,45 @@ const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension(); const Me = ExtensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience; const Convenience = Me.imports.convenience;
const PLACE_ICON_SIZE = 22; const PLACE_ICON_SIZE = 16;
function iconForPlace(place) {
let split = place.id.split(':');
let kind = split.shift();
let uri = split.join(':');
let gicon = new Gio.ThemedIcon({ name: 'folder-symbolic' });
switch(kind) {
case 'special':
switch(uri) {
case 'home':
gicon = new Gio.ThemedIcon({ name: 'user-home-symbolic' });
break;
case 'desktop':
// FIXME: There is no user-desktop-symbolic
gicon = new Gio.ThemedIcon({ name: 'folder-symbolic' });
break;
}
break;
case 'bookmark':
let info = Gio.File.new_for_uri(uri).query_info('standard::symbolic-icon', 0, null);
gicon = info.get_symbolic_icon(info);
break;
case 'mount':
gicon = place._mount.get_symbolic_icon();
break;
}
return new St.Icon({ gicon: gicon,
icon_size: PLACE_ICON_SIZE });
}
const PlacesMenu = new Lang.Class({ const PlacesMenu = new Lang.Class({
Name: 'PlacesMenu.PlacesMenu', Name: 'PlacesMenu.PlacesMenu',
Extends: PanelMenu.SystemStatusButton, Extends: PanelMenu.SystemStatusButton,
_init: function() { _init: function() {
this.parent('folder'); this.parent('folder-symbolic');
this.placesManager = new PlaceDisplay.PlacesManager(); this.placesManager = new PlaceDisplay.PlacesManager();
this.defaultItems = []; this.defaultItems = [];
@@ -66,7 +97,7 @@ const PlacesMenu = new Lang.Class({
for (let placeid = 0; placeid < this.defaultPlaces.length; placeid++) { for (let placeid = 0; placeid < this.defaultPlaces.length; placeid++) {
this.defaultItems[placeid] = new PopupMenu.PopupMenuItem(this.defaultPlaces[placeid].name); this.defaultItems[placeid] = new PopupMenu.PopupMenuItem(this.defaultPlaces[placeid].name);
let icon = this.defaultPlaces[placeid].iconFactory(PLACE_ICON_SIZE); let icon = iconForPlace(this.defaultPlaces[placeid]);
this.defaultItems[placeid].addActor(icon, { align: St.Align.END, span: -1 }); this.defaultItems[placeid].addActor(icon, { align: St.Align.END, span: -1 });
this.defaultItems[placeid].place = this.defaultPlaces[placeid]; this.defaultItems[placeid].place = this.defaultPlaces[placeid];
this.menu.addMenuItem(this.defaultItems[placeid]); this.menu.addMenuItem(this.defaultItems[placeid]);
@@ -82,7 +113,7 @@ const PlacesMenu = new Lang.Class({
for (let bookmarkid = 0; bookmarkid < this.bookmarks.length; bookmarkid++) { for (let bookmarkid = 0; bookmarkid < this.bookmarks.length; bookmarkid++) {
this.bookmarkItems[bookmarkid] = new PopupMenu.PopupMenuItem(this.bookmarks[bookmarkid].name); this.bookmarkItems[bookmarkid] = new PopupMenu.PopupMenuItem(this.bookmarks[bookmarkid].name);
let icon = this.bookmarks[bookmarkid].iconFactory(PLACE_ICON_SIZE); let icon = iconForPlace(this.bookmarks[bookmarkid]);
this.bookmarkItems[bookmarkid].addActor(icon, { align: St.Align.END, span: -1 }); this.bookmarkItems[bookmarkid].addActor(icon, { align: St.Align.END, span: -1 });
this.bookmarkItems[bookmarkid].place = this.bookmarks[bookmarkid]; this.bookmarkItems[bookmarkid].place = this.bookmarks[bookmarkid];
this._bookmarksSection.addMenuItem(this.bookmarkItems[bookmarkid]); this._bookmarksSection.addMenuItem(this.bookmarkItems[bookmarkid]);
@@ -97,7 +128,7 @@ const PlacesMenu = new Lang.Class({
for (let devid = 0; devid < this.devices.length; devid++) { for (let devid = 0; devid < this.devices.length; devid++) {
this.deviceItems[devid] = new PopupMenu.PopupMenuItem(this.devices[devid].name); this.deviceItems[devid] = new PopupMenu.PopupMenuItem(this.devices[devid].name);
let icon = this.devices[devid].iconFactory(PLACE_ICON_SIZE); let icon = iconForPlace(this.devices[devid]);
this.deviceItems[devid].addActor(icon, { align: St.Align.END, span: -1 }); this.deviceItems[devid].addActor(icon, { align: St.Align.END, span: -1 });
this.deviceItems[devid].place = this.devices[devid]; this.deviceItems[devid].place = this.devices[devid];
this._devicesMenuItem.menu.addMenuItem(this.deviceItems[devid]); this._devicesMenuItem.menu.addMenuItem(this.deviceItems[devid]);
@@ -131,7 +162,7 @@ let _indicator;
function enable() { function enable() {
_indicator = new PlacesMenu; _indicator = new PlacesMenu;
Main.panel.addToStatusArea('places-menu', _indicator); Main.panel.addToStatusArea('places-menu', _indicator, 1, 'left');
} }
function disable() { function disable() {
+3 -1
View File
@@ -301,7 +301,9 @@ const Extension = new Lang.Class({
}, },
enable: function() { enable: function() {
this._box = new St.BoxLayout({ style_class: 'extension-systemMonitor-container' }); this._box = new St.BoxLayout({ style_class: 'extension-systemMonitor-container',
x_align: Clutter.ActorAlign.START,
x_expand: true });
this._indicators = [ ]; this._indicators = [ ];
for (let i = 0; i < INDICATORS.length; i++) { for (let i = 0; i < INDICATORS.length; i++) {
+15 -20
View File
@@ -1,7 +1,7 @@
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */ /* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
const DBus = imports.dbus;
const Gdk = imports.gi.Gdk; const Gdk = imports.gi.Gdk;
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib; const GLib = imports.gi.GLib;
const GnomeDesktop = imports.gi.GnomeDesktop; const GnomeDesktop = imports.gi.GnomeDesktop;
const Lang = imports.lang; const Lang = imports.lang;
@@ -33,25 +33,23 @@ let rotations = [ [ GnomeDesktop.RRRotation.ROTATION_0, N_("Normal") ],
[ GnomeDesktop.RRRotation.ROTATION_180, N_("Upside-down") ] [ GnomeDesktop.RRRotation.ROTATION_180, N_("Upside-down") ]
]; ];
const XRandr2Iface = { const XRandr2Iface = <interface name='org.gnome.SettingsDaemon.XRANDR_2'>
name: 'org.gnome.SettingsDaemon.XRANDR_2', <method name='ApplyConfiguration'>
methods: [ <arg type='x' direction='in'/>
{ name: 'ApplyConfiguration', inSignature: 'xx', outSignature: '' }, <arg type='x' direction='in'/>
] </method>
}; </interface>;
let XRandr2 = DBus.makeProxyClass(XRandr2Iface);
function Indicator() { const XRandr2 = Gio.DBusProxy.makeProxyWrapper(XRandr2Iface);
this._init.apply(this, arguments);
}
Indicator.prototype = { const Indicator = new Lang.Class({
__proto__: PanelMenu.SystemStatusButton.prototype, Name: 'XRandRIndicator',
Extends: PanelMenu.SystemStatusButton,
_init: function() { _init: function() {
PanelMenu.SystemStatusButton.prototype._init.call(this, 'preferences-desktop-display'); this.parent('preferences-desktop-display-symbolic', _("Display"));
this._proxy = new XRandr2(DBus.session, 'org.gnome.SettingsDaemon', '/org/gnome/SettingsDaemon/XRANDR'); this._proxy = new XRandr2(Gio.DBus.session, 'org.gnome.SettingsDaemon', '/org/gnome/SettingsDaemon/XRANDR');
try { try {
this._screen = new GnomeDesktop.RRScreen({ gdk_screen: Gdk.Screen.get_default() }); this._screen = new GnomeDesktop.RRScreen({ gdk_screen: Gdk.Screen.get_default() });
@@ -79,9 +77,7 @@ Indicator.prototype = {
this._addOutputItem(config, outputs[i]); this._addOutputItem(config, outputs[i]);
} }
this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
this.menu.addAction(_("Configure display settings..."), function() { this.menu.addSettingsAction(_("Display Settings"), 'gnome-display-panel.desktop');
GLib.spawn_command_line_async('gnome-control-center display');
});
}, },
_addOutputItem: function(config, output) { _addOutputItem: function(config, output) {
@@ -137,8 +133,7 @@ Indicator.prototype = {
} }
return retval; return retval;
} }
} });
function init(metadata) { function init(metadata) {
Convenience.initTranslations(); Convenience.initTranslations();
+10 -6
View File
@@ -11,8 +11,8 @@ msgstr ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "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: 2012-08-18 00:42+0000\n" "POT-Creation-Date: 2012-08-22 14:21+0000\n"
"PO-Revision-Date: 2012-08-25 12:01+0200\n" "PO-Revision-Date: 2012-08-25 12:01+0200\n"
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n" "Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
"Language-Team: Español <gnome-es-list@gnome.org>\n" "Language-Team: Español <gnome-es-list@gnome.org>\n"
@@ -23,7 +23,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Gtranslator 2.91.5\n" "X-Generator: Gtranslator 2.91.5\n"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "The application icon mode." msgid "The application icon mode."
msgstr "El modo de icono de la aplicación." msgstr "El modo de icono de la aplicación."
@@ -39,17 +38,14 @@ msgstr ""
"icon-only» (sólo muestra el icono de la aplicación) o «both» (se muestran " "icon-only» (sólo muestra el icono de la aplicación) o «both» (se muestran "
"ambas cosas)." "ambas cosas)."
#: ../extensions/alternate-tab/prefs.js:26
#: ../extensions/alternate-tab/prefs.js:26 #: ../extensions/alternate-tab/prefs.js:26
msgid "Thumbnail only" msgid "Thumbnail only"
msgstr "Sólo miniaturas" msgstr "Sólo miniaturas"
#: ../extensions/alternate-tab/prefs.js:27
#: ../extensions/alternate-tab/prefs.js:27 #: ../extensions/alternate-tab/prefs.js:27
msgid "Application icon only" msgid "Application icon only"
msgstr "Sólo icono de la aplicación" msgstr "Sólo icono de la aplicación"
#: ../extensions/alternate-tab/prefs.js:28
#: ../extensions/alternate-tab/prefs.js:28 #: ../extensions/alternate-tab/prefs.js:28
msgid "Thumbnail and application icon" msgid "Thumbnail and application icon"
msgstr "Miniatura e icono de la aplicación" msgstr "Miniatura e icono de la aplicación"
@@ -293,6 +289,14 @@ msgstr ""
#: ../extensions/places-menu/extension.js:39 #: ../extensions/places-menu/extension.js:39
msgid "Removable Devices" msgid "Removable Devices"
msgstr "Dispositivos extraíbles" msgstr "Dispositivos extraíbles"
#: ../extensions/systemMonitor/extension.js:213
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:266
msgid "Memory"
msgstr "Memoria"
#: ../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.in.h:1
msgid "Theme name" msgid "Theme name"
+96 -57
View File
@@ -9,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-30 16:43+0200\n" "POT-Creation-Date: 2012-08-30 04:14+0200\n"
"PO-Revision-Date: 2012-04-30 16:42+0200\n" "PO-Revision-Date: 2012-08-30 04:16+0200\n"
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n" "Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"
"Language-Team: Galician <gnome-l10n-gl@gnome.org>\n" "Language-Team: Galician <gnome-l10n-gl@gnome.org>\n"
"Language: gl\n" "Language: gl\n"
@@ -18,64 +18,41 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n"
"X-Generator: Gtranslator 2.91.5\n"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "The alt tab behaviour." msgid "The application icon mode."
msgstr "O comportamento de Alt+Tab" msgstr "O modo da icona do aplicativo."
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
msgid "" msgid ""
"Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and " "Configures how the windows are shown in the switcher. Valid possibilities "
"workspace_icons. See the configuration dialogs for details." "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-"
"only' (shows only the application icon) or 'both'."
msgstr "" msgstr ""
"Estabelece o comportamento do Alt+Tab. Os valores posbeis son: " "Configura como se mostran as xanelas no intercambiador. As opcións posíbeis "
"«native» (nativo), «all_thumbnails» (todo e miniaturas) e " "son «thumbnail-only» (mostra unha miniatura da xanela, «app-icon-only» (só "
"«worspace_icons» (iconas de áreas de traballo). Para obter información máis " "mostra a icona do aplicativo) ou «both» (móstranse ambas cosas)."
"detallada, consulte a configuración dos diálogos."
#: ../extensions/alternate-tab/prefs.js:26
msgid "Thumbnail only"
msgstr "Só miniaturas"
#: ../extensions/alternate-tab/prefs.js:27 #: ../extensions/alternate-tab/prefs.js:27
msgid "All & Thumbnails" msgid "Application icon only"
msgstr "Todo e miniaturas" msgstr "Só icona do aplicativo"
#: ../extensions/alternate-tab/prefs.js:28 #: ../extensions/alternate-tab/prefs.js:28
msgid "" msgid "Thumbnail and application icon"
"This mode presents all applications from all workspaces in one selection " msgstr "Miniatura e icona do aplicativo"
"list. Instead of using the application icon of every window, it uses small "
"thumbnails resembling the window itself."
msgstr ""
"Este modo presenta todos os aplicativos de todas as áreas de traballo nunha "
"lista de selección. No lugar de usar a icona de aplicativo de cada xanela, "
"usa pequenas miniaturas que semellan a propia xanela."
#: ../extensions/alternate-tab/prefs.js:34 #: ../extensions/alternate-tab/prefs.js:43
msgid "Workspace & Icons" msgid "Present windows as"
msgstr "Espazos de traballo e iconas" msgstr "Presentar xanelas como"
#: ../extensions/alternate-tab/prefs.js:35 #: ../extensions/alternate-tab/prefs.js:68
msgid "" msgid "Show only windows in the current workspace"
"This mode let's you switch between the applications of your current " msgstr "Mostrar só as xanelas na área de traballo actual"
"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 ""
"Este modo permítelle alternar entre os aplicativos da súa área de traballo "
"actual e dálle a opción de cambiar ao último aplicativo empregada da súa "
"área de traballo anterior. Este sempre é o último símbolo da lista e está "
"separado por un separador/liña vertical se está dispoñíbel.\n"
"Cada xanela está representada pola súa icona de aplicativo."
#: ../extensions/alternate-tab/prefs.js:41
msgid "Move current selection to front before closing the popup"
msgstr "Mover a selección actual ao frente antes de pechar a xanela emerxente"
#: ../extensions/alternate-tab/prefs.js:58
msgid ""
"The Alternate Tab can be used in different modes, that affect the way "
"windows are chosen and presented."
msgstr ""
"A combinación de teclas Alt+Tab pódese usar en diferentes modos, que afectan "
"á maneira na que se elixen e presentan as xanelas."
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:68 #: ../extensions/alternative-status-menu/extension.js:68
@@ -87,8 +64,8 @@ msgid "Hibernate"
msgstr "Hibernar" msgstr "Hibernar"
#: ../extensions/alternative-status-menu/extension.js:78 #: ../extensions/alternative-status-menu/extension.js:78
msgid "Power Off..." msgid "Power Off"
msgstr "Apagar" msgstr "Apagar"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:1 #: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:1
msgid "Enable suspending" msgid "Enable suspending"
@@ -139,23 +116,23 @@ msgstr "Crear regra de coincidencia nova"
msgid "Add" msgid "Add"
msgstr "Engadir" msgstr "Engadir"
#: ../extensions/dock/extension.js:577 #: ../extensions/dock/extension.js:600
msgid "Drag here to add favorites" msgid "Drag here to add favorites"
msgstr "Arrastre aquí para engadir aos favoritos" msgstr "Arrastre aquí para engadir aos favoritos"
#: ../extensions/dock/extension.js:903 #: ../extensions/dock/extension.js:926
msgid "New Window" msgid "New Window"
msgstr "Nova xanela" msgstr "Nova xanela"
#: ../extensions/dock/extension.js:905 #: ../extensions/dock/extension.js:928
msgid "Quit Application" msgid "Quit Application"
msgstr "Saír do aplicativo" msgstr "Saír do aplicativo"
#: ../extensions/dock/extension.js:910 #: ../extensions/dock/extension.js:933
msgid "Remove from Favorites" msgid "Remove from Favorites"
msgstr "Eliminar dos favoritos" msgstr "Eliminar dos favoritos"
#: ../extensions/dock/extension.js:911 #: ../extensions/dock/extension.js:934
msgid "Add to Favorites" msgid "Add to Favorites"
msgstr "Engadir aos favoritos" msgstr "Engadir aos favoritos"
@@ -215,7 +192,11 @@ msgstr ""
"Estabelece a pantalla na que mostrar o taboleiro. O valor predeterminado es " "Estabelece a pantalla na que mostrar o taboleiro. O valor predeterminado es "
"(-1), que é a pantalla principal." "(-1), que é a pantalla principal."
#: ../extensions/drive-menu/extension.js:66 #: ../extensions/drive-menu/extension.js:57
msgid "Removable devices"
msgstr "Dispositivos extraíbeis"
#: ../extensions/drive-menu/extension.js:68
msgid "Open file manager" msgid "Open file manager"
msgstr "Abrir o xestor de ficheiros" msgstr "Abrir o xestor de ficheiros"
@@ -298,10 +279,18 @@ msgstr ""
"respectiva, omitindo a disposición inferior por omisión do shell. Se cambia " "respectiva, omitindo a disposición inferior por omisión do shell. Se cambia "
"esta configuración deberá reiniciar o shell para que se apliquen os cambios." "esta configuración deberá reiniciar o shell para que se apliquen os cambios."
#: ../extensions/places-menu/extension.js:37 #: ../extensions/places-menu/extension.js:39
msgid "Removable Devices" msgid "Removable Devices"
msgstr "Dispositivos extraíbeis" msgstr "Dispositivos extraíbeis"
#: ../extensions/systemMonitor/extension.js:213
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:266
msgid "Memory"
msgstr "Memoria"
#: ../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.in.h:1
msgid "Theme name" msgid "Theme name"
msgstr "Nome do tema" msgstr "Nome do tema"
@@ -347,6 +336,56 @@ msgstr "Co de arriba cara abaixo"
msgid "Configure display settings..." msgid "Configure display settings..."
msgstr "Configurar as preferencias de pantalla…" msgstr "Configurar as preferencias de pantalla…"
#~ msgid "The alt tab behaviour."
#~ msgstr "O comportamento de Alt+Tab"
#~ msgid ""
#~ "Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and "
#~ "workspace_icons. See the configuration dialogs for details."
#~ msgstr ""
#~ "Estabelece o comportamento do Alt+Tab. Os valores posíbeis son: "
#~ "«native» (nativo), «all_thumbnails» (todo e miniaturas) e "
#~ "«worspace_icons» (iconas de áreas de traballo). Para obter información "
#~ "máis detallada, consulte a configuración dos diálogos."
#~ 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."
#~ msgstr ""
#~ "Este modo presenta todos os aplicativos de todas as áreas de traballo "
#~ "nunha lista de selección. No lugar de usar a icona de aplicativo de cada "
#~ "xanela, usa pequenas miniaturas que semellan a propia xanela."
#~ msgid "Workspace & Icons"
#~ msgstr "Espazos de traballo e iconas"
#~ 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"
#~ "Every window is represented by its application icon."
#~ msgstr ""
#~ "Este modo permítelle alternar entre os aplicativos da súa área de "
#~ "traballo actual e dálle a opción de cambiar ao último aplicativo "
#~ "empregada da súa área de traballo anterior. Este sempre é o último "
#~ "símbolo da lista e está separado por un separador/liña vertical se está "
#~ "dispoñíbel.\n"
#~ "Cada xanela está representada pola súa icona de aplicativo."
#~ msgid "Move current selection to front before closing the popup"
#~ msgstr ""
#~ "Mover a selección actual ao frente antes de pechar a xanela emerxente"
#~ msgid ""
#~ "The Alternate Tab can be used in different modes, that affect the way "
#~ "windows are chosen and presented."
#~ msgstr ""
#~ "A combinación de teclas Alt+Tab pódese usar en diferentes modos, que "
#~ "afectan á maneira na que se elixen e presentan as xanelas."
#~ msgid "Notifications" #~ msgid "Notifications"
#~ msgstr "Notificacións" #~ msgstr "Notificacións"
+136 -116
View File
@@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-01 21:11+0100\n" "POT-Creation-Date: 2012-09-05 00:20+0200\n"
"PO-Revision-Date: 2012-03-01 21:08+0100\n" "PO-Revision-Date: 2012-09-05 00:25+0200\n"
"Last-Translator: Giovanni Campagna <scampa.giovanni@gmail.com>\n" "Last-Translator: Giovanni Campagna <scampa.giovanni@gmail.com>\n"
"Language-Team: none <LL@li.org>\n" "Language-Team: none <LL@li.org>\n"
"Language: it\n" "Language: it\n"
@@ -16,77 +16,73 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
# ndt: che schifo...
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "" msgid "The application icon mode."
"Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and " msgstr "Modalità icona applicazione"
"workspace_icons. See the configuration dialogs for details."
msgstr ""
"Imposta il comportamento di Alt-Tab. Valori possibili sono \"all_thumbnails"
"\" e \"workspace_icons\". Per maggiori dettagli, si rimanda alla finestra di "
"configurazione."
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
msgid "The alt tab behaviour." msgid ""
msgstr "Comportamento di Alt-Tab" "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 "Configura come le finestre sono mostrate nello scambiafinestre. Le possibilità valide sono 'thumbnails-only' (mostra una miniatura della finestra), 'app-icon-only' (mostra solo l'icona dell'applicazione) o 'both' (mostra entrambi)."
#: ../extensions/alternate-tab/prefs.js:26
msgid "Thumbnail only"
msgstr "Solo la miniatura"
#: ../extensions/alternate-tab/prefs.js:27 #: ../extensions/alternate-tab/prefs.js:27
msgid "All & Thumbnails" msgid "Application icon only"
msgstr "Tutte & Miniature" msgstr "Solo l'icona dell'applicazione"
#: ../extensions/alternate-tab/prefs.js:28 #: ../extensions/alternate-tab/prefs.js:28
msgid "" msgid "Thumbnail and application icon"
"This mode presents all applications from all workspaces in one selection " msgstr "La miniatura e l'icona dell'applicazione"
"list. Instead of using the application icon of every window, it uses small "
"thumbnails resembling the window itself."
msgstr ""
"Questa modalità presenta tutte le applicazioni, da tutti gli spazi di lavoro "
"in un'unica lista. Invece di usare un'icona, usa delle piccole miniature che "
"rappresentano la finestra stessa."
#: ../extensions/alternate-tab/prefs.js:34 # ndt: con invece che come, perchè altrimenti l'articolo sta male
msgid "Workspace & Icons" #: ../extensions/alternate-tab/prefs.js:43
msgstr "Spazio di lavoro & Icone" msgid "Present windows as"
msgstr "Mostra le finestre con"
#: ../extensions/alternate-tab/prefs.js:35 #: ../extensions/alternate-tab/prefs.js:68
msgid "" msgid "Show only windows in the current workspace"
"This mode let's you switch between the applications of your current " msgstr "Mostra solo le finestre dello spazio di lavoro corrente"
"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 ""
"Questa modalità ti consente di passare da un'applicazione all'altra del tuo "
"spazio di lavoro corrente e ti da in aggiunta l'opzione di passare "
"all'ultima applicazione dello spazio di lavoro precedente. Questa è sempre "
"l'ultima della lista ed è separata da una linea verticale, se presente.\n"
"Ogni finestra è rappresentata dall'icona dell'applicazione."
#: ../extensions/alternate-tab/prefs.js:41
msgid "Move current selection to front before closing the popup"
msgstr "Muovi la selezione corrente in avanti prima di chiudere il popup"
#: ../extensions/alternate-tab/prefs.js:58
msgid ""
"The Alternate Tab can be used in different modes, that affect the way "
"windows are chosen and presented."
msgstr ""
"Alternate Tab può essere usato in varie modalità, che influenzano il modo "
"con cui le finestre sono scelte e successivamente mostrate."
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:64 #: ../extensions/alternative-status-menu/extension.js:68
msgid "Suspend" msgid "Suspend"
msgstr "Sospendi" msgstr "Sospendi"
#: ../extensions/alternative-status-menu/extension.js:69 #: ../extensions/alternative-status-menu/extension.js:73
msgid "Hibernate" msgid "Hibernate"
msgstr "Iberna" msgstr "Iberna"
#: ../extensions/alternative-status-menu/extension.js:74 #: ../extensions/alternative-status-menu/extension.js:78
msgid "Power Off..." msgid "Power Off"
msgstr "Spegni..." msgstr "Spegni"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:1
msgid "Enable suspending"
msgstr "Abilita sospensione"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:2
msgid "Control the visibility of the Suspend menu item"
msgstr "Controlla la visibilità del comando Sospendi"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:3
msgid "Enable hibernating"
msgstr "Abilita ibernazione"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:4
msgid "Control the visibility of the Hibernate menu item"
msgstr "Controlla la visibilità del comando Iberna"
#: ../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.in.h:1
msgid "Application and workspace list"
msgstr "Lista applicazioni e spazi di lavoro"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
@@ -94,10 +90,6 @@ msgstr ""
"Una lista di stringhe, ognuna contenente un id applicazione (nome del file ." "Una lista di stringhe, ognuna contenente un id applicazione (nome del file ."
"desktop), seguito da due punti e il numero dello spazio di lavoro" "desktop), seguito da due punti e il numero dello spazio di lavoro"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
msgid "Application and workspace list"
msgstr "Lista applicazioni e spazi di lavoro"
#: ../extensions/auto-move-windows/prefs.js:55 #: ../extensions/auto-move-windows/prefs.js:55
msgid "Application" msgid "Application"
msgstr "Applicazione" msgstr "Applicazione"
@@ -119,50 +111,54 @@ msgstr "Crea una nuova regola di corrispondenza"
msgid "Add" msgid "Add"
msgstr "Aggiungi" msgstr "Aggiungi"
#: ../extensions/dock/extension.js:489 #: ../extensions/dock/extension.js:600
msgid "Drag here to add favorites" msgid "Drag here to add favorites"
msgstr "Trascina qui per aggiungere ai preferiti" msgstr "Trascina qui per aggiungere ai preferiti"
#: ../extensions/dock/extension.js:815 #: ../extensions/dock/extension.js:926
msgid "New Window" msgid "New Window"
msgstr "Nuova finestra" msgstr "Nuova finestra"
#: ../extensions/dock/extension.js:817 #: ../extensions/dock/extension.js:928
msgid "Quit Application" msgid "Quit Application"
msgstr "Chiudi applicazione" msgstr "Chiudi applicazione"
#: ../extensions/dock/extension.js:822 #: ../extensions/dock/extension.js:933
msgid "Remove from Favorites" msgid "Remove from Favorites"
msgstr "Rimuovi dai preferiti" msgstr "Rimuovi dai preferiti"
#: ../extensions/dock/extension.js:823 #: ../extensions/dock/extension.js:934
msgid "Add to Favorites" msgid "Add to Favorites"
msgstr "Aggiungi ai preferiti" msgstr "Aggiungi ai preferiti"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1
msgid "Autohide duration"
msgstr "Durata dell'effetto di scomparsa"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2
msgid "Autohide effect"
msgstr "Effetto di scomparsa"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3
msgid "Enable/disable autohide"
msgstr "Abilita/disabilita scomparsa automatica"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
msgid "Icon size"
msgstr "Dimensione delle icone"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
msgid "Position of the dock" msgid "Position of the dock"
msgstr "Posizione del dock" msgstr "Posizione del dock"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2
msgid ""
"Sets the position of the dock in the screen. Allowed values are 'right' or "
"'left'"
msgstr ""
"Imposta la posizione del dock sullo schermo. Valori consentiti sono \"right"
"\" (destra) e \"left\" (sinistra)"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3
msgid "Icon size"
msgstr "Dimensione delle icone"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
msgid "Sets icon size of the dock." msgid "Sets icon size of the dock."
msgstr "Imposta la dimensione delle icone del dock." msgstr "Imposta la dimensione delle icone del dock."
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
msgid "Enable/disable autohide"
msgstr "Abilita/disabilita scomparsa automatica"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
msgid "Autohide effect"
msgstr "Effetto di scomparsa"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
msgid "" msgid ""
"Sets the effect of the hide dock. Allowed values are 'resize', 'rescale' and " "Sets the effect of the hide dock. Allowed values are 'resize', 'rescale' and "
@@ -173,18 +169,30 @@ msgstr ""
"schiaccia verso il lato), \"move\" (lo muove fuori dallo schermo)" "schiaccia verso il lato), \"move\" (lo muove fuori dallo schermo)"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
msgid "" msgid "Autohide duration"
"Sets the position of the dock in the screen. Allowed values are 'right' or " msgstr "Durata dell'effetto di scomparsa"
"'left'"
msgstr ""
"Imposta la posizione del dock sullo schermo. Valori consentiti sono \"right"
"\" (destra) e \"left\" (sinistra)"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9
msgid "Sets the time duration of the autohide effect." msgid "Sets the time duration of the autohide effect."
msgstr "Imposta la durata in secondi dell'effetto di scomparsa" msgstr "Imposta la durata in secondi dell'effetto di scomparsa"
#: ../extensions/drive-menu/extension.js:66 #: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:10
msgid "Monitor"
msgstr "Monitor"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:11
msgid ""
"Sets monitor to display dock in. The default value (-1) is the primary "
"monitor."
msgstr ""
"Imposta il monitor in cui mostrare la dock. Il valore di default (-1) "
"rappresenta lo schermo principale."
#: ../extensions/drive-menu/extension.js:56
msgid "Removable devices"
msgstr "Dispositivi rimovibili"
#: ../extensions/drive-menu/extension.js:67
msgid "Open file manager" msgid "Open file manager"
msgstr "Apri il gestore dei file" msgstr "Apri il gestore dei file"
@@ -220,41 +228,31 @@ msgstr ""
msgid "Message:" msgid "Message:"
msgstr "Messaggio:" msgstr "Messaggio:"
#: ../extensions/gajim/extension.js:227 #: ../extensions/gajim/extension.js:226
#, c-format #, c-format
msgid "%s is away." msgid "%s is away."
msgstr "%s è assente" msgstr "%s è assente"
#: ../extensions/gajim/extension.js:230 #: ../extensions/gajim/extension.js:229
#, c-format #, c-format
msgid "%s is offline." msgid "%s is offline."
msgstr "%s è fuori rete" msgstr "%s è fuori rete"
#: ../extensions/gajim/extension.js:233 #: ../extensions/gajim/extension.js:232
#, c-format #, c-format
msgid "%s is online." msgid "%s is online."
msgstr "%s è disponibile" msgstr "%s è disponibile"
#: ../extensions/gajim/extension.js:236 #: ../extensions/gajim/extension.js:235
#, c-format #, c-format
msgid "%s is busy." msgid "%s is busy."
msgstr "%s non è disponibile" msgstr "%s non è disponibile"
#: ../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.in.h:1
msgid "" msgid "Use more screen for windows"
"If true, place window captions on top the respective thumbnail, overriding " msgstr "Usa più spazio per le finestre"
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr ""
"Se vero, posiziona i titoli delle finestre in cima alle rispettive "
"miniature, aggirando il comportamento normale della shell, che li colloca in "
"basso. Modificare questa impostazione richiede di riavviare la shell."
#: ../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.in.h:2
msgid "Place window captions on top"
msgstr "Posiziona i titoli delle finestre in cima"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
@@ -265,22 +263,40 @@ msgstr ""
"ulteriormente per ridurre lo spazio complessivo. Questa impostazione si " "ulteriormente per ridurre lo spazio complessivo. Questa impostazione si "
"applica solo se l'algoritmo di posizionamento è \"natural\"." "applica solo se l'algoritmo di posizionamento è \"natural\"."
#: ../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.in.h:3
msgid "Use more screen for windows" msgid "Place window captions on top"
msgstr "Usa più spazio per le finestre" msgstr "Posiziona i titoli delle finestre in cima"
#: ../extensions/places-menu/extension.js:37 #: ../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 ""
"Se vero, posiziona i titoli delle finestre in cima alle rispettive "
"miniature, aggirando il comportamento normale della shell, che li colloca in "
"basso. Modificare questa impostazione richiede di riavviare la shell."
#: ../extensions/places-menu/extension.js:70
msgid "Removable Devices" msgid "Removable Devices"
msgstr "Dispositivi rimovibili" msgstr "Dispositivi rimovibili"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1 #: ../extensions/systemMonitor/extension.js:213
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "CPU"
msgstr "Il nome del tema, da caricare in ~/.themes/nome/gnome-shell" msgstr "CPU"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2 #: ../extensions/systemMonitor/extension.js:266
msgid "Memory"
msgstr "Memoria"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "Theme name" msgid "Theme name"
msgstr "Nome del tema" msgstr "Nome del tema"
#: ../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 "Il nome del tema, da caricare in ~/.themes/nome/gnome-shell"
#: ../extensions/workspace-indicator/extension.js:30 #: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator" msgid "Workspace Indicator"
msgstr "Indicatore spazi di lavoro" msgstr "Indicatore spazi di lavoro"
@@ -314,12 +330,16 @@ msgstr "Destra"
msgid "Upside-down" msgid "Upside-down"
msgstr "Rovesciato" msgstr "Rovesciato"
#: ../extensions/xrandr-indicator/extension.js:82 #: ../extensions/xrandr-indicator/extension.js:50
msgid "Configure display settings..." msgid "Display"
msgstr "Configura impostazioni display..." msgstr "Monitor"
#~ msgid "Display Settings" #: ../extensions/xrandr-indicator/extension.js:80
#~ msgstr "Impostazioni monitor" msgid "Display Settings"
msgstr "Impostazioni monitor"
#~ msgid "Configure display settings..."
#~ msgstr "Configura impostazioni display..."
#~ msgid "Cancel" #~ msgid "Cancel"
#~ msgstr "Annulla" #~ msgstr "Annulla"
+68 -63
View File
@@ -4,12 +4,14 @@
# pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas: # pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas:
# gnomepl@aviary.pl # gnomepl@aviary.pl
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# Piotr Drąg <piotrdrag@gmail.com>, 2011-2012.
# Aviary.pl <gnomepl@aviary.pl>, 2011-2012.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions\n" "Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-30 16:19+0200\n" "POT-Creation-Date: 2012-09-04 00:15+0200\n"
"PO-Revision-Date: 2012-04-30 16:20+0200\n" "PO-Revision-Date: 2012-09-04 00:17+0200\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <gnomepl@aviary.pl>\n" "Language-Team: Polish <gnomepl@aviary.pl>\n"
"Language: pl\n" "Language: pl\n"
@@ -22,76 +24,67 @@ msgstr ""
"X-Poedit-Country: Poland\n" "X-Poedit-Country: Poland\n"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "The alt tab behaviour." msgid "The application icon mode."
msgstr "Zachowanie Alt+Tab." msgstr "Tryb ikon programów."
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
msgid "" msgid ""
"Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and " "Configures how the windows are shown in the switcher. Valid possibilities "
"workspace_icons. See the configuration dialogs for details." "are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-"
"only' (shows only the application icon) or 'both'."
msgstr "" msgstr ""
"Ustawia zachowanie Alt-Tab. Możliwe wartości: all_thumbnails i " "Konfiguruje, jak wyświetlać okna w przełączniku. Prawidłowe możliwości to "
"workspace_icons. Proszę zobaczyć okno konfiguracji, aby uzyskać więcej " "\"thumbnail-only\" (wyświetla miniaturę okna), \"app-icon-only\" (wyświetla "
"informacji." "tylko ikonę programu) lub \"both\" (wyświetla oba)."
#: ../extensions/alternate-tab/prefs.js:26
msgid "Thumbnail only"
msgstr "Tylko miniatury"
#: ../extensions/alternate-tab/prefs.js:27 #: ../extensions/alternate-tab/prefs.js:27
msgid "All & Thumbnails" msgid "Application icon only"
msgstr "Wszystko i miniatury" msgstr "Tylko ikony programów"
#: ../extensions/alternate-tab/prefs.js:28 #: ../extensions/alternate-tab/prefs.js:28
msgid "" msgid "Thumbnail and application icon"
"This mode presents all applications from all workspaces in one selection " msgstr "Miniatura i ikona programu"
"list. Instead of using the application icon of every window, it uses small "
"thumbnails resembling the window itself."
msgstr ""
"Ten tryb przedstawia wszystkie programy ze wszystkich obszarów roboczych i "
"na jednej liście wyboru. Zamiast używać ikony programu każdego okna używa "
"małych miniatur samych okien."
#: ../extensions/alternate-tab/prefs.js:34 #: ../extensions/alternate-tab/prefs.js:43
msgid "Workspace & Icons" msgid "Present windows as"
msgstr "Obszar roboczy i ikony" msgstr "Wyświetlanie okien jako"
#: ../extensions/alternate-tab/prefs.js:35 #: ../extensions/alternate-tab/prefs.js:68
msgid "" msgid "Show only windows in the current workspace"
"This mode let's you switch between the applications of your current " msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym"
"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 ""
"Ten tryb umożliwia przełączanie między programami na bieżącym obszarze "
"roboczym i udostępnia dodatkową opcję przełączenia na ostatnio użyty program "
"poprzedniego obszaru roboczego. Jest to zawsze ostatni symbol na liście, "
"oddzielony pionową linią. \n"
"Każde okno jest przedstawiane przez swoją ikonę."
#: ../extensions/alternate-tab/prefs.js:41
msgid "Move current selection to front before closing the popup"
msgstr ""
"Przesuwanie bieżącego zaznaczenia na przód przed zamknięciem okna "
"wyskakującego"
#: ../extensions/alternate-tab/prefs.js:58
msgid ""
"The Alternate Tab can be used in different modes, that affect the way "
"windows are chosen and presented."
msgstr ""
"Alternatywna tabulacja może być używana w różnych trybach, które wpływają na "
"sposób wybierania i przedstawiania okien."
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:64 #: ../extensions/alternative-status-menu/extension.js:68
msgid "Suspend" msgid "Suspend"
msgstr "Uśpij" msgstr "Uśpij"
#: ../extensions/alternative-status-menu/extension.js:69 #: ../extensions/alternative-status-menu/extension.js:73
msgid "Hibernate" msgid "Hibernate"
msgstr "Hibernuj" msgstr "Hibernuj"
#: ../extensions/alternative-status-menu/extension.js:74 #: ../extensions/alternative-status-menu/extension.js:78
msgid "Power Off..." msgid "Power Off"
msgstr "Wyłącz komputer..." msgstr "Wyłącz komputer"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:1
msgid "Enable suspending"
msgstr "Włączenie usypiania"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:2
msgid "Control the visibility of the Suspend menu item"
msgstr "Kontrola widoczności pozycji \"Uśpij\" menu"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:3
msgid "Enable hibernating"
msgstr "Włączenie hibernacji"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:4
msgid "Control the visibility of the Hibernate menu item"
msgstr "Kontrola widoczności pozycji \"Hibernuj\" menu"
#: ../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.in.h:1
msgid "Application and workspace list" msgid "Application and workspace list"
@@ -126,23 +119,23 @@ msgstr "Utwórz nową pasującą regułę"
msgid "Add" msgid "Add"
msgstr "Dodaj" msgstr "Dodaj"
#: ../extensions/dock/extension.js:577 #: ../extensions/dock/extension.js:600
msgid "Drag here to add favorites" msgid "Drag here to add favorites"
msgstr "Przeciągnięcie tutaj dodaje do ulubionych" msgstr "Przeciągnięcie tutaj dodaje do ulubionych"
#: ../extensions/dock/extension.js:903 #: ../extensions/dock/extension.js:926
msgid "New Window" msgid "New Window"
msgstr "Nowe okno" msgstr "Nowe okno"
#: ../extensions/dock/extension.js:905 #: ../extensions/dock/extension.js:928
msgid "Quit Application" msgid "Quit Application"
msgstr "Zakończ program" msgstr "Zakończ program"
#: ../extensions/dock/extension.js:910 #: ../extensions/dock/extension.js:933
msgid "Remove from Favorites" msgid "Remove from Favorites"
msgstr "Usuń z ulubionych" msgstr "Usuń z ulubionych"
#: ../extensions/dock/extension.js:911 #: ../extensions/dock/extension.js:934
msgid "Add to Favorites" msgid "Add to Favorites"
msgstr "Dodaj do ulubionych" msgstr "Dodaj do ulubionych"
@@ -202,7 +195,11 @@ msgstr ""
"Ustawia, na którym monitorze wyświetlać dok. Domyślna wartość (-1) oznacza " "Ustawia, na którym monitorze wyświetlać dok. Domyślna wartość (-1) oznacza "
"główny monitor." "główny monitor."
#: ../extensions/drive-menu/extension.js:66 #: ../extensions/drive-menu/extension.js:57
msgid "Removable devices"
msgstr "Urządzenia wymienne"
#: ../extensions/drive-menu/extension.js:68
msgid "Open file manager" msgid "Open file manager"
msgstr "Otwórz menedżer plików" msgstr "Otwórz menedżer plików"
@@ -286,10 +283,18 @@ msgstr ""
"powłokę. Zmiana tego ustawienia wymaga ponownego uruchomienia powłoki, aby " "powłokę. Zmiana tego ustawienia wymaga ponownego uruchomienia powłoki, aby "
"uwzględnić zmiany." "uwzględnić zmiany."
#: ../extensions/places-menu/extension.js:37 #: ../extensions/places-menu/extension.js:39
msgid "Removable Devices" msgid "Removable Devices"
msgstr "Urządzenia wymienne" msgstr "Urządzenia wymienne"
#: ../extensions/systemMonitor/extension.js:213
msgid "CPU"
msgstr "Procesor"
#: ../extensions/systemMonitor/extension.js:266
msgid "Memory"
msgstr "Pamięć"
#: ../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.in.h:1
msgid "Theme name" msgid "Theme name"
msgstr "Nazwa motywu" msgstr "Nazwa motywu"
@@ -321,11 +326,11 @@ msgstr "Normalnie"
#: ../extensions/xrandr-indicator/extension.js:31 #: ../extensions/xrandr-indicator/extension.js:31
msgid "Left" msgid "Left"
msgstr "W lewo" msgstr "Lewo"
#: ../extensions/xrandr-indicator/extension.js:32 #: ../extensions/xrandr-indicator/extension.js:32
msgid "Right" msgid "Right"
msgstr "W prawo" msgstr "Prawo"
#: ../extensions/xrandr-indicator/extension.js:33 #: ../extensions/xrandr-indicator/extension.js:33
msgid "Upside-down" msgid "Upside-down"
+73 -28
View File
@@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "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" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2012-06-08 12:07+0000\n" "POT-Creation-Date: 2012-08-29 00:06+0000\n"
"PO-Revision-Date: 2012-06-08 20:51+0100\n" "PO-Revision-Date: 2012-08-29 09:10+0100\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n" "Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n" "Language-Team: Slovenian GNOME Translation Team <gnome-si@googlegroups.com>\n"
"Language: \n" "Language: \n"
@@ -22,40 +22,32 @@ msgstr ""
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "The alt tab behaviour." msgid "The application icon mode."
msgstr "Obnašanje tipk Alt-Tab" msgstr "Ikonski način programa."
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
msgid "Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and workspace_icons. See the configuration dialogs for details." 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'."
msgstr "Določi obnašanje tipk Alt-Tab. Mogoče vrednosti so: vse_sličice in ikone_delovne_površine. Za več podrobnosti si oglejte nastavitve." msgstr "Nastavitev prikaza oken v preklopniku. Veljavne možnosti so 'le sličice', kar pokaže pomanjšano sličico okna, 'le ikono programa', kar pokaže ikono in možnost 'oboje', torej ikono in pomanjšano sličico."
#: ../extensions/alternate-tab/prefs.js:26
msgid "Thumbnail only"
msgstr "Le sličice"
#: ../extensions/alternate-tab/prefs.js:27 #: ../extensions/alternate-tab/prefs.js:27
msgid "All & Thumbnails" msgid "Application icon only"
msgstr "Vse in sličice" msgstr "Le ikono programa"
#: ../extensions/alternate-tab/prefs.js:28 #: ../extensions/alternate-tab/prefs.js:28
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." msgid "Thumbnail and application icon"
msgstr "Ta način prikazuje vse programe na vseh delovnih površinah na enem izbirnem seznamu. Namesto uporabe ikone programa na vsakem oknu, uporablja majhne sličice, ki predstavljajo samo okno." msgstr "Sličice in ikono programa"
#: ../extensions/alternate-tab/prefs.js:34 #: ../extensions/alternate-tab/prefs.js:43
msgid "Workspace & Icons" msgid "Present windows as"
msgstr "Delovne površine in ikone" msgstr "Pokaži okna kot"
#: ../extensions/alternate-tab/prefs.js:35 #: ../extensions/alternate-tab/prefs.js:68
msgid "" msgid "Show only windows in the current workspace"
"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" msgstr "Pokaži le okna trenutne delovne površine"
"Every window is represented by its application icon."
msgstr ""
"Ta način omogoča preklop med programi trenutne delovne površine in hkrati omogoča izbiro na zadnje uporabljenega okna predhodne delovne površine. Ta predmet je vedno zapisan kot zadnji predmet seznama in je ločen z ločilnikom ali navpično črto.\n"
"Vsako okno je prikazano z ikono programa."
#: ../extensions/alternate-tab/prefs.js:41
msgid "Move current selection to front before closing the popup"
msgstr "Premakni trenutni izbor v ospredje pred zapiranjem pojavnega okna"
#: ../extensions/alternate-tab/prefs.js:58
msgid "The Alternate Tab can be used in different modes, that affect the way windows are chosen and presented."
msgstr "Nadomestni zavihek je mogoče uporabiti pri različnih načinih dela, ki vplivajo na način izbire oken."
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:68 #: ../extensions/alternative-status-menu/extension.js:68
@@ -253,6 +245,14 @@ msgstr "Izbrana možnost določi postavitev nazivov oken na vrh posamezne sliči
msgid "Removable Devices" msgid "Removable Devices"
msgstr "Odstranljive naprave" msgstr "Odstranljive naprave"
#: ../extensions/systemMonitor/extension.js:213
msgid "CPU"
msgstr "CPE"
#: ../extensions/systemMonitor/extension.js:266
msgid "Memory"
msgstr "Pomnilnik"
#: ../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.in.h:1
msgid "Theme name" msgid "Theme name"
msgstr "Ime teme" msgstr "Ime teme"
@@ -298,3 +298,48 @@ msgstr "Zgoraj-navzdol"
msgid "Configure display settings..." msgid "Configure display settings..."
msgstr "Nastavitve zaslona ..." msgstr "Nastavitve zaslona ..."
#~ msgid "The alt tab behaviour."
#~ msgstr "Obnašanje tipk Alt-Tab"
#~ msgid ""
#~ "Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and "
#~ "workspace_icons. See the configuration dialogs for details."
#~ msgstr ""
#~ "Določi obnašanje tipk Alt-Tab. Mogoče vrednosti so: vse_sličice in "
#~ "ikone_delovne_površine. Za več podrobnosti si oglejte nastavitve."
#~ 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."
#~ msgstr ""
#~ "Ta način prikazuje vse programe na vseh delovnih površinah na enem "
#~ "izbirnem seznamu. Namesto uporabe ikone programa na vsakem oknu, "
#~ "uporablja majhne sličice, ki predstavljajo samo okno."
#~ msgid "Workspace & Icons"
#~ msgstr "Delovne površine in ikone"
#~ 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"
#~ "Every window is represented by its application icon."
#~ msgstr ""
#~ "Ta način omogoča preklop med programi trenutne delovne površine in hkrati "
#~ "omogoča izbiro na zadnje uporabljenega okna predhodne delovne površine. "
#~ "Ta predmet je vedno zapisan kot zadnji predmet seznama in je ločen z "
#~ "ločilnikom ali navpično črto.\n"
#~ "Vsako okno je prikazano z ikono programa."
#~ msgid "Move current selection to front before closing the popup"
#~ msgstr "Premakni trenutni izbor v ospredje pred zapiranjem pojavnega okna"
#~ msgid ""
#~ "The Alternate Tab can be used in different modes, that affect the way "
#~ "windows are chosen and presented."
#~ msgstr ""
#~ "Nadomestni zavihek je mogoče uporabiti pri različnih načinih dela, ki "
#~ "vplivajo na način izbire oken."