Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8349925139 | ||
|
|
374abed8a1 | ||
|
|
dd6b0dc7a9 | ||
|
|
85620c0adb | ||
|
|
a585fa111a | ||
|
|
0d15e68904 | ||
|
|
a6c379f5ed | ||
|
|
60efccc4ad | ||
|
|
6f4e615999 | ||
|
|
2794d9d9d7 | ||
|
|
10d4458ef2 | ||
|
|
7900ed69c4 | ||
|
|
96a79e87f2 | ||
|
|
aad6bad1a6 | ||
|
|
53fc6c795b | ||
|
|
0e37feff15 | ||
|
|
e488482a2c | ||
|
|
c4b40926bd | ||
|
|
da622f3f61 | ||
|
|
3c5b893830 |
21
Makefile.am
21
Makefile.am
@@ -3,3 +3,24 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|||||||
SUBDIRS = extensions po
|
SUBDIRS = extensions po
|
||||||
|
|
||||||
DISTCHECK_CONFIGURE_FLAGS = --enable-extensions=all
|
DISTCHECK_CONFIGURE_FLAGS = --enable-extensions=all
|
||||||
|
|
||||||
|
include include.mk
|
||||||
|
|
||||||
|
zip-file: all
|
||||||
|
-rm -fR $(builddir)/_build
|
||||||
|
-rm -fR $(builddir)/zip-files
|
||||||
|
mkdir $(builddir)/_build; \
|
||||||
|
mkdir $(builddir)/zip-files; \
|
||||||
|
$(MAKE) install DESTDIR="`pwd`/_build"; \
|
||||||
|
for i in $(ENABLED_EXTENSIONS); do \
|
||||||
|
mv "`pwd`/_build/$(topextensiondir)/$${i}$(extensionbase)" "`pwd`/_build/"; \
|
||||||
|
cp -r "`pwd`/_build/$(datadir)/locale" "`pwd`/_build/$${i}$(extensionbase)"; \
|
||||||
|
if [ -f "`pwd`/_build/$(datadir)/glib-2.0/schemas/$(gschemabase).$${i}.gschema.xml" ]; then \
|
||||||
|
mkdir "`pwd`/_build/$${i}$(extensionbase)/schemas"; \
|
||||||
|
mv "`pwd`/_build/$(datadir)/glib-2.0/schemas/$(gschemabase).$${i}.gschema.xml" "`pwd`/_build/$${i}$(extensionbase)/schemas"; \
|
||||||
|
glib-compile-schemas "`pwd`/_build/$${i}$(extensionbase)/schemas"; \
|
||||||
|
fi; \
|
||||||
|
(cd "`pwd`/_build/$${i}$(extensionbase)"; \
|
||||||
|
zip -qr "$(abs_builddir)/zip-files/$${i}$(extensionbase).shell-extension.zip" .; \
|
||||||
|
); \
|
||||||
|
done
|
||||||
|
|||||||
16
NEWS
16
NEWS
@@ -1,3 +1,19 @@
|
|||||||
|
3.2.2
|
||||||
|
=====
|
||||||
|
* various: fix missing GLib import
|
||||||
|
* workspace-indicator: fix when removing the last workspace
|
||||||
|
* alternative-status-menu: fix long standing crash without avatar
|
||||||
|
* alternate-tab: use GConf binding names
|
||||||
|
* all: remove GSettings usage and allow local installation
|
||||||
|
* all: update translations
|
||||||
|
|
||||||
|
3.2.2
|
||||||
|
=====
|
||||||
|
* made extensions self-contained with respect to translations
|
||||||
|
(for schema files gnome-shell master is needed)
|
||||||
|
* cherry-picked some bug fixes
|
||||||
|
* cherry-picked translations
|
||||||
|
|
||||||
3.2.1
|
3.2.1
|
||||||
=====
|
=====
|
||||||
* dock: added "move" hide effect
|
* dock: added "move" hide effect
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
AC_INIT([gnome-shell-extensions],[3.2.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
AC_INIT([gnome-shell-extensions],[3.2.3],[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])
|
||||||
|
|||||||
13
extension.mk
13
extension.mk
@@ -1,12 +1,4 @@
|
|||||||
extensionurl = http://git.gnome.org/gnome-shell-extensions
|
include $(top_srcdir)/include.mk
|
||||||
|
|
||||||
# Change these to modify how installation is performed
|
|
||||||
topextensiondir = $(datadir)/gnome-shell/extensions
|
|
||||||
extensionbase = @gnome-shell-extensions.gcampax.github.com
|
|
||||||
|
|
||||||
uuid = $(EXTENSION_ID)$(extensionbase)
|
|
||||||
|
|
||||||
extensiondir = $(topextensiondir)/$(uuid)
|
|
||||||
|
|
||||||
dist_extension_DATA = extension.js stylesheet.css
|
dist_extension_DATA = extension.js stylesheet.css
|
||||||
nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION)
|
nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION)
|
||||||
@@ -14,8 +6,7 @@ nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION)
|
|||||||
EXTRA_DIST = metadata.json.in
|
EXTRA_DIST = metadata.json.in
|
||||||
|
|
||||||
metadata.json: metadata.json.in $(top_builddir)/config.status
|
metadata.json: metadata.json.in $(top_builddir)/config.status
|
||||||
$(AM_V_GEN) sed -e "s|[@]LOCALEDIR@|$(datadir)/locale|" \
|
$(AM_V_GEN) sed -e "s|[@]uuid@|$(uuid)|" \
|
||||||
-e "s|[@]uuid@|$(uuid)|" \
|
|
||||||
-e "s|[@]shell_current@|$(PACKAGE_VERSION)|" \
|
-e "s|[@]shell_current@|$(PACKAGE_VERSION)|" \
|
||||||
-e "s|[@]url@|$(extensionurl)|" $< > $@
|
-e "s|[@]url@|$(extensionurl)|" $< > $@
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,3 @@
|
|||||||
EXTENSION_ID = alternate-tab
|
EXTENSION_ID = alternate-tab
|
||||||
|
|
||||||
include ../../extension.mk
|
include ../../extension.mk
|
||||||
|
|
||||||
gschemas_in = org.gnome.shell.extensions.alternate-tab.gschema.xml.in
|
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
|
||||||
|
|
||||||
gsettings_SCHEMAS = $(gschemas_in:.xml.in=.xml)
|
|
||||||
|
|
||||||
@GSETTINGS_RULES@
|
|
||||||
|
|
||||||
CLEANFILES += $(gschemas_in:.xml.in=.valid) $(gsettings_SCHEMAS)
|
|
||||||
EXTRA_DIST += $(gschemas_in)
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ const Clutter = imports.gi.Clutter;
|
|||||||
const Gdk = imports.gi.Gdk;
|
const Gdk = imports.gi.Gdk;
|
||||||
const Gio = imports.gi.Gio;
|
const Gio = imports.gi.Gio;
|
||||||
const Gtk = imports.gi.Gtk;
|
const Gtk = imports.gi.Gtk;
|
||||||
|
const GLib = imports.gi.GLib;
|
||||||
const Lang = imports.lang;
|
const Lang = imports.lang;
|
||||||
const Main = imports.ui.main;
|
const Main = imports.ui.main;
|
||||||
const Mainloop = imports.mainloop;
|
const Mainloop = imports.mainloop;
|
||||||
@@ -25,9 +26,9 @@ const N_ = function(e) { return e };
|
|||||||
|
|
||||||
const POPUP_DELAY_TIMEOUT = 150; // milliseconds
|
const POPUP_DELAY_TIMEOUT = 150; // milliseconds
|
||||||
|
|
||||||
const SETTINGS_SCHEMA = 'org.gnome.shell.extensions.alternate-tab';
|
// Settings: choose one of MODES, the description is in MESSAGE
|
||||||
const SETTINGS_BEHAVIOUR_KEY = 'behaviour';
|
// (master branch has a nice dialog, but we cannot in gnome 3.2)
|
||||||
const SETTINGS_FIRST_TIME_KEY = 'first-time';
|
const BEHAVIOUR = 'all_thumbnails';
|
||||||
|
|
||||||
const MODES = {
|
const MODES = {
|
||||||
all_thumbnails: function(shellwm, binding, mask, window, backwards) {
|
all_thumbnails: function(shellwm, binding, mask, window, backwards) {
|
||||||
@@ -266,6 +267,8 @@ WindowSwitcher.prototype = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* This object is never instantiated in the current branch, but
|
||||||
|
I don't trust git merge enough to remove it */
|
||||||
function AltTabSettingsDialog() {
|
function AltTabSettingsDialog() {
|
||||||
this._init();
|
this._init();
|
||||||
}
|
}
|
||||||
@@ -462,7 +465,6 @@ AltTabPopup2.prototype = {
|
|||||||
return true
|
return true
|
||||||
},
|
},
|
||||||
|
|
||||||
/*
|
|
||||||
_keyPressEvent : function(actor, event) {
|
_keyPressEvent : function(actor, event) {
|
||||||
let keysym = event.get_key_symbol();
|
let keysym = event.get_key_symbol();
|
||||||
let shift = (Shell.get_event_state(event) & Clutter.ModifierType.SHIFT_MASK);
|
let shift = (Shell.get_event_state(event) & Clutter.ModifierType.SHIFT_MASK);
|
||||||
@@ -508,7 +510,6 @@ AltTabPopup2.prototype = {
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
*/
|
|
||||||
|
|
||||||
_sortWindows : function(win1,win2) {
|
_sortWindows : function(win1,win2) {
|
||||||
let t1 = win1.get_user_time();
|
let t1 = win1.get_user_time();
|
||||||
@@ -595,33 +596,26 @@ WindowList.prototype = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
function doAltTab(shellwm, binding, mask, window, backwards) {
|
function doAltTab(shellwm, binding, mask, window, backwards) {
|
||||||
let settings = new Gio.Settings({ schema: SETTINGS_SCHEMA });
|
let behaviour = BEHAVIOUR;
|
||||||
|
if(behaviour in MODES) {
|
||||||
|
MODES[behaviour](shellwm, binding, mask, window, backwards);
|
||||||
if(settings.get_boolean(SETTINGS_FIRST_TIME_KEY)) {
|
|
||||||
new AltTabSettingsDialog().open();
|
|
||||||
} else {
|
|
||||||
let behaviour = settings.get_string(SETTINGS_BEHAVIOUR_KEY);
|
|
||||||
if(behaviour in MODES) {
|
|
||||||
MODES[behaviour](shellwm, binding, mask, window, backwards);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function enable() {
|
function enable() {
|
||||||
Main.wm.setKeybindingHandler('switch-windows', doAltTab);
|
Main.wm.setKeybindingHandler('switch_windows', doAltTab);
|
||||||
Main.wm.setKeybindingHandler('switch-group', doAltTab);
|
Main.wm.setKeybindingHandler('switch_group', doAltTab);
|
||||||
Main.wm.setKeybindingHandler('switch-windows-backward', doAltTab);
|
Main.wm.setKeybindingHandler('switch_windows_backward', doAltTab);
|
||||||
Main.wm.setKeybindingHandler('switch-group-backward', doAltTab);
|
Main.wm.setKeybindingHandler('switch_group_backward', doAltTab);
|
||||||
}
|
}
|
||||||
|
|
||||||
function disable() {
|
function disable() {
|
||||||
Main.wm.setKeybindingHandler('switch-windows', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
Main.wm.setKeybindingHandler('switch_windows', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||||
Main.wm.setKeybindingHandler('switch-group', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
Main.wm.setKeybindingHandler('switch_group', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||||
Main.wm.setKeybindingHandler('switch-windows-backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
Main.wm.setKeybindingHandler('switch_windows_backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||||
Main.wm.setKeybindingHandler('switch-group-backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
Main.wm.setKeybindingHandler('switch_group_backward', Lang.bind(Main.wm, Main.wm._startAppSwitcher));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,5 @@
|
|||||||
"description": "A replacement for Alt-Tab, allows to cycle between windows and does not group by application",
|
"description": "A replacement for Alt-Tab, allows to cycle between windows and does not group by application",
|
||||||
"original-authors": [ "jw@bargsten.org", "thomas.bouffon@gmail.com" ],
|
"original-authors": [ "jw@bargsten.org", "thomas.bouffon@gmail.com" ],
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
<schemalist gettext-domain="gnome-shell-extensions">
|
|
||||||
<enum id="org.gnome.shell.extensions.alternate-tab.BehaviourMode">
|
|
||||||
<value value="1" nick="all_thumbnails"/>
|
|
||||||
<value value="2" nick="workspace_icons"/>
|
|
||||||
</enum>
|
|
||||||
<schema id="org.gnome.shell.extensions.alternate-tab" path="/org/gnome/shell/extensions/alternate-tab/">
|
|
||||||
<key name="behaviour" enum="org.gnome.shell.extensions.alternate-tab.BehaviourMode">
|
|
||||||
<default>'all_thumbnails'</default>
|
|
||||||
<_summary>The alt tab behaviour.</_summary>
|
|
||||||
<_description>Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and workspace_icons.</_description>
|
|
||||||
</key>
|
|
||||||
<key type="b" name="first-time">
|
|
||||||
<default>true</default>
|
|
||||||
<_summary>Indicates if Alternate Tab is newly installed</_summary>
|
|
||||||
<_description>Ask the user for a default behaviour if true.</_description>
|
|
||||||
</key>
|
|
||||||
</schema>
|
|
||||||
</schemalist>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
/* -*- mode: js2 - indent-tabs-mode: nil - js2-basic-offset: 4 -*- */
|
/* -*- mode: js2 - indent-tabs-mode: nil - js2-basic-offset: 4 -*- */
|
||||||
|
const GLib = imports.gi.GLib;
|
||||||
const Lang = imports.lang;
|
const Lang = imports.lang;
|
||||||
const St = imports.gi.St;
|
const St = imports.gi.St;
|
||||||
|
|
||||||
@@ -99,7 +100,14 @@ function createSubMenu() {
|
|||||||
|
|
||||||
// Put your extension initialization code here
|
// Put your extension initialization code here
|
||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
|
}
|
||||||
|
|
||||||
|
function predestroy(statusMenu) {
|
||||||
|
// HACK! disconnect signals to avoid references to destroyed objects
|
||||||
|
let imstatusitem = statusMenu.menu._getMenuItems()[0];
|
||||||
|
imstatusitem._user.disconnect(imstatusitem._userLoadedId);
|
||||||
|
imstatusitem._user.disconnect(imstatusitem._userChangedId);
|
||||||
}
|
}
|
||||||
|
|
||||||
function reset(statusMenu) {
|
function reset(statusMenu) {
|
||||||
@@ -115,7 +123,10 @@ function reset(statusMenu) {
|
|||||||
|
|
||||||
function enable() {
|
function enable() {
|
||||||
let statusMenu = Main.panel._statusArea.userMenu;
|
let statusMenu = Main.panel._statusArea.userMenu;
|
||||||
|
|
||||||
|
predestroy(statusMenu);
|
||||||
statusMenu.menu.removeAll();
|
statusMenu.menu.removeAll();
|
||||||
|
|
||||||
createSubMenu.call(statusMenu);
|
createSubMenu.call(statusMenu);
|
||||||
reset(statusMenu);
|
reset(statusMenu);
|
||||||
}
|
}
|
||||||
@@ -123,7 +134,10 @@ function enable() {
|
|||||||
function disable() {
|
function disable() {
|
||||||
// not guarranteed to work, if more extensions operate in the same place
|
// not guarranteed to work, if more extensions operate in the same place
|
||||||
let statusMenu = Main.panel._statusArea.userMenu;
|
let statusMenu = Main.panel._statusArea.userMenu;
|
||||||
|
|
||||||
|
predestroy(statusMenu);
|
||||||
statusMenu.menu.removeAll();
|
statusMenu.menu.removeAll();
|
||||||
|
|
||||||
statusMenu._createSubMenu();
|
statusMenu._createSubMenu();
|
||||||
reset(statusMenu);
|
reset(statusMenu);
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,5 @@
|
|||||||
"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@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,7 +68,8 @@ ApplicationsButton.prototype = {
|
|||||||
if (nextType == GMenu.TreeItemType.ENTRY) {
|
if (nextType == GMenu.TreeItemType.ENTRY) {
|
||||||
var entry = iter.get_entry();
|
var entry = iter.get_entry();
|
||||||
var app = appsys.lookup_app_by_tree_entry(entry);
|
var app = appsys.lookup_app_by_tree_entry(entry);
|
||||||
menu.addMenuItem(new AppMenuItem(app));
|
if (!entry.get_app_info().get_nodisplay())
|
||||||
|
menu.addMenuItem(new AppMenuItem(app));
|
||||||
} else if (nextType == GMenu.TreeItemType.DIRECTORY) {
|
} else if (nextType == GMenu.TreeItemType.DIRECTORY) {
|
||||||
this._loadCategory(iter.get_directory(), menu);
|
this._loadCategory(iter.get_directory(), menu);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"name": "Applications Menu",
|
"name": "Applications Menu",
|
||||||
"description": "Add a gnome 2.x style menu for applications",
|
"description": "Add a gnome 2.x style menu for applications",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,3 @@
|
|||||||
EXTENSION_ID = auto-move-windows
|
EXTENSION_ID = auto-move-windows
|
||||||
|
|
||||||
include ../../extension.mk
|
include ../../extension.mk
|
||||||
|
|
||||||
gschemas_in = org.gnome.shell.extensions.auto-move-windows.gschema.xml.in
|
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
|
||||||
|
|
||||||
gsettings_SCHEMAS = $(gschemas_in:.xml.in=.xml)
|
|
||||||
|
|
||||||
@GSETTINGS_RULES@
|
|
||||||
|
|
||||||
CLEANFILES += $(gschemas_in:.xml.in=.valid) $(gsettings_SCHEMAS)
|
|
||||||
EXTRA_DIST += $(gschemas_in)
|
|
||||||
|
|||||||
@@ -11,8 +11,9 @@ const St = imports.gi.St;
|
|||||||
|
|
||||||
const Main = imports.ui.main;
|
const Main = imports.ui.main;
|
||||||
|
|
||||||
const SETTINGS_SCHEMA = 'org.gnome.shell.extensions.auto-move-windows';
|
// list of applications and workspace pairs
|
||||||
const SETTINGS_KEY = 'application-list';
|
// format: "desktop-file-id.desktop:<num>"
|
||||||
|
const APPLICATIONS = [ ];
|
||||||
|
|
||||||
function WindowMover() {
|
function WindowMover() {
|
||||||
this._init();
|
this._init();
|
||||||
@@ -20,7 +21,6 @@ function WindowMover() {
|
|||||||
|
|
||||||
WindowMover.prototype = {
|
WindowMover.prototype = {
|
||||||
_init: function() {
|
_init: function() {
|
||||||
this._settings = new Gio.Settings({ schema: SETTINGS_SCHEMA });
|
|
||||||
this._windowTracker = Shell.WindowTracker.get_default();
|
this._windowTracker = Shell.WindowTracker.get_default();
|
||||||
|
|
||||||
let display = global.screen.get_display();
|
let display = global.screen.get_display();
|
||||||
@@ -46,7 +46,7 @@ WindowMover.prototype = {
|
|||||||
if (!this._windowTracker.is_window_interesting(window))
|
if (!this._windowTracker.is_window_interesting(window))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
let spaces = this._settings.get_strv(SETTINGS_KEY);
|
let spaces = APPLICATIONS;
|
||||||
|
|
||||||
let app = this._windowTracker.get_window_app(window);
|
let app = this._windowTracker.get_window_app(window);
|
||||||
if (!app) {
|
if (!app) {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
"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@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"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,10 +0,0 @@
|
|||||||
<schemalist gettext-domain="gnome-shell-extensions">
|
|
||||||
<schema id="org.gnome.shell.extensions.auto-move-windows" path="/org/gnome/shell/extensions/auto-move-windows/">
|
|
||||||
<key name="application-list" type="as">
|
|
||||||
<!-- FIXME: should be a(su), when JS supports more of GVariant -->
|
|
||||||
<default>[ ]</default>
|
|
||||||
<_summary>Application and workspace list</_summary>
|
|
||||||
<_description>A list of strings, each containing an application id (desktop file name), followed by a colon and the workspace number</_description>
|
|
||||||
</key>
|
|
||||||
</schema>
|
|
||||||
</schemalist>
|
|
||||||
@@ -1,14 +1,3 @@
|
|||||||
EXTENSION_ID = dock
|
EXTENSION_ID = dock
|
||||||
|
|
||||||
include ../../extension.mk
|
include ../../extension.mk
|
||||||
|
|
||||||
gschemas_in = org.gnome.shell.extensions.dock.gschema.xml.in
|
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
|
||||||
|
|
||||||
gsettings_SCHEMAS = $(gschemas_in:.xml.in=.xml)
|
|
||||||
|
|
||||||
@GSETTINGS_RULES@
|
|
||||||
|
|
||||||
CLEANFILES += $(gschemas_in:.xml.in=.valid) $(gsettings_SCHEMAS)
|
|
||||||
EXTRA_DIST += $(gschemas_in)
|
|
||||||
|
|||||||
@@ -25,15 +25,6 @@ const AltTab = imports.ui.altTab;
|
|||||||
const Gettext = imports.gettext.domain('gnome-shell-extensions');
|
const Gettext = imports.gettext.domain('gnome-shell-extensions');
|
||||||
const _ = Gettext.gettext;
|
const _ = Gettext.gettext;
|
||||||
|
|
||||||
// Settings
|
|
||||||
const DOCK_SETTINGS_SCHEMA = 'org.gnome.shell.extensions.dock';
|
|
||||||
const DOCK_POSITION_KEY = 'position';
|
|
||||||
const DOCK_SIZE_KEY = 'size';
|
|
||||||
const DOCK_HIDE_KEY = 'autohide';
|
|
||||||
const DOCK_EFFECTHIDE_KEY = 'hide-effect';
|
|
||||||
const DOCK_AUTOHIDE_ANIMATION_TIME_KEY = 'hide-effect-duration';
|
|
||||||
|
|
||||||
|
|
||||||
//hide
|
//hide
|
||||||
//const autohide_animation_time = 0.3;
|
//const autohide_animation_time = 0.3;
|
||||||
|
|
||||||
@@ -49,6 +40,15 @@ const AutoHideEffect = {
|
|||||||
MOVE: 2
|
MOVE: 2
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Settings
|
||||||
|
const DOCK_POSITION = PositionMode.RIGHT;
|
||||||
|
const DOCK_SIZE = 48;
|
||||||
|
const DOCK_AUTOHIDE = true;
|
||||||
|
const DOCK_EFFECTHIDE = AutoHideEffect.MOVE;
|
||||||
|
const DOCK_AUTOHIDE_ANIMATION_TIME = 0.3;
|
||||||
|
// Do not change anything below this line (it is intentionally duplicate to keep in
|
||||||
|
// sync with master branch)
|
||||||
|
|
||||||
let position = PositionMode.RIGHT;
|
let position = PositionMode.RIGHT;
|
||||||
let dockicon_size = 48;
|
let dockicon_size = 48;
|
||||||
let hideable = true;
|
let hideable = true;
|
||||||
@@ -340,15 +340,11 @@ Dock.prototype = {
|
|||||||
this._favorites = [];
|
this._favorites = [];
|
||||||
|
|
||||||
// Load Settings
|
// Load Settings
|
||||||
this._settings = new Gio.Settings({ schema: DOCK_SETTINGS_SCHEMA });
|
position = DOCK_POSITION;
|
||||||
position = this._settings.get_enum(DOCK_POSITION_KEY);
|
dockicon_size = DOCK_SIZE;
|
||||||
dockicon_size = this._settings.get_int(DOCK_SIZE_KEY);
|
hideDock = hideable = DOCK_AUTOHIDE;
|
||||||
hideDock = hideable = this._settings.get_boolean(DOCK_HIDE_KEY);
|
hideEffect = DOCK_EFFECTHIDE;
|
||||||
hideEffect = this._settings.get_enum(DOCK_EFFECTHIDE_KEY);
|
autohide_animation_time = DOCK_AUTOHIDE_ANIMATION_TIME;
|
||||||
autohide_animation_time = this._settings.get_double(DOCK_AUTOHIDE_ANIMATION_TIME_KEY);
|
|
||||||
//global.log("POSITION: " + position);
|
|
||||||
//global.log("dockicon_size: " + dockicon_size);
|
|
||||||
|
|
||||||
|
|
||||||
this._spacing = 4;
|
this._spacing = 4;
|
||||||
this._item_size = dockicon_size;
|
this._item_size = dockicon_size;
|
||||||
@@ -382,72 +378,6 @@ Dock.prototype = {
|
|||||||
}));
|
}));
|
||||||
Main.layoutManager.addChrome(this.actor);
|
Main.layoutManager.addChrome(this.actor);
|
||||||
|
|
||||||
//hidden
|
|
||||||
this._settings.connect('changed::'+DOCK_POSITION_KEY, Lang.bind(this, function (){
|
|
||||||
if (!this._settings)
|
|
||||||
return;
|
|
||||||
|
|
||||||
let primary = Main.layoutManager.primaryMonitor;
|
|
||||||
position = this._settings.get_enum(DOCK_POSITION_KEY);
|
|
||||||
this.actor.y=primary.y;
|
|
||||||
this._redisplay();
|
|
||||||
}));
|
|
||||||
|
|
||||||
this._settings.connect('changed::'+DOCK_SIZE_KEY, Lang.bind(this, function (){
|
|
||||||
if (!this._settings)
|
|
||||||
return;
|
|
||||||
|
|
||||||
dockicon_size = this._settings.get_int(DOCK_SIZE_KEY);
|
|
||||||
this._redisplay();
|
|
||||||
}));
|
|
||||||
|
|
||||||
this._settings.connect('changed::'+DOCK_HIDE_KEY, Lang.bind(this, function (){
|
|
||||||
if (!this._settings)
|
|
||||||
return;
|
|
||||||
|
|
||||||
hideable = this._settings.get_boolean(DOCK_HIDE_KEY);
|
|
||||||
if (hideable){
|
|
||||||
hideDock=false;
|
|
||||||
this._hideDock();
|
|
||||||
} else {
|
|
||||||
hideDock=true;
|
|
||||||
this._showDock();
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
this._settings.connect('changed::'+DOCK_EFFECTHIDE_KEY, Lang.bind(this, function () {
|
|
||||||
if (!this._settings)
|
|
||||||
return;
|
|
||||||
|
|
||||||
hideEffect = this._settings.get_enum(DOCK_EFFECTHIDE_KEY);
|
|
||||||
|
|
||||||
switch (hideEffect) {
|
|
||||||
case AutoHideEffect.RESCALE:
|
|
||||||
this._item_size=dockicon_size;
|
|
||||||
break;
|
|
||||||
case AutoHideEffect.RESIZE:
|
|
||||||
this.actor.set_scale (1,1);
|
|
||||||
break;
|
|
||||||
case AutoHideEffect.MOVE:
|
|
||||||
;
|
|
||||||
}
|
|
||||||
this.actor.disconnect(this._leave_event);
|
|
||||||
this.actor.disconnect(this._enter_event);
|
|
||||||
|
|
||||||
this._selectFunctionsHide ();
|
|
||||||
|
|
||||||
this._leave_event = this.actor.connect('leave-event', Lang.bind(this, this._hideDock));
|
|
||||||
this._enter_event = this.actor.connect('enter-event', Lang.bind(this, this._showDock));
|
|
||||||
this._redisplay();
|
|
||||||
}));
|
|
||||||
|
|
||||||
this._settings.connect('changed::'+DOCK_AUTOHIDE_ANIMATION_TIME_KEY, Lang.bind(this,function (){
|
|
||||||
if (!this._settings)
|
|
||||||
return;
|
|
||||||
|
|
||||||
autohide_animation_time = this._settings.get_double(DOCK_AUTOHIDE_ANIMATION_TIME_KEY);
|
|
||||||
}));
|
|
||||||
|
|
||||||
this._leave_event = this.actor.connect('leave-event', Lang.bind(this, this._hideDock));
|
this._leave_event = this.actor.connect('leave-event', Lang.bind(this, this._hideDock));
|
||||||
this._enter_event = this.actor.connect('enter-event', Lang.bind(this, this._showDock));
|
this._enter_event = this.actor.connect('enter-event', Lang.bind(this, this._showDock));
|
||||||
|
|
||||||
@@ -483,14 +413,13 @@ Dock.prototype = {
|
|||||||
this.actor.destroy();
|
this.actor.destroy();
|
||||||
|
|
||||||
// Break reference cycles
|
// Break reference cycles
|
||||||
this._settings = null;
|
|
||||||
this._appSystem = null;
|
this._appSystem = null;
|
||||||
this._tracker = null;
|
this._tracker = null;
|
||||||
},
|
},
|
||||||
|
|
||||||
// fuctions hide
|
// fuctions hide
|
||||||
_restoreHideDock: function(){
|
_restoreHideDock: function(){
|
||||||
hideable = this._settings.get_boolean(DOCK_HIDE_KEY);
|
hideable = DOCK_AUTOHIDE;
|
||||||
},
|
},
|
||||||
|
|
||||||
_disableHideDock: function (){
|
_disableHideDock: function (){
|
||||||
@@ -935,7 +864,7 @@ DockIconMenu.prototype = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function init(extensionMeta) {
|
function init(extensionMeta) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', extensionMeta.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([extensionMeta.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
let dock;
|
let dock;
|
||||||
|
|||||||
@@ -4,6 +4,5 @@
|
|||||||
"description": "A dock for the GNOME Shell -- displays favorite and running applications",
|
"description": "A dock for the GNOME Shell -- displays favorite and running applications",
|
||||||
"original-author": "tclaesson@gmail.com",
|
"original-author": "tclaesson@gmail.com",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
<schemalist gettext-domain="gnome-shell-extensions">
|
|
||||||
<enum id='org.gnome.shell.extensions.dock.PositionMode'>
|
|
||||||
<value nick='left' value='0'/>
|
|
||||||
<value nick='right' value='1'/>
|
|
||||||
</enum>
|
|
||||||
<enum id='org.gnome.shell.extensions.dock.AutoHideEffect'>
|
|
||||||
<value nick='resize' value='0'/>
|
|
||||||
<value nick='rescale' value='1'/>
|
|
||||||
<value nick='move' value='2'/>
|
|
||||||
</enum>
|
|
||||||
|
|
||||||
<schema id="org.gnome.shell.extensions.dock" path="/org/gnome/shell/extensions/dock/">
|
|
||||||
<key name="position" enum="org.gnome.shell.extensions.dock.PositionMode">
|
|
||||||
<default>'right'</default>
|
|
||||||
<_summary>Position of the dock</_summary>
|
|
||||||
<_description>Sets the position of the dock in the screen. Allowed values are 'right' or 'left'</_description>
|
|
||||||
</key>
|
|
||||||
<key name="size" type="i">
|
|
||||||
<default>48</default>
|
|
||||||
<_summary>Icon size</_summary>
|
|
||||||
<_description>Sets icon size of the dock.</_description>
|
|
||||||
</key>
|
|
||||||
<key name="autohide" type="b">
|
|
||||||
<default>true</default>
|
|
||||||
<_summary>Enable/disable autohide</_summary>
|
|
||||||
</key>
|
|
||||||
<key name="hide-effect" enum="org.gnome.shell.extensions.dock.AutoHideEffect">
|
|
||||||
<default>'resize'</default>
|
|
||||||
<_summary>Autohide effect</_summary>
|
|
||||||
<_description>Sets the effect of the hide dock. Allowed values are 'resize' or 'rescale'</_description>
|
|
||||||
</key>
|
|
||||||
<key name="hide-effect-duration" type="d">
|
|
||||||
<default>0.3</default>
|
|
||||||
<_summary>Autohide duration</_summary>
|
|
||||||
<_description>Sets the time duration of the autohide effect.</_description>
|
|
||||||
</key>
|
|
||||||
</schema>
|
|
||||||
</schemalist>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
// Drive menu extension
|
// Drive menu extension
|
||||||
|
const GLib = imports.gi.GLib;
|
||||||
const Gio = imports.gi.Gio;
|
const Gio = imports.gi.Gio;
|
||||||
const Lang = imports.lang;
|
const Lang = imports.lang;
|
||||||
const St = imports.gi.St;
|
const St = imports.gi.St;
|
||||||
@@ -91,7 +92,7 @@ DriveMenu.prototype = {
|
|||||||
|
|
||||||
// Put your extension initialization code here
|
// Put your extension initialization code here
|
||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
let _indicator;
|
let _indicator;
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"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@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
// Sample extension code, makes clicking on the panel show a message
|
// Sample extension code, makes clicking on the panel show a message
|
||||||
|
const GLib = imports.gi.GLib;
|
||||||
const St = imports.gi.St;
|
const St = imports.gi.St;
|
||||||
const Mainloop = imports.mainloop;
|
const Mainloop = imports.mainloop;
|
||||||
|
|
||||||
@@ -19,7 +20,7 @@ function _showHello() {
|
|||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
log ('Example extension initalized');
|
log ('Example extension initalized');
|
||||||
|
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
let signalId;
|
let signalId;
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"name": "Hello, World!",
|
"name": "Hello, World!",
|
||||||
"description": "An example extension to show how it works. Shows Hello, world when clicking on the top panel.",
|
"description": "An example extension to show how it works. Shows Hello, world when clicking on the top panel.",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"name": "Gajim IM integration",
|
"name": "Gajim IM integration",
|
||||||
"description": "Display Gajim incoming chats as notifications in the Shell message tray.",
|
"description": "Display Gajim incoming chats as notifications in the Shell message tray.",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "http://base-art.net"
|
"url": "http://base-art.net"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,3 @@
|
|||||||
EXTENSION_ID = native-window-placement
|
EXTENSION_ID = native-window-placement
|
||||||
|
|
||||||
include ../../extension.mk
|
include ../../extension.mk
|
||||||
|
|
||||||
gschemas_in = org.gnome.shell.extensions.native-window-placement.gschema.xml.in
|
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
|
||||||
|
|
||||||
gsettings_SCHEMAS = $(gschemas_in:.xml.in=.xml)
|
|
||||||
|
|
||||||
@GSETTINGS_RULES@
|
|
||||||
|
|
||||||
CLEANFILES += $(gschemas_in:.xml.in=.valid) $(gsettings_SCHEMAS)
|
|
||||||
EXTRA_DIST += $(gschemas_in)
|
|
||||||
|
|||||||
@@ -25,6 +25,12 @@ const WindowPlacementStrategy = {
|
|||||||
GRID: 1,
|
GRID: 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Begin user settings */
|
||||||
|
const PLACEMENT_STRATEGY = WindowPlacementStrategy.NATURAL;
|
||||||
|
const USE_MORE_SCREEN = true;
|
||||||
|
const WINDOW_CAPTIONS_ON_TOP = true;
|
||||||
|
/* End user settings - do not change anything below this line */
|
||||||
|
|
||||||
// testing settings for natural window placement strategy:
|
// testing settings for natural window placement strategy:
|
||||||
const WINDOW_PLACEMENT_NATURAL_FILLGAPS = true; // enlarge windows at the end to fill gaps // not implemented yet
|
const WINDOW_PLACEMENT_NATURAL_FILLGAPS = true; // enlarge windows at the end to fill gaps // not implemented yet
|
||||||
const WINDOW_PLACEMENT_NATURAL_GRID_FALLBACK = true; // fallback to grid mode if all windows have the same size and positions. // not implemented yet
|
const WINDOW_PLACEMENT_NATURAL_GRID_FALLBACK = true; // fallback to grid mode if all windows have the same size and positions. // not implemented yet
|
||||||
@@ -117,19 +123,8 @@ function resetState() {
|
|||||||
function enable() {
|
function enable() {
|
||||||
resetState();
|
resetState();
|
||||||
|
|
||||||
let settings = new Gio.Settings({ schema: 'org.gnome.shell.extensions.native-window-placement' });
|
let placementStrategy = PLACEMENT_STRATEGY;
|
||||||
let placementStrategy = settings.get_enum('strategy');
|
let useMoreScreen = USE_MORE_SCREEN;
|
||||||
let signalId = settings.connect('changed::strategy', function() {
|
|
||||||
placementStrategy = settings.get_enum('strategy');
|
|
||||||
// we don't update immediately, we wait for a relayout
|
|
||||||
// (and hope for the best)
|
|
||||||
});
|
|
||||||
connectedSignals.push({ obj: settings, id: signalId });
|
|
||||||
let useMoreScreen = settings.get_boolean('use-more-screen');
|
|
||||||
signalId = settings.connect('changed::use-more-screen', function() {
|
|
||||||
useMoreScreen = settings.get_boolean('use-more-screen');
|
|
||||||
});
|
|
||||||
connectedSignals.push({ obj: settings, id: signalId });
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* _calculateWindowTransformationsNatural:
|
* _calculateWindowTransformationsNatural:
|
||||||
@@ -415,7 +410,7 @@ function enable() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// position window titles on top of windows in overlay ////
|
/// position window titles on top of windows in overlay ////
|
||||||
if (settings.get_boolean('window-captions-on-top')) {
|
if (WINDOW_CAPTIONS_ON_TOP) {
|
||||||
winInjections['_init'] = Workspace.WindowOverlay.prototype._init;
|
winInjections['_init'] = Workspace.WindowOverlay.prototype._init;
|
||||||
Workspace.WindowOverlay.prototype._init = function(windowClone, parentActor) {
|
Workspace.WindowOverlay.prototype._init = function(windowClone, parentActor) {
|
||||||
let metaWindow = windowClone.metaWindow;
|
let metaWindow = windowClone.metaWindow;
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
"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 native way",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@",
|
"url": "@url@",
|
||||||
"original-authors": [ "wepmaschda@gmx.de" ]
|
"original-authors": [ "wepmaschda@gmx.de" ]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
<schemalist gettext-domain="gnome-shell-extensions">
|
|
||||||
<enum id="org.gnome.shell.extensions.native-window-placement.strategy">
|
|
||||||
<value nick="natural" value="0" />
|
|
||||||
<value nick="grid" value="1" />
|
|
||||||
</enum>
|
|
||||||
<schema id="org.gnome.shell.extensions.native-window-placement" path="/org/gnome/shell/extensions/native-window-placement/">
|
|
||||||
<key name="strategy" enum="org.gnome.shell.extensions.native-window-placement.strategy">
|
|
||||||
<default>'natural'</default>
|
|
||||||
<_summary>Window placement strategy</_summary>
|
|
||||||
<_description>The algorithm used to layout thumbnails in the overview. 'grid' to use the default grid based algorithm,
|
|
||||||
'natural' to use another one that reflects more the position and size of the actual window</_description>
|
|
||||||
</key>
|
|
||||||
<key name="use-more-screen" type="b">
|
|
||||||
<default>true</default>
|
|
||||||
<_summary>Use more screen for windows</_summary>
|
|
||||||
<_description>Try to use more screen for placing window thumbnails by adapting to screen aspect ratio, and consolidating
|
|
||||||
them further to reduce the bounding box. This setting applies only with the natural placement strategy.</_description>
|
|
||||||
</key>
|
|
||||||
<key name="window-captions-on-top" type="b">
|
|
||||||
<default>true</default>
|
|
||||||
<_summary>Place window captions on top</_summary>
|
|
||||||
<_description>If true, place window captions on top the respective thumbnail, overriding shell default of placing it at
|
|
||||||
the bottom. Changing this setting requires restarting the shell to have any effect.</_description>
|
|
||||||
</key>
|
|
||||||
</schema>
|
|
||||||
</schemalist>
|
|
||||||
@@ -114,7 +114,7 @@ PlacesMenu.prototype = {
|
|||||||
|
|
||||||
|
|
||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
let _indicator;
|
let _indicator;
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"name": "Places Status Indicator",
|
"name": "Places Status Indicator",
|
||||||
"description": "Add a systems status menu for quickly navigating places in the system",
|
"description": "Add a systems status menu for quickly navigating places in the system",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"shell-version": ["@shell_current@", "3.2" ],
|
"shell-version": ["@shell_current@", "3.2" ],
|
||||||
"uuid": "@uuid@",
|
"uuid": "@uuid@",
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"original-author": "zaspire@rambler.ru",
|
"original-author": "zaspire@rambler.ru",
|
||||||
"name": "SystemMonitor",
|
"name": "SystemMonitor",
|
||||||
"description": "System Monitor",
|
"description": "System Monitor",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ EXTENSION_ID = user-theme
|
|||||||
|
|
||||||
include ../../extension.mk
|
include ../../extension.mk
|
||||||
|
|
||||||
gschemas_in = org.gnome.shell.extensions.user-theme.gschema.xml.in
|
gschemas_in = $(gschemabase).user-theme.gschema.xml.in
|
||||||
|
|
||||||
@INTLTOOL_XML_NOMERGE_RULE@
|
@INTLTOOL_XML_NOMERGE_RULE@
|
||||||
|
|
||||||
|
|||||||
@@ -127,15 +127,21 @@ function enable() {
|
|||||||
workViewInjections['_hideWorkspacesTooltips'] = undefined;
|
workViewInjections['_hideWorkspacesTooltips'] = undefined;
|
||||||
|
|
||||||
WorkspacesView.WorkspacesView.prototype._onKeyRelease = function(s, o) {
|
WorkspacesView.WorkspacesView.prototype._onKeyRelease = function(s, o) {
|
||||||
if (this._pickWindow && o.get_key_symbol() == Clutter.KEY_Alt_L)
|
if (this._pickWindow &&
|
||||||
|
(o.get_key_symbol() == Clutter.KEY_Alt_L ||
|
||||||
|
o.get_key_symbol() == Clutter.KEY_Alt_R))
|
||||||
this._hideTooltips();
|
this._hideTooltips();
|
||||||
if (this._pickWorkspace && o.get_key_symbol() == Clutter.KEY_Control_L)
|
if (this._pickWorkspace &&
|
||||||
|
(o.get_key_symbol() == Clutter.KEY_Control_L ||
|
||||||
|
o.get_key_symbol() == Clutter.KEY_Control_R))
|
||||||
this._hideWorkspacesTooltips();
|
this._hideWorkspacesTooltips();
|
||||||
}
|
}
|
||||||
workViewInjections['_onKeyRelease'] = undefined;
|
workViewInjections['_onKeyRelease'] = undefined;
|
||||||
|
|
||||||
WorkspacesView.WorkspacesView.prototype._onKeyPress = function(s, o) {
|
WorkspacesView.WorkspacesView.prototype._onKeyPress = function(s, o) {
|
||||||
if (o.get_key_symbol() == Clutter.KEY_Alt_L && !this._pickWorkspace) {
|
if ((o.get_key_symbol() == Clutter.KEY_Alt_L ||
|
||||||
|
o.get_key_symbol() == Clutter.KEY_Alt_R)
|
||||||
|
&& !this._pickWorkspace) {
|
||||||
this._prevFocusActor = global.stage.get_key_focus();
|
this._prevFocusActor = global.stage.get_key_focus();
|
||||||
global.stage.set_key_focus(null);
|
global.stage.set_key_focus(null);
|
||||||
this._active = global.screen.get_active_workspace_index();
|
this._active = global.screen.get_active_workspace_index();
|
||||||
@@ -143,7 +149,9 @@ function enable() {
|
|||||||
this._workspaces[global.screen.get_active_workspace_index()].showWindowsTooltips();
|
this._workspaces[global.screen.get_active_workspace_index()].showWindowsTooltips();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (o.get_key_symbol() == Clutter.KEY_Control_L && !this._pickWindow) {
|
if ((o.get_key_symbol() == Clutter.KEY_Control_L ||
|
||||||
|
o.get_key_symbol() == Clutter.KEY_Control_R)
|
||||||
|
&& !this._pickWindow) {
|
||||||
this._prevFocusActor = global.stage.get_key_focus();
|
this._prevFocusActor = global.stage.get_key_focus();
|
||||||
global.stage.set_key_focus(null);
|
global.stage.set_key_focus(null);
|
||||||
this._pickWorkspace = true;
|
this._pickWorkspace = true;
|
||||||
@@ -155,6 +163,12 @@ function enable() {
|
|||||||
if (global.stage.get_key_focus() != global.stage)
|
if (global.stage.get_key_focus() != global.stage)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// ignore shift presses, they're required to get numerals in azerty keyboards
|
||||||
|
if ((this._pickWindow || this._pickWorkspace) &&
|
||||||
|
(o.get_key_symbol() == Clutter.KEY_Shift_L ||
|
||||||
|
o.get_key_symbol() == Clutter.KEY_Shift_R))
|
||||||
|
return true;
|
||||||
|
|
||||||
if (this._pickWindow) {
|
if (this._pickWindow) {
|
||||||
if (this._active != global.screen.get_active_workspace_index()) {
|
if (this._active != global.screen.get_active_workspace_index()) {
|
||||||
this._hideTooltips();
|
this._hideTooltips();
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"shell-version": ["@shell_current@", "3.2" ],
|
"shell-version": ["@shell_current@", "3.2" ],
|
||||||
"uuid": "@uuid@",
|
"uuid": "@uuid@",
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"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",
|
||||||
|
|||||||
@@ -37,6 +37,7 @@ WorkspaceIndicator.prototype = {
|
|||||||
|
|
||||||
//styling
|
//styling
|
||||||
this.menu.actor.add_style_class_name('workspace-indicator-shorter');
|
this.menu.actor.add_style_class_name('workspace-indicator-shorter');
|
||||||
|
this.statusLabel.add_style_class_name('panel-workspace-indicator');
|
||||||
},
|
},
|
||||||
|
|
||||||
_updateIndicator: function() {
|
_updateIndicator: function() {
|
||||||
@@ -50,27 +51,32 @@ WorkspaceIndicator.prototype = {
|
|||||||
_labelText : function(workspaceIndex) {
|
_labelText : function(workspaceIndex) {
|
||||||
if(workspaceIndex == undefined) {
|
if(workspaceIndex == undefined) {
|
||||||
workspaceIndex = this._currentWorkspace;
|
workspaceIndex = this._currentWorkspace;
|
||||||
|
return (workspaceIndex + 1).toString();
|
||||||
}
|
}
|
||||||
return Meta.prefs_get_workspace_name(workspaceIndex);
|
return Meta.prefs_get_workspace_name(workspaceIndex);
|
||||||
},
|
},
|
||||||
|
|
||||||
_createWorkspacesSection : function() {
|
_createWorkspacesSection : function() {
|
||||||
this._workspaceSection.removeAll();
|
this._workspaceSection.removeAll();
|
||||||
this.workspacesItems = [];
|
this.workspacesItems = [];
|
||||||
|
this._currentWorkspace = global.screen.get_active_workspace().index();
|
||||||
|
|
||||||
let i = 0;
|
let i = 0;
|
||||||
for(; i < global.screen.n_workspaces; i++) {
|
for(; i < global.screen.n_workspaces; i++) {
|
||||||
this.workspacesItems[i] = new PopupMenu.PopupMenuItem(this._labelText(i));
|
this.workspacesItems[i] = new PopupMenu.PopupMenuItem(this._labelText(i));
|
||||||
this._workspaceSection.addMenuItem(this.workspacesItems[i]);
|
this._workspaceSection.addMenuItem(this.workspacesItems[i]);
|
||||||
this.workspacesItems[i].workspaceId = i;
|
this.workspacesItems[i].workspaceId = i;
|
||||||
this.workspacesItems[i].label_actor = this.statusLabel;
|
this.workspacesItems[i].label_actor = this.statusLabel;
|
||||||
let self = this;
|
let self = this;
|
||||||
this.workspacesItems[i].connect('activate', Lang.bind(this, function(actor, event) {
|
this.workspacesItems[i].connect('activate', Lang.bind(this, function(actor, event) {
|
||||||
this._activate(actor.workspaceId);
|
this._activate(actor.workspaceId);
|
||||||
}));
|
}));
|
||||||
}
|
|
||||||
|
|
||||||
this._updateIndicator();
|
if (i == this._currentWorkspace)
|
||||||
|
this.workspacesItems[i].setShowDot(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.statusLabel.set_text(this._labelText());
|
||||||
},
|
},
|
||||||
|
|
||||||
_activate : function (index) {
|
_activate : function (index) {
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
"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@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"original-authors": [ "erick.red@gmail.com" ],
|
"original-authors": [ "erick.red@gmail.com" ],
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,3 +2,8 @@
|
|||||||
min-width: 25px;
|
min-width: 25px;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
|
.panel-workspace-indicator {
|
||||||
|
padding: 0 8px;
|
||||||
|
background-color: rgba(200, 200, 200, .5);
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
}
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ Indicator.prototype = {
|
|||||||
|
|
||||||
|
|
||||||
function init(metadata) {
|
function init(metadata) {
|
||||||
imports.gettext.bindtextdomain('gnome-shell-extensions', metadata.localedir);
|
imports.gettext.bindtextdomain('gnome-shell-extensions', GLib.build_filenamev([metadata.path, 'locale']));
|
||||||
}
|
}
|
||||||
|
|
||||||
let _indicator;
|
let _indicator;
|
||||||
|
|||||||
@@ -3,6 +3,5 @@
|
|||||||
"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 systems status menu for rotating monitors (overrides what is currently provided by gnome-settings-daemon)",
|
||||||
"shell-version": [ "@shell_current@", "3.2" ],
|
"shell-version": [ "@shell_current@", "3.2" ],
|
||||||
"localedir": "@LOCALEDIR@",
|
|
||||||
"url": "@url@"
|
"url": "@url@"
|
||||||
}
|
}
|
||||||
|
|||||||
11
include.mk
Normal file
11
include.mk
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
extensionurl = http://git.gnome.org/gnome-shell-extensions
|
||||||
|
|
||||||
|
# Change these to modify how installation is performed
|
||||||
|
topextensiondir = $(datadir)/gnome-shell/extensions
|
||||||
|
extensionbase = @gnome-shell-extensions.gcampax.github.com
|
||||||
|
|
||||||
|
gschemabase = org.gnome.shell.extensions
|
||||||
|
|
||||||
|
uuid = $(EXTENSION_ID)$(extensionbase)
|
||||||
|
|
||||||
|
extensiondir = $(topextensiondir)/$(uuid)
|
||||||
15
local-install.sh
Executable file
15
local-install.sh
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
extensionbase=~/.local/share/gnome-shell/extensions
|
||||||
|
|
||||||
|
for i in zip-files/*; do
|
||||||
|
zip_file=`pwd`/$i;
|
||||||
|
uuid=`basename $i | sed -e "s/.shell-extension.zip//"`;
|
||||||
|
if [ -d $extensionbase/$uuid ]; then
|
||||||
|
rm -fR $extensionbase/$uuid;
|
||||||
|
fi
|
||||||
|
mkdir $extensionbase/$uuid;
|
||||||
|
(cd $extensionbase/$uuid;
|
||||||
|
unzip -q $zip_file;
|
||||||
|
);
|
||||||
|
done
|
||||||
@@ -7,6 +7,7 @@ en_GB
|
|||||||
es
|
es
|
||||||
eu
|
eu
|
||||||
fa
|
fa
|
||||||
|
fi
|
||||||
fr
|
fr
|
||||||
gl
|
gl
|
||||||
he
|
he
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
extensions/alternative-status-menu/extension.js
|
extensions/alternative-status-menu/extension.js
|
||||||
extensions/alternate-tab/extension.js
|
extensions/alternate-tab/extension.js
|
||||||
extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in
|
|
||||||
extensions/auto-move-windows/extension.js
|
extensions/auto-move-windows/extension.js
|
||||||
extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in
|
|
||||||
extensions/dock/extension.js
|
extensions/dock/extension.js
|
||||||
extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in
|
|
||||||
extensions/example/extension.js
|
extensions/example/extension.js
|
||||||
extensions/gajim/extension.js
|
extensions/gajim/extension.js
|
||||||
extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in
|
|
||||||
extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in
|
extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in
|
||||||
extensions/windowsNavigator/extension.js
|
extensions/windowsNavigator/extension.js
|
||||||
extensions/xrandr-indicator/extension.js
|
extensions/xrandr-indicator/extension.js
|
||||||
|
|||||||
246
po/cs.po
246
po/cs.po
@@ -1,66 +1,145 @@
|
|||||||
# Czech translation for gnome-shell-extensions.
|
# Czech translation for gnome-shell-extensions.
|
||||||
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
|
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||||
|
#
|
||||||
# Marek Černocký <marek@manet.cz>, 2011.
|
# Marek Černocký <marek@manet.cz>, 2011.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
"Project-Id-Version: gnome-shell-extensions 3.2\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: 2011-04-16 16:32+0000\n"
|
"POT-Creation-Date: 2011-11-28 19:18+0000\n"
|
||||||
"PO-Revision-Date: 2011-04-17 11:10+0200\n"
|
"PO-Revision-Date: 2011-11-22 11:43+0100\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"
|
||||||
"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"
|
||||||
"Language: cs\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:23
|
#: ../extensions/alternative-status-menu/extension.js:45
|
||||||
#: ../extensions/alternative-status-menu/extension.js:27
|
msgid "Notifications"
|
||||||
#: ../extensions/alternative-status-menu/extension.js:93
|
msgstr "Oznamování"
|
||||||
msgid "Hibernate"
|
|
||||||
msgstr "Uspat na disk"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:26
|
#: ../extensions/alternative-status-menu/extension.js:53
|
||||||
#: ../extensions/alternative-status-menu/extension.js:92
|
msgid "Online Accounts"
|
||||||
msgid "Suspend"
|
msgstr "Účty on-line"
|
||||||
msgstr "Uspat do paměti"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:52
|
|
||||||
msgid "Available"
|
|
||||||
msgstr "Dostupný"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:57
|
#: ../extensions/alternative-status-menu/extension.js:57
|
||||||
msgid "Busy"
|
|
||||||
msgstr "Zaneprázdněný"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:65
|
|
||||||
msgid "My Account"
|
|
||||||
msgstr "Můj účet"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:69
|
|
||||||
msgid "System Settings"
|
msgid "System Settings"
|
||||||
msgstr "Nastavení systému"
|
msgstr "Nastavení systému"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:76
|
#: ../extensions/alternative-status-menu/extension.js:64
|
||||||
msgid "Lock Screen"
|
msgid "Lock Screen"
|
||||||
msgstr "Zamknout obrazovku"
|
msgstr "Zamknout obrazovku"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:80
|
#: ../extensions/alternative-status-menu/extension.js:69
|
||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Přepnout uživatele"
|
msgstr "Přepnout uživatele"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:85
|
#: ../extensions/alternative-status-menu/extension.js:74
|
||||||
msgid "Log Out..."
|
msgid "Log Out..."
|
||||||
msgstr "Odhlásit se…"
|
msgstr "Odhlásit se…"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:100
|
#: ../extensions/alternative-status-menu/extension.js:82
|
||||||
|
msgid "Suspend"
|
||||||
|
msgstr "Uspat do paměti"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:88
|
||||||
|
msgid "Hibernate"
|
||||||
|
msgstr "Uspat na disk"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:94
|
||||||
msgid "Power Off..."
|
msgid "Power Off..."
|
||||||
msgstr "Vypnout…"
|
msgstr "Vypnout…"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:50
|
||||||
|
msgid ""
|
||||||
|
"This is the first time you use the Alternate Tab extension. \n"
|
||||||
|
"Please choose your preferred behaviour:\n"
|
||||||
|
"\n"
|
||||||
|
"All & Thumbnails:\n"
|
||||||
|
" This mode presents all applications from all workspaces in one "
|
||||||
|
"selection \n"
|
||||||
|
" list. Instead of using the application icon of every window, it uses "
|
||||||
|
"small \n"
|
||||||
|
" thumbnails resembling the window itself. \n"
|
||||||
|
"\n"
|
||||||
|
"Workspace & Icons:\n"
|
||||||
|
" This mode let's you switch between the applications of your current \n"
|
||||||
|
" workspace and gives you additionally the option to switch to the last "
|
||||||
|
"used \n"
|
||||||
|
" application of your previous workspace. This is always the last symbol "
|
||||||
|
"in \n"
|
||||||
|
" the list and is segregated by a separator/vertical line if available. \n"
|
||||||
|
" Every window is represented by its application icon. \n"
|
||||||
|
"\n"
|
||||||
|
"If you whish to revert to the default behavior for the Alt-Tab switcher, "
|
||||||
|
"just\n"
|
||||||
|
"disable the extension from extensions.gnome.org or the Advanced Settings "
|
||||||
|
"application."
|
||||||
|
msgstr ""
|
||||||
|
"Právě jste poprvé použili rozšíření Alternate Tab.\n"
|
||||||
|
"Vyberte si vámi upřednostňované chování:\n"
|
||||||
|
"\n"
|
||||||
|
"Vše a náhledy:\n"
|
||||||
|
" Tento režim předkládá všechny aplikace ze všech pracovních ploch\n"
|
||||||
|
" v jediném výběrovém seznamu. Místo ikon aplikací pro každé z oken\n"
|
||||||
|
" používá malé náhledy vytvořené přímo podle oken.\n"
|
||||||
|
"\n"
|
||||||
|
"Pracovní plocha a ikony:\n"
|
||||||
|
" Tento režim vám umožňuje přepínat mezi aplikacemi vaší aktuální "
|
||||||
|
"pracovní\n"
|
||||||
|
" plochy a poskytuje vám navíc možnost přepnout se na naposledy použitou\n"
|
||||||
|
" aplikaci vaší předchozí pracovní plochy. Jde vždy o poslední symbol v "
|
||||||
|
"seznamu\n"
|
||||||
|
" a pokud je k dispozici, je oddělen oddělovačem/svislou čárou. Každé z "
|
||||||
|
"oken\n"
|
||||||
|
" je prezentováno ikonou příslušné aplikace.\n"
|
||||||
|
"\n"
|
||||||
|
"Jestliže si přejete vrátit výchozí chování přepínače Alt-Tab, jednoduše "
|
||||||
|
"rozšíření\n"
|
||||||
|
"zakažte v extensions.gnome.org nebo v aplikaci Pokročilá nastavení."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:291
|
||||||
|
msgid "Alt Tab Behaviour"
|
||||||
|
msgstr "Chování Alt Tab"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:307
|
||||||
|
msgid "All & Thumbnails"
|
||||||
|
msgstr "Vše a náhledy"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:314
|
||||||
|
msgid "Workspace & Icons"
|
||||||
|
msgstr "Pracovní plocha a ikony"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:321
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Zrušit"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
|
||||||
|
msgid "Ask the user for a default behaviour if true."
|
||||||
|
msgstr "Když je zapnuto, dotázat se uživatele na výchozí chování."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
|
||||||
|
msgid "Indicates if Alternate Tab is newly installed"
|
||||||
|
msgstr "Signalizuje, když je rozšíření Alternate Tab nově nainstalováno"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:3
|
||||||
|
msgid ""
|
||||||
|
"Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and "
|
||||||
|
"workspace_icons."
|
||||||
|
msgstr ""
|
||||||
|
"Nastavuje chování klávesové zkratky Alt-Tab. Možné hodnoty jsou: native "
|
||||||
|
"(přirozené), all_thumbnails (vše a náhledy) a workspace_icons (pracovní "
|
||||||
|
"plocha a ikony)."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:4
|
||||||
|
msgid "The alt tab behaviour."
|
||||||
|
msgstr "Chování klávesové zkratky alt tab."
|
||||||
|
|
||||||
#: ../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 ""
|
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), "
|
||||||
@@ -73,50 +152,135 @@ msgstr ""
|
|||||||
msgid "Application and workspace list"
|
msgid "Application and workspace list"
|
||||||
msgstr "Seznam aplikací a pracovních ploch"
|
msgstr "Seznam aplikací a pracovních ploch"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:116
|
#: ../extensions/dock/extension.js:569
|
||||||
msgid "Drag here to add favorites"
|
msgid "Drag here to add favorites"
|
||||||
msgstr "Přetažením sem přidáte do oblíbených"
|
msgstr "Přetažením sem přidáte do oblíbených"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:417
|
#: ../extensions/dock/extension.js:902
|
||||||
msgid "New Window"
|
msgid "New Window"
|
||||||
msgstr "Nové okno"
|
msgstr "Nové okno"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:419
|
#: ../extensions/dock/extension.js:904
|
||||||
msgid "Quit Application"
|
msgid "Quit Application"
|
||||||
msgstr "Ukončit aplikaci"
|
msgstr "Ukončit aplikaci"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:424
|
#: ../extensions/dock/extension.js:909
|
||||||
msgid "Remove from Favorites"
|
msgid "Remove from Favorites"
|
||||||
msgstr "Odebrat z oblíbených"
|
msgstr "Odebrat z oblíbených"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:425
|
#: ../extensions/dock/extension.js:910
|
||||||
msgid "Add to Favorites"
|
msgid "Add to Favorites"
|
||||||
msgstr "Přidat do oblíbených"
|
msgstr "Přidat do oblíbených"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1
|
||||||
|
msgid "Autohide duration"
|
||||||
|
msgstr "Čas automatického skrývání"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2
|
||||||
|
msgid "Autohide effect"
|
||||||
|
msgstr "Efekt automatického skrývání"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3
|
||||||
|
msgid "Enable/disable autohide"
|
||||||
|
msgstr "Zapnout/vypnout automatické skrývání"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
|
||||||
|
msgid "Icon size"
|
||||||
|
msgstr "Velikost ikony"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
|
||||||
|
msgid "Position of the dock"
|
||||||
|
msgstr "Poloha doku"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
|
||||||
|
msgid "Sets icon size of the dock."
|
||||||
|
msgstr "Nastavuje velikost ikon v doku."
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
|
||||||
|
msgid ""
|
||||||
|
"Sets the effect of the hide dock. Allowed values are 'resize' or 'rescale'"
|
||||||
|
msgstr ""
|
||||||
|
"Nastavuje efekt skrývání doku. Povolené hodnoty jsou „resize“ (změna "
|
||||||
|
"velikosti) a „rescale“ (změna měřítka)"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
|
||||||
|
msgid ""
|
||||||
|
"Sets the position of the dock in the screen. Allowed values are 'right' or "
|
||||||
|
"'left'"
|
||||||
|
msgstr ""
|
||||||
|
"Nastavuje polohu doku na obrazovce. Povolené hodnoty jsou „right“ (vpravo) "
|
||||||
|
"nebo „left“ (vlevo)."
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9
|
||||||
|
msgid "Sets the time duration of the autohide effect."
|
||||||
|
msgstr "Nastavuje čas trvání efektu automatického skrývání."
|
||||||
|
|
||||||
#: ../extensions/example/extension.js:11
|
#: ../extensions/example/extension.js:11
|
||||||
msgid "Hello, world!"
|
msgid "Hello, world!"
|
||||||
msgstr "Ahoj světe!"
|
msgstr "Ahoj světe!"
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:219
|
#: ../extensions/gajim/extension.js:227
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is away."
|
msgid "%s is away."
|
||||||
msgstr "%s je pryč."
|
msgstr "%s je pryč."
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:222
|
#: ../extensions/gajim/extension.js:230
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is offline."
|
msgid "%s is offline."
|
||||||
msgstr "%s je odpojen."
|
msgstr "%s je odpojen."
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:225
|
#: ../extensions/gajim/extension.js:233
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is online."
|
msgid "%s is online."
|
||||||
msgstr "%s je připojen."
|
msgstr "%s je připojen."
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:228
|
#: ../extensions/gajim/extension.js:236
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is busy."
|
msgid "%s is busy."
|
||||||
msgstr "%s je zaneprázdněn."
|
msgstr "%s je zaneprázdněn."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||||
|
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 ""
|
||||||
|
"Pokud je zapnuto, umisťuje se název okna nad případný náhled, čímž se "
|
||||||
|
"přepíše výchozí chování shellu, který jej umisťuje dolů. Změna tohoto "
|
||||||
|
"nastavení vyžaduje restart shellu, aby se projevila."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||||
|
msgid "Place window captions on top"
|
||||||
|
msgstr "Umístit název okna nahoru"
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||||
|
msgid ""
|
||||||
|
"The algorithm used to layout thumbnails in the overview. 'grid' to use the "
|
||||||
|
"default grid based algorithm, 'natural' to use another one that reflects "
|
||||||
|
"more the position and size of the actual window"
|
||||||
|
msgstr ""
|
||||||
|
"Algoritmus použitý k rozvržení náhledů v přehledu. „grid“ použijte pro "
|
||||||
|
"výchozí algoritmus založený na pravidelné mřížce, „natural“ pro jiný "
|
||||||
|
"algoritmus, který se snaží brát v úvahu polohu a velikost aktuálního okna"
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||||
|
msgid ""
|
||||||
|
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||||
|
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||||
|
"This setting applies only with the natural placement strategy."
|
||||||
|
msgstr ""
|
||||||
|
"Pomocí přizpůsobení měřítka obrazovky spolu se zmenšením ohraničení zkusit "
|
||||||
|
"využít větší část obrazovky pro umístění náhledů oken. Toto nastavení se "
|
||||||
|
"použije pouze dohromady se strategií umisťování „natural“."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:5
|
||||||
|
msgid "Use more screen for windows"
|
||||||
|
msgstr "Použít větší část obrazovky pro okna"
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:6
|
||||||
|
msgid "Window placement strategy"
|
||||||
|
msgstr "Strategie umisťování oken"
|
||||||
|
|
||||||
#: ../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 "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||||
msgstr "Název motivu, který se má načíst z ~/.themes/name/gnome-shell"
|
msgstr "Název motivu, který se má načíst z ~/.themes/name/gnome-shell"
|
||||||
@@ -144,3 +308,9 @@ msgstr "Vzhůru nohama"
|
|||||||
#: ../extensions/xrandr-indicator/extension.js:78
|
#: ../extensions/xrandr-indicator/extension.js:78
|
||||||
msgid "Configure display settings..."
|
msgid "Configure display settings..."
|
||||||
msgstr "Upravit nastavení zobrazení…"
|
msgstr "Upravit nastavení zobrazení…"
|
||||||
|
|
||||||
|
msgid "Available"
|
||||||
|
msgstr "Dostupný"
|
||||||
|
|
||||||
|
msgid "Busy"
|
||||||
|
msgstr "Zaneprázdněný"
|
||||||
|
|||||||
101
po/es.po
101
po/es.po
@@ -1,60 +1,85 @@
|
|||||||
# Spanish translation for gnome-shell-extensions.
|
# Spanish translation for gnome-shell-extensions.
|
||||||
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
|
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the gnome-shell-extensions package.
|
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||||
# Jorge González <jorgegonz@svn.gnome.org>, 2011.
|
|
||||||
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2011.
|
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2011.
|
||||||
|
# Jorge González <jorgegonz@svn.gnome.org>, 2011.
|
||||||
#
|
#
|
||||||
msgid ""
|
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-"
|
"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: 2011-09-18 17:08+0000\n"
|
"POT-Creation-Date: 2011-12-02 15:47+0000\n"
|
||||||
"PO-Revision-Date: 2011-11-14 10:44+0100\n"
|
"PO-Revision-Date: 2011-12-03 12:21+0100\n"
|
||||||
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
|
||||||
"Language-Team: Español <gnome-es-list@gnome.org>\n"
|
"Language-Team: Español; Castellano <gnome-es-list@gnome.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:44
|
#: ../extensions/alternative-status-menu/extension.js:45
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr "Notificaciones"
|
msgstr "Notificaciones"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:52
|
#: ../extensions/alternative-status-menu/extension.js:53
|
||||||
msgid "Online Accounts"
|
msgid "Online Accounts"
|
||||||
msgstr "Cuentas en línea"
|
msgstr "Cuentas en línea"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:56
|
#: ../extensions/alternative-status-menu/extension.js:57
|
||||||
msgid "System Settings"
|
msgid "System Settings"
|
||||||
msgstr "Configuración del sistema"
|
msgstr "Configuración del sistema"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:63
|
#: ../extensions/alternative-status-menu/extension.js:64
|
||||||
msgid "Lock Screen"
|
msgid "Lock Screen"
|
||||||
msgstr "Bloquear la pantalla"
|
msgstr "Bloquear la pantalla"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:68
|
#: ../extensions/alternative-status-menu/extension.js:69
|
||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Cambiar de usuario"
|
msgstr "Cambiar de usuario"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:73
|
#: ../extensions/alternative-status-menu/extension.js:74
|
||||||
msgid "Log Out..."
|
msgid "Log Out..."
|
||||||
msgstr "Cerrar la sesión…"
|
msgstr "Cerrar la sesión…"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:81
|
#: ../extensions/alternative-status-menu/extension.js:82
|
||||||
msgid "Suspend"
|
msgid "Suspend"
|
||||||
msgstr "Suspender"
|
msgstr "Suspender"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:87
|
#: ../extensions/alternative-status-menu/extension.js:88
|
||||||
msgid "Hibernate"
|
msgid "Hibernate"
|
||||||
msgstr "Hibernar"
|
msgstr "Hibernar"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:93
|
#: ../extensions/alternative-status-menu/extension.js:94
|
||||||
msgid "Power Off..."
|
msgid "Power Off..."
|
||||||
msgstr "Apagar…"
|
msgstr "Apagar…"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:44
|
#: ../extensions/alternate-tab/extension.js:50
|
||||||
|
#| msgid ""
|
||||||
|
#| "This is the first time you use the Alternate Tab extension. \n"
|
||||||
|
#| "Please choose your preferred behaviour:\n"
|
||||||
|
#| "\n"
|
||||||
|
#| "All & Thumbnails:\n"
|
||||||
|
#| " This mode presents all applications from all workspaces in one "
|
||||||
|
#| "selection \n"
|
||||||
|
#| " list. Instead of using the application icon of every window, it uses "
|
||||||
|
#| "small \n"
|
||||||
|
#| " thumbnails resembling the window itself. \n"
|
||||||
|
#| "\n"
|
||||||
|
#| "Workspace & Icons:\n"
|
||||||
|
#| " This mode let's you switch between the applications of your current \n"
|
||||||
|
#| " workspace and gives you additionally the option to switch to the last "
|
||||||
|
#| "used \n"
|
||||||
|
#| " application of your previous workspace. This is always the last "
|
||||||
|
#| "symbol in \n"
|
||||||
|
#| " the list and is segregated by a separator/vertical line if "
|
||||||
|
#| "available. \n"
|
||||||
|
#| " Every window is represented by its application icon. \n"
|
||||||
|
#| "\n"
|
||||||
|
#| "Native:\n"
|
||||||
|
#| " This mode is the native GNOME 3 behaviour or in other words: "
|
||||||
|
#| "Clicking \n"
|
||||||
|
#| " native switches the Alternate Tab extension off. \n"
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the first time you use the Alternate Tab extension. \n"
|
"This is the first time you use the Alternate Tab extension. \n"
|
||||||
"Please choose your preferred behaviour:\n"
|
"Please choose your preferred behaviour:\n"
|
||||||
@@ -75,9 +100,10 @@ msgid ""
|
|||||||
" the list and is segregated by a separator/vertical line if available. \n"
|
" the list and is segregated by a separator/vertical line if available. \n"
|
||||||
" Every window is represented by its application icon. \n"
|
" Every window is represented by its application icon. \n"
|
||||||
"\n"
|
"\n"
|
||||||
"Native:\n"
|
"If you whish to revert to the default behavior for the Alt-Tab switcher, "
|
||||||
" This mode is the native GNOME 3 behaviour or in other words: Clicking \n"
|
"just\n"
|
||||||
" native switches the Alternate Tab extension off. \n"
|
"disable the extension from extensions.gnome.org or the Advanced Settings "
|
||||||
|
"application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Esta es la primera vez que usa la extensión Alt+Tab. \n"
|
"Esta es la primera vez que usa la extensión Alt+Tab. \n"
|
||||||
"Seleccione el comportamiento preferido:\n"
|
"Seleccione el comportamiento preferido:\n"
|
||||||
@@ -99,28 +125,24 @@ msgstr ""
|
|||||||
" disponible. \n"
|
" disponible. \n"
|
||||||
" Cada ventana se representa con el icono de la aplicación. \n"
|
" Cada ventana se representa con el icono de la aplicación. \n"
|
||||||
"\n"
|
"\n"
|
||||||
"Nativo:\n"
|
"Si quiere volver al comportamiento predeterminado para el cambiador Alt-"
|
||||||
" Este modo es el comportamiento nativo de GNOME 3 o, en otras palabras, "
|
"Tab,\n"
|
||||||
"este \n"
|
"simplemente desactive la extensión desde extensions.gnome.org o desde la\n"
|
||||||
" modo desactiva la extensión Alt+Tab. \n"
|
"aplicación de Configuración avanzada."
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:269
|
#: ../extensions/alternate-tab/extension.js:291
|
||||||
msgid "Alt Tab Behaviour"
|
msgid "Alt Tab Behaviour"
|
||||||
msgstr "Comportamiento de Alt+Tab"
|
msgstr "Comportamiento de Alt+Tab"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:285
|
#: ../extensions/alternate-tab/extension.js:307
|
||||||
msgid "All & Thumbnails"
|
msgid "All & Thumbnails"
|
||||||
msgstr "Todo y miniaturas"
|
msgstr "Todo y miniaturas"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:292
|
#: ../extensions/alternate-tab/extension.js:314
|
||||||
msgid "Workspace & Icons"
|
msgid "Workspace & Icons"
|
||||||
msgstr "Espacio de trabajo e iconos"
|
msgstr "Espacio de trabajo e iconos"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:299
|
#: ../extensions/alternate-tab/extension.js:321
|
||||||
msgid "Native"
|
|
||||||
msgstr "Nativo"
|
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:306
|
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
@@ -158,23 +180,23 @@ msgstr ""
|
|||||||
msgid "Application and workspace list"
|
msgid "Application and workspace list"
|
||||||
msgstr "Lista de aplicaciones y espacios de trabajo"
|
msgstr "Lista de aplicaciones y espacios de trabajo"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:486
|
#: ../extensions/dock/extension.js:569
|
||||||
msgid "Drag here to add favorites"
|
msgid "Drag here to add favorites"
|
||||||
msgstr "Arrastrar aquí para añadir a favoritos"
|
msgstr "Arrastrar aquí para añadir a favoritos"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:820
|
#: ../extensions/dock/extension.js:902
|
||||||
msgid "New Window"
|
msgid "New Window"
|
||||||
msgstr "Ventana nueva"
|
msgstr "Ventana nueva"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:822
|
#: ../extensions/dock/extension.js:904
|
||||||
msgid "Quit Application"
|
msgid "Quit Application"
|
||||||
msgstr "Salir de la aplicación"
|
msgstr "Salir de la aplicación"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:827
|
#: ../extensions/dock/extension.js:909
|
||||||
msgid "Remove from Favorites"
|
msgid "Remove from Favorites"
|
||||||
msgstr "Quitar de favoritos"
|
msgstr "Quitar de favoritos"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:828
|
#: ../extensions/dock/extension.js:910
|
||||||
msgid "Add to Favorites"
|
msgid "Add to Favorites"
|
||||||
msgstr "Añadir a favoritos"
|
msgstr "Añadir a favoritos"
|
||||||
|
|
||||||
@@ -268,8 +290,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"El algoritmo usado para situar las miniaturas en la vista previa. "
|
"El algoritmo usado para situar las miniaturas en la vista previa. "
|
||||||
"«grid» (tabla) para usar el algoritmo predeterminado basado en una tabla, "
|
"«grid» (tabla) para usar el algoritmo predeterminado basado en una tabla, "
|
||||||
"«natural» para usar otro que refleja mejor la posición y tamaño de la ventana "
|
"«natural» para usar otro que refleja mejor la posición y tamaño de la "
|
||||||
"representada."
|
"ventana representada."
|
||||||
|
|
||||||
#: ../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:4
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -317,6 +339,9 @@ msgstr "Hacia abajo"
|
|||||||
msgid "Configure display settings..."
|
msgid "Configure display settings..."
|
||||||
msgstr "Configurar las opciones de pantalla…"
|
msgstr "Configurar las opciones de pantalla…"
|
||||||
|
|
||||||
|
#~ msgid "Native"
|
||||||
|
#~ msgstr "Nativo"
|
||||||
|
|
||||||
#~ msgid "Available"
|
#~ msgid "Available"
|
||||||
#~ msgstr "Disponible"
|
#~ msgstr "Disponible"
|
||||||
|
|
||||||
|
|||||||
271
po/fi.po
Normal file
271
po/fi.po
Normal file
@@ -0,0 +1,271 @@
|
|||||||
|
# Finnish translation of gnome-shell-extensions.
|
||||||
|
# Copyright (C) 2011 Ville-Pekka Vainio
|
||||||
|
# This file is distributed under the same license as the gnome-shell-extensions package.
|
||||||
|
# Ville-Pekka Vainio <vpvainio@iki.fi>, 2011.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: gnome-shell-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: 2011-12-03 11:25+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-12-04 00:46+0200\n"
|
||||||
|
"Last-Translator: Ville-Pekka Vainio <vpvainio@iki.fi>\n"
|
||||||
|
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||||
|
"Language: fi\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Generator: Virtaal 0.7.1-rc1\n"
|
||||||
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:45
|
||||||
|
msgid "Notifications"
|
||||||
|
msgstr "Ilmoitukset"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:53
|
||||||
|
msgid "Online Accounts"
|
||||||
|
msgstr "Verkkotilit"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:57
|
||||||
|
msgid "System Settings"
|
||||||
|
msgstr "Järjestelmän asetukset"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:64
|
||||||
|
msgid "Lock Screen"
|
||||||
|
msgstr "Lukitse näyttö"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:69
|
||||||
|
msgid "Switch User"
|
||||||
|
msgstr "Vaihda käyttäjää"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:74
|
||||||
|
msgid "Log Out..."
|
||||||
|
msgstr "Kirjaudu ulos…"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:82
|
||||||
|
msgid "Suspend"
|
||||||
|
msgstr "Valmiustila"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:88
|
||||||
|
msgid "Hibernate"
|
||||||
|
msgstr "Lepotila"
|
||||||
|
|
||||||
|
#: ../extensions/alternative-status-menu/extension.js:94
|
||||||
|
msgid "Power Off..."
|
||||||
|
msgstr "Sammuta…"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:50
|
||||||
|
msgid ""
|
||||||
|
"This is the first time you use the Alternate Tab extension. \n"
|
||||||
|
"Please choose your preferred behaviour:\n"
|
||||||
|
"\n"
|
||||||
|
"All & Thumbnails:\n"
|
||||||
|
" This mode presents all applications from all workspaces in one "
|
||||||
|
"selection \n"
|
||||||
|
" list. Instead of using the application icon of every window, it uses "
|
||||||
|
"small \n"
|
||||||
|
" thumbnails resembling the window itself. \n"
|
||||||
|
"\n"
|
||||||
|
"Workspace & Icons:\n"
|
||||||
|
" This mode let's you switch between the applications of your current \n"
|
||||||
|
" workspace and gives you additionally the option to switch to the last "
|
||||||
|
"used \n"
|
||||||
|
" application of your previous workspace. This is always the last symbol "
|
||||||
|
"in \n"
|
||||||
|
" the list and is segregated by a separator/vertical line if available. \n"
|
||||||
|
" Every window is represented by its application icon. \n"
|
||||||
|
"\n"
|
||||||
|
"If you whish to revert to the default behavior for the Alt-Tab switcher, "
|
||||||
|
"just\n"
|
||||||
|
"disable the extension from extensions.gnome.org or the Advanced Settings "
|
||||||
|
"application."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:291
|
||||||
|
msgid "Alt Tab Behaviour"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:307
|
||||||
|
msgid "All & Thumbnails"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:314
|
||||||
|
msgid "Workspace & Icons"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:321
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Peru"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
|
||||||
|
msgid "Ask the user for a default behaviour if true."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
|
||||||
|
msgid "Indicates if Alternate Tab is newly installed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:3
|
||||||
|
msgid ""
|
||||||
|
"Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and "
|
||||||
|
"workspace_icons."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:4
|
||||||
|
msgid "The alt tab behaviour."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
|
||||||
|
msgid ""
|
||||||
|
"A list of strings, each containing an application id (desktop file name), "
|
||||||
|
"followed by a colon and the workspace number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
|
||||||
|
msgid "Application and workspace list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/extension.js:569
|
||||||
|
msgid "Drag here to add favorites"
|
||||||
|
msgstr "Raahaa tähän lisätäksesi suosikkeihin"
|
||||||
|
|
||||||
|
#: ../extensions/dock/extension.js:902
|
||||||
|
msgid "New Window"
|
||||||
|
msgstr "Uusi ikkuna"
|
||||||
|
|
||||||
|
#: ../extensions/dock/extension.js:904
|
||||||
|
msgid "Quit Application"
|
||||||
|
msgstr "Lopeta ohjelma"
|
||||||
|
|
||||||
|
#: ../extensions/dock/extension.js:909
|
||||||
|
msgid "Remove from Favorites"
|
||||||
|
msgstr "Poista suosikeista"
|
||||||
|
|
||||||
|
#: ../extensions/dock/extension.js:910
|
||||||
|
msgid "Add to Favorites"
|
||||||
|
msgstr "Lisää suosikkeihin"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1
|
||||||
|
msgid "Autohide duration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2
|
||||||
|
msgid "Autohide effect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3
|
||||||
|
msgid "Enable/disable autohide"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
|
||||||
|
msgid "Icon size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
|
||||||
|
msgid "Position of the dock"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
|
||||||
|
msgid "Sets icon size of the dock."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
|
||||||
|
msgid ""
|
||||||
|
"Sets the effect of the hide dock. Allowed values are 'resize' or 'rescale'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
|
||||||
|
msgid ""
|
||||||
|
"Sets the position of the dock in the screen. Allowed values are 'right' or "
|
||||||
|
"'left'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9
|
||||||
|
msgid "Sets the time duration of the autohide effect."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/example/extension.js:11
|
||||||
|
msgid "Hello, world!"
|
||||||
|
msgstr "Hei, maailma!"
|
||||||
|
|
||||||
|
#: ../extensions/gajim/extension.js:227
|
||||||
|
#, c-format
|
||||||
|
msgid "%s is away."
|
||||||
|
msgstr "%s on poissa."
|
||||||
|
|
||||||
|
#: ../extensions/gajim/extension.js:230
|
||||||
|
#, c-format
|
||||||
|
msgid "%s is offline."
|
||||||
|
msgstr "%s on poissa linjoilta."
|
||||||
|
|
||||||
|
#: ../extensions/gajim/extension.js:233
|
||||||
|
#, c-format
|
||||||
|
msgid "%s is online."
|
||||||
|
msgstr "%s on linjoilla."
|
||||||
|
|
||||||
|
#: ../extensions/gajim/extension.js:236
|
||||||
|
#, c-format
|
||||||
|
msgid "%s is busy."
|
||||||
|
msgstr "%s on kiireinen."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
|
||||||
|
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 ""
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
|
||||||
|
msgid "Place window captions on top"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
|
||||||
|
msgid ""
|
||||||
|
"The algorithm used to layout thumbnails in the overview. 'grid' to use the "
|
||||||
|
"default grid based algorithm, 'natural' to use another one that reflects "
|
||||||
|
"more the position and size of the actual window"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||||
|
msgid ""
|
||||||
|
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||||
|
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||||
|
"This setting applies only with the natural placement strategy."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:5
|
||||||
|
msgid "Use more screen for windows"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:6
|
||||||
|
msgid "Window placement strategy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
|
||||||
|
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
|
||||||
|
msgid "Theme name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../extensions/xrandr-indicator/extension.js:26
|
||||||
|
msgid "Normal"
|
||||||
|
msgstr "Tavallinen"
|
||||||
|
|
||||||
|
#: ../extensions/xrandr-indicator/extension.js:27
|
||||||
|
msgid "Left"
|
||||||
|
msgstr "Vasen"
|
||||||
|
|
||||||
|
#: ../extensions/xrandr-indicator/extension.js:28
|
||||||
|
msgid "Right"
|
||||||
|
msgstr "Oikea"
|
||||||
|
|
||||||
|
#: ../extensions/xrandr-indicator/extension.js:29
|
||||||
|
msgid "Upside-down"
|
||||||
|
msgstr "Ylösalaisin"
|
||||||
|
|
||||||
|
#: ../extensions/xrandr-indicator/extension.js:78
|
||||||
|
msgid "Configure display settings..."
|
||||||
|
msgstr "Määritä näytön asetukset…"
|
||||||
195
po/it.po
195
po/it.po
@@ -8,8 +8,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gnome-shell-extensions 2.91.6\n"
|
"Project-Id-Version: gnome-shell-extensions 2.91.6\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-04-26 15:14+0200\n"
|
"POT-Creation-Date: 2011-11-19 18:42+0100\n"
|
||||||
"PO-Revision-Date: 2011-04-26 15:27+0200\n"
|
"PO-Revision-Date: 2011-11-19 18:57+0100\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: \n"
|
"Language: \n"
|
||||||
@@ -17,17 +17,13 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:39
|
|
||||||
msgid "Available"
|
|
||||||
msgstr "Disponibile"
|
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:44
|
#: ../extensions/alternative-status-menu/extension.js:44
|
||||||
msgid "Busy"
|
msgid "Notifications"
|
||||||
msgstr "Non disponibile"
|
msgstr "Notifiche"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:52
|
#: ../extensions/alternative-status-menu/extension.js:52
|
||||||
msgid "My Account"
|
msgid "Online Accounts"
|
||||||
msgstr "Account personale"
|
msgstr "Account online"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:56
|
#: ../extensions/alternative-status-menu/extension.js:56
|
||||||
msgid "System Settings"
|
msgid "System Settings"
|
||||||
@@ -37,26 +33,105 @@ msgstr "Impostazioni di sistema"
|
|||||||
msgid "Lock Screen"
|
msgid "Lock Screen"
|
||||||
msgstr "Blocca schermo"
|
msgstr "Blocca schermo"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:67
|
#: ../extensions/alternative-status-menu/extension.js:68
|
||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Cambia utente"
|
msgstr "Cambia utente"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:72
|
#: ../extensions/alternative-status-menu/extension.js:73
|
||||||
msgid "Log Out..."
|
msgid "Log Out..."
|
||||||
msgstr "Termina sessione..."
|
msgstr "Termina sessione..."
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:79
|
#: ../extensions/alternative-status-menu/extension.js:81
|
||||||
msgid "Suspend"
|
msgid "Suspend"
|
||||||
msgstr "Sospendi"
|
msgstr "Sospendi"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:85
|
#: ../extensions/alternative-status-menu/extension.js:87
|
||||||
msgid "Hibernate"
|
msgid "Hibernate"
|
||||||
msgstr "Iberna"
|
msgstr "Iberna"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:91
|
#: ../extensions/alternative-status-menu/extension.js:93
|
||||||
msgid "Power Off..."
|
msgid "Power Off..."
|
||||||
msgstr "Spegni..."
|
msgstr "Spegni..."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:52
|
||||||
|
msgid ""
|
||||||
|
"This is the first time you use the Alternate Tab extension. \n"
|
||||||
|
"Please choose your preferred behaviour:\n"
|
||||||
|
"\n"
|
||||||
|
"All & Thumbnails:\n"
|
||||||
|
" This mode presents all applications from all workspaces in one "
|
||||||
|
"selection \n"
|
||||||
|
" list. Instead of using the application icon of every window, it uses "
|
||||||
|
"small \n"
|
||||||
|
" thumbnails resembling the window itself. \n"
|
||||||
|
"\n"
|
||||||
|
"Workspace & Icons:\n"
|
||||||
|
" This mode let's you switch between the applications of your current \n"
|
||||||
|
" workspace and gives you additionally the option to switch to the last "
|
||||||
|
"used \n"
|
||||||
|
" application of your previous workspace. This is always the last symbol "
|
||||||
|
"in \n"
|
||||||
|
" the list and is segregated by a separator/vertical line if available. \n"
|
||||||
|
" Every window is represented by its application icon. \n"
|
||||||
|
"\n"
|
||||||
|
"If you whish to revert to the default behavior for the Alt-Tab switcher, "
|
||||||
|
"just\n"
|
||||||
|
"disable the extension from extensions.gnome.org or the Advanced Settings "
|
||||||
|
"application."
|
||||||
|
msgstr ""
|
||||||
|
"Questa è la prima volta che viene usata l'estensione Alternate Tab. \n"
|
||||||
|
"Per favore scegli il comportamento preferito:\n"
|
||||||
|
"\n"
|
||||||
|
"Tutte & Miniature:\n"
|
||||||
|
" Questa modalità presenta tutte le applicazioni, da tutti gli spazi di lavoro\n"
|
||||||
|
" in un'unica lista. Invece di usare un'icona, usa delle piccole miniature\n"
|
||||||
|
" che rappresentano la finestra stessa.\n"
|
||||||
|
"\n"
|
||||||
|
"Spazio di lavoro & Icone:\n"
|
||||||
|
" Questa modalità ti consente di passare da un'applicazione all'altra del\n"
|
||||||
|
" tuo spazio di lavoro corrente e ti da in aggiunta l'opzione di passare all'ultima\n"
|
||||||
|
" applicazione dello spazio di lavoro precedente. Questa è sempre l'ultima della\n"
|
||||||
|
"\n"
|
||||||
|
" lista ed è separata da una linea verticale, se presente.\n"
|
||||||
|
" Ogni finestra è rappresentata dall'icona dell'applicazione.\n"
|
||||||
|
"\n"
|
||||||
|
"Se volessi ritornare al comportamento di default dello scambia finestre Alt-Tab,\n"
|
||||||
|
"disabilita l'estensione da extensions.gnome.org oppure dalle Impostazioni avanzate."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:293
|
||||||
|
msgid "Alt Tab Behaviour"
|
||||||
|
msgstr "Comportamento di Alt-Tab"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:309
|
||||||
|
msgid "All & Thumbnails"
|
||||||
|
msgstr "Tutte & Miniature"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:316
|
||||||
|
msgid "Workspace & Icons"
|
||||||
|
msgstr "Spazio di lavoro & Icone"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/extension.js:323
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Annulla"
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
|
||||||
|
msgid "Ask the user for a default behaviour if true."
|
||||||
|
msgstr "Se vero, chiede all'utente il comportamento preferito."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
|
||||||
|
msgid "Indicates if Alternate Tab is newly installed"
|
||||||
|
msgstr "Indica se Alternate Tab è stata appena installata."
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:3
|
||||||
|
msgid ""
|
||||||
|
"Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and "
|
||||||
|
"workspace_icons."
|
||||||
|
msgstr "Imposta il comportamento di Alt-Tab. Valori possibili sono \"native\", \"all_thumbnails\" e \"workspace_icons\""
|
||||||
|
|
||||||
|
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:4
|
||||||
|
msgid "The alt tab behaviour."
|
||||||
|
msgstr "Comportamento di Alt-Tab"
|
||||||
|
|
||||||
#: ../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 ""
|
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), "
|
||||||
@@ -69,50 +144,122 @@ msgstr ""
|
|||||||
msgid "Application and workspace list"
|
msgid "Application and workspace list"
|
||||||
msgstr "Lista applicazioni e spazi di lavoro"
|
msgstr "Lista applicazioni e spazi di lavoro"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:116
|
#: ../extensions/dock/extension.js:570
|
||||||
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:417
|
#: ../extensions/dock/extension.js:903
|
||||||
msgid "New Window"
|
msgid "New Window"
|
||||||
msgstr "Nuova finestra"
|
msgstr "Nuova finestra"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:419
|
#: ../extensions/dock/extension.js:905
|
||||||
msgid "Quit Application"
|
msgid "Quit Application"
|
||||||
msgstr "Chiudi applicazione"
|
msgstr "Chiudi applicazione"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:424
|
#: ../extensions/dock/extension.js:910
|
||||||
msgid "Remove from Favorites"
|
msgid "Remove from Favorites"
|
||||||
msgstr "Rimuovi dai preferiti"
|
msgstr "Rimuovi dai preferiti"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:425
|
#: ../extensions/dock/extension.js:911
|
||||||
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
|
||||||
|
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"
|
||||||
|
msgstr "Posizione del dock"
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
|
||||||
|
msgid "Sets icon size of the dock."
|
||||||
|
msgstr "Imposta la dimensione delle icone del dock."
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
|
||||||
|
msgid ""
|
||||||
|
"Sets the effect of the hide dock. Allowed values are 'resize' or 'rescale'"
|
||||||
|
msgstr "Imposta l'effetto di scomparsa automatica del dock. Valori consentiti sono \"resize\" e \"rescale\""
|
||||||
|
|
||||||
|
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
|
||||||
|
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:9
|
||||||
|
msgid "Sets the time duration of the autohide effect."
|
||||||
|
msgstr "Imposta la durata in secondi dell'effetto di scomparsa"
|
||||||
|
|
||||||
#: ../extensions/example/extension.js:11
|
#: ../extensions/example/extension.js:11
|
||||||
msgid "Hello, world!"
|
msgid "Hello, world!"
|
||||||
msgstr "Ciao, mondo!"
|
msgstr "Ciao, mondo!"
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:219
|
#: ../extensions/gajim/extension.js:227
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is away."
|
msgid "%s is away."
|
||||||
msgstr "%s è assente"
|
msgstr "%s è assente"
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:222
|
#: ../extensions/gajim/extension.js:230
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is offline."
|
msgid "%s is offline."
|
||||||
msgstr "%s è fuori rete"
|
msgstr "%s è fuori rete"
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:225
|
#: ../extensions/gajim/extension.js:233
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "%s is online."
|
msgid "%s is online."
|
||||||
msgstr "%s è disponibile"
|
msgstr "%s è disponibile"
|
||||||
|
|
||||||
#: ../extensions/gajim/extension.js:228
|
#: ../extensions/gajim/extension.js:236
|
||||||
#, 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
|
||||||
|
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/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 ""
|
||||||
|
"The algorithm used to layout thumbnails in the overview. 'grid' to use the "
|
||||||
|
"default grid based algorithm, 'natural' to use another one that reflects "
|
||||||
|
"more the position and size of the actual window"
|
||||||
|
msgstr "L'algoritmo usato per posizionare le miniature nella panoramica attività. \"grid\" per usare l'algoritmo di default, basato su una griglia, 'natural' per usarne un altro che riflette di più la posizione e la dimensione effettive della finestra."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
|
||||||
|
msgid ""
|
||||||
|
"Try to use more screen for placing window thumbnails by adapting to screen "
|
||||||
|
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||||
|
"This setting applies only with the natural placement strategy."
|
||||||
|
msgstr "Cerca di usare più spazio per collocare le miniature delle finestre, adattandosi al rapporto d'aspetto dello schermo, e consolidandole ulteriormente per ridurre lo spazio complessivo. Questa impostazione si applica solo se l'algoritmo di posizionamento è \"natural\"."
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:5
|
||||||
|
msgid "Use more screen for windows"
|
||||||
|
msgstr "Usa più spazio per le finestre"
|
||||||
|
|
||||||
|
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:6
|
||||||
|
msgid "Window placement strategy"
|
||||||
|
msgstr "Algoritmo di posizionamento delle finestre"
|
||||||
|
|
||||||
#: ../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 "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
|
||||||
msgstr "Il nome del tema, da caricare in ~/.themes/nome/gnome-shell"
|
msgstr "Il nome del tema, da caricare in ~/.themes/nome/gnome-shell"
|
||||||
|
|||||||
88
po/sl.po
88
po/sl.po
@@ -7,56 +7,81 @@ 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: 2011-09-17 09:54+0000\n"
|
"POT-Creation-Date: 2011-11-28 19:18+0000\n"
|
||||||
"PO-Revision-Date: 2011-09-17 17:14+0100\n"
|
"PO-Revision-Date: 2011-12-02 16:26+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"
|
|
||||||
"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"
|
||||||
|
"Language: \n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n"
|
||||||
"X-Poedit-Language: Slovenian\n"
|
"X-Poedit-Language: Slovenian\n"
|
||||||
"X-Poedit-Country: SLOVENIA\n"
|
"X-Poedit-Country: SLOVENIA\n"
|
||||||
"X-Poedit-SourceCharset: utf-8\n"
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:44
|
#: ../extensions/alternative-status-menu/extension.js:45
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr "Obvestila"
|
msgstr "Obvestila"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:52
|
#: ../extensions/alternative-status-menu/extension.js:53
|
||||||
msgid "Online Accounts"
|
msgid "Online Accounts"
|
||||||
msgstr "Spletni računi"
|
msgstr "Spletni računi"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:56
|
#: ../extensions/alternative-status-menu/extension.js:57
|
||||||
msgid "System Settings"
|
msgid "System Settings"
|
||||||
msgstr "Sistemske nastavitve"
|
msgstr "Sistemske nastavitve"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:63
|
#: ../extensions/alternative-status-menu/extension.js:64
|
||||||
msgid "Lock Screen"
|
msgid "Lock Screen"
|
||||||
msgstr "Zakleni zaslon"
|
msgstr "Zakleni zaslon"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:68
|
#: ../extensions/alternative-status-menu/extension.js:69
|
||||||
msgid "Switch User"
|
msgid "Switch User"
|
||||||
msgstr "Preklopi uporabnika"
|
msgstr "Preklopi uporabnika"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:73
|
#: ../extensions/alternative-status-menu/extension.js:74
|
||||||
msgid "Log Out..."
|
msgid "Log Out..."
|
||||||
msgstr "Odjava ..."
|
msgstr "Odjava ..."
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:81
|
#: ../extensions/alternative-status-menu/extension.js:82
|
||||||
msgid "Suspend"
|
msgid "Suspend"
|
||||||
msgstr "V pripravljenost"
|
msgstr "V pripravljenost"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:87
|
#: ../extensions/alternative-status-menu/extension.js:88
|
||||||
msgid "Hibernate"
|
msgid "Hibernate"
|
||||||
msgstr "V mirovanje"
|
msgstr "V mirovanje"
|
||||||
|
|
||||||
#: ../extensions/alternative-status-menu/extension.js:93
|
#: ../extensions/alternative-status-menu/extension.js:94
|
||||||
msgid "Power Off..."
|
msgid "Power Off..."
|
||||||
msgstr "Izklopi ..."
|
msgstr "Izklopi ..."
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:44
|
#: ../extensions/alternate-tab/extension.js:50
|
||||||
|
#| msgid ""
|
||||||
|
#| "This is the first time you use the Alternate Tab extension. \n"
|
||||||
|
#| "Please choose your preferred behaviour:\n"
|
||||||
|
#| "\n"
|
||||||
|
#| "All & Thumbnails:\n"
|
||||||
|
#| " This mode presents all applications from all workspaces in one "
|
||||||
|
#| "selection \n"
|
||||||
|
#| " list. Instead of using the application icon of every window, it uses "
|
||||||
|
#| "small \n"
|
||||||
|
#| " thumbnails resembling the window itself. \n"
|
||||||
|
#| "\n"
|
||||||
|
#| "Workspace & Icons:\n"
|
||||||
|
#| " This mode let's you switch between the applications of your current \n"
|
||||||
|
#| " workspace and gives you additionally the option to switch to the last "
|
||||||
|
#| "used \n"
|
||||||
|
#| " application of your previous workspace. This is always the last "
|
||||||
|
#| "symbol in \n"
|
||||||
|
#| " the list and is segregated by a separator/vertical line if "
|
||||||
|
#| "available. \n"
|
||||||
|
#| " Every window is represented by its application icon. \n"
|
||||||
|
#| "\n"
|
||||||
|
#| "Native:\n"
|
||||||
|
#| " This mode is the native GNOME 3 behaviour or in other words: "
|
||||||
|
#| "Clicking \n"
|
||||||
|
#| " native switches the Alternate Tab extension off. \n"
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the first time you use the Alternate Tab extension. \n"
|
"This is the first time you use the Alternate Tab extension. \n"
|
||||||
"Please choose your preferred behaviour:\n"
|
"Please choose your preferred behaviour:\n"
|
||||||
@@ -73,12 +98,11 @@ msgid ""
|
|||||||
" the list and is segregated by a separator/vertical line if available. \n"
|
" the list and is segregated by a separator/vertical line if available. \n"
|
||||||
" Every window is represented by its application icon. \n"
|
" Every window is represented by its application icon. \n"
|
||||||
"\n"
|
"\n"
|
||||||
"Native:\n"
|
"If you whish to revert to the default behavior for the Alt-Tab switcher, just\n"
|
||||||
" This mode is the native GNOME 3 behaviour or in other words: Clicking \n"
|
"disable the extension from extensions.gnome.org or the Advanced Settings application."
|
||||||
" native switches the Alternate Tab extension off. \n"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"To je prvi zagon razširitve Alternate Tab. \n"
|
"To je prvi zagon razširitve Alternate Tab. \n"
|
||||||
"Izberite prednostno obnašanje:\n"
|
"Izberite želen način delovanja:\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Vse in sličice:\n"
|
"Vse in sličice:\n"
|
||||||
" Ta način prikazuje vse programe vseh delovnih površin ne enem izbirnem\n"
|
" Ta način prikazuje vse programe vseh delovnih površin ne enem izbirnem\n"
|
||||||
@@ -92,27 +116,22 @@ msgstr ""
|
|||||||
" vodoravno črto. \n"
|
" vodoravno črto. \n"
|
||||||
" Vsako okno je prikazano z ikono programa. \n"
|
" Vsako okno je prikazano z ikono programa. \n"
|
||||||
"\n"
|
"\n"
|
||||||
"Lastni:\n"
|
"V kolikor želite povrniti delovanje na privzeti način preklopnika Alt+Tab,\n"
|
||||||
" Ta način je lasten načinu obnašanja namizja GNOME 3: Izbor te možnosti \n"
|
"enostavno onemogočite to razširitev med naprednimi nastavitvami."
|
||||||
" onemogoči razširitev Alternate Tab. \n"
|
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:269
|
#: ../extensions/alternate-tab/extension.js:291
|
||||||
msgid "Alt Tab Behaviour"
|
msgid "Alt Tab Behaviour"
|
||||||
msgstr "Obnašanje tipk Alt-Tab"
|
msgstr "Obnašanje tipk Alt-Tab"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:285
|
#: ../extensions/alternate-tab/extension.js:307
|
||||||
msgid "All & Thumbnails"
|
msgid "All & Thumbnails"
|
||||||
msgstr "Vse in sličice"
|
msgstr "Vse in sličice"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:292
|
#: ../extensions/alternate-tab/extension.js:314
|
||||||
msgid "Workspace & Icons"
|
msgid "Workspace & Icons"
|
||||||
msgstr "Delovne površine in ikone"
|
msgstr "Delovne površine in ikone"
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:299
|
#: ../extensions/alternate-tab/extension.js:321
|
||||||
msgid "Native"
|
|
||||||
msgstr "Lastni"
|
|
||||||
|
|
||||||
#: ../extensions/alternate-tab/extension.js:306
|
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Prekliči"
|
msgstr "Prekliči"
|
||||||
|
|
||||||
@@ -140,23 +159,23 @@ msgstr "Seznam nizov z določilom ID programa (namizno ime programa), ki mu sled
|
|||||||
msgid "Application and workspace list"
|
msgid "Application and workspace list"
|
||||||
msgstr "Seznam programov in delovnih površin"
|
msgstr "Seznam programov in delovnih površin"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:486
|
#: ../extensions/dock/extension.js:569
|
||||||
msgid "Drag here to add favorites"
|
msgid "Drag here to add favorites"
|
||||||
msgstr "Potegnite sem, za dodajanje med priljubljene"
|
msgstr "Potegnite sem, za dodajanje med priljubljene"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:820
|
#: ../extensions/dock/extension.js:902
|
||||||
msgid "New Window"
|
msgid "New Window"
|
||||||
msgstr "Novo okno"
|
msgstr "Novo okno"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:822
|
#: ../extensions/dock/extension.js:904
|
||||||
msgid "Quit Application"
|
msgid "Quit Application"
|
||||||
msgstr "Končaj program"
|
msgstr "Končaj program"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:827
|
#: ../extensions/dock/extension.js:909
|
||||||
msgid "Remove from Favorites"
|
msgid "Remove from Favorites"
|
||||||
msgstr "Odstrani iz priljubljenih"
|
msgstr "Odstrani iz priljubljenih"
|
||||||
|
|
||||||
#: ../extensions/dock/extension.js:828
|
#: ../extensions/dock/extension.js:910
|
||||||
msgid "Add to Favorites"
|
msgid "Add to Favorites"
|
||||||
msgstr "Dodaj med priljubljene"
|
msgstr "Dodaj med priljubljene"
|
||||||
|
|
||||||
@@ -272,6 +291,9 @@ msgstr "Zgoraj-navzdol"
|
|||||||
msgid "Configure display settings..."
|
msgid "Configure display settings..."
|
||||||
msgstr "Nastavitve zaslona ..."
|
msgstr "Nastavitve zaslona ..."
|
||||||
|
|
||||||
|
#~ msgid "Native"
|
||||||
|
#~ msgstr "Lastni"
|
||||||
|
|
||||||
#~ msgid "Available"
|
#~ msgid "Available"
|
||||||
#~ msgstr "Na voljo"
|
#~ msgstr "Na voljo"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user