Compare commits

...

18 Commits

Author SHA1 Message Date
Giovanni Campagna 5e10182f94 Bump version to 3.9.2
To go along GNOME Shell 3.9.2
2013-05-28 20:09:11 +02:00
Giovanni Campagna ae244569ef alternative-status-menu: take GSettings in consideration for item visibility
Seems this was lost at some point.
2013-05-24 19:15:30 +02:00
Florian Müllner 292a48073a apps-menu: Add some padding to ScrollView
In case the scroll bar is visible, is is currently positioned at
the very edge of the popup, which looks fairly bad; so add some
minimal padding.

https://bugzilla.gnome.org/show_bug.cgi?id=700852
2013-05-22 19:40:02 +02:00
Giovanni Campagna 274a6f040c Update descriptions of extensions
Mark classic mode extensions as such, so bug reports don't go
lost in my inbox.
2013-05-20 19:06:59 +02:00
Мирослав Николић aaacd3dba4 Updated Serbian translation 2013-05-14 18:51:11 +02:00
Florian Müllner 45767c93d5 window-list: Make bottom panel taller in classic mode
Consider additional borders in classic styling for the panel height.

https://bugzilla.gnome.org/show_bug.cgi?id=698169
2013-05-13 22:01:01 +02:00
Giovanni Campagna 6094c21634 Bump version to 3.9.1
To go along GNOME Shell 3.9.1
2013-05-01 00:46:47 +02:00
Giovanni Campagna 5052c6d350 windowsNavigator: update for gnome-shell changes
The position of a workspace is not part of a geometry object.
2013-05-01 00:45:06 +02:00
Florian Müllner f38d61b4c9 window-list: Use notify::n-workspaces to recreate workspace menu
When the number of workspaces changes, we clear the existing menu
and recreate it based on the screen::n-workspaces property, so it
is slightly more correct to track changes to the property directly
instead of using the workspace-added/workspace-removed signals.
This change also fixes a corner case, where changes to the property
before workspaces are initialized are missed and we end up with the
wrong number of workspaces.

https://bugzilla.gnome.org/show_bug.cgi?id=699350
2013-04-30 21:54:05 +02:00
Florian Müllner 8ba3bedd20 workspace-indicator: Adjust to PopupMenu API change
setShowDot() has become setOrnament()

https://bugzilla.gnome.org/show_bug.cgi?id=699335
2013-04-30 17:49:49 +02:00
Florian Müllner d903f1f15b xrandr-indicator: Adjust to PopupMenu API change
setShowDot() has become setOrnament()

https://bugzilla.gnome.org/show_bug.cgi?id=699335
2013-04-30 17:49:49 +02:00
Florian Müllner 8628addfc9 window-list: Adjust to PopupMenu API change
setShowDot() has become setOrnament().

https://bugzilla.gnome.org/show_bug.cgi?id=699335
2013-04-30 17:49:48 +02:00
Aurimas Černius 27b5178646 Updated Lithuanian translation 2013-04-27 23:40:52 +03:00
Matej Urbančič 6b2fa94f5a Updated Slovenian translation 2013-04-21 08:26:05 +02:00
Marek Černocký 174ffc05f2 Updated Czech translation 2013-04-20 15:37:04 +02:00
Piotr Drąg 8ba1cc7c9d Updated Polish translation 2013-04-19 21:14:04 +02:00
Daniel Mustieles 20e164fb39 Updated Spanish translation 2013-04-18 13:12:37 +02:00
Rafael Ferreira 568f63917a Updated Brazilian Portuguese translation 2013-04-16 22:43:15 -03:00
34 changed files with 222 additions and 139 deletions
+15
View File
@@ -1,3 +1,18 @@
3.9.2
=====
* apps-menu: appearance of the scrollbars was improved
* window-list is a little taller in classic mode (to account
for the workspace switcher)
* alternative-status-menu honors again the dconf configuration
* translation updates (sr)
3.9.1
=====
* updates to window-list, xrandr-indicator,
workspace-indicator, windowsNavigator for gnome-shell
changes
* translation updates (cs, es, lt, pl, pt_BR, sl)
3.8.1 3.8.1
===== =====
* many improvements to window-list: * many improvements to window-list:
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.8.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions]) AC_INIT([gnome-shell-extensions],[3.9.2],[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])
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "AlternateTab", "name": "AlternateTab",
"description": "A replacement for Alt-Tab, allows to cycle between windows and does not group by application", "description": "Substitute Alt-Tab with a window based switcher that does not group by application.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"original-authors": [ "jw@bargsten.org", "thomas.bouffon@gmail.com" ], "original-authors": [ "jw@bargsten.org", "thomas.bouffon@gmail.com" ],
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
@@ -76,8 +76,8 @@ function statusMenu_updateHaveHibernate() {
function statusMenu_updateSuspendOrPowerOff() { function statusMenu_updateSuspendOrPowerOff() {
this._suspendOrPowerOffItem.actor.hide(); this._suspendOrPowerOffItem.actor.hide();
extension.suspendItem.actor.visible = this._haveSuspend; extension.suspendItem.actor.visible = this._haveSuspend && extension.settings.get_boolean('allow-suspend');
extension.hibernateItem.actor.visible = this._haveHibernate; extension.hibernateItem.actor.visible = this._haveHibernate && extension.settings.get_boolean('allow-hibernate');
extension.powerOffItem.actor.visible = this._haveShutdown; extension.powerOffItem.actor.visible = this._haveShutdown;
} }
@@ -104,7 +104,7 @@ const Extension = new Lang.Class({
this.powerOffItem = null; this.powerOffItem = null;
Convenience.initTranslations(); Convenience.initTranslations();
this._settings = Convenience.getSettings(); this.settings = Convenience.getSettings();
}, },
enable: function() { enable: function() {
@@ -145,7 +145,7 @@ const Extension = new Lang.Class({
this._previousUpdateSuspendOrPowerOff = statusMenu._updateSuspendOrPowerOff; this._previousUpdateSuspendOrPowerOff = statusMenu._updateSuspendOrPowerOff;
statusMenu._updateSuspendOrPowerOff = statusMenu_updateSuspendOrPowerOff; statusMenu._updateSuspendOrPowerOff = statusMenu_updateSuspendOrPowerOff;
this._settingsChangedId = this._settings.connect('changed', function() { this._settingsChangedId = this.settings.connect('changed', function() {
statusMenu._updateSuspendOrPowerOff(); statusMenu._updateSuspendOrPowerOff();
}); });
}, },
@@ -158,7 +158,7 @@ const Extension = new Lang.Class({
this.powerOffItem.destroy(); this.powerOffItem.destroy();
statusMenu.menu.disconnect(this._openStateChangedId); statusMenu.menu.disconnect(this._openStateChangedId);
this._settings.disconnect(this._settingsChangedId); this.settings.disconnect(this._settingsChangedId);
statusMenu._updateSuspendOrPowerOff = this._previousUpdateSuspendOrPowerOff; statusMenu._updateSuspendOrPowerOff = this._previousUpdateSuspendOrPowerOff;
statusMenu._updateSuspendOrPowerOff(); statusMenu._updateSuspendOrPowerOff();
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Alternative Status Menu", "name": "Alternative Status Menu",
"description": "Replaces GNOME Shell Status Menu with one showing Suspend/Hibernate and Power Off as separate items", "description": "Replaces GNOME Shell Status Menu with one showing Suspend/Hibernate and Power Off as separate items.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
+1 -1
View File
@@ -424,7 +424,7 @@ const ApplicationsButton = new Lang.Class({
this.leftBox = new St.BoxLayout({ vertical: true }); this.leftBox = new St.BoxLayout({ vertical: true });
this.applicationsScrollBox = new St.ScrollView({ x_fill: true, y_fill: false, this.applicationsScrollBox = new St.ScrollView({ x_fill: true, y_fill: false,
y_align: St.Align.START, y_align: St.Align.START,
style_class: 'vfade' }); style_class: 'apps-menu vfade' });
this.applicationsScrollBox.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC); this.applicationsScrollBox.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC);
let vscroll = this.applicationsScrollBox.get_vscroll_bar(); let vscroll = this.applicationsScrollBox.get_vscroll_bar();
vscroll.connect('scroll-start', Lang.bind(this, function() { vscroll.connect('scroll-start', Lang.bind(this, function() {
+1 -1
View File
@@ -3,7 +3,7 @@
"uuid": "@uuid@", "uuid": "@uuid@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Applications Menu", "name": "Applications Menu",
"description": "Add a gnome 2.x style menu for applications", "description": "Add a category-based menu for applications.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"original-authors": [ "e2002@bk.ru", "debarshir@gnome.org" ], "original-authors": [ "e2002@bk.ru", "debarshir@gnome.org" ],
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
+7 -1
View File
@@ -1 +1,7 @@
/* none used*/ .apps-menu:ltr {
padding-right: 3px;
}
.apps-menu:rtl {
padding-left: 3px;
}
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Auto Move Windows", "name": "Auto Move Windows",
"description": "Move applications to specific workspaces when they create windows", "description": "Move applications to specific workspaces when they create windows.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"original-authors": [ "alessandro.crismani@gmail.com", "thomas.bouffon@gmail.com" ], "original-authors": [ "alessandro.crismani@gmail.com", "thomas.bouffon@gmail.com" ],
"url": "@url@" "url": "@url@"
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Default Minimize and Maximize", "name": "Default Minimize and Maximize",
"description": "Adds minimize and maximize buttons to the titlebar by default", "description": "Adds minimize and maximize buttons to the titlebar by default.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"original-authors": [ "debarshir@gnome.org" ], "original-authors": [ "debarshir@gnome.org" ],
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Removable Drive Menu", "name": "Removable Drive Menu",
"description": "A status menu for accessing and unmounting removable devices", "description": "A status menu for accessing and unmounting removable devices.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Launch new instance", "name": "Launch new instance",
"description": "Always launch a new instance", "description": "Always launch a new instance when clicking in the dash or the application view.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Native Window Placement", "name": "Native Window Placement",
"description": "Arrange windows in overview in a more native way", "description": "Arrange windows in overview in a more compact way.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@", "url": "@url@",
"original-authors": [ "wepmaschda@gmx.de" ] "original-authors": [ "wepmaschda@gmx.de" ]
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Places Status Indicator", "name": "Places Status Indicator",
"description": "Add a systems status menu for quickly navigating places in the system", "description": "Add a menu for quickly navigating places in the system.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Static workspaces", "name": "Static workspaces",
"description": "Disable dynamic workspace management", "description": "Disable dynamic workspace management.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"original-authors": [ "fmuellner@gnome.org" ], "original-authors": [ "fmuellner@gnome.org" ],
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
+1 -1
View File
@@ -6,6 +6,6 @@
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"original-author": "zaspire@rambler.ru", "original-author": "zaspire@rambler.ru",
"name": "SystemMonitor", "name": "SystemMonitor",
"description": "System Monitor", "description": "System monitor showing CPU and memory usage in the message tray.",
"url": "@url@" "url": "@url@"
} }
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "User Themes", "name": "User Themes",
"description": "Load shell themes from user directory", "description": "Load shell themes from user directory.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"original-authors": [ "john.stowers@gmail.com" ], "original-authors": [ "john.stowers@gmail.com" ],
"url": "@url@" "url": "@url@"
+2
View File
@@ -3,6 +3,7 @@
#panel.bottom-panel { #panel.bottom-panel {
border-top-width: 1px; border-top-width: 1px;
border-bottom-width: 0px; border-bottom-width: 0px;
height: 32px !important;
} }
.bottom-panel .window-button > StWidget { .bottom-panel .window-button > StWidget {
@@ -11,6 +12,7 @@
background-gradient-end: #d0d0d0; background-gradient-end: #d0d0d0;
color: #555 !important; color: #555 !important;
border-radius: 2px !important; border-radius: 2px !important;
padding: 4px 6px 2px !important;
text-shadow: 0 0 transparent; text-shadow: 0 0 transparent;
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5) !important; box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5) !important;
} }
+4 -5
View File
@@ -390,8 +390,7 @@ const WorkspaceIndicator = new Lang.Class({
this.workspacesItems = []; this.workspacesItems = [];
this._screenSignals = []; this._screenSignals = [];
this._screenSignals.push(global.screen.connect_after('workspace-added', Lang.bind(this,this._updateMenu))); this._screenSignals.push(global.screen.connect('notify::n-workspaces', Lang.bind(this,this._updateMenu)));
this._screenSignals.push(global.screen.connect_after('workspace-removed', Lang.bind(this,this._updateMenu)));
this._screenSignals.push(global.screen.connect_after('workspace-switched', Lang.bind(this,this._updateIndicator))); this._screenSignals.push(global.screen.connect_after('workspace-switched', Lang.bind(this,this._updateIndicator)));
this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent)); this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
@@ -414,9 +413,9 @@ const WorkspaceIndicator = new Lang.Class({
}, },
_updateIndicator: function() { _updateIndicator: function() {
this.workspacesItems[this._currentWorkspace].setShowDot(false); this.workspacesItems[this._currentWorkspace].setOrnament(PopupMenu.Ornament.NONE);
this._currentWorkspace = global.screen.get_active_workspace().index(); this._currentWorkspace = global.screen.get_active_workspace().index();
this.workspacesItems[this._currentWorkspace].setShowDot(true); this.workspacesItems[this._currentWorkspace].setOrnament(PopupMenu.Ornament.DOT);
this.statusLabel.set_text(this._getStatusText()); this.statusLabel.set_text(this._getStatusText());
}, },
@@ -443,7 +442,7 @@ const WorkspaceIndicator = new Lang.Class({
})); }));
if (i == this._currentWorkspace) if (i == this._currentWorkspace)
item.setShowDot(true); item.setOrnament(PopupMenu.Ornament.DOT);
this.menu.addMenuItem(item); this.menu.addMenuItem(item);
this.workspacesItems[i] = item; this.workspacesItems[i] = item;
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Window List", "name": "Window List",
"description": "Display a window list at the bottom of the screen", "description": "Display a window list at the bottom of the screen.\nThis extension is part of Classic Mode and is officially supported by GNOME. Please do not report bugs using the form below, use GNOME Bugzilla instead.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
+15 -3
View File
@@ -47,11 +47,23 @@ function enable() {
winInjections['hideTooltip'] = undefined; winInjections['hideTooltip'] = undefined;
Workspace.Workspace.prototype.showTooltip = function() { Workspace.Workspace.prototype.showTooltip = function() {
if (this._tip == null) if (this._tip == null || this._actualGeometry == null)
return; return;
this._tip.text = (this.metaWorkspace.index() + 1).toString(); this._tip.text = (this.metaWorkspace.index() + 1).toString();
this._tip.x = this._x;
this._tip.y = this._y; // Hand code this instead of using _getSpacingAndPadding
// because that fails on empty workspaces
let node = this.actor.get_theme_node();
let padding = {
left: node.get_padding(St.Side.LEFT),
top: node.get_padding(St.Side.TOP),
bottom: node.get_padding(St.Side.BOTTOM),
right: node.get_padding(St.Side.RIGHT),
};
let area = Workspace.padArea(this._actualGeometry, padding);
this._tip.x = area.x;
this._tip.y = area.y;
this._tip.show(); this._tip.show();
this._tip.raise_top(); this._tip.raise_top();
} }
+1 -1
View File
@@ -6,6 +6,6 @@
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"original-author": "zaspire@rambler.ru", "original-author": "zaspire@rambler.ru",
"name": "windowNavigator", "name": "windowNavigator",
"description": "Allow keyboard selection of windows and workspaces in overlay mode", "description": "Allow keyboard selection of windows and workspaces in overlay mode. <Ctrl>number selects a workspace, and <Alt>number selects a window.",
"url": "@url@" "url": "@url@"
} }
+3 -3
View File
@@ -66,9 +66,9 @@ const WorkspaceIndicator = new Lang.Class({
}, },
_updateIndicator: function() { _updateIndicator: function() {
this.workspacesItems[this._currentWorkspace].setShowDot(false); this.workspacesItems[this._currentWorkspace].setOrnament(PopupMenu.Ornament.NONE);
this._currentWorkspace = global.screen.get_active_workspace().index(); this._currentWorkspace = global.screen.get_active_workspace().index();
this.workspacesItems[this._currentWorkspace].setShowDot(true); this.workspacesItems[this._currentWorkspace].setOrnament(PopupMenu.Ornament.DOT);
this.statusLabel.set_text(this._labelText()); this.statusLabel.set_text(this._labelText());
}, },
@@ -98,7 +98,7 @@ const WorkspaceIndicator = new Lang.Class({
})); }));
if (i == this._currentWorkspace) if (i == this._currentWorkspace)
this.workspacesItems[i].setShowDot(true); this.workspacesItems[i].setOrnament(PopupMenu.Ornament.DOT);
} }
this.statusLabel.set_text(this._labelText()); this.statusLabel.set_text(this._labelText());
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Workspace Indicator", "name": "Workspace Indicator",
"description": "Put an indicator on the panel signaling in which workspace you are, and give you the possibility of switching to another one", "description": "Put an indicator on the panel signaling in which workspace you are, and give you the possibility of switching to another one.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"original-authors": [ "erick.red@gmail.com" ], "original-authors": [ "erick.red@gmail.com" ],
"url": "@url@" "url": "@url@"
+1 -1
View File
@@ -94,7 +94,7 @@ const Indicator = new Lang.Class({
if (bitmask & allowedRotations) { if (bitmask & allowedRotations) {
let item = new PopupMenu.PopupMenuItem(Gettext.gettext(name)); let item = new PopupMenu.PopupMenuItem(Gettext.gettext(name));
if (bitmask & currentRotation) if (bitmask & currentRotation)
item.setShowDot(true); item.setOrnament(PopupMenu.Ornament.DOT);
item.connect('activate', Lang.bind(this, function(item, event) { item.connect('activate', Lang.bind(this, function(item, event) {
/* ensure config is saved so we get a backup if anything goes wrong */ /* ensure config is saved so we get a backup if anything goes wrong */
config.save(); config.save();
+1 -1
View File
@@ -4,7 +4,7 @@
"settings-schema": "@gschemaname@", "settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@", "gettext-domain": "@gettext_domain@",
"name": "Monitor Status Indicator", "name": "Monitor Status Indicator",
"description": "Add a systems status menu for rotating monitors (overrides what is currently provided by gnome-settings-daemon)", "description": "Add a system status menu for rotating monitors.",
"shell-version": [ "@shell_current@" ], "shell-version": [ "@shell_current@" ],
"url": "@url@" "url": "@url@"
} }
+21 -16
View File
@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: 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: 2013-02-08 12:25+0000\n" "POT-Creation-Date: 2013-04-19 19:12+0000\n"
"PO-Revision-Date: 2013-02-17 09:19+0100\n" "PO-Revision-Date: 2013-04-20 15:34+0200\n"
"Last-Translator: Marek Černocký <marek@manet.cz>\n" "Last-Translator: Marek Černocký <marek@manet.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n" "Language-Team: Czech <gnome-cs-list@gnome.org>\n"
"Language: cs\n" "Language: cs\n"
@@ -58,15 +58,15 @@ msgid "Show only windows in the current workspace"
msgstr "Zobrazovat pouze okna z aktuální pracovní plochy" msgstr "Zobrazovat pouze okna z aktuální pracovní plochy"
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:144 #: ../extensions/alternative-status-menu/extension.js:125
msgid "Suspend" msgid "Suspend"
msgstr "Uspat do paměti" msgstr "Uspat do paměti"
#: ../extensions/alternative-status-menu/extension.js:147 #: ../extensions/alternative-status-menu/extension.js:128
msgid "Hibernate" msgid "Hibernate"
msgstr "Uspat na disk" msgstr "Uspat na disk"
#: ../extensions/alternative-status-menu/extension.js:150 #: ../extensions/alternative-status-menu/extension.js:131
msgid "Power Off" msgid "Power Off"
msgstr "Vypnout" msgstr "Vypnout"
@@ -86,15 +86,15 @@ msgstr "Povolit uspávání na disk"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Řídí viditelnost položky „Uspat na disk“ v nabídce" msgstr "Řídí viditelnost položky „Uspat na disk“ v nabídce"
#: ../extensions/apps-menu/extension.js:50 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Přehled činností" msgstr "Přehled činností"
#: ../extensions/apps-menu/extension.js:103 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Oblíbené" msgstr "Oblíbené"
#: ../extensions/apps-menu/extension.js:197 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Aplikace" msgstr "Aplikace"
@@ -203,24 +203,25 @@ msgstr ""
"přepíše výchozí chování shellu, který jej umisťuje dolů. Změna tohoto " "přepíše výchozí chování shellu, který jej umisťuje dolů. Změna tohoto "
"nastavení vyžaduje restart shellu, aby se projevila." "nastavení vyžaduje restart shellu, aby se projevila."
#: ../extensions/places-menu/extension.js:57 #: ../extensions/places-menu/extension.js:77
msgid "Places" msgid "Places"
msgstr "Místa" msgstr "Místa"
#: ../extensions/places-menu/placeDisplay.js:48 #: ../extensions/places-menu/placeDisplay.js:56
#, c-format #, c-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "Selhalo spuštění „%s“" msgstr "Selhalo spuštění „%s“"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:121
msgid "Home"
msgstr "Domů"
#: ../extensions/places-menu/placeDisplay.js:195
msgid "Computer" msgid "Computer"
msgstr "Počítač" msgstr "Počítač"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:199
msgid "Home"
msgstr "Domů"
#: ../extensions/places-menu/placeDisplay.js:286
msgid "Browse Network" msgid "Browse Network"
msgstr "Procházet síť" msgstr "Procházet síť"
@@ -247,10 +248,10 @@ msgstr "Kdy seskupovat 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.in.h:2
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Rozhoduje, kdy se mají v seznamu oken seskupovat okna stejné aplikace. Možné " "Rozhoduje, kdy se mají v seznamu oken seskupovat okna stejné aplikace. Možné "
"hodnoty jsou „never“ (nikdy) a „always“ (vždy)." "hodnoty jsou „never“ (nikdy), „auto“ (automaticky) a „always“ (vždy)."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -261,6 +262,10 @@ msgid "Never group windows"
msgstr "Nikdy neseskupovat okna" msgstr "Nikdy neseskupovat okna"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Seskupovat okna při nedostatku místa"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Vždy seskupovat okna" msgstr "Vždy seskupovat okna"
+24 -17
View File
@@ -11,8 +11,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: 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: 2013-02-08 12:25+0000\n" "POT-Creation-Date: 2013-04-16 19:31+0000\n"
"PO-Revision-Date: 2013-02-11 13:51+0100\n" "PO-Revision-Date: 2013-04-18 13:07+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"
"Language: \n" "Language: \n"
@@ -60,15 +60,15 @@ msgid "Show only windows in the current workspace"
msgstr "Mostrar ventanas solamente en el área de trabajo actual" msgstr "Mostrar ventanas solamente en el área de trabajo actual"
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:144 #: ../extensions/alternative-status-menu/extension.js:125
msgid "Suspend" msgid "Suspend"
msgstr "Suspender" msgstr "Suspender"
#: ../extensions/alternative-status-menu/extension.js:147 #: ../extensions/alternative-status-menu/extension.js:128
msgid "Hibernate" msgid "Hibernate"
msgstr "Hibernar" msgstr "Hibernar"
#: ../extensions/alternative-status-menu/extension.js:150 #: ../extensions/alternative-status-menu/extension.js:131
msgid "Power Off" msgid "Power Off"
msgstr "Apagar" msgstr "Apagar"
@@ -88,15 +88,15 @@ msgstr "Activar la hibernación"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Controla la visibilidad del elemento de menú «Hibernar»" msgstr "Controla la visibilidad del elemento de menú «Hibernar»"
#: ../extensions/apps-menu/extension.js:50 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Vista de actividades" msgstr "Vista de actividades"
#: ../extensions/apps-menu/extension.js:103 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: ../extensions/apps-menu/extension.js:197 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Aplicaciones" msgstr "Aplicaciones"
@@ -208,25 +208,25 @@ msgstr ""
"los sitúa por debajo. Cambiar esta configuración requiere reiniciar la shell " "los sitúa por debajo. Cambiar esta configuración requiere reiniciar la shell "
"para que tenga efecto." "para que tenga efecto."
#: ../extensions/places-menu/extension.js:57 #: ../extensions/places-menu/extension.js:77
msgid "Places" msgid "Places"
msgstr "Lugares" msgstr "Lugares"
#: ../extensions/places-menu/placeDisplay.js:48 #: ../extensions/places-menu/placeDisplay.js:56
#, c-format #, c-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "Falló al lanzar «%s»" msgstr "Falló al lanzar «%s»"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:121
msgid "Home"
msgstr "Carpeta personal"
#: ../extensions/places-menu/placeDisplay.js:195
msgid "Computer" msgid "Computer"
msgstr "Equipo" msgstr "Equipo"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:199
#| msgid "Browse network" msgid "Home"
msgstr "Carpeta personal"
#: ../extensions/places-menu/placeDisplay.js:286
msgid "Browse Network" msgid "Browse Network"
msgstr "Examinar la red" msgstr "Examinar la red"
@@ -251,12 +251,15 @@ msgid "When to group windows"
msgstr "Cuándo agrupar las ventanas" msgstr "Cuándo agrupar las ventanas"
#: ../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.in.h:2
#| msgid ""
#| "Decides when to group windows from the same application on the window "
#| "list. Possible values are \"never\" and \"always\"."
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Decide cuándo agrupar ventanas para la misma aplicación en la lista de " "Decide cuándo agrupar ventanas para la misma aplicación en la lista de "
"ventanas. Los valores posibles son «never» y «always»." "ventanas. Los valores posibles son «never», «auto» y «always»."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -267,6 +270,10 @@ msgid "Never group windows"
msgstr "Nunca agrupar las ventanas" msgstr "Nunca agrupar las ventanas"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Agrupar las ventanas cuando el espacio esté limitado"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Siempre agrupar las ventanas" msgstr "Siempre agrupar las ventanas"
+24 -19
View File
@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: lt\n" "Project-Id-Version: lt\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: 2013-02-08 12:25+0000\n" "POT-Creation-Date: 2013-04-19 19:12+0000\n"
"PO-Revision-Date: 2013-02-27 23:08+0200\n" "PO-Revision-Date: 2013-04-27 23:40+0300\n"
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n" "Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
"Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n" "Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n"
"Language: \n" "Language: \n"
@@ -59,15 +59,15 @@ msgid "Show only windows in the current workspace"
msgstr "Rodyti tik dabartinio darbalaukio langus" msgstr "Rodyti tik dabartinio darbalaukio langus"
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:144 #: ../extensions/alternative-status-menu/extension.js:125
msgid "Suspend" msgid "Suspend"
msgstr "Užmigdyti" msgstr "Užmigdyti"
#: ../extensions/alternative-status-menu/extension.js:147 #: ../extensions/alternative-status-menu/extension.js:128
msgid "Hibernate" msgid "Hibernate"
msgstr "Hibernuoti" msgstr "Hibernuoti"
#: ../extensions/alternative-status-menu/extension.js:150 #: ../extensions/alternative-status-menu/extension.js:131
msgid "Power Off" msgid "Power Off"
msgstr "Išjungti" msgstr "Išjungti"
@@ -87,16 +87,15 @@ msgstr "Įjungti hibernavimą"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Valdyti hibernavimo meniu punkto matomumą" msgstr "Valdyti hibernavimo meniu punkto matomumą"
#: ../extensions/apps-menu/extension.js:50 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Veiklų apžvalga" msgstr "Veiklų apžvalga"
#: ../extensions/apps-menu/extension.js:103 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Mėgiamiausi" msgstr "Mėgiamiausi"
#: ../extensions/apps-menu/extension.js:197 #: ../extensions/apps-menu/extension.js:278
#| msgid "Application"
msgid "Applications" msgid "Applications"
msgstr "Programos" msgstr "Programos"
@@ -205,25 +204,25 @@ msgstr ""
"nepaisant numatyto talpinimo apačioje. Pakeitus šiuos nustatymus reikės " "nepaisant numatyto talpinimo apačioje. Pakeitus šiuos nustatymus reikės "
"paleisti apvalkalą iš naujo." "paleisti apvalkalą iš naujo."
#: ../extensions/places-menu/extension.js:57 #: ../extensions/places-menu/extension.js:77
msgid "Places" msgid "Places"
msgstr "Vietos" msgstr "Vietos"
#: ../extensions/places-menu/placeDisplay.js:48 #: ../extensions/places-menu/placeDisplay.js:56
#, c-format #, c-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "Nepavyko paleisti „%s“" msgstr "Nepavyko paleisti „%s“"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:121
msgid "Home"
msgstr "Namų aplankas"
#: ../extensions/places-menu/placeDisplay.js:195
msgid "Computer" msgid "Computer"
msgstr "Kompiuteris" msgstr "Kompiuteris"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:199
#| msgid "Browse network" msgid "Home"
msgstr "Namų aplankas"
#: ../extensions/places-menu/placeDisplay.js:286
msgid "Browse Network" msgid "Browse Network"
msgstr "Naršyti tinklą" msgstr "Naršyti tinklą"
@@ -248,12 +247,15 @@ msgid "When to group windows"
msgstr "Kada grupuoti langus" msgstr "Kada grupuoti langus"
#: ../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.in.h:2
#| msgid ""
#| "Decides when to group windows from the same application on the window "
#| "list. Possible values are \"never\" and \"always\"."
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Nusprendžia, kada grupuoti tos pačios programos langus langų sąraše. Galimos " "Nusprendžia, kada grupuoti tos pačios programos langus langų sąraše. Galimos "
"vertės yra „never“ ir „always“." "vertės yra „never“, „auto“ ir „always“."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -264,6 +266,10 @@ msgid "Never group windows"
msgstr "Niekada negrupuoti langų" msgstr "Niekada negrupuoti langų"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Grupuoti langus, kai yra ribotai vietos"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Visada grupuoti langus" msgstr "Visada grupuoti langus"
@@ -307,4 +313,3 @@ msgstr "Vaizduoklis"
#: ../extensions/xrandr-indicator/extension.js:80 #: ../extensions/xrandr-indicator/extension.js:80
msgid "Display Settings" msgid "Display Settings"
msgstr "Vaizduoklio nustatymai" msgstr "Vaizduoklio nustatymai"
+21 -16
View File
@@ -10,8 +10,8 @@ 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: 2013-02-08 15:40+0100\n" "POT-Creation-Date: 2013-04-19 21:13+0200\n"
"PO-Revision-Date: 2013-02-08 15:41+0100\n" "PO-Revision-Date: 2013-04-19 21:14+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"
@@ -61,15 +61,15 @@ 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"
#. add the new entries #. add the new entries
#: ../extensions/alternative-status-menu/extension.js:144 #: ../extensions/alternative-status-menu/extension.js:125
msgid "Suspend" msgid "Suspend"
msgstr "Uśpij" msgstr "Uśpij"
#: ../extensions/alternative-status-menu/extension.js:147 #: ../extensions/alternative-status-menu/extension.js:128
msgid "Hibernate" msgid "Hibernate"
msgstr "Hibernuj" msgstr "Hibernuj"
#: ../extensions/alternative-status-menu/extension.js:150 #: ../extensions/alternative-status-menu/extension.js:131
msgid "Power Off" msgid "Power Off"
msgstr "Wyłącz komputer" msgstr "Wyłącz komputer"
@@ -89,15 +89,15 @@ msgstr "Włączenie hibernacji"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Kontrola widoczności pozycji \"Hibernuj\" menu" msgstr "Kontrola widoczności pozycji \"Hibernuj\" menu"
#: ../extensions/apps-menu/extension.js:37 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Ekran podglądu" msgstr "Ekran podglądu"
#: ../extensions/apps-menu/extension.js:91 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Ulubione" msgstr "Ulubione"
#: ../extensions/apps-menu/extension.js:185 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Programy" msgstr "Programy"
@@ -207,24 +207,25 @@ 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:57 #: ../extensions/places-menu/extension.js:77
msgid "Places" msgid "Places"
msgstr "Miejsca" msgstr "Miejsca"
#: ../extensions/places-menu/placeDisplay.js:48 #: ../extensions/places-menu/placeDisplay.js:56
#, c-format #, c-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "Uruchomienie \"%s\" się nie powiodło" msgstr "Uruchomienie \"%s\" się nie powiodło"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:121
msgid "Home"
msgstr "Katalog domowy"
#: ../extensions/places-menu/placeDisplay.js:195
msgid "Computer" msgid "Computer"
msgstr "Komputer" msgstr "Komputer"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:199
msgid "Home"
msgstr "Katalog domowy"
#: ../extensions/places-menu/placeDisplay.js:286
msgid "Browse Network" msgid "Browse Network"
msgstr "Przeglądaj sieć" msgstr "Przeglądaj sieć"
@@ -251,10 +252,10 @@ 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.in.h:2
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Określa, kiedy grupować okna tego samego programu na liście okien. Możliwe " "Określa, kiedy grupować okna tego samego programu na liście okien. Możliwe "
"wartości to \"never\" i \"always\"." "wartości to \"never\", \"auto\" i \"always\"."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -265,6 +266,10 @@ msgid "Never group windows"
msgstr "Bez grupowania okien" msgstr "Bez grupowania okien"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Grupowanie okien, kiedy miejsce jest ograniczone"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Zawsze grupowanie okien" msgstr "Zawsze grupowanie okien"
+16 -9
View File
@@ -1,5 +1,5 @@
# Brazilian Portuguese translation for gnome-shell-extensions. # Brazilian Portuguese translation for gnome-shell-extensions.
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER # Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Felipe Borges <felipe10borges@gmail.com>, 2011. # Felipe Borges <felipe10borges@gmail.com>, 2011.
# Rodrigo Padula <contato@rodrigopadula.com>, 2011. # Rodrigo Padula <contato@rodrigopadula.com>, 2011.
@@ -13,8 +13,8 @@ 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: 2013-03-08 13:34+0000\n" "POT-Creation-Date: 2013-04-16 19:31+0000\n"
"PO-Revision-Date: 2013-03-10 21:46-0300\n" "PO-Revision-Date: 2013-04-16 22:39-0300\n"
"Last-Translator: Rafael Ferreira <rafael.f.f1@gmail.com>\n" "Last-Translator: Rafael Ferreira <rafael.f.f1@gmail.com>\n"
"Language-Team: Brazilian Portuguese <gnome-pt_br-list@gnome.org>\n" "Language-Team: Brazilian Portuguese <gnome-pt_br-list@gnome.org>\n"
"Language: pt_BR\n" "Language: pt_BR\n"
@@ -22,7 +22,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.5.4\n" "X-Generator: Poedit 1.5.5\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: ../data/gnome-classic.desktop.in.h:1 #: ../data/gnome-classic.desktop.in.h:1
@@ -91,15 +91,15 @@ msgstr "Habilitar hibernação"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Controla a visibilidade do item de menu Hibernar" msgstr "Controla a visibilidade do item de menu Hibernar"
#: ../extensions/apps-menu/extension.js:37 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Panorama de atividades" msgstr "Panorama de atividades"
#: ../extensions/apps-menu/extension.js:95 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: ../extensions/apps-menu/extension.js:184 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Aplicativos" msgstr "Aplicativos"
@@ -252,12 +252,15 @@ msgid "When to group windows"
msgstr "Quando agrupar janelas" msgstr "Quando agrupar janelas"
#: ../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.in.h:2
#| msgid ""
#| "Decides when to group windows from the same application on the window "
#| "list. Possible values are \"never\" and \"always\"."
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Decide quando agrupar janelas do mesmo aplicativo na lista de janelas. " "Decide quando agrupar janelas do mesmo aplicativo na lista de janelas. "
"Valores possível são \"nunca\" e \"sempre\"." "Valores possíveis são \"nunca\", \"auto\" e \"sempre\"."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -268,6 +271,10 @@ msgid "Never group windows"
msgstr "Nunca agrupar janelas" msgstr "Nunca agrupar janelas"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Agrupar janelas quando espaço estiver limitado"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Sempre agrupar janelas" msgstr "Sempre agrupar janelas"
+12 -8
View File
@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: 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: 2013-03-07 17:02+0000\n" "POT-Creation-Date: 2013-04-20 13:37+0000\n"
"PO-Revision-Date: 2013-03-07 21:56+0100\n" "PO-Revision-Date: 2013-04-21 08:07+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: sl_SI\n" "Language: sl_SI\n"
@@ -88,15 +88,15 @@ msgstr "Omogoči mirovanje"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Upravljanje vidnosti menijskega ukaza V mirovanje" msgstr "Upravljanje vidnosti menijskega ukaza V mirovanje"
#: ../extensions/apps-menu/extension.js:37 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Pregled dejavnosti" msgstr "Pregled dejavnosti"
#: ../extensions/apps-menu/extension.js:95 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Priljubljeno" msgstr "Priljubljeno"
#: ../extensions/apps-menu/extension.js:184 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Programi" msgstr "Programi"
@@ -251,10 +251,10 @@ msgstr "Kdaj naj se okna združujejo"
#: ../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.in.h:2
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Določi, kdaj se okna v seznamu združujejo. Veljavni vrednosti sta \"nikoli\" " "Določi, kdaj se okna v seznamu združujejo. Veljavne vrednosti so \"nikoli\", "
"ali \"vedno\"." "\"samodejno\" in \"vedno\"."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -265,6 +265,10 @@ msgid "Never group windows"
msgstr "Nikoli ne združuj oken" msgstr "Nikoli ne združuj oken"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Združi okna v skupine, ko je prostor omejen"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Vedno združuj okna" msgstr "Vedno združuj okna"
+17 -9
View File
@@ -8,16 +8,16 @@ 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: 2013-02-20 11:19+0000\n" "POT-Creation-Date: 2013-04-19 19:12+0000\n"
"PO-Revision-Date: 2013-02-20 12:19+0200\n" "PO-Revision-Date: 2013-05-14 18:48+0200\n"
"Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n" "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
"Language-Team: Serbian <gnom@prevod.org>\n" "Language-Team: Serbian <gnom@prevod.org>\n"
"Language: sr\n" "Language: sr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" "Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : "
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: ../data/gnome-classic.desktop.in.h:1 #: ../data/gnome-classic.desktop.in.h:1
@@ -86,15 +86,15 @@ msgstr "Укључује замрзавање"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Управља видљивошћу ставке изборника замрзавања" msgstr "Управља видљивошћу ставке изборника замрзавања"
#: ../extensions/apps-menu/extension.js:37 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Преглед активности" msgstr "Преглед активности"
#: ../extensions/apps-menu/extension.js:95 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Омиљено" msgstr "Омиљено"
#: ../extensions/apps-menu/extension.js:189 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Програми" msgstr "Програми"
@@ -246,12 +246,16 @@ msgid "When to group windows"
msgstr "Када груписати прозоре" 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.in.h:2
#| msgid ""
#| "Decides when to group windows from the same application on the window "
#| "list. Possible values are \"never\" and \"always\"."
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Одређује када ће бити груписани прозори истог програма у списку прозора. " "Одређује када ће бити груписани прозори истог програма у списку прозора. "
"Дозвољене вредности су „never“ (никад) и „always“ (увек)." "Дозвољене вредности су „never“ (никад), „auto“ (аутоматски) и „always“ "
"(увек)."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -262,6 +266,10 @@ msgid "Never group windows"
msgstr "Никад не групиши прозоре" msgstr "Никад не групиши прозоре"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Групиши прозоре када је простор ограничен"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Увек групиши прозоре" msgstr "Увек групиши прозоре"
+17 -9
View File
@@ -8,16 +8,16 @@ 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: 2013-02-20 11:19+0000\n" "POT-Creation-Date: 2013-04-19 19:12+0000\n"
"PO-Revision-Date: 2013-02-20 12:19+0200\n" "PO-Revision-Date: 2013-05-14 18:48+0200\n"
"Last-Translator: Miroslav Nikolić <miroslavnikolic@rocketmail.com>\n" "Last-Translator: Miroslav Nikolić <miroslavnikolic@rocketmail.com>\n"
"Language-Team: Serbian <gnom@prevod.org>\n" "Language-Team: Serbian <gnom@prevod.org>\n"
"Language: sr\n" "Language: sr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : n" "Plural-Forms: nplurals=4; plural=n==1? 3 : n%10==1 && n%100!=11 ? 0 : "
"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Project-Style: gnome\n" "X-Project-Style: gnome\n"
#: ../data/gnome-classic.desktop.in.h:1 #: ../data/gnome-classic.desktop.in.h:1
@@ -86,15 +86,15 @@ msgstr "Uključuje zamrzavanje"
msgid "Control the visibility of the Hibernate menu item" msgid "Control the visibility of the Hibernate menu item"
msgstr "Upravlja vidljivošću stavke izbornika zamrzavanja" msgstr "Upravlja vidljivošću stavke izbornika zamrzavanja"
#: ../extensions/apps-menu/extension.js:37 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Pregled aktivnosti" msgstr "Pregled aktivnosti"
#: ../extensions/apps-menu/extension.js:95 #: ../extensions/apps-menu/extension.js:113
msgid "Favorites" msgid "Favorites"
msgstr "Omiljeno" msgstr "Omiljeno"
#: ../extensions/apps-menu/extension.js:189 #: ../extensions/apps-menu/extension.js:278
msgid "Applications" msgid "Applications"
msgstr "Programi" msgstr "Programi"
@@ -246,12 +246,16 @@ msgid "When to group windows"
msgstr "Kada grupisati prozore" msgstr "Kada grupisati prozore"
#: ../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.in.h:2
#| msgid ""
#| "Decides when to group windows from the same application on the window "
#| "list. Possible values are \"never\" and \"always\"."
msgid "" msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"Određuje kada će biti grupisani prozori istog programa u spisku prozora. " "Određuje kada će biti grupisani prozori istog programa u spisku prozora. "
"Dozvoljene vrednosti su „never“ (nikad) i „always“ (uvek)." "Dozvoljene vrednosti su „never“ (nikad), „auto“ (automatski) i „always“ "
"(uvek)."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
msgid "Window Grouping" msgid "Window Grouping"
@@ -262,6 +266,10 @@ msgid "Never group windows"
msgstr "Nikad ne grupiši prozore" msgstr "Nikad ne grupiši prozore"
#: ../extensions/window-list/prefs.js:50 #: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Grupiši prozore kada je prostor ograničen"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows" msgid "Always group windows"
msgstr "Uvek grupiši prozore" msgstr "Uvek grupiši prozore"