diff -Nru gnome-shell-extension-dashtodock-57/appIcons.js gnome-shell-extension-dashtodock-60/appIcons.js --- gnome-shell-extension-dashtodock-57/appIcons.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/appIcons.js 2017-06-21 21:44:12.000000000 +0000 @@ -11,6 +11,12 @@ const St = imports.gi.St; const Mainloop = imports.mainloop; +// Use __ () and N__() for the extension gettext domain, and reuse +// the shell domain with the default _() and N_() +const Gettext = imports.gettext.domain('dashtodock'); +const __ = Gettext.gettext; +const N__ = function(e) { return e }; + const AppDisplay = imports.ui.appDisplay; const AppFavorites = imports.ui.appFavorites; const Dash = imports.ui.dash; @@ -23,7 +29,7 @@ const Workspace = imports.ui.workspace; const Me = imports.misc.extensionUtils.getCurrentExtension(); -const Convenience = Me.imports.convenience; +const Utils = Me.imports.utils; const WindowPreview = Me.imports.windowPreview; let tracker = Shell.WindowTracker.get_default(); @@ -36,7 +42,8 @@ LAUNCH: 2, CYCLE_WINDOWS: 3, MINIMIZE_OR_OVERVIEW: 4, - QUIT: 5 + PREVIEWS: 5, + QUIT: 6 }; const scrollAction = { @@ -49,6 +56,7 @@ let recentlyClickedApp = null; let recentlyClickedAppWindows = null; let recentlyClickedAppIndex = 0; +let recentlyClickedAppMonitor = -1; /** * Extend AppIcon @@ -71,8 +79,8 @@ _init: function(settings, app, monitorIndex, iconParams) { // a prefix is required to avoid conflicting with the parent class variable this._dtdSettings = settings; - this._monitorIndex = monitorIndex; - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this.monitorIndex = monitorIndex; + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._nWindows = 0; this.parent(app, iconParams); @@ -90,6 +98,10 @@ this._focusAppChangeId = tracker.connect('notify::focus-app', Lang.bind(this, this._onFocusAppChanged)); + this._enteredMonitorId = global.screen.connect('window-entered-monitor', + Lang.bind(this, + this.onWindowsChanged)); + this._dots = null; let keys = ['apply-custom-theme', @@ -115,6 +127,9 @@ this._optionalScrollCycleWindows(); this._numberOverlay(); + + this._previewMenuManager = null; + this._previewMenu = null; }, _onDestroy: function() { @@ -133,6 +148,11 @@ this._focusAppChangeId = 0; } + if (this._enteredMonitorId > 0) { + global.screen.disconnect(this._enteredMonitorId); + this._enteredMonitorId = 0; + } + this._signalsHandler.destroy(); if (this._scrollEventHandler) @@ -140,8 +160,10 @@ }, _optionalScrollCycleWindows: function() { - if (this._scrollEventHandler) + if (this._scrollEventHandler) { this.actor.disconnect(this._scrollEventHandler); + this._scrollEventHandler = 0; + } let isEnabled = this._dtdSettings.get_enum('scroll-action') === scrollAction.CYCLE_WINDOWS; if (!isEnabled) return; @@ -156,7 +178,7 @@ // We check if the app is running, and that the # of windows is > 0 in // case we use workspace isolation, let appIsRunning = this.app.state == Shell.AppState.RUNNING - && getInterestingWindows(this.app, this._dtdSettings).length > 0; + && this.getInterestingWindows().length > 0; if (!appIsRunning) return false @@ -190,10 +212,10 @@ if (!Main.overview._shown) { let reversed = direction === Meta.MotionDirection.UP; if (this.app == focusedApp) - cycleThroughWindows(this.app, this._dtdSettings, reversed); + this._cycleThroughWindows(reversed); else { // Activate the first window - let windows = getInterestingWindows(this.app, this._dtdSettings); + let windows = this.getInterestingWindows(); if (windows.length > 0) { let w = windows[0]; Main.activateWindow(w); @@ -232,7 +254,7 @@ let windows = this.app.get_windows(); if (this._dtdSettings.get_boolean('multi-monitor')){ - let monitorIndex = this._monitorIndex; + let monitorIndex = this.monitorIndex; windows = windows.filter(function(w) { return w.get_monitor() == monitorIndex; }); @@ -262,7 +284,7 @@ this._dots = new St.DrawingArea({x_expand: true, y_expand: true}); this._dots.connect('repaint', Lang.bind(this, function() { - this._drawCircles(this._dots, Convenience.getPosition(this._dtdSettings)); + this._drawCircles(this._dots, Utils.getPosition(this._dtdSettings)); })); this._iconContainer.add_child(this._dots); this._updateCounterClass(); @@ -278,9 +300,10 @@ _updateRunningStyle: function() { // When using workspace isolation, we need to hide the dots of apps with // no windows in the current workspace - if (this._dtdSettings.get_boolean('isolate-workspaces')) { + if (this._dtdSettings.get_boolean('isolate-workspaces') || + this._dtdSettings.get_boolean('isolate-monitors')) { if (this.app.state != Shell.AppState.STOPPED - && getInterestingWindows(this.app, this._dtdSettings).length != 0) + && this.getInterestingWindows().length != 0) this._dot.show(); else this._dot.hide(); @@ -309,7 +332,7 @@ // scrollable so the minimum height is smaller than the natural height. let monitor_index = Main.layoutManager.findIndexForActor(this.actor); let workArea = Main.layoutManager.getWorkAreaForMonitor(monitor_index); - let position = Convenience.getPosition(this._dtdSettings); + let position = Utils.getPosition(this._dtdSettings); this._isHorizontal = ( position == St.Side.TOP || position == St.Side.BOTTOM); // If horizontal also remove the height of the dash @@ -341,7 +364,9 @@ }, _onFocusAppChanged: function() { - if (tracker.focus_app == this.app) + // We need to check the number of windows, as the focus might be + // happening on another monitor if using isolation + if (tracker.focus_app == this.app && this.getInterestingWindows().length != 0) this.actor.add_style_class_name('focused'); else this.actor.remove_style_class_name('focused'); @@ -389,9 +414,10 @@ } // We check if the app is running, and that the # of windows is > 0 in - // case we use workspace isolation, + // case we use workspace isolation. + let windows = this.getInterestingWindows(); let appIsRunning = this.app.state == Shell.AppState.RUNNING - && getInterestingWindows(this.app, this._dtdSettings).length > 0 + && windows.length > 0; // Some action modes (e.g. MINIMIZE_OR_OVERVIEW) require overview to remain open // This variable keeps track of this @@ -413,24 +439,26 @@ if (Clutter.EventType.CLUTTER_BUTTON_PRESS) click_count = event.get_click_count(); let all_windows = (button == 1 && ! modifiers) || click_count > 1; - minimizeWindow(this.app, all_windows, this._dtdSettings); + this._minimizeWindow(all_windows); } else - activateAllWindows(this.app, this._dtdSettings); + this._activateAllWindows(); + } + else { + let w = windows[0]; + Main.activateWindow(w); } - else - this.app.activate(); break; case clickAction.MINIMIZE_OR_OVERVIEW: - let windows = getInterestingWindows(this.app, this._dtdSettings); - let nbWindows = windows.length; // When a single window is present, toggle minimization - if (windows && nbWindows && nbWindows <= 1) { + // If only one windows is present toggle minimization, but only when trigggered with the + // simple click action (no modifiers, no middle click). + if (windows.length == 1 && !modifiers && button == 1) { let w = windows[0]; if (this.app == focusedApp) { // Window is raised, minimize it - minimizeWindow(this.app, w, this._dtdSettings); + this._minimizeWindow(w); } else { // Window is minimized, raise it Main.activateWindow(w); @@ -446,10 +474,9 @@ case clickAction.CYCLE_WINDOWS: if (!Main.overview._shown){ if (this.app == focusedApp) - cycleThroughWindows(this.app, this._dtdSettings); + this._cycleThroughWindows(); else { // Activate the first window - let windows = getInterestingWindows(this.app, this._dtdSettings); let w = windows[0]; Main.activateWindow(w); } @@ -462,12 +489,28 @@ this.launchNewWindow(); break; + case clickAction.PREVIEWS: + if (!Main.overview._shown) { + // If only one windows is present just switch to it, but only when trigggered with the + // simple click action (no modifiers, no middle click). + if (windows.length == 1 && !modifiers && button == 1) { + let w = windows[0]; + Main.activateWindow(w); + } else + this._windowPreviews(); + } + else { + this.app.activate(); + } + break; + case clickAction.QUIT: - closeAllWindows(this.app, this._dtdSettings); + this.closeAllWindows(); break; case clickAction.SKIP: - this.app.activate(); + let w = windows[0]; + Main.activateWindow(w); break; } } @@ -481,6 +524,40 @@ } }, + shouldShowTooltip: function() { + return this.actor.hover && (!this._menu || !this._menu.isOpen) && + (!this._previewMenu || !this._previewMenu.isOpen); + }, + + _windowPreviews: function() { + if (!this._previewMenu) { + this._previewMenuManager = new PopupMenu.PopupMenuManager(this); + + this._previewMenu = new WindowPreview.WindowPreviewMenu(this, this._dtdSettings); + + this._previewMenuManager.addMenu(this._previewMenu); + + this._previewMenu.connect('open-state-changed', Lang.bind(this, function(menu, isPoppedUp) { + if (!isPoppedUp) + this._onMenuPoppedDown(); + })); + let id = Main.overview.connect('hiding', Lang.bind(this, function() { + this._previewMenu.close(); + })); + this._previewMenu.actor.connect('destroy', function() { + Main.overview.disconnect(id); + }); + + } + + if (this._previewMenu.isOpen) + this._previewMenu.close(); + else + this._previewMenu.popup(); + + return false; + }, + // Try to do the right thing when attempting to launch a new window of an app. In // particular, if the application doens't allow to launch a new window, activate // the existing window instead. @@ -520,7 +597,7 @@ _updateCounterClass: function() { let maxN = 4; - this._nWindows = Math.min(getInterestingWindows(this.app, this._dtdSettings).length, maxN); + this._nWindows = Math.min(this.getInterestingWindows().length, maxN); for (let i = 1; i <= maxN; i++) { let className = 'running' + i; @@ -616,7 +693,7 @@ x_align: St.Align.START, y_align: St.Align.START, x_expand: true, y_expand: true }); - this._numberOverlayStyle = 'background-color: rgba(0,0,0,0.8);' + this._numberOverlayLabel.add_style_class_name('number-overlay'); this._numberOverlayOrder = -1; this._numberOverlayBin.hide(); @@ -635,9 +712,7 @@ let font_size = Math.round(Math.max(12, 0.3*natWidth) / scaleFactor); let size = Math.round(font_size*1.2); this._numberOverlayLabel.set_style( - this._numberOverlayStyle + 'font-size: ' + font_size + 'px;' + - 'text-align: center;' + 'border-radius: ' + this.icon.iconSize + 'px;' + 'width: ' + size + 'px; height: ' + size +'px;' ); @@ -655,107 +730,114 @@ } else this._numberOverlayBin.hide(); - } -}); + }, -function minimizeWindow(app, param, settings) { - // Param true make all app windows minimize - let windows = getInterestingWindows(app, settings); - let current_workspace = global.screen.get_active_workspace(); - for (let i = 0; i < windows.length; i++) { - let w = windows[i]; - if (w.get_workspace() == current_workspace && w.showing_on_its_workspace()) { - w.minimize(); - // Just minimize one window. By specification it should be the - // focused window on the current workspace. - if(!param) - break; + _minimizeWindow: function(param) { + // Param true make all app windows minimize + let windows = this.getInterestingWindows(); + let current_workspace = global.screen.get_active_workspace(); + for (let i = 0; i < windows.length; i++) { + let w = windows[i]; + if (w.get_workspace() == current_workspace && w.showing_on_its_workspace()) { + w.minimize(); + // Just minimize one window. By specification it should be the + // focused window on the current workspace. + if(!param) + break; + } } - } -} + }, -/** - * By default only non minimized windows are activated. - * This activates all windows in the current workspace. - */ -function activateAllWindows(app, settings) { - // First activate first window so workspace is switched if needed. - app.activate(); + // By default only non minimized windows are activated. + // This activates all windows in the current workspace. + _activateAllWindows: function() { + // First activate first window so workspace is switched if needed. + // We don't do this if isolation is on! + if (!this._dtdSettings.get_boolean('isolate-workspaces') && + !this._dtdSettings.get_boolean('isolate-monitors')) + this.app.activate(); - // then activate all other app windows in the current workspace - let windows = getInterestingWindows(app, settings); - let activeWorkspace = global.screen.get_active_workspace_index(); + // then activate all other app windows in the current workspace + let windows = this.getInterestingWindows(); + let activeWorkspace = global.screen.get_active_workspace_index(); - if (windows.length <= 0) - return; + if (windows.length <= 0) + return; - let activatedWindows = 0; + let activatedWindows = 0; + for (let i = windows.length - 1; i >= 0; i--) { + if (windows[i].get_workspace().index() == activeWorkspace) { + Main.activateWindow(windows[i]); + activatedWindows++; + } + } + }, - for (let i = windows.length - 1; i >= 0; i--) { - if (windows[i].get_workspace().index() == activeWorkspace) { - Main.activateWindow(windows[i]); - activatedWindows++; + //This closes all windows of the app. + closeAllWindows: function() { + let windows = this.getInterestingWindows(); + for (let i = 0; i < windows.length; i++) + windows[i].delete(global.get_current_time()); + }, + + _cycleThroughWindows: function(reversed) { + // Store for a little amount of time last clicked app and its windows + // since the order changes upon window interaction + let MEMORY_TIME=3000; + + let app_windows = this.getInterestingWindows(); + + if (app_windows.length <1) + return + + if (recentlyClickedAppLoopId > 0) + Mainloop.source_remove(recentlyClickedAppLoopId); + recentlyClickedAppLoopId = Mainloop.timeout_add(MEMORY_TIME, this._resetRecentlyClickedApp); + + // If there isn't already a list of windows for the current app, + // or the stored list is outdated, use the current windows list. + let monitorIsolation = this._dtdSettings.get_boolean('isolate-monitors'); + if (!recentlyClickedApp || + recentlyClickedApp.get_id() != this.app.get_id() || + recentlyClickedAppWindows.length != app_windows.length || + (recentlyClickedAppMonitor != this.monitorIndex && monitorIsolation)) { + recentlyClickedApp = this.app; + recentlyClickedAppWindows = app_windows; + recentlyClickedAppMonitor = this.monitorIndex; + recentlyClickedAppIndex = 0; + } + + if (reversed) { + recentlyClickedAppIndex--; + if (recentlyClickedAppIndex < 0) recentlyClickedAppIndex = recentlyClickedAppWindows.length - 1; + } else { + recentlyClickedAppIndex++; } - } -} + let index = recentlyClickedAppIndex % recentlyClickedAppWindows.length; + let window = recentlyClickedAppWindows[index]; -/** - * This closes all windows of the app. - */ -function closeAllWindows(app, settings) { - let windows = getInterestingWindows(app, settings); - for (let i = 0; i < windows.length; i++) - windows[i].delete(global.get_current_time()); -} + Main.activateWindow(window); + }, -function cycleThroughWindows(app, settings, reversed) { - // Store for a little amount of time last clicked app and its windows - // since the order changes upon window interaction - let MEMORY_TIME=3000; - - let app_windows = getInterestingWindows(app, settings); - - if (app_windows.length <1) - return - - if (recentlyClickedAppLoopId > 0) - Mainloop.source_remove(recentlyClickedAppLoopId); - recentlyClickedAppLoopId = Mainloop.timeout_add(MEMORY_TIME, resetRecentlyClickedApp); - - // If there isn't already a list of windows for the current app, - // or the stored list is outdated, use the current windows list. - if (!recentlyClickedApp || - recentlyClickedApp.get_id() != app.get_id() || - recentlyClickedAppWindows.length != app_windows.length) { - recentlyClickedApp = app; - recentlyClickedAppWindows = app_windows; + _resetRecentlyClickedApp: function() { + if (recentlyClickedAppLoopId > 0) + Mainloop.source_remove(recentlyClickedAppLoopId); + recentlyClickedAppLoopId=0; + recentlyClickedApp =null; + recentlyClickedAppWindows = null; recentlyClickedAppIndex = 0; - } - - if (reversed) { - recentlyClickedAppIndex--; - if (recentlyClickedAppIndex < 0) recentlyClickedAppIndex = recentlyClickedAppWindows.length - 1; - } else { - recentlyClickedAppIndex++; - } - let index = recentlyClickedAppIndex % recentlyClickedAppWindows.length; - let window = recentlyClickedAppWindows[index]; - - Main.activateWindow(window); -} + recentlyClickedAppMonitor = -1; -function resetRecentlyClickedApp() { - if (recentlyClickedAppLoopId > 0) - Mainloop.source_remove(recentlyClickedAppLoopId); - recentlyClickedAppLoopId=0; - recentlyClickedApp =null; - recentlyClickedAppWindows = null; - recentlyClickedAppIndex = 0; - - return false; -} + return false; + }, + // Filter out unnecessary windows, for instance + // nautilus desktop window. + getInterestingWindows: function() { + return getInterestingWindows(this.app, this._dtdSettings, this.monitorIndex); + } +}); /** * Extend AppIconMenu * @@ -771,7 +853,7 @@ Extends: AppDisplay.AppIconMenu, _init: function(source, settings) { - let side = Convenience.getPosition(settings); + let side = Utils.getPosition(settings); // Damm it, there has to be a proper way of doing this... // As I can't call the parent parent constructor (?) passing the side @@ -793,7 +875,7 @@ // Display the app windows menu items and the separator between windows // of the current desktop and other windows. - this._allWindowsMenuItem = new PopupMenu.PopupSubMenuMenuItem(_('All Windows'), false); + this._allWindowsMenuItem = new PopupMenu.PopupSubMenuMenuItem(__('All Windows'), false); this._allWindowsMenuItem.actor.hide(); this.addMenuItem(this._allWindowsMenuItem); @@ -889,7 +971,7 @@ this._appendSeparator(); this._quitfromDashMenuItem = this._appendMenuItem(_("Quit")); this._quitfromDashMenuItem.connect('activate', Lang.bind(this, function() { - closeAllWindows(this._source.app, this._dtdSettings); + this._source.closeAllWindows(); })); this.update(); @@ -901,7 +983,7 @@ if(this._dtdSettings.get_boolean('show-windows-preview')){ - let windows = getInterestingWindows(this._source.app, this._dtdSettings); + let windows = this._source.getInterestingWindows(); // update, show or hide the quit menu if ( windows.length > 0) { @@ -984,7 +1066,7 @@ // Filter out unnecessary windows, for instance // nautilus desktop window. -function getInterestingWindows(app, settings) { +function getInterestingWindows(app, settings, monitorIndex) { let windows = app.get_windows().filter(function(w) { return !w.skip_taskbar; }); @@ -996,6 +1078,11 @@ return w.get_workspace().index() == global.screen.get_active_workspace_index(); }); + if (settings.get_boolean('isolate-monitors')) + windows = windows.filter(function(w) { + return w.get_monitor() == monitorIndex; + }); + return windows; } @@ -1084,7 +1171,10 @@ _redisplay: function() { this.removeAll(); - let item = this._appendMenuItem('Dash to Dock ' + _('Settings')); + /* Translators: %s is "Settings", which is automatically translated. You + can also translate the full message if this fits better your language. */ + let name = __('Dash to Dock %s').format(_('Settings')) + let item = this._appendMenuItem(name); item.connect('activate', function () { Util.spawn(["gnome-shell-extension-prefs", Me.metadata.uuid]); @@ -1096,7 +1186,9 @@ * This function is used for both extendShowAppsIcon and extendDashItemContainer */ function itemShowLabel() { - if (!this._labelText) + // Check if the label is still present at all. When switching workpaces, the + // item might have been destroyed in between. + if (!this._labelText || this.label.get_stage() == null) return; this.label.set_text(this._labelText); @@ -1114,7 +1206,7 @@ let x, y, xOffset, yOffset; - let position = Convenience.getPosition(this._dtdSettings); + let position = Utils.getPosition(this._dtdSettings); this._isHorizontal = ((position == St.Side.TOP) || (position == St.Side.BOTTOM)); let labelOffset = node.get_length('-x-offset'); diff -Nru gnome-shell-extension-dashtodock-57/convenience.js gnome-shell-extension-dashtodock-60/convenience.js --- gnome-shell-extension-dashtodock-57/convenience.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/convenience.js 2017-06-21 21:44:12.000000000 +0000 @@ -5,10 +5,8 @@ * http://git.gnome.org/browse/gnome-shell-extensions/ */ -const Clutter = imports.gi.Clutter; const Gettext = imports.gettext; const Gio = imports.gi.Gio; -const Lang = imports.lang; const Config = imports.misc.config; const ExtensionUtils = imports.misc.extensionUtils; @@ -74,123 +72,3 @@ settings_schema: schemaObj }); } - -/** - * Simplify global signals and function injections handling - * abstract class - */ -const BasicHandler = new Lang.Class({ - Name: 'DashToDock.BasicHandler', - - _init: function() { - this._storage = new Object(); - }, - - add: function(/* unlimited 3-long array arguments */) { - // Convert arguments object to array, concatenate with generic - let args = Array.concat('generic', Array.slice(arguments)); - // Call addWithLabel with ags as if they were passed arguments - this.addWithLabel.apply(this, args); - }, - - destroy: function() { - for( let label in this._storage ) - this.removeWithLabel(label); - }, - - addWithLabel: function(label /* plus unlimited 3-long array arguments*/) { - if (this._storage[label] == undefined) - this._storage[label] = new Array(); - - // Skip first element of the arguments - for (let i = 1; i < arguments.length; i++) { - this._storage[label].push( this._create(arguments[i])); - } - }, - - removeWithLabel: function(label) { - if (this._storage[label]) { - for (let i = 0; i < this._storage[label].length; i++) - this._remove(this._storage[label][i]); - - delete this._storage[label]; - } - }, - - // Virtual methods to be implemented by subclass - - /** - * Create single element to be stored in the storage structure - */ - _create: function(item) { - throw new Error('no implementation of _create in ' + this); - }, - - /** - * Correctly delete single element - */ - _remove: function(item) { - throw new Error('no implementation of _remove in ' + this); - } -}); - -/** - * Manage global signals - */ -const GlobalSignalsHandler = new Lang.Class({ - Name: 'DashToDock.GlobalSignalHandler', - Extends: BasicHandler, - - _create: function(item) { - let object = item[0]; - let event = item[1]; - let callback = item[2] - let id = object.connect(event, callback); - - return [object, id]; - }, - - _remove: function(item) { - item[0].disconnect(item[1]); - } -}); - -/** - * Manage function injection: both instances and prototype can be overridden - * and restored - */ -const InjectionsHandler = new Lang.Class({ - Name: 'DashToDock.InjectionsHandler', - Extends: BasicHandler, - - _create: function(item) { - let object = item[0]; - let name = item[1]; - let injectedFunction = item[2]; - let original = object[name]; - - object[name] = injectedFunction; - return [object, name, injectedFunction, original]; - }, - - _remove: function(item) { - let object = item[0]; - let name = item[1]; - let original = item[3]; - object[name] = original; - } -}); - -/** - * Return the actual position reverseing left and right in rtl - */ -function getPosition(settings) { - let position = settings.get_enum('dock-position'); - if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL) { - if (position == St.Side.LEFT) - position = St.Side.RIGHT; - else if (position == St.Side.RIGHT) - position = St.Side.LEFT; - } - return position; -} diff -Nru gnome-shell-extension-dashtodock-57/dash.js gnome-shell-extension-dashtodock-60/dash.js --- gnome-shell-extension-dashtodock-57/dash.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/dash.js 2017-06-21 21:44:12.000000000 +0000 @@ -23,7 +23,7 @@ const Workspace = imports.ui.workspace; const Me = imports.misc.extensionUtils.getCurrentExtension(); -const Convenience = Me.imports.convenience; +const Utils = Me.imports.utils; const AppIcons = Me.imports.appIcons; let DASH_ANIMATION_TIME = Dash.DASH_ANIMATION_TIME; @@ -60,7 +60,7 @@ this._dtdSettings = settings; this._rtl = (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL); - this._position = Convenience.getPosition(settings); + this._position = Utils.getPosition(settings); this._isHorizontal = ((this._position == St.Side.TOP) || (this._position == St.Side.BOTTOM)); @@ -186,10 +186,10 @@ this._dtdSettings = settings; this._monitorIndex = monitorIndex; - this._position = Convenience.getPosition(settings); + this._position = Utils.getPosition(settings); this._isHorizontal = ((this._position == St.Side.TOP) || (this._position == St.Side.BOTTOM)); - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._dragPlaceholder = null; this._dragPlaceholderPos = -1; @@ -706,12 +706,14 @@ let favorites = AppFavorites.getAppFavorites().getFavoriteMap(); let running = this._appSystem.get_running(); - if (this._dtdSettings.get_boolean('isolate-workspaces')) { + if (this._dtdSettings.get_boolean('isolate-workspaces') || + this._dtdSettings.get_boolean('isolate-monitors')) { // When using isolation, we filter out apps that have no windows in // the current workspace let settings = this._dtdSettings; + let monitorIndex = this._monitorIndex; running = running.filter(function(_app) { - return AppIcons.getInterestingWindows(_app, settings).length != 0; + return AppIcons.getInterestingWindows(_app, settings, monitorIndex).length != 0; }); } @@ -778,7 +780,7 @@ let oldIndex = 0; while ((newIndex < newApps.length) || (oldIndex < oldApps.length)) { // No change at oldIndex/newIndex - if (oldApps[oldIndex] == newApps[newIndex]) { + if (oldApps[oldIndex] && oldApps[oldIndex] == newApps[newIndex]) { oldIndex++; newIndex++; continue; diff -Nru gnome-shell-extension-dashtodock-57/debian/bzr-builder.manifest gnome-shell-extension-dashtodock-60/debian/bzr-builder.manifest --- gnome-shell-extension-dashtodock-57/debian/bzr-builder.manifest 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/bzr-builder.manifest 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -# bzr-builder format 0.3 deb-version {debupstream}-1+825 -lp:~gnome-shell-extensions/gnome-shell-extensions/dash-to-dock-head revid:git-v1:ef2a53cde9817ab50475e94ac6670378c5fed293 -merge packaging lp:~gnome-shell-extensions/gnome-shell-extensions/gnome-shell-extension-dashtodock-packaging revid:git-v1:6b69faa149586a1c14129cf8d0b873f901adcdbf diff -Nru gnome-shell-extension-dashtodock-57/debian/changelog gnome-shell-extension-dashtodock-60/debian/changelog --- gnome-shell-extension-dashtodock-57/debian/changelog 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/changelog 2017-08-02 06:01:24.000000000 +0000 @@ -1,8 +1,35 @@ -gnome-shell-extension-dashtodock (57-1+825~ubuntu16.04.1) xenial; urgency=low +gnome-shell-extension-dashtodock (60-1~ppa0) zesty; urgency=medium - * Auto build. + * Rebuilt for zesty - -- Mantas Kriaučiūnas Wed, 17 May 2017 10:47:18 +0000 + -- Jacob Zimmermann Wed, 02 Aug 2017 16:01:24 +1000 + +gnome-shell-extension-dashtodock (60-1) unstable; urgency=medium + + * New upstream release + + -- Jonathan Carter Mon, 10 Jul 2017 10:22:45 +0200 + +gnome-shell-extension-dashtodock (59-3) unstable; urgency=medium + + * Don't attempt to build gschemas in rules (Closes: #867448) + * Add Testsuite field to debian/control + + -- Jonathan Carter Thu, 06 Jul 2017 19:46:40 +0200 + +gnome-shell-extension-dashtodock (59-2) unstable; urgency=medium + + * Upload to unstable (no changes) + + -- Jonathan Carter Wed, 05 Jul 2017 15:41:30 +0200 + +gnome-shell-extension-dashtodock (59-1) experimental; urgency=medium + + * New upstream release + * Improvements to install paths (thanks Fran Glais and Jeremy Bicha) + * Update standards version to 4.0.0 + + -- Jonathan Carter Thu, 08 Jun 2017 19:38:10 +0200 gnome-shell-extension-dashtodock (57-1) unstable; urgency=medium diff -Nru gnome-shell-extension-dashtodock-57/debian/control gnome-shell-extension-dashtodock-60/debian/control --- gnome-shell-extension-dashtodock-57/debian/control 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/control 2017-08-02 06:01:11.000000000 +0000 @@ -2,11 +2,13 @@ Section: gnome Priority: optional Maintainer: Jonathan Carter +Uploaders: Jacob Zimmermann Build-Depends: debhelper (>=10), libglib2.0-bin -Standards-Version: 3.9.8 +Standards-Version: 4.0.0 Homepage: https://micheleg.github.io/dash-to-dock/ Vcs-Git: https://gitlab.com/highvoltage/gnome-shell-extension-dashtodock-packaging.git Vcs-Browser: https://gitlab.com/highvoltage/gnome-shell-extension-dashtodock-packaging/tree/master +Testsuite: autopkgtest Package: gnome-shell-extension-dashtodock Architecture: all diff -Nru gnome-shell-extension-dashtodock-57/debian/copyright gnome-shell-extension-dashtodock-60/debian/copyright --- gnome-shell-extension-dashtodock-57/debian/copyright 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/copyright 2017-06-08 17:40:22.000000000 +0000 @@ -3,7 +3,7 @@ Source: https://github.com/micheleg/dash-to-dock Files: * -Copyright: 2016 Michele +Copyright: 2016-2017 Michele License: GPL-2+ Files: po/zh_CN.po @@ -70,7 +70,7 @@ License: GPL-2+ Files: debian/* -Copyright: 2016 Jonathan Carter +Copyright: 2016-2017 Jonathan Carter License: GPL-2+ License: GPL-2+ diff -Nru gnome-shell-extension-dashtodock-57/debian/install gnome-shell-extension-dashtodock-60/debian/install --- gnome-shell-extension-dashtodock-57/debian/install 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/install 2017-07-06 17:41:24.000000000 +0000 @@ -1 +1 @@ -schemas/*.xml usr/share/glib-2.0/schemas +schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml usr/share/glib-2.0/schemas diff -Nru gnome-shell-extension-dashtodock-57/debian/patches/makefile-clean-translations gnome-shell-extension-dashtodock-60/debian/patches/makefile-clean-translations --- gnome-shell-extension-dashtodock-57/debian/patches/makefile-clean-translations 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/patches/makefile-clean-translations 2017-06-08 17:25:45.000000000 +0000 @@ -0,0 +1,20 @@ +Description: Add translations to cleanup in makefile + Upstream makefile doesn not clean up translations. + Modified to fix this. + . + gnome-shell-extension-dashtodock (53-1) unstable; urgency=medium + . + * Initial release (Closes: 829185) +Author: Jonathan Carter +Bug-Debian: https://bugs.debian.org/829185 + +--- gnome-shell-extension-dashtodock-53.orig/Makefile ++++ gnome-shell-extension-dashtodock-53/Makefile +@@ -24,6 +24,7 @@ all: extension + + clean: + rm -f ./schemas/gschemas.compiled ++ rm -f ./po/*.mo + + extension: ./schemas/gschemas.compiled $(MSGSRC:.po=.mo) + diff -Nru gnome-shell-extension-dashtodock-57/debian/patches/series gnome-shell-extension-dashtodock-60/debian/patches/series --- gnome-shell-extension-dashtodock-57/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/patches/series 2017-06-08 17:25:45.000000000 +0000 @@ -0,0 +1 @@ +makefile-clean-translations diff -Nru gnome-shell-extension-dashtodock-57/debian/rules gnome-shell-extension-dashtodock-60/debian/rules --- gnome-shell-extension-dashtodock-57/debian/rules 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/rules 2017-07-06 17:41:16.000000000 +0000 @@ -1,12 +1,13 @@ #!/usr/bin/make -f -VERSION=$(shell dpkg-parsechangelog | sed -rne 's/^Version: ([0-9.]+)[-+].*$$/\1/p') +include /usr/share/dpkg/pkg-info.mk BASEDIR=debian/gnome-shell-extension-dashtodock/usr/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com + %: dh $@ override_dh_install: dh_install - sed -i 's/"version": ""/"version": $(VERSION)/' $(BASEDIR)/metadata.json; + sed -i 's/"version": ""/"version": $(DEB_VERSION_UPSTREAM)/' $(BASEDIR)/metadata.json; rm -f $(BASEDIR)/COPYING rm -rf $(BASEDIR)/schemas diff -Nru gnome-shell-extension-dashtodock-57/debian/source/format gnome-shell-extension-dashtodock-60/debian/source/format --- gnome-shell-extension-dashtodock-57/debian/source/format 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/debian/source/format 2017-06-08 17:25:45.000000000 +0000 @@ -1 +1 @@ -3.0 (native) +3.0 (quilt) diff -Nru gnome-shell-extension-dashtodock-57/docking.js gnome-shell-extension-dashtodock-60/docking.js --- gnome-shell-extension-dashtodock-57/docking.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/docking.js 2017-06-21 21:44:12.000000000 +0000 @@ -25,6 +25,7 @@ const Me = imports.misc.extensionUtils.getCurrentExtension(); const Convenience = Me.imports.convenience; +const Utils = Me.imports.utils; const Intellihide = Me.imports.intellihide; const Theming = Me.imports.theming; const MyDash = Me.imports.dash; @@ -197,11 +198,11 @@ this._settings = settings; this._monitorIndex = monitorIndex; // Connect global signals - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._bindSettingsChanges(); - this._position = Convenience.getPosition(settings); + this._position = Utils.getPosition(settings); this._isHorizontal = ((this._position == St.Side.TOP) || (this._position == St.Side.BOTTOM)); // Temporary ignore hover events linked to autohide for whatever reason @@ -320,6 +321,10 @@ 'notify::checked', Lang.bind(this, this._syncShowAppsButtonToggled) ], [ + global.screen, + 'in-fullscreen-changed', + Lang.bind(this, this._updateBarrier) + ], [ // Monitor windows overlapping this._intellihide, 'status-changed', @@ -344,7 +349,7 @@ }) ]); - this._injectionsHandler = new Convenience.InjectionsHandler(); + this._injectionsHandler = new Utils.InjectionsHandler(); this._themeManager = new Theming.ThemeManager(this._settings, this.actor, this.dash); // Since the actor is not a topLevel child and its parent is now not added to the Chrome, @@ -564,6 +569,11 @@ }) ], [ this._settings, + 'changed::autohide-in-fullscreen', + Lang.bind(this, this._updateBarrier) + ], + [ + this._settings, 'changed::extend-height', Lang.bind(this, this._resetPosition) ], [ @@ -941,6 +951,11 @@ // Remove existing barrier this._removeBarrier(); + // The barrier needs to be removed in fullscreen with autohide disabled, otherwise the mouse can + // get trapped on monitor. + if (this._monitor.inFullscreen && !this._settings.get_boolean('autohide-in-fullscreen')) + return + // Manually reset pressure barrier // This is necessary because we remove the pressure barrier when it is triggered to show the dock if (this._pressureBarrier) { @@ -1353,7 +1368,7 @@ this._settings = settings; this._allDocks = allDocks; - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._hotKeysEnabled = false; if (this._settings.get_boolean('hot-keys')) @@ -1510,8 +1525,8 @@ this._settings = settings; this._allDocks = allDocks; - this._signalsHandler = new Convenience.GlobalSignalsHandler(); - this._injectionsHandler = new Convenience.InjectionsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); + this._injectionsHandler = new Utils.InjectionsHandler(); this._signalsHandler.add([ this._settings, @@ -1520,14 +1535,29 @@ this._allDocks.forEach(function(dock) { dock.dash.resetAppIcons(); }); - if (this._settings.get_boolean('isolate-workspaces')) + if (this._settings.get_boolean('isolate-workspaces') || + this._settings.get_boolean('isolate-monitors')) + Lang.bind(this, this._enable)(); + else + Lang.bind(this, this._disable)(); + }) + ],[ + this._settings, + 'changed::isolate-monitors', + Lang.bind(this, function() { + this._allDocks.forEach(function(dock) { + dock.dash.resetAppIcons(); + }); + if (this._settings.get_boolean('isolate-workspaces') || + this._settings.get_boolean('isolate-monitors')) Lang.bind(this, this._enable)(); else Lang.bind(this, this._disable)(); }) ]); - if (this._settings.get_boolean('isolate-workspaces')) + if (this._settings.get_boolean('isolate-workspaces') || + this._settings.get_boolean('isolate-monitors')) this._enable(); }, @@ -1548,6 +1578,16 @@ 'switch-workspace', Lang.bind(dock.dash, dock.dash._queueRedisplay) ]); + + // This last signal is only needed for monitor isolation, as windows + // might migrate from one monitor to another without triggering 'restacked' + if (this._settings.get_boolean('isolate-monitors')) + this._signalsHandler.addWithLabel('isolation', [ + global.screen, + 'window-entered-monitor', + Lang.bind(dock.dash, dock.dash._queueRedisplay) + ]); + }, this); // here this is the Shell.App @@ -1606,11 +1646,12 @@ _toggle: function() { this._deleteDocks(); this._createDocks(); + this.emit('toggled'); }, _bindSettingsChanges: function() { // Connect relevant signals to the toggling function - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._signalsHandler.add([ global.screen, 'monitors-changed', @@ -1845,7 +1886,7 @@ * Adjust Panel corners */ _adjustPanelCorners: function() { - let position = Convenience.getPosition(this._settings); + let position = Utils.getPosition(this._settings); let isHorizontal = ((position == St.Side.TOP) || (position == St.Side.BOTTOM)); let extendHeight = this._settings.get_boolean('extend-height'); let fixedIsEnabled = this._settings.get_boolean('dock-fixed'); @@ -1865,3 +1906,4 @@ Main.panel._rightCorner.actor.show(); } }); +Signals.addSignalMethods(DockManager.prototype); diff -Nru gnome-shell-extension-dashtodock-57/extension.js gnome-shell-extension-dashtodock-60/extension.js --- gnome-shell-extension-dashtodock-57/extension.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/extension.js 2017-06-21 21:44:12.000000000 +0000 @@ -2,10 +2,12 @@ const Me = imports.misc.extensionUtils.getCurrentExtension(); const Docking = Me.imports.docking; +const Convenience = Me.imports.convenience; let dockManager; function init() { + Convenience.initTranslations('dashtodock'); } function enable() { diff -Nru gnome-shell-extension-dashtodock-57/.gitignore gnome-shell-extension-dashtodock-60/.gitignore --- gnome-shell-extension-dashtodock-57/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.gitignore 2017-06-21 21:44:12.000000000 +0000 @@ -0,0 +1,6 @@ +.~ +*~ +gschemas.compiled +dash-to-dock@micxgx.gmail.com.zip +*.mo +po/dashtodock.pot diff -Nru gnome-shell-extension-dashtodock-57/intellihide.js gnome-shell-extension-dashtodock-60/intellihide.js --- gnome-shell-extension-dashtodock-57/intellihide.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/intellihide.js 2017-06-21 21:44:12.000000000 +0000 @@ -10,7 +10,7 @@ const Signals = imports.signals; const Me = imports.misc.extensionUtils.getCurrentExtension(); -const Convenience = Me.imports.convenience; +const Utils = Me.imports.utils; // A good compromise between reactivity and efficiency; to be tuned. const INTELLIHIDE_CHECK_INTERVAL = 100; @@ -53,7 +53,7 @@ this._settings = settings; this._monitorIndex = monitorIndex; - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._tracker = Shell.WindowTracker.get_default(); this._focusApp = null; // The application whose window is focused. this._topApp = null; // The application whose window is on top on the monitor with the dock. @@ -65,6 +65,8 @@ this._checkOverlapTimeoutContinue = false; this._checkOverlapTimeoutId = 0; + this._trackedWindows = new Map(); + // Connect global signals this._signalsHandler.add([ // Add signals on windows created from now on @@ -102,17 +104,19 @@ enable: function() { this._isEnabled = true; this._status = OverlapStatus.UNDEFINED; - global.get_window_actors().forEach(function(win) { - this._addWindowSignals(win.get_meta_window()); + global.get_window_actors().forEach(function(wa) { + this._addWindowSignals(wa); }, this); this._doCheckOverlap(); }, disable: function() { this._isEnabled = false; - global.get_window_actors().forEach(function(win) { - this._removeWindowSignals(win.get_meta_window()); - }, this); + + for (let wa of this._trackedWindows.keys()) { + this._removeWindowSignals(wa); + } + this._trackedWindows.clear(); if (this._checkOverlapTimeoutId > 0) { Mainloop.source_remove(this._checkOverlapTimeoutId); @@ -120,29 +124,24 @@ } }, - _windowCreated: function(display, meta_win) { - this._addWindowSignals(meta_win); + _windowCreated: function(display, metaWindow) { + this._addWindowSignals(metaWindow.get_compositor_private()); }, - _addWindowSignals: function(meta_win) { - if (!meta_win || !this._handledWindow(meta_win)) + _addWindowSignals: function(wa) { + if (!this._handledWindow(wa)) return; - - meta_win.dtd_onPositionChanged = meta_win.connect('position-changed', Lang.bind(this, this._checkOverlap, meta_win)); - - meta_win.dtd_onSizeChanged = meta_win.connect('size-changed', Lang.bind(this, this._checkOverlap, meta_win)); + let signalId = wa.connect('allocation-changed', Lang.bind(this, this._checkOverlap, wa.get_meta_window())); + this._trackedWindows.set(wa, signalId); + wa.connect('destroy', Lang.bind(this, this._removeWindowSignals)); }, - _removeWindowSignals: function(meta_win) { - if (meta_win && meta_win.dtd_onSizeChanged) { - meta_win.disconnect(meta_win.dtd_onSizeChanged); - delete meta_win.dtd_onSizeChanged; + _removeWindowSignals: function(wa) { + if (this._trackedWindows.get(wa)) { + wa.disconnect(this._trackedWindows.get(wa)); + this._trackedWindows.delete(wa); } - if (meta_win && meta_win.dtd_onPositionChanged) { - meta_win.disconnect(meta_win.dtd_onPositionChanged); - delete meta_win.dtd_onPositionChanged; - } }, updateTargetBox: function(box) { @@ -202,7 +201,7 @@ let topWindow = null; for (let i = windows.length - 1; i >= 0; i--) { let meta_win = windows[i].get_meta_window(); - if (this._handledWindow(meta_win) && (meta_win.get_monitor() == this._monitorIndex)) { + if (this._handledWindow(windows[i]) && (meta_win.get_monitor() == this._monitorIndex)) { topWindow = meta_win; break; } @@ -247,7 +246,7 @@ // Optionally skip windows of other applications _intellihideFilterInteresting: function(wa) { let meta_win = wa.get_meta_window(); - if (!meta_win || !this._handledWindow(meta_win)) + if (!this._handledWindow(wa)) return false; let currentWorkspace = global.screen.get_active_workspace_index(); @@ -298,7 +297,12 @@ // Filter windows by type // inspired by Opacify@gnome-shell.localdomain.pl - _handledWindow: function(metaWindow) { + _handledWindow: function(wa) { + let metaWindow = wa.get_meta_window(); + + if (!metaWindow) + return false; + // The DropDownTerminal extension uses the POPUP_MENU window type hint // so we match its window by wm class instead if (metaWindow.get_wm_class() == 'DropDownTerminalWindow') diff -Nru gnome-shell-extension-dashtodock-57/Makefile gnome-shell-extension-dashtodock-60/Makefile --- gnome-shell-extension-dashtodock-57/Makefile 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/Makefile 2017-06-21 21:44:12.000000000 +0000 @@ -2,9 +2,9 @@ UUID = dash-to-dock@micxgx.gmail.com BASE_MODULES = extension.js stylesheet.css metadata.json COPYING README.md -EXTRA_MODULES = convenience.js dash.js docking.js appIcons.js windowPreview.js intellihide.js prefs.js theming.js Settings.ui +EXTRA_MODULES = convenience.js dash.js docking.js appIcons.js windowPreview.js intellihide.js prefs.js theming.js utils.js Settings.ui EXTRA_MEDIA = logo.svg -TOLOCALIZE = prefs.js +TOLOCALIZE = prefs.js appIcons.js MSGSRC = $(wildcard po/*.po) ifeq ($(strip $(DESTDIR)),) INSTALLBASE = $(HOME)/.local/share/gnome-shell/extensions @@ -28,7 +28,6 @@ clean: rm -f ./schemas/gschemas.compiled - rm -f ./po/*.mo extension: ./schemas/gschemas.compiled $(MSGSRC:.po=.mo) @@ -44,9 +43,9 @@ ./po/dashtodock.pot: $(TOLOCALIZE) Settings.ui mkdir -p po - xgettext -k_ -kN_ -o po/dashtodock.pot --package-name "Dash to Dock" $(TOLOCALIZE) + xgettext -k --keyword=__ --keyword=N__ --add-comments='Translators:' -o po/dashtodock.pot --package-name "Dash to Dock" $(TOLOCALIZE) intltool-extract --type=gettext/glade Settings.ui - xgettext -k_ -kN_ --join-existing -o po/dashtodock.pot Settings.ui.h + xgettext -k --keyword=_ --keyword=N_ --join-existing -o po/dashtodock.pot Settings.ui.h ./po/%.mo: ./po/%.po msgfmt -c $< -o $@ diff -Nru gnome-shell-extension-dashtodock-57/.pc/applied-patches gnome-shell-extension-dashtodock-60/.pc/applied-patches --- gnome-shell-extension-dashtodock-57/.pc/applied-patches 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.pc/applied-patches 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -makefile-clean-translations diff -Nru gnome-shell-extension-dashtodock-57/.pc/makefile-clean-translations/Makefile gnome-shell-extension-dashtodock-60/.pc/makefile-clean-translations/Makefile --- gnome-shell-extension-dashtodock-57/.pc/makefile-clean-translations/Makefile 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.pc/makefile-clean-translations/Makefile 1970-01-01 00:00:00.000000000 +0000 @@ -1,84 +0,0 @@ -# Basic Makefile - -UUID = dash-to-dock@micxgx.gmail.com -BASE_MODULES = extension.js stylesheet.css metadata.json COPYING README.md -EXTRA_MODULES = convenience.js dash.js docking.js appIcons.js windowPreview.js intellihide.js prefs.js theming.js Settings.ui -EXTRA_MEDIA = logo.svg -TOLOCALIZE = prefs.js -MSGSRC = $(wildcard po/*.po) -ifeq ($(strip $(DESTDIR)),) - INSTALLBASE = $(HOME)/.local/share/gnome-shell/extensions -else - INSTALLBASE = $(DESTDIR)/usr/share/gnome-shell/extensions -endif -INSTALLNAME = dash-to-dock@micxgx.gmail.com - -# The command line passed variable VERSION is used to set the version string -# in the metadata and in the generated zip-file. If no VERSION is passed, the -# current commit SHA1 is used as version number in the metadata while the -# generated zip file has no string attached. -ifdef VERSION - VSTRING = _v$(VERSION) -else - VERSION = $(shell git rev-parse HEAD) - VSTRING = -endif - -all: extension - -clean: - rm -f ./schemas/gschemas.compiled - -extension: ./schemas/gschemas.compiled $(MSGSRC:.po=.mo) - -./schemas/gschemas.compiled: ./schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml - glib-compile-schemas ./schemas/ - -potfile: ./po/dashtodock.pot - -mergepo: potfile - for l in $(MSGSRC); do \ - msgmerge -U $$l ./po/dashtodock.pot; \ - done; - -./po/dashtodock.pot: $(TOLOCALIZE) Settings.ui - mkdir -p po - xgettext -k_ -kN_ -o po/dashtodock.pot --package-name "Dash to Dock" $(TOLOCALIZE) - intltool-extract --type=gettext/glade Settings.ui - xgettext -k_ -kN_ --join-existing -o po/dashtodock.pot Settings.ui.h - -./po/%.mo: ./po/%.po - msgfmt -c $< -o $@ - -install: install-local - -install-local: _build - rm -rf $(INSTALLBASE)/$(INSTALLNAME) - mkdir -p $(INSTALLBASE)/$(INSTALLNAME) - cp -r ./_build/* $(INSTALLBASE)/$(INSTALLNAME)/ - -rm -fR _build - echo done - -zip-file: _build - cd _build ; \ - zip -qr "$(UUID)$(VSTRING).zip" . - mv _build/$(UUID)$(VSTRING).zip ./ - -rm -fR _build - -_build: all - -rm -fR ./_build - mkdir -p _build - cp $(BASE_MODULES) $(EXTRA_MODULES) _build - mkdir -p _build/media - cd media ; cp $(EXTRA_MEDIA) ../_build/media/ - mkdir -p _build/schemas - cp schemas/*.xml _build/schemas/ - cp schemas/gschemas.compiled _build/schemas/ - mkdir -p _build/locale - for l in $(MSGSRC:.po=.mo) ; do \ - lf=_build/locale/`basename $$l .mo`; \ - mkdir -p $$lf; \ - mkdir -p $$lf/LC_MESSAGES; \ - cp $$l $$lf/LC_MESSAGES/dashtodock.mo; \ - done; - sed -i 's/"version": -1/"version": "$(VERSION)"/' _build/metadata.json; diff -Nru gnome-shell-extension-dashtodock-57/.pc/.quilt_patches gnome-shell-extension-dashtodock-60/.pc/.quilt_patches --- gnome-shell-extension-dashtodock-57/.pc/.quilt_patches 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.pc/.quilt_patches 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/home/buildd/build-RECIPEBRANCHBUILD-1372759/chroot-autobuild/home/buildd/work/tree/gnome-shell-extension-dashtodock-57/debian/patches diff -Nru gnome-shell-extension-dashtodock-57/.pc/.quilt_series gnome-shell-extension-dashtodock-60/.pc/.quilt_series --- gnome-shell-extension-dashtodock-57/.pc/.quilt_series 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.pc/.quilt_series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/home/buildd/build-RECIPEBRANCHBUILD-1372759/chroot-autobuild/home/buildd/work/tree/gnome-shell-extension-dashtodock-57/debian/patches/series diff -Nru gnome-shell-extension-dashtodock-57/.pc/.version gnome-shell-extension-dashtodock-60/.pc/.version --- gnome-shell-extension-dashtodock-57/.pc/.version 2017-05-17 10:47:18.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/.pc/.version 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -2 diff -Nru gnome-shell-extension-dashtodock-57/po/ar.po gnome-shell-extension-dashtodock-60/po/ar.po --- gnome-shell-extension-dashtodock-57/po/ar.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/ar.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-04-18 18:01+0100\n" "Last-Translator: Jean-Baptiste Le Cz \n" "Language-Team: Faissal Chamekh \n" @@ -20,40 +20,49 @@ "X-Generator: Poedit 1.7.5\n" "X-Poedit-SourceCharset: UTF-8\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "الشاشة الرئيسية" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "الشاشة الثانوية" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "يمين" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "يسار" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "تخصيص الإخفاء التلقائي" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "العودة للافتراضي" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "أظهر التطبيقات قيد التشغيل" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "خصّص الإعتام" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "أظهر التطبيقات قيد التشغيل" +#: appIcons.js:804 +msgid "All Windows" +msgstr "" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -72,226 +81,300 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "أظهر المرساة فوق" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "زمن الاختفاء (ثا)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." msgstr "" -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "حدث Shift+Click" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "صغّر النافذة" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "صغّر النافذة" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "شغّل نسخة جديدة" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "التبديل بين النوافذ" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "حدث النقر" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "حدث Shift+Click" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "أظهر المرساة فوق" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "الشاشة الثانوية" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "الموضع على الشاشة" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "أسفل" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "أعلى" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." msgstr "إخفاء المرساة عندما تحجب نافذة التطبيق الحالي. تخصيصات أكثر متوفرة." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "إخفاء تلقائي ذكي" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "حدّ حجم المرساة" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "نمط الشريط: تمديد إلى حواف الشاشة" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "حدّ حجم الأيقونة" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "حجم أيقونات ثابت: استعمل التمرير لكشف أيقونات أخرى" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "الموضع والحجم" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "أظهر التطبيقات المفضّلة" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "أظهر التطبيقات قيد التشغيل" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "أظهر أيقونة التطبيقات أولا" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "" -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "أظهر أيقونة التطبيقات أولا" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 #, fuzzy msgid "Behaviour when clicking on the icon of a running application." msgstr "التصرّف عن النقر على أيقونة التطبيق قيد التشغيل." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "حدث النقر" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "صغّر" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "صغّر النافذة" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "بدّل مساحة العمل عند التمرير فوق المرساة" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "التصرّف عن النقر على أيقونة التطبيق قيد التشغيل." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "حدث النقر" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "لا تفعل شيئا" + +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "تبديل مساحة عمل واحدة في نفس الوقت" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "السلوك" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." msgstr "" -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "استعمل السمة المضمّنة" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "" -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "تقليص المرساة" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "أظهر نقطة لكل نوافذة من التطبيق." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "أظهر مؤشرات عدد النوافذ" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "ضبط إعتام خلفية المرساة." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "خصّص الإعتام" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "العتمة" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "المظهر" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "الإصدار:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "أنشئ من طرف" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the رخصة غنو العمومية، الإصدارة 2 فما فوق." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "حول" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "أظهر المرساة بتمرير الفأرة على حافة النافذة" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "إخفاء تلقائي" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "اضغط للإظهار: يتطلب ضغطا لإظهار المرساة" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "إظهار المرساة عندما لا تحجب نوافذ التطبيق." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "صغّر النافذة" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "مدة التحريك (ثا)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "زمن الاختفاء (ثا)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "زمن الظهور (ثا)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "عتبة الضغط" -#~ msgid "Do nothing" -#~ msgstr "لا تفعل شيئا" +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "بدّل مساحة العمل عند التمرير فوق المرساة" #~ msgid "Main Settings" #~ msgstr "الخصائص الأساسية" @@ -428,9 +507,6 @@ #~ msgid "Optional features" #~ msgstr "ميزات إضافية" -#~ msgid "Switch one workspace at a time" -#~ msgstr "تبديل مساحة عمل واحدة في نفس الوقت" - #~ msgid "Deadtime between each workspace switching [ms]" #~ msgstr "الوقت بين تبديل كل مساحة عمل" diff -Nru gnome-shell-extension-dashtodock-57/po/cs.po gnome-shell-extension-dashtodock-60/po/cs.po --- gnome-shell-extension-dashtodock-57/po/cs.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/cs.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-05-21 21:17+0100\n" "Last-Translator: Jiří Doubravský \n" "Language-Team: CZECH \n" @@ -18,40 +18,49 @@ "X-Generator: Poedit 1.7.5\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Primární obrazovka" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Sekundární obrazovka" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Vpravo" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Vlevo" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Přizpůsobení chytrého skrývání" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Vrátit výchozí nastavení" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Zobrazit spuštěné aplikace" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Volitelná průhlednost" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Zobrazit spuštěné aplikace" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Uhýbat oknům" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -70,6 +79,39 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Kde zobrazit dok" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Odklad skrývání (s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -77,67 +119,72 @@ "Pokud zvolíte minimalizaci, dvojté poklepání minimalizuje všechna okna " "aplikace." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Shift+Klik akce" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Minimalizovat okno" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Minimalizovat okno" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Otevřít nové okno" -#: Settings.ui.h:10 +#: Settings.ui.h:17 #, fuzzy msgid "Cycle through windows" msgstr "Přepínat mezi existujícími okny" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Akce klepnutím" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Shift+Klik akce" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Kde zobrazit dok" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Sekundární obrazovka" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Umístění na obrazovce" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Dole" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Nahoře" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -145,161 +192,194 @@ "Skývat dok automaticky kdykoliv by překážel otevřenému oknu aktivní " "aplikace. Více možností k dispozici." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Chytré skrývání" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Maximální velikost doku" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Režim zobrazení: roztáhnout od kraje ke kraji" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Maximální velikost ikon" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Neměnná velikost ikon: rolováním je možné zobrazit další" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Umístění a velikost" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Zobrazit oblíbené aplikace" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Zobrazit spuštěné aplikace" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Zobrazit tlačítko všech aplikací jako první" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Přesunout tlačítko přístupu ke všem aplikacím na začátek" -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Zobrazit tlačítko všech aplikací jako první" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 #, fuzzy msgid "Behaviour when clicking on the icon of a running application." msgstr "Akce klepnutím na ikonu běžící aplikace" -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Akce klepnutím" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimalizovat" -#: Settings.ui.h:39 +#: Settings.ui.h:51 #, fuzzy -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Oblast po okrajích doku a tlačítko zobrazení všech aplikací jsou aktivní." +msgid "Minimize or overview" +msgstr "Minimalizovat okno" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Přepínat pracovní plochy kolečkem myši nad dokem." +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Akce klepnutím na ikonu běžící aplikace" -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Akce klepnutím" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Nedělat nic" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Chování" -#: Settings.ui.h:42 +#: Settings.ui.h:57 #, fuzzy msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." msgstr "Výchozí motiv doku nebo alternativní přizpůsobitelný motiv." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Použít výchozí motiv doku" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Prostorově méně náročné zobrazení, zmenšením volného místa kolem ikon" -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Zmenšit panel" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Zobrazit pod ikonou tečku indikující každé otevřené okno aplikace." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Zobrazit indikátory počtu oken" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Nastavit průhlednost panelu." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Volitelná průhlednost" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Průhlednost" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Vzhled" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "verze:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "" "Verplaatst de dash naar buiten het activiteitenoverzicht zodat het een dock " "wordt" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Autor " -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU General Public License, verze 2 nebo pozdější." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "O tomto doplňku" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Zobrazit dok najetím myši ke kraji obrazovky." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatické skrývání" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Zatlač: k zobrazení doku je potřeba na kraj přitlačit" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Zobrazit dok, kdykoliv sám nepřekáží spuštěným aplikacím" -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Uhýbat oknům" -#: Settings.ui.h:67 -#, fuzzy +#: Settings.ui.h:84 msgid "All windows" msgstr "Uhýbat oknům" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "Minimalizovat okno" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Délka efektů (s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Odklad skrývání (s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Odklad zobrazení (s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Míra tlaku (px)" -#~ msgid "Do nothing" -#~ msgstr "Nedělat nic" +#, fuzzy +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Oblast po okrajích doku a tlačítko zobrazení všech aplikací jsou aktivní." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Přepínat pracovní plochy kolečkem myši nad dokem." #~ msgid "Only consider windows of the focused application" #~ msgstr "Brát v úvahu jen okna aktivní aplikace" diff -Nru gnome-shell-extension-dashtodock-57/po/de.po gnome-shell-extension-dashtodock-60/po/de.po --- gnome-shell-extension-dashtodock-57/po/de.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/de.po 2017-06-21 21:44:12.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-10-29 14:54-0300\n" "Last-Translator: Jonatan Zeidler \n" "Language-Team: jonius \n" @@ -20,42 +20,51 @@ "X-Generator: Poedit 1.7.7\n" # Konjugation wegen Stellung im Satz -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Primärer Anzeige" # Konjugation wegen Stellung im Satz -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Sekundärer Anzeige" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Rechts" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Links" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Automatisches Ausblenden anpassen" # Verwende Übersetzung aus Nautilus -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Auf Vorgaben zurücksetzen" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Laufende Anwendungen anzeigen" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Transparenz anpassen" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Laufende Anwendungen anzeigen" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Alle Fenstern" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -74,6 +83,39 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Dock anzeigen auf" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Ausblende-Verzögerung in s" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -81,67 +123,73 @@ "Wenn auf »Minimieren« eingestellt, können durch Doppelklick alle Fenster der " "Anwendung gleichzeitig minimiert werden." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Wirkung bei Umschalttaste + Mausklick" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Minimieren" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Minimieren" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Neues Fenster" # Vielleicht einen Tick besser als „umschalten“? -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "Zwischen den Fenstern der Anwendung wechseln" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Wirkung bei Mausklick" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Wirkung bei Umschalttaste + Mausklick" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Dock anzeigen auf" -#: Settings.ui.h:17 +# Konjugation wegen Stellung im Satz +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Sekundärer Anzeige" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Position auf Bildschirm" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Unten" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Oben" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -149,97 +197,127 @@ "Das Dock automatisch ausblenden, falls es ein Fenster der laufenden " "Anwendung überlagert. Einstellungen können weiter verfeinert werden." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Automatisch ausblenden" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Maximale Dockgröße" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Panelmodus: bis zu Bildschirmkanten ausdehnen" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Maximale Icongröße" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Feste Icongröße: andere Icons durch Scrollen sichtbar machen" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Position und Größe" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Favoriten anzeigen" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Laufende Anwendungen anzeigen" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Falls deaktiviert, sind diese Einstellungen über das Optimierungswerkzeug " "oder die Erweiterungsseite erreichbar." # Durchkopplung von Kompositum -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Symbol Anwendungen anzeigen anzeigen" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Anwendungen-anzeigen-Button an den Anfang verschieben." # Durchkopplung von Kompositum -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Symbol Anwendungen anzeigen anzeigen" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Verhalten bei Mausklick auf das Icon einer laufenden Anwendung." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Wirkung bei Mausklick" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimieren" -#: Settings.ui.h:39 +#: Settings.ui.h:51 #, fuzzy -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Falls es zu viele Symbole auf dem Dock werden, dann bleibt nur " -"Anwendungen anzeigen aktiv." +msgid "Minimize or overview" +msgstr "Minimieren" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Arbeitsfläche durch Scrollen wechseln" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Verhalten bei Mausklick auf das Icon einer laufenden Anwendung." + +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Wirkung bei Mausklick" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Nichts tun" + +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "Nur eine Arbeitsfläche pro Scrollen weiterschalten" # Verwende Übersetzung aus Nautilus -#: Settings.ui.h:41 +#: Settings.ui.h:56 msgid "Behavior" msgstr "Verhalten" -#: Settings.ui.h:42 +#: Settings.ui.h:57 #, fuzzy msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " @@ -249,67 +327,71 @@ "Thema eingepasst werden soll. Alternativ können im Folgenden besondere " "Einstellungen vorgenommen werden." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Angepasstes Thema dieser Erweiterung nutzen" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Platz sparen, indem Innenabstand und Eckenradius verkleinert werden." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Dash verkleinern" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Für jedes Fenster einer Anwendung einen kleinen Indikator einblenden." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Indikatoren für Fensterzahl" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Die Hintergrundtransparenz des Docks einstellen." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Transparenz anpassen" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Transparenz" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Erscheinungsbild" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "Version: " -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Verwandelt das Dash aus dem Übersichtsmodus in ein Dock" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Erstellt von" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Internetseite" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the ." # Verwende Übersetzung aus Nautilus -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "Info" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Dock einblenden, wenn Mauszeiger an Bildschirmkante anliegt." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatisch verstecken" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "" "Anstoßen erforderlich: Dock nur einblenden, wenn Mauszeiger schnell gegen " "Bildschirmkante stößt" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Dock einblenden, falls es keine Anwendungsfenster überlagert." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Fenstern ausweichen" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" -msgstr "Alle Fenstern" +msgstr "Alle Fenster" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Nur Anwendungsfenster mit Fokus" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Nur maximierte Fenster" # Nach DIN 1313 werden Einheiten nicht in Klammern gesetzt -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Animationsdauer in s" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0,000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Ausblende-Verzögerung in s" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Einblende-Verzögerung in s" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Stoßschwellwert" -#~ msgid "Do nothing" -#~ msgstr "Nichts tun" +#, fuzzy +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Falls es zu viele Symbole auf dem Dock werden, dann bleibt nur " +#~ "Anwendungen anzeigen aktiv." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Arbeitsfläche durch Scrollen wechseln" #~ msgid "Only consider windows of the focused application" #~ msgstr "Nur Fenster der fokussierten Anwendung einbeziehen" @@ -453,9 +539,6 @@ #~ msgid "Optional features" #~ msgstr "Optionale Funktionen" -#~ msgid "Switch one workspace at a time" -#~ msgstr "Nur eine Arbeitsfläche pro Scrollen weiterschalten" - #~ msgid "Deadtime between each workspace switching [ms]" #~ msgstr "Stillstandszeit zwischen Arbeitsflächenwechsel [ms]" diff -Nru gnome-shell-extension-dashtodock-57/po/el.po gnome-shell-extension-dashtodock-60/po/el.po --- gnome-shell-extension-dashtodock-57/po/el.po 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/el.po 2017-06-21 21:44:12.000000000 +0000 @@ -0,0 +1,442 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: Dash to Dock\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" +"PO-Revision-Date: 2017-05-17 15:40+0300\n" +"Last-Translator: \n" +"Language-Team: Δημήτριος-Ρωμανός Ησαΐας \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: prefs.js:113 +msgid "Primary monitor" +msgstr "Κυρίως οθόνη" + +#: prefs.js:122 prefs.js:129 +msgid "Secondary monitor " +msgstr "Δευτερεύουσα οθόνη " + +#: prefs.js:154 Settings.ui.h:29 +msgid "Right" +msgstr "Δεξιά" + +#: prefs.js:155 Settings.ui.h:26 +msgid "Left" +msgstr "Αριστερά" + +#: prefs.js:205 +msgid "Intelligent autohide customization" +msgstr "Εξατομίκευση έξυπνης απόκρυψης" + +#: prefs.js:212 prefs.js:393 prefs.js:450 +msgid "Reset to defaults" +msgstr "Επαναφορά στις προεπιλογές" + +#: prefs.js:386 +msgid "Show dock and application numbers" +msgstr "Προβολή της μπάρας και της αρίθμησης εφαρμογών" + +#: prefs.js:443 +msgid "Customize middle-click behavior" +msgstr "Προσαρμογή συμπεριφοράς μεσαίου κλικ" + +#: prefs.js:514 +msgid "Customize running indicators" +msgstr "Προσαρμογή δεικτών τρεχόντων εφαρμογών" + +#: appIcons.js:804 +msgid "All Windows" +msgstr "Όλα τα παράθυρα" + +#: Settings.ui.h:1 +msgid "Customize indicator style" +msgstr "Προσαρμογή του στυλ του δείκτη" + +#: Settings.ui.h:2 +msgid "Color" +msgstr "Χρώμα" + +#: Settings.ui.h:3 +msgid "Border color" +msgstr "Χρώμα περιγράμματος" + +#: Settings.ui.h:4 +msgid "Border width" +msgstr "Πλάτος περιγράμματος" + +#: Settings.ui.h:5 +msgid "Number overlay" +msgstr "Αρίθμηση εφαρμογών" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" +"Προσωρινή εμφάνιση της αρίθμησης των εφαρμογών πάνω από τα εικονίδια που " +"αντιστοιχεί στη συντόμευση πληκτρολογίου." + +#: Settings.ui.h:7 +msgid "Show the dock if it is hidden" +msgstr "Προβολή της μπάρας αν είναι κρυμμένη" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" +"Αν η αυτόματη απόκρυψη είναι σε χρήση, η μπάρα θα εμφανίζεται σύντομα με την " +"χρήση της συντόμευσης." + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "Συντόμευση για τις παραπάνω επιλογές" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "Σύνταξη: , , , " + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Καθυστέρηση απόκρυψης" + +#: Settings.ui.h:12 +msgid "" +"When set to minimize, double clicking minimizes all the windows of the " +"application." +msgstr "" +"Όταν είναι ρυθμισμένο στην ελαχιστοποίηση, το διπλό κλικ ελαχιστοποιεί όλα " +"τα παράθυρα της εφαρμογής." + +#: Settings.ui.h:13 +msgid "Shift+Click action" +msgstr "Λειτουργία του Shift+Click" + +#: Settings.ui.h:14 +msgid "Raise window" +msgstr "Ανύψωση παραθύρου" + +#: Settings.ui.h:15 +msgid "Minimize window" +msgstr "Ελαχιστοποίηση παραθύρου" + +#: Settings.ui.h:16 +msgid "Launch new instance" +msgstr "Νέο παράθυρο" + +#: Settings.ui.h:17 +msgid "Cycle through windows" +msgstr "Περιήγηση στα ανοικτά παράθυρα" + +#: Settings.ui.h:18 +msgid "Quit" +msgstr "Έξοδος" + +#: Settings.ui.h:19 +msgid "Behavior for Middle-Click." +msgstr "Συμπεριφορά μεσαίου κλικ." + +#: Settings.ui.h:20 +msgid "Middle-Click action" +msgstr "Λειτουργία του μεσαίου κλικ" + +#: Settings.ui.h:21 +msgid "Behavior for Shift+Middle-Click." +msgstr "Συμπεριφορά Shift+Μεσαίο κλικ." + +#: Settings.ui.h:22 +msgid "Shift+Middle-Click action" +msgstr "Λειτουργία του Shift+Μεσαίο κλικ" + +#: Settings.ui.h:23 +msgid "Show the dock on" +msgstr "Εμφάνιση της μπάρας στην" + +#: Settings.ui.h:24 +msgid "Show on all monitors." +msgstr "Εμφάνιση σε όλες τις οθόνες." + +#: Settings.ui.h:25 +msgid "Position on screen" +msgstr "Θέση στην οθόνη" + +#: Settings.ui.h:27 +msgid "Bottom" +msgstr "Κάτω" + +#: Settings.ui.h:28 +msgid "Top" +msgstr "Πάνω" + +#: Settings.ui.h:30 +msgid "" +"Hide the dock when it obstructs a window of the the current application. " +"More refined settings are available." +msgstr "" +"Απόκρυψη της μπάρας όταν εμποδίζει ένα παράθυρο της τρέχουσας εφαρμογής. Πιο " +"εξειδικευμένες επιλογές είναι επίσης διαθέσιμες." + +#: Settings.ui.h:31 +msgid "Intelligent autohide" +msgstr "Έξυπνη απόκρυψη" + +#: Settings.ui.h:32 +msgid "Dock size limit" +msgstr "Περιορισμός μεγέθους μπάρας" + +#: Settings.ui.h:33 +msgid "Panel mode: extend to the screen edge" +msgstr "Λειτουργιά πάνελ: επέκταση της μπάρας ως τις άκρες της οθόνης" + +#: Settings.ui.h:34 +msgid "Icon size limit" +msgstr "Περιορισμός μεγέθους εικονιδίων" + +#: Settings.ui.h:35 +msgid "Fixed icon size: scroll to reveal other icons" +msgstr "" +"Σταθερό μέγεθος εικονιδίων: κύλιση για την εμφάνιση περαιτέρω εικονιδίων" + +#: Settings.ui.h:36 +msgid "Position and size" +msgstr "Θέση και μέγεθος" + +#: Settings.ui.h:37 +msgid "Show favorite applications" +msgstr "Εμφάνιση αγαπημένων εφαρμογών" + +#: Settings.ui.h:38 +msgid "Show running applications" +msgstr "Εμφάνιση εκτελούμενων εφαρμογών" + +#: Settings.ui.h:39 +msgid "Isolate workspaces." +msgstr "Απομόνωση χώρων εργασίας." + +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "Εμφάνιση προεπισκόπησης ανοικτών παραθύρων." + +#: Settings.ui.h:41 +msgid "" +"If disabled, these settings are accessible from gnome-tweak-tool or the " +"extension website." +msgstr "" +"Αν είναι απενεργοποιημένο, αυτές οι ρυθμίσεις είναι προσβάσιμες από το " +"εργαλείο μικρορυθμίσεων του GNOME ή την ιστοσελίδα των επεκτάσεων." + +#: Settings.ui.h:42 +msgid "Show Applications icon" +msgstr "Εμφάνιση εικονιδίου Εφαρμογών" + +#: Settings.ui.h:43 +msgid "Move the applications button at the beginning of the dock." +msgstr "Μετακίνηση του πλήκτρου εφαρμογών στην αρχή της μπάρας." + +#: Settings.ui.h:44 +msgid "Animate Show Applications." +msgstr "Ενεργοποίηση γραφικών κατά την Εμφάνιση Εφαρμογών." + +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "Εκκινητές" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" +"Ενεργοποίηση του Super+(0-9) ως συντόμευση για την ενεργοποίηση εφαρμογών. " +"Μπορεί επίσης να χρησιμοποιηθεί με το Shift και το Ctrl." + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "Χρήση συντομεύσεων πληκτρολογίου για την ενεργοποίηση εφαρμογών" + +#: Settings.ui.h:48 +msgid "Behaviour when clicking on the icon of a running application." +msgstr "Συμπεριφορά κατά το κλικ σε εικονίδιο τρέχουσας εφαρμογής." + +#: Settings.ui.h:49 +msgid "Click action" +msgstr "Συμπεριφορά κλικ" + +#: Settings.ui.h:50 +msgid "Minimize" +msgstr "Ελαχιστοποίηση" + +#: Settings.ui.h:51 +msgid "Minimize or overview" +msgstr "Ελαχιστοποίηση ή επισκόπηση" + +#: Settings.ui.h:52 +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Συμπεριφορά κατά την κύλιση σε εικονίδιο τρέχουσας εφαρμογής." + +#: Settings.ui.h:53 +msgid "Scroll action" +msgstr "Συμπεριφορά κύλισης" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Καμία δράση" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "Αλλαγή χώρου εργασίας" + +#: Settings.ui.h:56 +msgid "Behavior" +msgstr "Συμπεριφορά" + +#: Settings.ui.h:57 +msgid "" +"Few customizations meant to integrate the dock with the default GNOME theme. " +"Alternatively, specific options can be enabled below." +msgstr "" +"Μερικές προσαρμογές στοχεύουν στο να ενοποιήσουν την μπάρα με το " +"προκαθορισμένο θέμα του GNOME. Εναλλακτικά, ειδικές επιλογές μπορούν να " +"ενεργοποιηθούν παρακάτω." + +#: Settings.ui.h:58 +msgid "Use built-in theme" +msgstr "Χρήση ενσωματωμένου θέματος" + +#: Settings.ui.h:59 +msgid "Save space reducing padding and border radius." +msgstr "Εξοικονόμηση χώρου μειώνοντας τα κενά και τα περιθώρια." + +#: Settings.ui.h:60 +msgid "Shrink the dash" +msgstr "Σμίκρυνση της μπάρας" + +#: Settings.ui.h:61 +msgid "Show a dot for each windows of the application." +msgstr "Εμφανίζει μία τελεία για κάθε παράθυρο της εφαρμογής." + +#: Settings.ui.h:62 +msgid "Show windows counter indicators" +msgstr "Εμφάνιση μετρητή παραθύρων" + +#: Settings.ui.h:63 +msgid "Set the background color for the dash." +msgstr "Ορισμός χρώματος φόντου της μπάρας." + +#: Settings.ui.h:64 +msgid "Customize the dash color" +msgstr "Προσαρμογή του χρώματος της μπάρας" + +#: Settings.ui.h:65 +msgid "Tune the dash background opacity." +msgstr "Αλλαγή της αδιαφάνειας του φόντου της μπάρας." + +#: Settings.ui.h:66 +msgid "Customize opacity" +msgstr "Προσαρμογή αδιαφάνειας" + +#: Settings.ui.h:67 +msgid "Opacity" +msgstr "Αδιαφάνεια" + +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "Εξαναγκασμός ευθείας γωνίας\n" + +#: Settings.ui.h:70 +msgid "Appearance" +msgstr "Εμφάνιση" + +#: Settings.ui.h:71 +msgid "version: " +msgstr "έκδοση: " + +#: Settings.ui.h:72 +msgid "Moves the dash out of the overview transforming it in a dock" +msgstr "" +"Μετακινεί το ταμπλώ και εκτός της προεπισκόπησης μετατρέποντάς το σε μπάρα " +"εφαρμογών" + +#: Settings.ui.h:73 +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#: Settings.ui.h:74 +msgid "Webpage" +msgstr "Ιστοσελίδα" + +#: Settings.ui.h:75 +msgid "" +"This program comes with ABSOLUTELY NO WARRANTY.\n" +"See the GNU General Public License, version 2 or later for details." +msgstr "" +"Αυτό πρόγραμμα παρέχεται χωρίς ΑΠΟΛΥΤΩΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ.\n" +"Για λεπτομέρειες δείτε την Γενική δημόσια άδεια GNU, έκδοση 2 ή νεότερη. " + +#: Settings.ui.h:77 +msgid "About" +msgstr "Περί" + +#: Settings.ui.h:78 +msgid "Show the dock by mouse hover on the screen edge." +msgstr "Εμφάνιση της μπάρας όταν το ποντίκι πηγαίνει στην άκρη της οθόνης." + +#: Settings.ui.h:79 +msgid "Autohide" +msgstr "Αυτόματη απόκρυψη" + +#: Settings.ui.h:80 +msgid "Push to show: require pressure to show the dock" +msgstr "Πίεση για εμφάνιση: απαιτείται πίεση για την εμφάνιση της μπάρας" + +#: Settings.ui.h:81 +msgid "Enable in fullscreen mode" +msgstr "Ενεργοποίηση σε λειτουργία πλήρους οθόνης" + +#: Settings.ui.h:82 +msgid "Show the dock when it doesn't obstruct application windows." +msgstr "Εμφάνιση της μπάρας όταν δεν εμποδίζει τα παράθυρά των εφαρμογών." + +#: Settings.ui.h:83 +msgid "Dodge windows" +msgstr "Αποφυγή παραθύρων" + +#: Settings.ui.h:84 +msgid "All windows" +msgstr "Όλα τα παράθυρα" + +#: Settings.ui.h:85 +msgid "Only focused application's windows" +msgstr "Μόνο τα παράθυρα της εστιασμένης εφαρμογής" + +#: Settings.ui.h:86 +msgid "Only maximized windows" +msgstr "Μόνο μεγιστοποιημένα παράθυρα" + +#: Settings.ui.h:87 +msgid "Animation duration (s)" +msgstr "Διάρκεια γραφικών" + +#: Settings.ui.h:88 +msgid "0.000" +msgstr "0.000" + +#: Settings.ui.h:89 +msgid "Show timeout (s)" +msgstr "Χρονικό όριο εμφάνισης" + +#: Settings.ui.h:90 +msgid "Pressure threshold" +msgstr "Ελάχιστη πίεση" diff -Nru gnome-shell-extension-dashtodock-57/po/es.po gnome-shell-extension-dashtodock-60/po/es.po --- gnome-shell-extension-dashtodock-57/po/es.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/es.po 2017-06-21 21:44:12.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-29 13:44-0400\n" +"POT-Creation-Date: 2017-05-30 17:27-0400\n" "PO-Revision-Date: 2017-02-17 12:11+0100\n" "Last-Translator: Hugo Olabera \n" "Language-Team: \n" @@ -17,42 +17,46 @@ "X-Generator: Poedit 1.8.11\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: prefs.js:111 +#: prefs.js:113 msgid "Primary monitor" msgstr "Pantalla principal" -#: prefs.js:120 prefs.js:127 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Pantalla secundaria" -#: prefs.js:152 Settings.ui.h:29 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Derecha" -#: prefs.js:153 Settings.ui.h:26 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Izquierda" -#: prefs.js:203 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Opciones de auto ocultado" -#: prefs.js:210 prefs.js:391 prefs.js:448 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Restaurar" -#: prefs.js:384 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "Mostrar el dock y el número de aplicación" -#: prefs.js:441 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Personalizar comportamiento del botón central" -#: prefs.js:512 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Personalizar indicadores de ejecución" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Todas las ventanas" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Personalizar estilo del indicador" diff -Nru gnome-shell-extension-dashtodock-57/po/fr.po gnome-shell-extension-dashtodock-60/po/fr.po --- gnome-shell-extension-dashtodock-57/po/fr.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/fr.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-29 13:44-0400\n" +"POT-Creation-Date: 2017-05-30 17:27-0400\n" "PO-Revision-Date: 2017-04-17 10:31+0200\n" "Last-Translator: Thomas GONET \n" "Language-Team: Jean-Baptiste Le Cz \n" @@ -17,42 +17,46 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: prefs.js:111 +#: prefs.js:113 msgid "Primary monitor" msgstr "Moniteur principal" -#: prefs.js:120 prefs.js:127 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Moniteur secondaire" -#: prefs.js:152 Settings.ui.h:29 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Droite" -#: prefs.js:153 Settings.ui.h:26 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Gauche" -#: prefs.js:203 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Personnalisation du masquage automatique" -#: prefs.js:210 prefs.js:391 prefs.js:448 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Restaurer la configuration par défaut" -#: prefs.js:384 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "Afficher le dock et le numéro d'application" -#: prefs.js:441 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Personnaliser le comportement du clic milieu" -#: prefs.js:512 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Régler les indicateurs de fenêtres" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Toutes les fenêtres" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Régler le style des indicateurs" diff -Nru gnome-shell-extension-dashtodock-57/po/hu.po gnome-shell-extension-dashtodock-60/po/hu.po --- gnome-shell-extension-dashtodock-57/po/hu.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/hu.po 2017-06-21 21:44:12.000000000 +0000 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: dash-to-dock master\n" -"Report-Msgid-Bugs-To: https://github.com/micheleg/dash-to-dock/issues\n" -"POT-Creation-Date: 2017-02-17 18:29+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2017-04-10 22:02+0100\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian \n" @@ -18,42 +18,46 @@ "X-Generator: Lokalize 2.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Elsődleges kijelző" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Másodlagos kijelző" -#: prefs.js:139 Settings.ui.h:28 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Jobb" -#: prefs.js:140 Settings.ui.h:25 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Bal" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Intelligens automatikus elrejtés személyre szabása" -#: prefs.js:197 prefs.js:374 prefs.js:428 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Visszaállítás az alapértékekre" -#: prefs.js:367 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "A dokk és az alkalmazás számainak megjelenítése" -#: prefs.js:421 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Középső kattintás viselkedésének személyre szabása" -#: prefs.js:492 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Futásjelzők személyre szabása" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Összes Ablak" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Jelző stílusának személyre szabása" @@ -159,18 +163,23 @@ msgstr "A dokk megjelenítése" #: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Másodlagos kijelző" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Elhelyezkedés a képernyőn" -#: Settings.ui.h:26 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Lent" -#: Settings.ui.h:27 +#: Settings.ui.h:28 msgid "Top" msgstr "Fent" -#: Settings.ui.h:29 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -178,47 +187,47 @@ "A dokk elrejtése, amikor az aktuális alkalmazás ablakát akadályozza. További " "finombeállítások is elérhetők." -#: Settings.ui.h:30 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Intelligens automatikus elrejtés" -#: Settings.ui.h:31 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Dokk méretkorlátja" -#: Settings.ui.h:32 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Panel mód: kiterjesztés a képernyő széléig" -#: Settings.ui.h:33 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Ikon méretkorlátja" -#: Settings.ui.h:34 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Rögzített ikonméret: görgetés egyéb ikonok felfedéséhez" -#: Settings.ui.h:35 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Elhelyezkedés és méret" -#: Settings.ui.h:36 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Kedvenc alkalmazások megjelenítése" -#: Settings.ui.h:37 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Futó alkalmazások megjelenítése" -#: Settings.ui.h:38 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "Munkaterületek elkülönítése." -#: Settings.ui.h:39 +#: Settings.ui.h:40 msgid "Show open windows previews." msgstr "Nyitott ablakok előnézeteinek megjelenítése." -#: Settings.ui.h:40 +#: Settings.ui.h:41 msgid "" "If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." @@ -226,23 +235,23 @@ "Ha le van tiltva, akkor ezek a beállítások elérhetők a GNOME finomhangoló " "eszközből vagy a kiegészítők weboldaláról." -#: Settings.ui.h:41 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Alkalmazások ikon megjelenítése" -#: Settings.ui.h:42 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Az alkalmazások gombjának áthelyezése a dokk elejére." -#: Settings.ui.h:43 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Alkalmazások megjelenítése animálása." -#: Settings.ui.h:44 +#: Settings.ui.h:45 msgid "Launchers" msgstr "Indítok" -#: Settings.ui.h:45 +#: Settings.ui.h:46 msgid "" "Enable Super+(0-9) as shortcuts to activate apps. It can also be used " "together with Shift and Ctrl." @@ -250,43 +259,48 @@ "Szuper + (0-9) engedélyezése gyorsbillentyűként az alkalmazások " "aktiválásához. Használható a Shift és a Ctrl billentyűkkel együtt is." -#: Settings.ui.h:46 +#: Settings.ui.h:47 msgid "Use keyboard shortcuts to activate apps" msgstr "Gyorsbillentyűk használata az alkalmazások aktiválásához" -#: Settings.ui.h:47 +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Viselkedés egy futó alkalmazás ikonjára való kattintáskor." -#: Settings.ui.h:48 +#: Settings.ui.h:49 msgid "Click action" msgstr "Kattintás művelet" -#: Settings.ui.h:49 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimalizálás" -#: Settings.ui.h:50 +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Ablak minimalizálása" + +#: Settings.ui.h:52 msgid "Behaviour when scrolling on the icon of an application." msgstr "Viselkedés egy alkalmazás ikonján való görgetéskor." -#: Settings.ui.h:51 +#: Settings.ui.h:53 msgid "Scroll action" msgstr "Görgetési művelet" -#: Settings.ui.h:52 +#: Settings.ui.h:54 msgid "Do nothing" msgstr "Ne tegyen semmit" -#: Settings.ui.h:53 +#: Settings.ui.h:55 msgid "Switch workspace" msgstr "Munkaterület váltása" -#: Settings.ui.h:54 +#: Settings.ui.h:56 msgid "Behavior" msgstr "Viselkedés" -#: Settings.ui.h:55 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -294,71 +308,71 @@ "Néhány személyre szabás célja, hogy integrálja a dokkot az alapértelmezett " "GNOME témába. Alternatív esetben bizonyos beállítások engedélyezhetők lent." -#: Settings.ui.h:56 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Beépített téma használata" -#: Settings.ui.h:57 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Helymegtakarítás a kitöltés és a szegély sugarának csökkentésével." -#: Settings.ui.h:58 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "A dash zsugorítása" -#: Settings.ui.h:59 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Egy pont megjelenítése az alkalmazás minden ablakánál." -#: Settings.ui.h:60 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Ablakszámlálók jelzőinek megjelenítése" -#: Settings.ui.h:61 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "A dash háttérszínének beállítása." -#: Settings.ui.h:62 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "A dash színének személyre szabása" -#: Settings.ui.h:63 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "A dash háttér átlátszatlanságának finomhangolása." -#: Settings.ui.h:64 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Átlátszatlanság személyre szabása" -#: Settings.ui.h:65 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Átlátszatlanság" -#: Settings.ui.h:66 +#: Settings.ui.h:68 msgid "Force straight corner\n" msgstr "Egyenes sarok kényszerítése\n" -#: Settings.ui.h:68 +#: Settings.ui.h:70 msgid "Appearance" msgstr "Megjelenés" -#: Settings.ui.h:69 +#: Settings.ui.h:71 msgid "version: " msgstr "verzió: " -#: Settings.ui.h:70 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Áthelyezi a dasht az áttekintőn kívülre egy dokká alakítva azt" -#: Settings.ui.h:71 +#: Settings.ui.h:73 msgid "Created by" msgstr "Létrehozta" -#: Settings.ui.h:72 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Weboldal" -#: Settings.ui.h:73 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the Ehhez a programhoz SEMMILYEN GARANCIA NEM JÁR.\n" "Nézze meg a GNU General Public License 2. vagy későbbi verzióját a részletekért.<" -"/span>" +"\">GNU General Public License 2. vagy későbbi verzióját a részletekért." -#: Settings.ui.h:75 +#: Settings.ui.h:77 msgid "About" msgstr "Névjegy" -#: Settings.ui.h:76 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "A dokk megjelenítése a képernyő szélére történő egér rámutatással." -#: Settings.ui.h:77 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatikus elrejtés" -#: Settings.ui.h:78 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Nyomás a megjelenítéshez: nyomást igényel a dokk megjelenítéséhez" -#: Settings.ui.h:79 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Engedélyezés teljes képernyős módban" -#: Settings.ui.h:80 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "A dokk megjelenítése, amikor nem akadályozza az alkalmazás ablakait." -#: Settings.ui.h:81 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Ablakok kikerülése" -#: Settings.ui.h:82 +#: Settings.ui.h:84 msgid "All windows" msgstr "Összes ablak" -#: Settings.ui.h:83 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Csak a kijelölt alkalmazások ablakai" -#: Settings.ui.h:84 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Csak a maximalizált ablakok" -#: Settings.ui.h:85 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Animáció időtartama (mp)" -#: Settings.ui.h:86 +#: Settings.ui.h:88 msgid "0.000" msgstr "0,000" -#: Settings.ui.h:87 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Megjelenítési időkorlát (mp)" -#: Settings.ui.h:88 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Nyomás küszöbszintje" diff -Nru gnome-shell-extension-dashtodock-57/po/it.po gnome-shell-extension-dashtodock-60/po/it.po --- gnome-shell-extension-dashtodock-57/po/it.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/it.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Dash-to-Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" -"PO-Revision-Date: 2017-04-17 10:52+0200\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" +"PO-Revision-Date: 2017-06-04 12:59+0100\n" "Last-Translator: Giuseppe Pignataro (Fastbyte01) \n" "Language-Team: Italian \n" "Language: it\n" @@ -16,40 +16,48 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 2.0.1\n" +"X-Generator: Poedit 1.8.11\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Monitor primario" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Monitor secondario" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Destra" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Sinistra" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Personalizzazione nascondimento automatico intelligente" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Ripristina a predefinito" -#: prefs.js:346 +#: prefs.js:386 +msgid "Show dock and application numbers" +msgstr "Mostra applicazioni in esecuzione" + +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Personalizza comportamento clic centrale" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Personalizza indicatori in esecuzione" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Tutte le finestre" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Personalizza stile indicatori" @@ -67,6 +75,42 @@ msgstr "Larghezza bordo" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "Indicatore numerico in sovraimpressione" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" +"Mostra brevemente il numero corrispondente alla scorciatoia sull'icona " +"dell'applicazione." + +#: Settings.ui.h:7 +msgid "Show the dock if it is hidden" +msgstr "Mostra dock se nascosta" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" +"Con nascondimento automatico intelligente, la dock viene mostrata per un " +"istante quando la scorciatoia è attivata" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "Scorciatoia" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "Formato: , , , " + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Timeout nascondimento (s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -74,63 +118,67 @@ "Quando impostati su minimizza, un doppio clic minimizza tutte le finestre " "dell'applicazione." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Azione Shift+Clic" -#: Settings.ui.h:7 +#: Settings.ui.h:14 msgid "Raise window" msgstr "Solleva finestra" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Minimizza finestra" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Lancia nuova istanza" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "Passa attraverso le finestre" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" -msgstr "Esci" +msgstr "Chiudi" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "Comportamento per Clic-centrale" -#: Settings.ui.h:13 +#: Settings.ui.h:20 msgid "Middle-Click action" msgstr "Azione Clic-centrale" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "Comportamento per Shift+Clic-centrale" -#: Settings.ui.h:15 +#: Settings.ui.h:22 msgid "Shift+Middle-Click action" msgstr "Azione Shift+Clic-centrale" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Mostra dock sul" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +msgid "Show on all monitors." +msgstr "Mostra su tutti gli schermi" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Posizione sullo schermo" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Basso" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Alto" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -138,92 +186,121 @@ "Nasconde la dock quando questa ostruisce una finestra dell'applicazione " "corrente. Sono disponibili maggiori impostazioni." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Autohide intelligente" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Limite dimensione dock" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Modalità pannello: si estende fino al bordo dello schermo" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Limite dimensione icone" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Dimensione icona fissa: scorri per rivelare le altre icone" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Posizione e dimensione" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Mostra applicazioni preferite" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Mostra applicazioni in esecuzione" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "Isola spazi di lavoro." -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "Mostra anteprime delle finestre aperte" + +#: Settings.ui.h:41 msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Se disabilitate, queste impostazioni sono accessibili da gnome-tweak-tool o " "dal sito web delle estensioni." -#: Settings.ui.h:33 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Mostra icona Applicazioni" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Sposta il pulsante delle applicazioni all'inizio della dock." -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Anima Mostra Applicazioni." -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "Icone delle applicazoni" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" +"Attiva Super+(0-9) come scorciatoie per attivare le applicazioni. Funziona " +"anche con Shift e Ctrl" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "Usa scorciatoie da tastiera per attivare le applicazioni." + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "" "Comportamento quando si fa clic sull'icona di una applicazione in esecuzione." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Azione clic" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimizza" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." +#: Settings.ui.h:51 +msgid "Minimize or overview" +msgstr "Minimizza o mostra attività" + +#: Settings.ui.h:52 +msgid "Behaviour when scrolling on the icon of an application." msgstr "" -"Con la dimensione fissa delle icone, solo il bordo della dock e l'icona " -"Mostra Applicazioni sono attive." +"Comportamento quando si fa clic sull'icona di una applicazione in esecuzione." -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Cambia spazio di lavoro scorrendo sulla dock" +#: Settings.ui.h:53 +msgid "Scroll action" +msgstr "Azione clic" -#: Settings.ui.h:41 +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Non fare nulla" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "Cambia spazio di lavoro." + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Comportamento" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -232,67 +309,71 @@ "default di GNOME. In alternativa, delle opzioni specifiche possono essere " "abilitate qui sotto." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Usa teme integrato" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Salva spazio riducendo il margine e il raggio dei bordi." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Riduci la dash" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Mostra un punto per ogni finestra dell'applicazione." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Mostra indicatore numerico delle finestra" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "Imposta il colore di sfondo della dash." -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "Personalizza il colore della dash" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Personalizza l'opacità dello sfondo della dash." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Personalizza opacità" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Opacità" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Aspetto" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "versione:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Sposta la dash fuori dalla panoramica trasformandola in una dock" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Creata da " -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Sito web" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU General Public License, versione 2 o successiva per maggiori " "dettagli." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "Info su" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Mostra la dock passando con il mouse sul bordo dello schermo" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Nascondi automaticamente" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Premi per vedere: richiede una pressione per mostrare la dock" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Abilità in modalità a schermo intero" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "" "Mostra la dock quando questa non ostruisce le finestre dell'applicazione." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Schive finestre" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "Tutte le finestre" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Solo le finestre delle applicazione a fuoco" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Solo le finestre massimizzate" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Durata Animazione (s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Timeout nascondimento (s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Timeout rivelazione (s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Soglia pressione" + +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Con la dimensione fissa delle icone, solo il bordo della dock e l'icona " +#~ " Mostra Applicazioni sono attive." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Cambia spazio di lavoro scorrendo sulla dock" diff -Nru gnome-shell-extension-dashtodock-57/po/ja.po gnome-shell-extension-dashtodock-60/po/ja.po --- gnome-shell-extension-dashtodock-57/po/ja.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/ja.po 2017-06-21 21:44:12.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: dash-to-dock master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2016-04-03 17:02+0900\n" "Last-Translator: Debonne Hooties \n" "Language-Team: Safranjoepe (an unofficial team of Japanese) <>\n" @@ -18,39 +18,48 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "プライマリーモニター" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "セカンダリーモニター" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "右" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "左" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "インテリジェント表示の設定" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "既定値にリセット" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "実行中アプリケーションの表示" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "表示スタイルの設定" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "インジケーターの表示設定" +#: appIcons.js:804 +msgid "All Windows" +msgstr "すべてのウィンドウが対象" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "表示スタイルの設定" @@ -68,6 +77,39 @@ msgstr "縁取り幅" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "ドックを表示するモニター" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "非表示までのタイムアウト (秒)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -75,66 +117,71 @@ "[ウィンドウの最小化] に設定したときは、アイコンをダブルクリックするとそのアプ" "リケーションのウィンドウをすべて最小化します。" -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Shift+クリック時のアクション" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "ウィンドウの最小化" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "ウィンドウの最小化" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "新しいウィンドウを開く" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "ウィンドウの切り替え" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "クリック時のアクション" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Shift+クリック時のアクション" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "ドックを表示するモニター" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "セカンダリーモニター" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "表示位置" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "下" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "上" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -142,92 +189,122 @@ "開いているウィンドウの邪魔にならないようドックの表示/非表示を自動的に切り替え" "ます。より洗練された表示設定も可能です。" -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "インテリジェント表示" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "ドックサイズの上限" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "パネルモード(画面の端までドックを拡張)" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "アイコンサイズの上限" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "アイコンサイズの固定(隠れたアイコンはスクロールで表示)" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "位置とサイズ" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "お気に入りアプリケーションの表示" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "実行中アプリケーションの表示" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "オフにしたときは、gnome-tweak-tool または拡張機能ウェブサイトを経由してこの設" "定ダイアログにアクセスします。" -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "[アプリケーションを表示する] アイコンの表示" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "ドックの先頭(最上段または左端)に表示" -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "アニメーションしながらアプリケーション一覧を表示" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "実行中アプリケーションのアイコンをクリックしたときの動作を指定します。" -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "クリック時のアクション" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "ウィンドウの最小化" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"アイコンサイズを固定しているときは、ドックの端または [アプリケーションを表示" -"する] アイコン上でのスクロールのみが有効です。" +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "ウィンドウの最小化" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "ドック上でスクロールしたらワークスペースを切り替える" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "実行中アプリケーションのアイコンをクリックしたときの動作を指定します。" -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "クリック時のアクション" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "何もしない" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "動作" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -235,67 +312,71 @@ "この設定がオンのときは、お使いのGNOMEテーマとの調和を図るためカスタマイズは無" "効になります。オフのときには以下のカスタマイズが可能です。" -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "ビルトインテーマの使用" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "境界線の太さとパディングを減らして表示域を小さくします。" -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Dashの縮小表示" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "アプリケーションウィンドウの数をドットで表示します。" -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "ウィンドウ数インジケーターの表示" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Dash背景の不透明度を調整します。" -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "不透明度の調整" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "不透明度" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "外観" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "バージョン: " -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Dashをドック化してアクティビティ画面以外でもDash操作を可能にします。" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "作者:" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "ウェブページ" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU一般公衆ライセンス(GPL)バージョン2 またはそれ以降のバージョンをご" "覧ください。" -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "情報" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "" "ドックを表示したいとき、ポインターを画面端に移動するとドックが表示されます。" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "オンデマンド表示" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "" "押し込んで表示(画面外にポインターを移動するようにマウスを動かして表示)" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "フルスクリーンモード時でも表示" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "" "ドックを常に表示しますが、アプリケーションウィンドウと重なるときは表示しませ" "ん。" -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "ウィンドウ重なり防止" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "すべてのウィンドウが対象" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "フォーカスされたアプリケーションのウィンドウが対象" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "最大化されたウィンドウが対象" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "アニメーション表示時間 (秒)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "非表示までのタイムアウト (秒)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "表示までのタイムアウト (秒)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "押し込み量 (ピクセル)" -#~ msgid "Do nothing" -#~ msgstr "何もしない" +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "アイコンサイズを固定しているときは、ドックの端または [アプリケーションを表" +#~ "示する] アイコン上でのスクロールのみが有効です。" + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "ドック上でスクロールしたらワークスペースを切り替える" diff -Nru gnome-shell-extension-dashtodock-57/po/nl.po gnome-shell-extension-dashtodock-60/po/nl.po --- gnome-shell-extension-dashtodock-57/po/nl.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/nl.po 2017-06-21 21:44:12.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-05-14 14:26+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Nederlands \n" @@ -21,40 +21,49 @@ "X-Generator: Gtranslator 2.91.7\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Eerste beeldscherm" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Tweede beeldscherm" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Rechts" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Links" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Voorkeuren voor intelligente verbergmodus" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Herstellen naar standaardwaarden" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Geopende applicaties weergeven" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Doorzichtigheid aanpassen" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Geopende applicaties weergeven" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Vensters ontwijken" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -73,6 +82,39 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Het dock weergeven op" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Verberginterval (s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -80,67 +122,72 @@ "Indien gekozen voor minimaliseren zal dubbelklikken alle vensters van de " "huidige applicatie minimaliseren." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Shift+Klik-actie" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Venster minimalisren" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Venster minimalisren" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Nieuw proces openen" -#: Settings.ui.h:10 +#: Settings.ui.h:17 #, fuzzy msgid "Cycle through windows" msgstr "Schakelen tussen vensters" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Klikactie" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Shift+Klik-actie" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Het dock weergeven op" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Tweede beeldscherm" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Positie op het scherm" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Onderaan" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Bovenaan" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -148,94 +195,123 @@ "Het dock verbergen wanneer het een venster van de huidige applicatie in de " "weg zit. Er zijn gedetailleerde instellingen hiervoor beschikbaar." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Intelligente verbergmodus" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Maximale dockgrootte" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Paneelmodus: uitrekken tot aan de schermrand" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Maximale pictogramgrootte" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "" "Vastgezette pictogramgrootte: scroll om meer pictogrammen weer te geven" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Positie en grootte" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Favoriete applicaties weergeven" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Geopende applicaties weergeven" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Applicaties weergeven-pictogram aan het begin" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Verplaatst de applicaties-knop naar het begin van het dock." -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Applicaties weergeven-pictogram aan het begin" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 #, fuzzy msgid "Behaviour when clicking on the icon of a running application." msgstr "Gedrag van het klikken op het pictogram van een geopende applicatie." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Klikactie" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimaliseren" -#: Settings.ui.h:39 +#: Settings.ui.h:51 #, fuzzy -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Het gebied nabij de schermrand en de Applicaties weergeven-knop zijn " -"actief." +msgid "Minimize or overview" +msgstr "Venster minimalisren" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Van werkblad wisselen door te scrollen op het dock" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Gedrag van het klikken op het pictogram van een geopende applicatie." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Klikactie" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Niets doen" + +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "Nur eine Arbeitsfläche pro Scrollen weiterschalten" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Gedrag" -#: Settings.ui.h:42 +#: Settings.ui.h:57 #, fuzzy msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " @@ -245,69 +321,73 @@ "standaard GNOME-thema. In plaats daarvan kunt specifieke opties hieronder " "inschakelen." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Ingebouwd thema gebruiken" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Bespaar ruimte door de radius van de dikte en rand te verkleinen." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "De dash verkleinen" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Een stip weergeven voor elk venster van de applicatie." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Indicatoren van de vensterteller weergeven" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "De doorzichtigheid van de dash-achtergrond aanpassen." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Doorzichtigheid aanpassen" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Doorzichtigheid" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Uiterlijk" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "versie:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "" "Verplaatst de dash naar buiten het activiteitenoverzicht zodat het een dock " "wordt" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Gecreëerd door" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU General Public License, versie 2 of nieuwer voor details." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "Over" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Het dock weergeven door de muiscursor op de schermrand te plaatsen" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatisch verbergen" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Weergeven middels druk: druk toepassen om het dock weer te geven" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Het dock weergeven wanneer het geen applicatievensters in de weg zit." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Vensters ontwijken" -#: Settings.ui.h:67 -#, fuzzy +#: Settings.ui.h:84 msgid "All windows" msgstr "Vensters ontwijken" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "Venster minimalisren" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Animatieduur (s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Verberginterval (s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Weergaveinterval (s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Drukwaarde (px)" -#~ msgid "Do nothing" -#~ msgstr "Niets doen" +#, fuzzy +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Het gebied nabij de schermrand en de Applicaties weergeven-knop " +#~ "zijn actief." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Van werkblad wisselen door te scrollen op het dock" #~ msgid "Only consider windows of the focused application" #~ msgstr "Alleen vensters van de huidige gefocuste applicatie overwegen" @@ -448,9 +531,6 @@ #~ msgid "Optional features" #~ msgstr "Optionale Funktionen" -#~ msgid "Switch one workspace at a time" -#~ msgstr "Nur eine Arbeitsfläche pro Scrollen weiterschalten" - #~ msgid "Deadtime between each workspace switching [ms]" #~ msgstr "Stillstandszeit zwischen Arbeitsflächenwechsel [ms]" diff -Nru gnome-shell-extension-dashtodock-57/po/pl.po gnome-shell-extension-dashtodock-60/po/pl.po --- gnome-shell-extension-dashtodock-57/po/pl.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/pl.po 2017-06-21 21:44:12.000000000 +0000 @@ -3,12 +3,12 @@ # This file is distributed under the same license as the dash-to-dock package. # # Piotr Sokół , 2012, 2013, 2015, 2016, 2017. -# +# msgid "" msgstr "" "Project-Id-Version: 55\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-09 09:20+0200\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2017-04-09 09:44+0200\n" "Last-Translator: Piotr Sokół \n" "Language-Team: polski <>\n" @@ -20,42 +20,46 @@ "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Gtranslator 2.91.7\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Podstawowy" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Drugorzędny" -#: prefs.js:139 Settings.ui.h:28 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Prawo" -#: prefs.js:140 Settings.ui.h:25 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Lewo" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Dostosowanie automatycznego ukrywania" -#: prefs.js:197 prefs.js:374 prefs.js:428 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Przywróć domyślne" -#: prefs.js:367 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "Wyświetlanie doku i numerów programów" -#: prefs.js:421 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Dostosowanie działania przycisków myszy" -#: prefs.js:492 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Dostosowanie wskaźników okien" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Wszystkie okna" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Dostosowanie stylu wskaźników" @@ -159,18 +163,23 @@ msgstr "Ekran wyświetlania doku" #: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Drugorzędny" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Położenie na ekranie" -#: Settings.ui.h:26 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Dół" -#: Settings.ui.h:27 +#: Settings.ui.h:28 msgid "Top" msgstr "Góra" -#: Settings.ui.h:29 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -178,47 +187,47 @@ "Ukrywa dok jeśli zakrywa okno bieżącego programu. Dostępnych jest więcej " "szczegółowych opcji." -#: Settings.ui.h:30 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Inteligentne ukrywanie" -#: Settings.ui.h:31 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Ograniczenie rozmiaru doku" -#: Settings.ui.h:32 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Tryb panelu: rozciągnięcie do krawędzi ekranu" -#: Settings.ui.h:33 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Ograniczenie rozmiaru ikon" -#: Settings.ui.h:34 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Ustalony rozmiar ikon: odsłanianie ikon przewijaniem" -#: Settings.ui.h:35 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Położenie i rozmiar" -#: Settings.ui.h:36 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Ulubione programy" -#: Settings.ui.h:37 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Uruchomione programy" -#: Settings.ui.h:38 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "Izolowanie obszarów roboczych" -#: Settings.ui.h:39 +#: Settings.ui.h:40 msgid "Show open windows previews." msgstr "Podgląd otwartych okien" -#: Settings.ui.h:40 +#: Settings.ui.h:41 msgid "" "If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." @@ -226,23 +235,23 @@ "Przełącza widoczność przycisku programów. Można też skonfigurować za pomocą " "narzędzia dostrajania lub witryny internetowej z rozszerzeniami." -#: Settings.ui.h:41 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Przycisk Wyświetl programy" -#: Settings.ui.h:42 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Przemieszczenie przycisku programów na początek doku" -#: Settings.ui.h:43 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Animowanie przycisku Wyświetl programy" -#: Settings.ui.h:44 +#: Settings.ui.h:45 msgid "Launchers" msgstr "Aktywatory" -#: Settings.ui.h:45 +#: Settings.ui.h:46 msgid "" "Enable Super+(0-9) as shortcuts to activate apps. It can also be used " "together with Shift and Ctrl." @@ -250,43 +259,48 @@ "Używa skrótu Super+(0-9) do uruchomienia aktywatorów. Można użyć z " "modyfikatorem Shift lub Ctrl." -#: Settings.ui.h:46 +#: Settings.ui.h:47 msgid "Use keyboard shortcuts to activate apps" msgstr "Uruchamianie aktywatorów skrótami klawiszowymi" -#: Settings.ui.h:47 +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Określa działanie kliknięcia ikony uruchomionego programu" -#: Settings.ui.h:48 +#: Settings.ui.h:49 msgid "Click action" msgstr "Działanie kliknięcia" -#: Settings.ui.h:49 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Zminimalizowanie okna" -#: Settings.ui.h:50 +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Zminimalizowanie okna" + +#: Settings.ui.h:52 msgid "Behaviour when scrolling on the icon of an application." msgstr "Określa działanie przewijania kółkiem ikony programu" -#: Settings.ui.h:51 +#: Settings.ui.h:53 msgid "Scroll action" msgstr "Działanie przewijania" -#: Settings.ui.h:52 +#: Settings.ui.h:54 msgid "Do nothing" msgstr "Brak" -#: Settings.ui.h:53 +#: Settings.ui.h:55 msgid "Switch workspace" msgstr "Przełączenie obszaru roboczego" -#: Settings.ui.h:54 +#: Settings.ui.h:56 msgid "Behavior" msgstr "Zachowanie" -#: Settings.ui.h:55 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -294,73 +308,73 @@ "Integruje dok z domyślnym stylem GNOME przy użyciu kilku ustawień. " "Opcjonalnie ustawienia te można określić poniżej." -#: Settings.ui.h:56 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Użycie zintegrowanego stylu" -#: Settings.ui.h:57 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "" "Zmniejsza zajmowaną powierzchnię redukując\n" "odległość od krawędzi i jej zaokrąglenie" -#: Settings.ui.h:58 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Zmniejszenie kokpitu" -#: Settings.ui.h:59 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Wyświetla kropkę dla każdego okna programu" -#: Settings.ui.h:60 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Wskaźniki ilości okien" -#: Settings.ui.h:61 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "Ustala wybrany kolor tła kokpitu" -#: Settings.ui.h:62 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "Kolor kokpitu" -#: Settings.ui.h:63 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Modyfikuje przezroczystość tła kokpitu" -#: Settings.ui.h:64 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Dostosowanie przezroczystości tła" -#: Settings.ui.h:65 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Nieprzezroczystość" -#: Settings.ui.h:66 +#: Settings.ui.h:68 msgid "Force straight corner\n" msgstr "Kąty proste narożników\n" -#: Settings.ui.h:68 +#: Settings.ui.h:70 msgid "Appearance" msgstr "Wygląd" -#: Settings.ui.h:69 +#: Settings.ui.h:71 msgid "version: " msgstr "wersja: " -#: Settings.ui.h:70 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Przemieszcza kokpit z widoku podglądu do doku" -#: Settings.ui.h:71 +#: Settings.ui.h:73 msgid "Created by" msgstr "Autor:" -#: Settings.ui.h:72 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Strona internetowa" -#: Settings.ui.h:73 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the Powszechna licencja publiczna GNU, wersja 2 lub późniejsza." -#: Settings.ui.h:75 +#: Settings.ui.h:77 msgid "About" msgstr "O programie" -#: Settings.ui.h:76 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Wyświetla dok po przemieszczeniu wskaźnika myszy do krawędzi ekranu" -#: Settings.ui.h:77 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatyczne ukrywanie" -#: Settings.ui.h:78 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Wymagany nacisk do wyświetlenia doku" -#: Settings.ui.h:79 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Wyświetlanie na pełnym ekranie" -#: Settings.ui.h:80 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Wyświetla dok jeśli nie zakrywa okien programu" -#: Settings.ui.h:81 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Ukrywanie przed oknami" -#: Settings.ui.h:82 +#: Settings.ui.h:84 msgid "All windows" msgstr "Wszystkie okna" -#: Settings.ui.h:83 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Tylko aktywne okna programu" -#: Settings.ui.h:84 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Tylko zmaksymalizowane okna" -#: Settings.ui.h:85 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Czas animacji (s)" -#: Settings.ui.h:86 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:87 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Czas wyświetlania (s)" -#: Settings.ui.h:88 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Próg nacisku" diff -Nru gnome-shell-extension-dashtodock-57/po/pt_BR.po gnome-shell-extension-dashtodock-60/po/pt_BR.po --- gnome-shell-extension-dashtodock-57/po/pt_BR.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/pt_BR.po 2017-06-21 21:44:12.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-16 21:08-0300\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2017-04-16 23:10-0300\n" "Last-Translator: Fábio Nogueira \n" "Language-Team: Português do Brasil\n" @@ -18,42 +18,46 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.1\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Monitor primário" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Monitor secundário" -#: prefs.js:139 Settings.ui.h:28 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Direita" -#: prefs.js:140 Settings.ui.h:25 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Esquerda" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Configuração da ocultação inteligente" -#: prefs.js:197 prefs.js:374 prefs.js:428 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Restaurar o padrão" -#: prefs.js:367 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "Exibir o dock e os números dos aplicativos" -#: prefs.js:421 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Customizar o comportamento do clique do botão do meio" -#: prefs.js:492 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Customizar os indicadores de execução" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Todas as Janelas" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Customizar o estilo do indicador" @@ -133,7 +137,7 @@ msgid "Cycle through windows" msgstr "Percorrer através das janelas" -#: Settings.ui.h:18 appIcons.js:841 appIcons.js:861 appIcons.js:863 +#: Settings.ui.h:18 msgid "Quit" msgstr "Sair" @@ -158,18 +162,23 @@ msgstr "Exibir o dock" #: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Monitor secundário" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Posição na tela" -#: Settings.ui.h:26 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Embaixo" -#: Settings.ui.h:27 +#: Settings.ui.h:28 msgid "Top" msgstr "Em cima" -#: Settings.ui.h:29 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -177,47 +186,47 @@ "Ocultar o dock quando o mesmo sobrepor a janela do aplicativo em uso. " "Definições mais aperfeiçoadas estão disponíveis." -#: Settings.ui.h:30 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Ocultação inteligente" -#: Settings.ui.h:31 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Tamanho limite do dock" -#: Settings.ui.h:32 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Modo do painel: estender até a borda da tela" -#: Settings.ui.h:33 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Tamanho limite do ícone" -#: Settings.ui.h:34 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Tamanho do ícone fixo: use o scroll do mouse para revelar outro ícone" -#: Settings.ui.h:35 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Posição e tamanho" -#: Settings.ui.h:36 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Mostrar aplicativos favoritos" -#: Settings.ui.h:37 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Mostrar aplicativos em execução" -#: Settings.ui.h:38 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "Isolar espaços de trabalho." -#: Settings.ui.h:39 +#: Settings.ui.h:40 msgid "Show open windows previews." msgstr "Mostrar pré-visualizações de janelas abertas." -#: Settings.ui.h:40 +#: Settings.ui.h:41 msgid "" "If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." @@ -225,23 +234,23 @@ "Se desabilitado, essas configurações estão acessíveis através do gnome-tweak-" "tool ou no site da extensão." -#: Settings.ui.h:41 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Exibir ícone dos Aplicativos" -#: Settings.ui.h:42 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Mover o botão de aplicativos para o início do dock." -#: Settings.ui.h:43 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Mostrar aplicativos com efeitos." -#: Settings.ui.h:44 +#: Settings.ui.h:45 msgid "Launchers" msgstr "Lançadores" -#: Settings.ui.h:45 +#: Settings.ui.h:46 msgid "" "Enable Super+(0-9) as shortcuts to activate apps. It can also be used " "together with Shift and Ctrl." @@ -249,43 +258,48 @@ "Habilita tecla Super+(0-9) como atalhos para ativar aplicativos. Também pode " "ser usado junto com Shift e Ctrl." -#: Settings.ui.h:46 +#: Settings.ui.h:47 msgid "Use keyboard shortcuts to activate apps" msgstr "Usar atalhos de teclado para ativar aplicativos" -#: Settings.ui.h:47 +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Comportamento ao clicar sobre o ícone de um aplicativo em execução." -#: Settings.ui.h:48 +#: Settings.ui.h:49 msgid "Click action" msgstr "Ação do clique" -#: Settings.ui.h:49 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimizar" -#: Settings.ui.h:50 +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Minimizar janela" + +#: Settings.ui.h:52 msgid "Behaviour when scrolling on the icon of an application." msgstr "Comportamento ao rolar sobre o ícone de um aplicativo." -#: Settings.ui.h:51 +#: Settings.ui.h:53 msgid "Scroll action" msgstr "Ação da rolagem" -#: Settings.ui.h:52 +#: Settings.ui.h:54 msgid "Do nothing" msgstr "Não fazer nada" -#: Settings.ui.h:53 +#: Settings.ui.h:55 msgid "Switch workspace" msgstr "Alternar espaço de trabalho" -#: Settings.ui.h:54 +#: Settings.ui.h:56 msgid "Behavior" msgstr "Comportamento" -#: Settings.ui.h:55 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -293,71 +307,71 @@ "Algumas personalizações se destinam a integrar o dock com o tema padrão do " "GNOME. Alternativamente, as opções específicas podem ser ativadas abaixo." -#: Settings.ui.h:56 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Usar o tema do sistema" -#: Settings.ui.h:57 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Economizar espaço reduzindo preenchimento e a borda arredondada" -#: Settings.ui.h:58 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Encolher o dash" -#: Settings.ui.h:59 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Mostrar um ponto para cada janela do aplicativo" -#: Settings.ui.h:60 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Mostrar indicadores de contador de janelas" -#: Settings.ui.h:61 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "Define a cor de fundo para o dash." -#: Settings.ui.h:62 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "Customizar a cor do dash" -#: Settings.ui.h:63 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Ajustar a opacidade do fundo do dash." -#: Settings.ui.h:64 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Customizar opacidade" -#: Settings.ui.h:65 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Opacidade" -#: Settings.ui.h:66 +#: Settings.ui.h:68 msgid "Force straight corner\n" msgstr "Forçar canto reto\n" -#: Settings.ui.h:68 +#: Settings.ui.h:70 msgid "Appearance" msgstr "Aparência" -#: Settings.ui.h:69 +#: Settings.ui.h:71 msgid "version: " msgstr "versão:" -#: Settings.ui.h:70 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Mover o dash para fora da visão geral transformando-o em dock" -#: Settings.ui.h:71 +#: Settings.ui.h:73 msgid "Created by" msgstr "Criado por" -#: Settings.ui.h:72 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Página Web" -#: Settings.ui.h:73 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU General Public License, versão 2 ou posterior para maiores " "detalhes." -#: Settings.ui.h:75 +#: Settings.ui.h:77 msgid "About" msgstr "Sobre" -#: Settings.ui.h:76 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Mostrar o dock quando o mouse pairar sobre a tela." -#: Settings.ui.h:77 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Ocultação" -#: Settings.ui.h:78 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Empurrar para mostrar: requer pressão para mostrar o dock" -#: Settings.ui.h:79 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Habilitar modo tela cheia" -#: Settings.ui.h:80 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Mostrar o dock quando nenhum aplicativo sobrepor o mesmo." -#: Settings.ui.h:81 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Esconder janela" -#: Settings.ui.h:82 +#: Settings.ui.h:84 msgid "All windows" msgstr "Todas as janelas" -#: Settings.ui.h:83 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Apenas janelas de aplicativos em foco" -#: Settings.ui.h:84 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Somente janelas maximizadas" -#: Settings.ui.h:85 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Tempo da animação [s]" -#: Settings.ui.h:86 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:87 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Mostrar tempo limite [s]" -#: Settings.ui.h:88 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Limite de pressão" -#: appIcons.js:747 -msgid "All Windows" -msgstr "Todas as Janelas" +#~ msgid "New Window" +#~ msgstr "Nova janela" + +#~ msgid "Launch using Dedicated Graphics Card" +#~ msgstr "Inicia utilizando uma placa gráfica dedicada" + +#~ msgid "Remove from Favorites" +#~ msgstr "Remover dos favoritos" + +#~ msgid "Add to Favorites" +#~ msgstr "Adicionar aos favoritos" + +#~ msgid "Show Details" +#~ msgstr "Exibir detalhes" + +#~ msgid "Windows" +#~ msgstr "Janelas" + +#~ msgid "Settings" +#~ msgstr "Configurações" -#: appIcons.js:758 -msgid "New Window" -msgstr "Nova janela" - -#: appIcons.js:773 -msgid "Launch using Dedicated Graphics Card" -msgstr "Inicia utilizando uma placa gráfica dedicada" - -#: appIcons.js:800 -msgid "Remove from Favorites" -msgstr "Remover dos favoritos" - -#: appIcons.js:806 -msgid "Add to Favorites" -msgstr "Adicionar aos favoritos" - -#: appIcons.js:816 -msgid "Show Details" -msgstr "Exibir detalhes" - -#: appIcons.js:863 -msgid "Windows" -msgstr "Janelas" - -#: appIcons.js:1038 -msgid "Settings" -msgstr "Configurações" - -#: docking.js:382 -msgid "Dash" -msgstr "Dash" +#~ msgid "Dash" +#~ msgstr "Dash" #~ msgid "" #~ "With fixed icon size, only the edge of the dock and the Show " diff -Nru gnome-shell-extension-dashtodock-57/po/pt.po gnome-shell-extension-dashtodock-60/po/pt.po --- gnome-shell-extension-dashtodock-57/po/pt.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/pt.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2012-12-20 20:45+1100\n" "Last-Translator: Carlos Alberto Junior Spohr Poletto com>\n" @@ -19,40 +19,49 @@ "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: Portugal\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Mostrar aplicações em execução" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Alterar a opacidade do fundo do dock" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Mostrar aplicações em execução" +#: appIcons.js:804 +msgid "All Windows" +msgstr "" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -71,303 +80,369 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +msgid "Show the dock if it is hidden" +msgstr "" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." msgstr "" -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Minimizar" -#: Settings.ui.h:8 +#: Settings.ui.h:15 #, fuzzy msgid "Minimize window" msgstr "Minimizar" -#: Settings.ui.h:9 +#: Settings.ui.h:16 #, fuzzy msgid "Launch new instance" msgstr "Abrir uma nova janela" -#: Settings.ui.h:10 +#: Settings.ui.h:17 #, fuzzy msgid "Cycle through windows" msgstr "Percorrer janelas de aplicativos" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 msgid "Middle-Click action" msgstr "" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 msgid "Shift+Middle-Click action" msgstr "" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +msgid "Show on all monitors." +msgstr "" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." msgstr "" -#: Settings.ui.h:23 +#: Settings.ui.h:31 #, fuzzy msgid "Intelligent autohide" msgstr "Ocultação inteligente" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "" -#: Settings.ui.h:29 +#: Settings.ui.h:37 #, fuzzy msgid "Show favorite applications" msgstr "Mostrar ícones das aplicações favoritas" -#: Settings.ui.h:30 +#: Settings.ui.h:38 #, fuzzy msgid "Show running applications" msgstr "Mostrar aplicações em execução" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Mostrar aplicações em execução" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "" -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Mostrar aplicações em execução" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "" -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimizar" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Minimizar" + +#: Settings.ui.h:52 +msgid "Behaviour when scrolling on the icon of an application." msgstr "" -#: Settings.ui.h:40 +#: Settings.ui.h:53 +msgid "Scroll action" +msgstr "" + +#: Settings.ui.h:54 #, fuzzy -msgid "Switch workspace by scrolling on the dock" -msgstr "Trocar de espaço de trabalho quando scrolar o mouse sobre o dock" +msgid "Do nothing" +msgstr "Não faça nada (padrão)" -#: Settings.ui.h:41 +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "Trocar de espaço de trabalho um por vez" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." msgstr "" -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "" -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "" -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 #, fuzzy msgid "Tune the dash background opacity." msgstr "Alterar a opacidade do fundo do dock" -#: Settings.ui.h:51 +#: Settings.ui.h:66 #, fuzzy msgid "Customize opacity" msgstr "Alterar a opacidade do fundo do dock" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Opacidade" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU General Public License, version 2 or later for details." msgstr "" -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Masquage automatique" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "" -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "Minimizar" -#: Settings.ui.h:70 +#: Settings.ui.h:87 #, fuzzy msgid "Animation duration (s)" msgstr "Tempo da animação [ms]" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "" #, fuzzy -#~ msgid "Do nothing" -#~ msgstr "Não faça nada (padrão)" +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Trocar de espaço de trabalho quando scrolar o mouse sobre o dock" #~ msgid "Main Settings" #~ msgstr "Configurações principais" @@ -429,9 +504,6 @@ #~ msgid "Optional features" #~ msgstr "Recursos opcionais" -#~ msgid "Switch one workspace at a time" -#~ msgstr "Trocar de espaço de trabalho um por vez" - #~ msgid "Only a 1px wide area close to the screen edge is active" #~ msgstr "" #~ "Somente uma área de 1px de largura na borda da tela quando estiver ativa" diff -Nru gnome-shell-extension-dashtodock-57/po/ru.po gnome-shell-extension-dashtodock-60/po/ru.po --- gnome-shell-extension-dashtodock-57/po/ru.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/ru.po 2017-06-21 21:44:12.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: dash-to-dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-28 13:04+0300\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2017-04-28 13:26+0300\n" "Last-Translator: Ivan Komaritsyn \n" "Language-Team: \n" @@ -17,42 +17,46 @@ "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "X-Generator: Gtranslator 2.91.7\n" -#: prefs.js:111 +#: prefs.js:113 msgid "Primary monitor" msgstr "Основной монитор" -#: prefs.js:120 prefs.js:127 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Дополнительный монитор" -#: prefs.js:152 Settings.ui.h:29 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Справа" -#: prefs.js:153 Settings.ui.h:26 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Слева" -#: prefs.js:203 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Настройка автоскрытия" -#: prefs.js:210 prefs.js:391 prefs.js:448 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Сбросить настройки" -#: prefs.js:384 +#: prefs.js:386 msgid "Show dock and application numbers" msgstr "Показывать количество запущенных приложений" -#: prefs.js:441 +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "Настройка действий для средней кнопки мыши" -#: prefs.js:512 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Настройка индикаторов запуска" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Все окна" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Настроить стиль индикатора" diff -Nru gnome-shell-extension-dashtodock-57/po/sk.po gnome-shell-extension-dashtodock-60/po/sk.po --- gnome-shell-extension-dashtodock-57/po/sk.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/sk.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2016-07-15 12:48+0200\n" "Last-Translator: Dušan Kazik \n" "Language-Team: \n" @@ -18,39 +18,48 @@ "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Hlavnom monitore" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Vedľajšom monitore" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Vpravo" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Vľavo" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Prispôsobenie inteligentného automatického skrývania" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Obnoviť pôvodné" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Zobraziť spustené aplikácie" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Prispôsobenie štýlu indikátorov" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Prispôsobenie " +#: appIcons.js:804 +msgid "All Windows" +msgstr "Všetky okná" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Prispôsobenie štýlu indikátorov" @@ -68,6 +77,39 @@ msgstr "Šírka okraja" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Zobraziť dok na" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Časový limit na skrytie (s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -75,66 +117,71 @@ "Keď je nastavené na minimalizovanie, dvojklik minimalizuje všetky okná " "aplikácie." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Akcia Shift+Kliknutie" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Minimalizovať okno" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Minimalizovať okno" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Spustiť novú inštanciu" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "Striedať okná" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Akcia po kliknutí" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Akcia Shift+Kliknutie" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Zobraziť dok na" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Vedľajšom monitore" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Pozícia na obrazovke" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Na spodku" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Na vrchu" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -142,91 +189,122 @@ "Skryť dok, keď zasahuje do okna aktuálnej aplikácie. Sú dostupné " "podrobnejšie nastavenia." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Inteligentné automatické skrývanie" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Limit veľkosti doku" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Režim panelu: roztiahnutie k hranám obrazovky" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Limit veľkosti ikôn" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Pevná veľkosť ikôn: rolovaním odhalíte ostatné ikony" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Pozícia a veľkosť" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Zobraziť obľúbené aplikácie" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Zobraziť spustené aplikácie" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "Oddelené pracovné priestory." -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Ak je voľba zakázaná, nastavenia sú dostupné z nástroja na vyladenie " "nastavení prostredia Gnome alebo webovej stránky rozšírenia." -#: Settings.ui.h:33 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Zobraziť ikonu Aplikácie" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Premiestni tlačidlo aplikácií na začiatok doku." -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Animovať položku Zobraziť aplikácie." -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Správanie pri kliknutí na ikonu spustenej aplikácie." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Akcia po kliknutí" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimalizovať" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"S pevnou veľkosťou ikon je aktívna iba hrana doku a ikona Zobraziť " -"aplikácie." +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Minimalizovať okno" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Prepínať pracovné priestory rolovaním na doku" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Správanie pri kliknutí na ikonu spustenej aplikácie." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Akcia po kliknutí" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Nevykonať nič" + +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "Oddelené pracovné priestory." + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Správanie" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -234,67 +312,71 @@ "Niekoľko úprav na integrovanie doku s predvolenou témou prostredia GNOME. " "Alternatívne môžu byť povolené špecifické voľby nižšie." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Použiť zabudovanú tému" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Ušetrí miesto zmenšením rádiusu odsadenia a okrajov." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Zmenšiť panel" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Zobrazí bodku za každé okno aplikácie." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Zobraziť indikátory počítadiel okien" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "Nastaví farbu pozadia panelu." -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "Prispôsobenie farby panelu" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Vyladí krytie pozadia panelu." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Prispôsobenie krytia" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Krytie" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Vzhľad" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "Verzia: c" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Presunie panel z prehľadu transformovaním do doku" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Vytvoril" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Webová stránka" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the Licenciu GNU General Public, verzie 2 alebo novšiu." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "O rozšírení" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Zobrazí dok prejdením myši na hranu obrazovky." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Automatické skrytie" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Zobraziť stlačením: vyžaduje tlak na zobrazenie doku" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Povoliť v režime na celú obrazovku" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Zobrazí dok, keď nebude zasahovať do okien aplikácií." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Vyhýbať sa oknám" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "Všetky okná" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Iba zamerané okná aplikácií" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Iba maximalizované okná" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Trvanie animácie (s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Časový limit na skrytie (s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Zobraziť časový limit (s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Medza tlaku" -#~ msgid "Do nothing" -#~ msgstr "Nevykonať nič" +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "S pevnou veľkosťou ikon je aktívna iba hrana doku a ikona Zobraziť " +#~ "aplikácie." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Prepínať pracovné priestory rolovaním na doku" diff -Nru gnome-shell-extension-dashtodock-57/po/sr@latin.po gnome-shell-extension-dashtodock-60/po/sr@latin.po --- gnome-shell-extension-dashtodock-57/po/sr@latin.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/sr@latin.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-07-29 18:11+0200\n" "Last-Translator: Slobodan Terzić \n" "Language-Team: \n" @@ -19,40 +19,49 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "primarnom monitoru" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "sekundarnom monitoru" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "desno" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "levo" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Postavke inteligentnog samosakrivanja" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Povrati osnovno" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Prikaz pokrenutih programa" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Prilagoćavanje prozirnosti" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Prikaz pokrenutih programa" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Izbegavanje rozora" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -71,6 +80,39 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Prikaži dok na" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Zastoj skrivanja" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -78,66 +120,71 @@ "Kad je postavljeno na minimizovanje, dupli klik minimizuje sve prozore " "programa." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Radnja šift+klika" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "minimiuj prozor" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "minimiuj prozor" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "pokreni novi primerak" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "kruženje kroz prozore" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Radnja klika" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Radnja šift+klika" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Prikaži dok na" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "sekundarnom monitoru" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Pozicija na ekranu" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "dno" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "vrh" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -145,94 +192,123 @@ "Sakrij dok kada je na putu prozora trenutnog programa. Dostupne su finije " "postavke." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Inteligentno samosakrivanje" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Ograničenje veličine doka" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Režim panela: proširen do ivica ekrana" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Ograničenje veličine ikona" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Ustaljena veličina ikona: klizajte za druge ikone" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Pozicija i veličina" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Prikaz omiljenih programa" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Prikaz pokrenutih programa" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Ukoliko je onemogućeno, ove postavke su dostupne kroz alatku za lickanje ili " "veb sajt proširenja." -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Prikaz ikone Prikaži programe" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Pomeri dugme programa na početak doka" -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Prikaz ikone Prikaži programe" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Ponašanje pri kliku na pokrenuti program." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Radnja klika" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "minimizuj" -#: Settings.ui.h:39 +#: Settings.ui.h:51 #, fuzzy -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Ako se ikone preklapaju na doku, prikazuje se samo ikona Prikaži " -"programe." +msgid "Minimize or overview" +msgstr "minimiuj prozor" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Promena radnog prostora klizanjem po doku" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Ponašanje pri kliku na pokrenuti program." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Radnja klika" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "ništa" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Ponašanje" -#: Settings.ui.h:42 +#: Settings.ui.h:57 #, fuzzy msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " @@ -241,67 +317,71 @@ "Nekoliko postavki je namenjeno ugrađivanju doka u osnovnu temu Gnoma. " "Alternativno, posebne postavke se mogu urediti ispod." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Koristi ugrađenu temu" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Čuva prostor sužavanjem popune i opsega ivica." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Skupi ploču" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Prikazuje tačku za svaki prozor programa." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Prikaz indikatora brojača prozora." -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Prilagodi prozirnost pozadine ploče." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Prilagoćavanje prozirnosti" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Prozirnost" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Izgled" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "verzija:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Pomera ploču iz globalnog prikaza, pretvarajući je u dok" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Napravi" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Veb stranica" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNUovu Opštu Javnu licencu, verzija 2 ili kasnija, za detalje." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "O programu" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Prikaži dok prelazom miša peko ivice ekrana." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Samoskrivanje" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Prikaz pritiskom: zahteva pritisak za prikaz doka" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Prikazuje dok kada nije na putu prozorima programa." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Izbegavanje rozora" -#: Settings.ui.h:67 +#: Settings.ui.h:84 #, fuzzy msgid "All windows" msgstr "Izbegavanje rozora" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "minimiuj prozor" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Trajanje(a) animacije" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0,000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Zastoj skrivanja" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Zastoj prikazivanja" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Prag pritiska" -#~ msgid "Do nothing" -#~ msgstr "ništa" +#, fuzzy +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Ako se ikone preklapaju na doku, prikazuje se samo ikona Prikaži " +#~ "programe." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Promena radnog prostora klizanjem po doku" #~ msgid "Only consider windows of the focused application" #~ msgstr "Razmatraj samo prozor fokusiranog programa" diff -Nru gnome-shell-extension-dashtodock-57/po/sr.po gnome-shell-extension-dashtodock-60/po/sr.po --- gnome-shell-extension-dashtodock-57/po/sr.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/sr.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2015-07-29 18:11+0200\n" "Last-Translator: Слободан Терзић \n" "Language-Team: \n" @@ -19,40 +19,50 @@ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "примарном монитору" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "секундарном монитору" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "десно" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "лево" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Поставке интелигентног самосакривања" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Поврати основно" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Приказ покренутих програма" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Прилагоћавање прозирности" -#: prefs.js:419 +#: prefs.js:514 #, fuzzy msgid "Customize running indicators" msgstr "Приказ покренутих програма" +#: appIcons.js:804 +#, fuzzy +msgid "All Windows" +msgstr "Избегавање розора" + #: Settings.ui.h:1 #, fuzzy msgid "Customize indicator style" @@ -71,6 +81,39 @@ msgstr "" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Прикажи док на" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Застој скривања" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -78,66 +121,71 @@ "Кад је постављено на минимизовање, дупли клик минимизује све прозоре " "програма." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Радња шифт+клика" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "минимиуј прозор" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "минимиуј прозор" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "покрени нови примерак" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "кружење кроз прозоре" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Радња клика" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Радња шифт+клика" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Прикажи док на" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "секундарном монитору" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Позиција на екрану" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "дно" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "врх" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -145,94 +193,123 @@ "Сакриј док када је на путу прозора тренутног програма. Доступне су финије " "поставке." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Интелигентно самосакривање" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Ограничење величине дока" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Режим панела: проширен до ивица екрана" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Ограничење величине икона" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Устаљена величина икона: клизајте за друге иконе" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Позиција и величина" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Приказ омиљених програма" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Приказ покренутих програма" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Уколико је онемогућено, ове поставке су доступне кроз алатку за лицкање или " "веб сајт проширења." -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Приказ иконе Прикажи програме" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Помери дугме програма на почетак дока" -#: Settings.ui.h:35 +#: Settings.ui.h:44 #, fuzzy msgid "Animate Show Applications." msgstr "Приказ иконе Прикажи програме" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Понашање при клику на покренути програм." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Радња клика" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "минимизуј" -#: Settings.ui.h:39 +#: Settings.ui.h:51 #, fuzzy -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Ако се иконе преклапају на доку, приказује се само икона Прикажи " -"програме." +msgid "Minimize or overview" +msgstr "минимиуј прозор" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Промена радног простора клизањем по доку" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Понашање при клику на покренути програм." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Радња клика" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "ништа" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Понашање" -#: Settings.ui.h:42 +#: Settings.ui.h:57 #, fuzzy msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " @@ -241,67 +318,71 @@ "Неколико поставки је намењено уграђивању дока у основну тему Гнома. " "Алтернативно, посебне поставке се могу уредити испод." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Користи уграђену тему" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Чува простор сужавањем попуне и опсега ивица." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Скупи плочу" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Приказује тачку за сваки прозор програма." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Приказ индикаторa бројача прозора." -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Прилагоди прозирност позадине плоче." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Прилагоћавање прозирности" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Прозирност" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Изглед" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "верзија:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Помера плочу из глобалног приказа, претварајући је у док" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Направи" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Веб страница" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the ГНУову Општу Јавну лиценцу, верзија 2 или каснија, за детаље." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "О програму" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Прикажи док прелазом миша пеко ивице екрана." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Самоскривање" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Приказ притиском: захтева притисак за приказ дока" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Приказује док када није на путу прозорима програма." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Избегавање розора" -#: Settings.ui.h:67 +#: Settings.ui.h:84 #, fuzzy msgid "All windows" msgstr "Избегавање розора" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "" -#: Settings.ui.h:69 +#: Settings.ui.h:86 #, fuzzy msgid "Only maximized windows" msgstr "минимиуј прозор" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Трајање(а) анимације" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0,000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Застој скривања" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Застој приказивања" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Праг притиска" -#~ msgid "Do nothing" -#~ msgstr "ништа" +#, fuzzy +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Ако се иконе преклапају на доку, приказује се само икона Прикажи " +#~ "програме." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Промена радног простора клизањем по доку" #~ msgid "Only consider windows of the focused application" #~ msgstr "Разматрај само прозор фокусираног програма" diff -Nru gnome-shell-extension-dashtodock-57/po/sv.po gnome-shell-extension-dashtodock-60/po/sv.po --- gnome-shell-extension-dashtodock-57/po/sv.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/sv.po 2017-06-21 21:44:12.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2016-07-01 18:37+0200\n" "Last-Translator: Anders Jonsson \n" "Language-Team: Swedish \n" @@ -17,39 +17,48 @@ "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.8\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Primär skärm" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "Sekundär skärm " -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Höger" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Vänster" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Anpassning av intelligent automatiskt döljande" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Återställ till standardvärden" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Visa körande program" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Anpassa indikatorstil" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Anpassa körningsindikatorer" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Alla fönster" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Anpassa indikatorstil" @@ -67,6 +76,39 @@ msgstr "Kantbredd" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Visa dockan på" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Tidsgräns för att dölja (s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -74,66 +116,71 @@ "Då inställd till minimera så minimerar dubbelklick alla fönster för " "programmet." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Skift+klick-åtgärd" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Minimera fönster" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Minimera fönster" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Starta ny instans" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "Växla mellan fönster" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Klickåtgärd" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Skift+klick-åtgärd" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Visa dockan på" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "Sekundär skärm " + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Position på skärmen" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Nederkant" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Överkant" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -141,91 +188,121 @@ "Dölj dockan då den är i vägen för ett fönster för det aktuella programmet. " "Mer förfinade inställningar finns tillgängliga." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Intelligent automatiskt döljande" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Storleksgräns för docka" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Panelläge: sträck ut till skärmkanten" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Storleksgräns för ikoner" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Fast ikonstorlek: rulla för att avslöja andra ikoner" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Position och storlek" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Visa favoritprogram" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Visa körande program" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Om inaktiverad är dessa inställningar tillgängliga från gnome-tweak-tool " "eller webbplatsen för utökningar." -#: Settings.ui.h:33 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "Visa Program-ikon" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Flytta programknappen till början på dockan." -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Animera Visa program." -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Beteende då ikonen för ett körande program klickas på." -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Klickåtgärd" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Minimera" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Med fast ikonstorlek är endast kanten på dockan och Visa program-" -"ikonen aktiva." +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Minimera fönster" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Växla arbetsyta genom att rulla på dockan" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Beteende då ikonen för ett körande program klickas på." -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Klickåtgärd" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Gör ingenting" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Beteende" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -233,68 +310,72 @@ "Några anpassningar för att integrera dockan med GNOME:s standardtema. " "Alternativt kan specifika alternativ aktiveras nedan." -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Använd inbyggt tema" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Spara utrymme genom att minska utfyllnad och kantradie." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Krymp snabbstartspanelen" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Visa en punkt för varje fönster för programmet." -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Visa fönsterräknarindikatorer" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "Ställ in bakgrundsfärg för snabbstartspanelen." -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "Anpassa färgen för snabbstartspanelen" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Justera opacitet för bakgrunden till snabbstartspanelen." -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Anpassa opacitet" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Opacitet" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Utseende" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "version: " -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "" "Flyttar snabbstartspanelen från översiktsvyn och förvandlar den till en docka" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Skapat av" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Webbsida" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU " "General Public License, version 2 eller senare för detaljer." -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "Om" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Visa dockan genom att hovra musen över skärmkanten." -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Dölj automatiskt" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Tryck för att visa: kräv tryck för att visa dockan" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Aktivera i helskärmsläge" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Visa dockan då den inte är i vägen för programfönster." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Undvik fönster" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "Alla fönster" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Endast fokuserade programs fönster" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Endast maximerade fönster" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Längd på animering (s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Tidsgräns för att dölja (s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Tidsgräns för att visa (s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Tröskelvärde för tryck" -#~ msgid "Do nothing" -#~ msgstr "Gör ingenting" +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Med fast ikonstorlek är endast kanten på dockan och Visa program-" +#~ "ikonen aktiva." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Växla arbetsyta genom att rulla på dockan" diff -Nru gnome-shell-extension-dashtodock-57/po/tr.po gnome-shell-extension-dashtodock-60/po/tr.po --- gnome-shell-extension-dashtodock-57/po/tr.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/tr.po 2017-06-21 21:44:12.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2016-09-04 21:25+0300\n" "Last-Translator: Çağatay Yiğit Şahin \n" "Language: tr\n" @@ -18,39 +18,48 @@ "X-Generator: Gtranslator 2.91.7\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "Ana Ekran" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "İkincil Ekran" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "Sağ" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "Sol" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "Akıllı otomatik saklama ayarları" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "Öntanımlı ayarlara geri dön" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "Çalışan uygulamaları göster" + +#: prefs.js:443 #, fuzzy msgid "Customize middle-click behavior" msgstr "Panel biçemini ayarla" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "Çalışan uygulamaları göster" +#: appIcons.js:804 +msgid "All Windows" +msgstr "Bütün pencereler" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "Panel biçemini ayarla" @@ -68,6 +77,39 @@ msgstr "Çerçeve genişliği" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "Panelde göster" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "Gecikme zaman aşımı(s)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." @@ -75,66 +117,71 @@ "En küçüğe ayarlandığında, tüm uygulama pencerelerini küçültmek için çift " "tıklayın." -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Shift+Tıkla hareketi" -#: Settings.ui.h:7 +#: Settings.ui.h:14 #, fuzzy msgid "Raise window" msgstr "Pencereyi küçült" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "Pencereyi küçült" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "Yeni durumu başlat" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "Penceler döngüsü" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "" -#: Settings.ui.h:13 +#: Settings.ui.h:20 #, fuzzy msgid "Middle-Click action" msgstr "Hareket için tıkla" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "" -#: Settings.ui.h:15 +#: Settings.ui.h:22 #, fuzzy msgid "Shift+Middle-Click action" msgstr "Shift+Tıkla hareketi" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "Panelde göster" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "İkincil Ekran" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "Ekrandaki konumu" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "Alt" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "Üst" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -142,92 +189,122 @@ "Etkin uygulamanın penceresini engellediğinde paneli gizle. Daha ileri " "ayarlar mevcuttur." -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "Akıllı otogizleme" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Panel ölçü sınırı" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "Panel modu: Ekran köşelerine genişlet" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "Simge ölçü sınırı" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "Sabit simge ölçüsü: Diğer simgeleri görmek için kaydır" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "Konum ve ölçü" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "Kullanılan uygulamaları göster" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "Çalışan uygulamaları göster" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "" "Eğer engellenmiş ise, bu ayarlara Gnome-tweak-tool ile veya Gnome extension " "sitesinden ulaşılabilir." -#: Settings.ui.h:33 +#: Settings.ui.h:42 #, fuzzy msgid "Show Applications icon" msgstr "Uygulamaları Göster simgesini göster" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "Uygulamalar düğmesini panelin başlangıcına taşı " -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "Uygulamaları Göster simgesini göster" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "Çalışan uygulama simgesine tıkladığındaki davranış" -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "Hareket için tıkla" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "Küçült" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"Simge boyutu sabitlenmişse, sadece panelin kenarları ve Uygulamaları " -"Göster simgesi etkindir." +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "Pencereyi küçült" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "Panel üzerinde kaydırarak çalışma alanını değiştir" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "Çalışan uygulama simgesine tıkladığındaki davranış" -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "Hareket için tıkla" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "Hiçbir şey yapma" + +#: Settings.ui.h:55 +msgid "Switch workspace" +msgstr "" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "Davranış" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -235,67 +312,71 @@ "Varsayılan GNOME temasıyla bütünleşme için birkaç kişiselleştirme. Tercihen, " "belirli ayarlar aşağıdan etkinleştirilebilir" -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "Varsayılan temayı kullan" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "Yer kazanmak için dolguyu ve kenar çevresini azalt." -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "Paneli daralt" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "Uygulamanın her penceresi için bir nokta göster" -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "Pencere sayacını göster" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "Panel arkaplanının saydamlığını ayarla" -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "Saydamlığı ayarla" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "Saydamlık" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "Görünüm" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "Sürüm: " -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "Paneli genel görünümden ana ekrana taşır" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "Tarafından oluşturulmuştur:" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "Web sayfası" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU Genel Halk Lisansı, sürüm 2 veya üstü " "tıklayın" -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "Hakkında" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "Fare Ekran köşeleri üzerinde iken paneli göster. " -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "Otogizleme" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "Göstermek için it: Panelin gösterilmesi icin etki gerektirir." -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "Tam ekran modunda etkinleştir" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "Uygulama penceresini engellemediğinde paneli göster." -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "Pencereleri atlat" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "Bütün pencereler" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "Sadece odaklanan uygulamanın pencereleri" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "Sadece büyütülen pencereler" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "Animasyon süresi(s)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "Gecikme zaman aşımı(s)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "Zaman aşımını göster(s)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "Etki eşiği" -#~ msgid "Do nothing" -#~ msgstr "Hiçbir şey yapma" +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "Simge boyutu sabitlenmişse, sadece panelin kenarları ve Uygulamaları " +#~ "Göster simgesi etkindir." + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "Panel üzerinde kaydırarak çalışma alanını değiştir" #~ msgid "Only consider windows of the focused application" #~ msgstr "Sadece açık olan uygulama penceresini dikkate al" diff -Nru gnome-shell-extension-dashtodock-57/po/zh_CN.po gnome-shell-extension-dashtodock-60/po/zh_CN.po --- gnome-shell-extension-dashtodock-57/po/zh_CN.po 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/po/zh_CN.po 2017-06-21 21:44:12.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Dash to Dock\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-09 23:29+0100\n" +"POT-Creation-Date: 2017-06-04 12:35+0100\n" "PO-Revision-Date: 2016-10-02 23:45+0800\n" "Last-Translator: 绿色圣光 \n" "Language-Team: Chinese (Simplified) <>\n" @@ -19,38 +19,47 @@ "X-Generator: Gtranslator 2.91.7\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: prefs.js:98 +#: prefs.js:113 msgid "Primary monitor" msgstr "主显示器" -#: prefs.js:107 prefs.js:114 +#: prefs.js:122 prefs.js:129 msgid "Secondary monitor " msgstr "副显示器" -#: prefs.js:139 Settings.ui.h:21 +#: prefs.js:154 Settings.ui.h:29 msgid "Right" msgstr "右侧" -#: prefs.js:140 Settings.ui.h:18 +#: prefs.js:155 Settings.ui.h:26 msgid "Left" msgstr "左侧" -#: prefs.js:190 +#: prefs.js:205 msgid "Intelligent autohide customization" msgstr "智能自动隐藏自定义" -#: prefs.js:197 prefs.js:353 +#: prefs.js:212 prefs.js:393 prefs.js:450 msgid "Reset to defaults" msgstr "重置为默认值" -#: prefs.js:346 +#: prefs.js:386 +#, fuzzy +msgid "Show dock and application numbers" +msgstr "显示正在运行的应用程序" + +#: prefs.js:443 msgid "Customize middle-click behavior" msgstr "自定义中键点击行为" -#: prefs.js:419 +#: prefs.js:514 msgid "Customize running indicators" msgstr "自定义“运行中”指示器" +#: appIcons.js:804 +msgid "All Windows" +msgstr "所有窗口" + #: Settings.ui.h:1 msgid "Customize indicator style" msgstr "自定义指示器样式" @@ -68,68 +77,106 @@ msgstr "边框宽度" #: Settings.ui.h:5 +msgid "Number overlay" +msgstr "" + +#: Settings.ui.h:6 +msgid "" +"Temporarily show the application numbers over the icons, corresponding to " +"the shortcut." +msgstr "" + +#: Settings.ui.h:7 +#, fuzzy +msgid "Show the dock if it is hidden" +msgstr "显示 dock 于" + +#: Settings.ui.h:8 +msgid "" +"If using autohide, the dock will appear for a short time when triggering the " +"shortcut." +msgstr "" + +#: Settings.ui.h:9 +msgid "Shortcut for the options above" +msgstr "" + +#: Settings.ui.h:10 +msgid "Syntax: , , , " +msgstr "" + +#: Settings.ui.h:11 +msgid "Hide timeout (s)" +msgstr "隐藏超时时间(秒)" + +#: Settings.ui.h:12 msgid "" "When set to minimize, double clicking minimizes all the windows of the " "application." msgstr "当设置为最小化时,双击会最小化应用程序的所有窗口。" -#: Settings.ui.h:6 +#: Settings.ui.h:13 msgid "Shift+Click action" msgstr "Shift+点击动作" -#: Settings.ui.h:7 +#: Settings.ui.h:14 msgid "Raise window" msgstr "提升窗口" -#: Settings.ui.h:8 +#: Settings.ui.h:15 msgid "Minimize window" msgstr "最小化窗口" -#: Settings.ui.h:9 +#: Settings.ui.h:16 msgid "Launch new instance" msgstr "启动新实例" -#: Settings.ui.h:10 +#: Settings.ui.h:17 msgid "Cycle through windows" msgstr "在窗口间循环" -#: Settings.ui.h:11 +#: Settings.ui.h:18 msgid "Quit" msgstr "退出" -#: Settings.ui.h:12 +#: Settings.ui.h:19 msgid "Behavior for Middle-Click." msgstr "中键点击的行为。" -#: Settings.ui.h:13 +#: Settings.ui.h:20 msgid "Middle-Click action" msgstr "中键点击动作" -#: Settings.ui.h:14 +#: Settings.ui.h:21 msgid "Behavior for Shift+Middle-Click." msgstr "Shift+中键点击的行为" -#: Settings.ui.h:15 +#: Settings.ui.h:22 msgid "Shift+Middle-Click action" msgstr "Shift+中键点击动作" -#: Settings.ui.h:16 +#: Settings.ui.h:23 msgid "Show the dock on" msgstr "显示 dock 于" -#: Settings.ui.h:17 +#: Settings.ui.h:24 +#, fuzzy +msgid "Show on all monitors." +msgstr "副显示器" + +#: Settings.ui.h:25 msgid "Position on screen" msgstr "屏幕中的位置" -#: Settings.ui.h:19 +#: Settings.ui.h:27 msgid "Bottom" msgstr "底部" -#: Settings.ui.h:20 +#: Settings.ui.h:28 msgid "Top" msgstr "顶部" -#: Settings.ui.h:22 +#: Settings.ui.h:30 msgid "" "Hide the dock when it obstructs a window of the the current application. " "More refined settings are available." @@ -137,88 +184,120 @@ "当 dock 会挡住当前应用程序的某个窗口时,将其隐藏。点击右侧设置按钮可以设置更" "多细节。" -#: Settings.ui.h:23 +#: Settings.ui.h:31 msgid "Intelligent autohide" msgstr "智能隐藏" -#: Settings.ui.h:24 +#: Settings.ui.h:32 msgid "Dock size limit" msgstr "Dock 大小限制" -#: Settings.ui.h:25 +#: Settings.ui.h:33 msgid "Panel mode: extend to the screen edge" msgstr "面板模式:延伸到屏幕边缘" -#: Settings.ui.h:26 +#: Settings.ui.h:34 msgid "Icon size limit" msgstr "图标大小限制" -#: Settings.ui.h:27 +#: Settings.ui.h:35 msgid "Fixed icon size: scroll to reveal other icons" msgstr "固定图标大小:滚动显示其它图标" -#: Settings.ui.h:28 +#: Settings.ui.h:36 msgid "Position and size" msgstr "位置和大小" -#: Settings.ui.h:29 +#: Settings.ui.h:37 msgid "Show favorite applications" msgstr "显示收藏的应用程序" -#: Settings.ui.h:30 +#: Settings.ui.h:38 msgid "Show running applications" msgstr "显示正在运行的应用程序" -#: Settings.ui.h:31 +#: Settings.ui.h:39 msgid "Isolate workspaces." msgstr "隔离工作区。" -#: Settings.ui.h:32 +#: Settings.ui.h:40 +msgid "Show open windows previews." +msgstr "" + +#: Settings.ui.h:41 +#, fuzzy msgid "" -"If disabled, these settings are acccessible from gnome-tweak-tool or the " +"If disabled, these settings are accessible from gnome-tweak-tool or the " "extension website." msgstr "禁用之后,可以通过 gnome-tweak-tool 或者扩展网站来访问设置。" -#: Settings.ui.h:33 +#: Settings.ui.h:42 msgid "Show Applications icon" msgstr "显示“应用程序”图标" -#: Settings.ui.h:34 +#: Settings.ui.h:43 msgid "Move the applications button at the beginning of the dock." msgstr "将应用程序按钮移至 dock 的起始位置。" -#: Settings.ui.h:35 +#: Settings.ui.h:44 msgid "Animate Show Applications." msgstr "动画“显示应用程序”。" -#: Settings.ui.h:36 +#: Settings.ui.h:45 +msgid "Launchers" +msgstr "" + +#: Settings.ui.h:46 +msgid "" +"Enable Super+(0-9) as shortcuts to activate apps. It can also be used " +"together with Shift and Ctrl." +msgstr "" + +#: Settings.ui.h:47 +msgid "Use keyboard shortcuts to activate apps" +msgstr "" + +#: Settings.ui.h:48 msgid "Behaviour when clicking on the icon of a running application." msgstr "点击一个正在运行的应用程序图标时的行为。" -#: Settings.ui.h:37 +#: Settings.ui.h:49 msgid "Click action" msgstr "点击动作" -#: Settings.ui.h:38 +#: Settings.ui.h:50 msgid "Minimize" msgstr "最小化" -#: Settings.ui.h:39 -msgid "" -"With fixed icon size, only the edge of the dock and the Show " -"Applications icon are active." -msgstr "" -"如果固定了图标大小,只有 dock 边缘和“显示应用程序”图标会激活该功能。" +#: Settings.ui.h:51 +#, fuzzy +msgid "Minimize or overview" +msgstr "最小化窗口" -#: Settings.ui.h:40 -msgid "Switch workspace by scrolling on the dock" -msgstr "通过滚动 dock 来切换工作区" +#: Settings.ui.h:52 +#, fuzzy +msgid "Behaviour when scrolling on the icon of an application." +msgstr "点击一个正在运行的应用程序图标时的行为。" -#: Settings.ui.h:41 +#: Settings.ui.h:53 +#, fuzzy +msgid "Scroll action" +msgstr "点击动作" + +#: Settings.ui.h:54 +msgid "Do nothing" +msgstr "无动作" + +#: Settings.ui.h:55 +#, fuzzy +msgid "Switch workspace" +msgstr "一次切换一个工作区" + +#: Settings.ui.h:56 msgid "Behavior" msgstr "行为" -#: Settings.ui.h:42 +#: Settings.ui.h:57 msgid "" "Few customizations meant to integrate the dock with the default GNOME theme. " "Alternatively, specific options can be enabled below." @@ -226,67 +305,71 @@ "几个自定义项可以将 dock 整合到默认 GNOME 主题中。或者,也可以启动下面的几个特" "殊选项。" -#: Settings.ui.h:43 +#: Settings.ui.h:58 msgid "Use built-in theme" msgstr "使用内置主题" -#: Settings.ui.h:44 +#: Settings.ui.h:59 msgid "Save space reducing padding and border radius." msgstr "减小填充和边框半径以节省空间。" -#: Settings.ui.h:45 +#: Settings.ui.h:60 msgid "Shrink the dash" msgstr "收缩 dash" -#: Settings.ui.h:46 +#: Settings.ui.h:61 msgid "Show a dot for each windows of the application." msgstr "为应用程序的每个窗口显示一个点。" -#: Settings.ui.h:47 +#: Settings.ui.h:62 msgid "Show windows counter indicators" msgstr "显示窗口个数指示器" -#: Settings.ui.h:48 +#: Settings.ui.h:63 msgid "Set the background color for the dash." msgstr "设置 dash 的背景颜色。" -#: Settings.ui.h:49 +#: Settings.ui.h:64 msgid "Customize the dash color" msgstr "自定义 dash 颜色" -#: Settings.ui.h:50 +#: Settings.ui.h:65 msgid "Tune the dash background opacity." msgstr "调整 dash 的背景透明度。" -#: Settings.ui.h:51 +#: Settings.ui.h:66 msgid "Customize opacity" msgstr "自定义透明度" -#: Settings.ui.h:52 +#: Settings.ui.h:67 msgid "Opacity" msgstr "不透明度" -#: Settings.ui.h:53 +#: Settings.ui.h:68 +msgid "Force straight corner\n" +msgstr "" + +#: Settings.ui.h:70 msgid "Appearance" msgstr "外观" -#: Settings.ui.h:54 +#: Settings.ui.h:71 msgid "version: " msgstr "版本:" -#: Settings.ui.h:55 +#: Settings.ui.h:72 msgid "Moves the dash out of the overview transforming it in a dock" msgstr "让 dash 跳出概览之外,转化为一个 dock" -#: Settings.ui.h:56 +#: Settings.ui.h:73 msgid "Created by" msgstr "作者:" -#: Settings.ui.h:57 +#: Settings.ui.h:74 msgid "Webpage" msgstr "网站主页" -#: Settings.ui.h:58 +#: Settings.ui.h:75 msgid "" "This program comes with ABSOLUTELY NO WARRANTY.\n" "See the GNU " "通用公共许可证,第二版或更高版本以了解更多细节。" -#: Settings.ui.h:60 +#: Settings.ui.h:77 msgid "About" msgstr "关于" -#: Settings.ui.h:61 +#: Settings.ui.h:78 msgid "Show the dock by mouse hover on the screen edge." msgstr "鼠标移至屏幕边缘时显示 dock" -#: Settings.ui.h:62 +#: Settings.ui.h:79 msgid "Autohide" msgstr "自动隐藏" -#: Settings.ui.h:63 +#: Settings.ui.h:80 msgid "Push to show: require pressure to show the dock" msgstr "推压以显示:需要一定压力来显示 dock" -#: Settings.ui.h:64 +#: Settings.ui.h:81 msgid "Enable in fullscreen mode" msgstr "在全屏模式下启用" -#: Settings.ui.h:65 +#: Settings.ui.h:82 msgid "Show the dock when it doesn't obstruct application windows." msgstr "在不妨碍应用程序窗口时,显示 dock。" -#: Settings.ui.h:66 +#: Settings.ui.h:83 msgid "Dodge windows" msgstr "避开窗口" -#: Settings.ui.h:67 +#: Settings.ui.h:84 msgid "All windows" msgstr "所有窗口" -#: Settings.ui.h:68 +#: Settings.ui.h:85 msgid "Only focused application's windows" msgstr "仅焦点程序窗口" -#: Settings.ui.h:69 +#: Settings.ui.h:86 msgid "Only maximized windows" msgstr "仅最大化窗口" -#: Settings.ui.h:70 +#: Settings.ui.h:87 msgid "Animation duration (s)" msgstr "动画持续时间(秒)" -#: Settings.ui.h:71 +#: Settings.ui.h:88 msgid "0.000" msgstr "0.000" -#: Settings.ui.h:72 -msgid "Hide timeout (s)" -msgstr "隐藏超时时间(秒)" - -#: Settings.ui.h:73 +#: Settings.ui.h:89 msgid "Show timeout (s)" msgstr "显示超时时间(秒)" -#: Settings.ui.h:74 +#: Settings.ui.h:90 msgid "Pressure threshold" msgstr "压力阈值" -#~ msgid "Do nothing" -#~ msgstr "无动作" +#~ msgid "" +#~ "With fixed icon size, only the edge of the dock and the Show " +#~ "Applications icon are active." +#~ msgstr "" +#~ "如果固定了图标大小,只有 dock 边缘和“显示应用程序”图标会激活该功" +#~ "能。" + +#~ msgid "Switch workspace by scrolling on the dock" +#~ msgstr "通过滚动 dock 来切换工作区" #~ msgid "Main Settings" #~ msgstr "主设置" @@ -419,9 +505,6 @@ #~ msgid "Optional features" #~ msgstr "可选功能" -#~ msgid "Switch one workspace at a time" -#~ msgstr "一次切换一个工作区" - #~ msgid "Only a 1px wide area close to the screen edge is active" #~ msgstr "仅当靠近屏幕边缘1像素宽区域时启用" diff -Nru gnome-shell-extension-dashtodock-57/prefs.js gnome-shell-extension-dashtodock-60/prefs.js --- gnome-shell-extension-dashtodock-57/prefs.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/prefs.js 2017-06-21 21:44:12.000000000 +0000 @@ -8,9 +8,11 @@ const Lang = imports.lang; const Mainloop = imports.mainloop; +// Use __ () and N__() for the extension gettext domain, and reuse +// the shell domain with the default _() and N_() const Gettext = imports.gettext.domain('dashtodock'); -const _ = Gettext.gettext; -const N_ = function(e) { return e }; +const __ = Gettext.gettext; +const N__ = function(e) { return e }; const ExtensionUtils = imports.misc.extensionUtils; const Me = ExtensionUtils.getCurrentExtension(); @@ -108,7 +110,7 @@ let monitor = this._settings.get_int('preferred-monitor'); // Add primary monitor with index 0, because in GNOME Shell the primary monitor is always 0 - this._builder.get_object('dock_monitor_combo').append_text(_('Primary monitor')); + this._builder.get_object('dock_monitor_combo').append_text(__('Primary monitor')); this._monitors.push(0); // Add connected monitors @@ -117,14 +119,14 @@ if (i !== primary_monitor) { ctr++; this._monitors.push(ctr); - this._builder.get_object('dock_monitor_combo').append_text(_('Secondary monitor ') + ctr); + this._builder.get_object('dock_monitor_combo').append_text(__('Secondary monitor ') + ctr); } } // If one of the external monitor is set as preferred, show it even if not attached if ((monitor >= n_monitors) && (monitor !== primary_monitor)) { this._monitors.push(monitor) - this._builder.get_object('dock_monitor_combo').append_text(_('Secondary monitor ') + ++ctr); + this._builder.get_object('dock_monitor_combo').append_text(__('Secondary monitor ') + ++ctr); } this._builder.get_object('dock_monitor_combo').set_active(this._monitors.indexOf(monitor)); @@ -149,8 +151,8 @@ if (this._rtl) { /* Left is Right in rtl as a setting */ - this._builder.get_object('position_left_button').set_label(_('Right')); - this._builder.get_object('position_right_button').set_label(_('Left')); + this._builder.get_object('position_left_button').set_label(__('Right')); + this._builder.get_object('position_right_button').set_label(__('Left')); } // Intelligent autohide options @@ -200,14 +202,14 @@ // Create dialog for intelligent autohide advanced settings this._builder.get_object('intelligent_autohide_button').connect('clicked', Lang.bind(this, function() { - let dialog = new Gtk.Dialog({ title: _('Intelligent autohide customization'), + let dialog = new Gtk.Dialog({ title: __('Intelligent autohide customization'), transient_for: this.widget.get_toplevel(), use_header_bar: true, modal: true }); // GTK+ leaves positive values for application-defined response ids. // Use +1 for the reset action - dialog.add_button(_('Reset to defaults'), 1); + dialog.add_button(__('Reset to defaults'), 1); let box = this._builder.get_object('intelligent_autohide_advanced_settings_box'); dialog.get_content_area().add(box); @@ -312,6 +314,10 @@ this._builder.get_object('application_button_isolation_button'), 'active', Gio.SettingsBindFlags.DEFAULT); + this._settings.bind('isolate-monitors', + this._builder.get_object('application_button_monitor_isolation_button'), + 'active', + Gio.SettingsBindFlags.DEFAULT); this._settings.bind('show-windows-preview', this._builder.get_object('windows_preview_button'), 'active', @@ -381,14 +387,14 @@ // Create dialog for number overlay options this._builder.get_object('overlay_button').connect('clicked', Lang.bind(this, function() { - let dialog = new Gtk.Dialog({ title: _('Show dock and application numbers'), + let dialog = new Gtk.Dialog({ title: __('Show dock and application numbers'), transient_for: this.widget.get_toplevel(), use_header_bar: true, modal: true }); // GTK+ leaves positive values for application-defined response ids. // Use +1 for the reset action - dialog.add_button(_('Reset to defaults'), 1); + dialog.add_button(__('Reset to defaults'), 1); let box = this._builder.get_object('box_overlay_shortcut'); dialog.get_content_area().add(box); @@ -438,14 +444,14 @@ // Create dialog for middle-click options this._builder.get_object('middle_click_options_button').connect('clicked', Lang.bind(this, function() { - let dialog = new Gtk.Dialog({ title: _('Customize middle-click behavior'), + let dialog = new Gtk.Dialog({ title: __('Customize middle-click behavior'), transient_for: this.widget.get_toplevel(), use_header_bar: true, modal: true }); // GTK+ leaves positive values for application-defined response ids. // Use +1 for the reset action - dialog.add_button(_('Reset to defaults'), 1); + dialog.add_button(__('Reset to defaults'), 1); let box = this._builder.get_object('box_middle_click_options'); dialog.get_content_area().add(box); @@ -509,7 +515,7 @@ // Create dialog for running dots advanced settings this._builder.get_object('running_dots_advance_settings_button').connect('clicked', Lang.bind(this, function() { - let dialog = new Gtk.Dialog({ title: _('Customize running indicators'), + let dialog = new Gtk.Dialog({ title: __('Customize running indicators'), transient_for: this.widget.get_toplevel(), use_header_bar: true, modal: true }); diff -Nru gnome-shell-extension-dashtodock-57/schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml gnome-shell-extension-dashtodock-60/schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml --- gnome-shell-extension-dashtodock-57/schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/schemas/org.gnome.shell.extensions.dash-to-dock.gschema.xml 2017-06-21 21:44:12.000000000 +0000 @@ -6,7 +6,8 @@ - + + @@ -162,6 +163,11 @@ Provide workspace isolation Dash shows only windows from the currentworkspace + + false + Provide monitor isolation + Dash shows only windows from the monitor + true Show preview of the open windows diff -Nru gnome-shell-extension-dashtodock-57/Settings.ui gnome-shell-extension-dashtodock-60/Settings.ui --- gnome-shell-extension-dashtodock-57/Settings.ui 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/Settings.ui 2017-06-21 21:44:12.000000000 +0000 @@ -576,6 +576,8 @@ Minimize window Launch new instance Cycle through windows + Minimize or overview + Show window previews Quit @@ -645,6 +647,8 @@ Minimize window Launch new instance Cycle through windows + Minimize or overview + Show window previews Quit @@ -714,6 +718,8 @@ Minimize window Launch new instance Cycle through windows + Minimize or overview + Show window previews Quit @@ -1369,6 +1375,22 @@ + + Isolate monitors. + True + True + False + 12 + 0 + True + + + 0 + 3 + 2 + + + True True @@ -1738,6 +1760,7 @@ Launch new instance Cycle through windows Minimize or overview + Show window previews @@ -2908,7 +2931,7 @@ True True - 0.000 + 0.000 pressure_threshold_adjustment diff -Nru gnome-shell-extension-dashtodock-57/stylesheet.css gnome-shell-extension-dashtodock-60/stylesheet.css --- gnome-shell-extension-dashtodock-57/stylesheet.css 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/stylesheet.css 2017-06-21 21:44:12.000000000 +0000 @@ -93,4 +93,17 @@ #dashtodockContainer.dashtodock #dash { background: #2e3436; -} \ No newline at end of file +} + +#dashtodockContainer .number-overlay { + color: rgba(255,255,255,1); + background-color: rgba(0,0,0,0.8); + text-align: center; +} + +#dashtodockPreviewSeparator.popup-separator-menu-item-horizontal { + width: 1px; + height: auto; + border-right-width: 1px; + margin: 32px 0px; +} diff -Nru gnome-shell-extension-dashtodock-57/theming.js gnome-shell-extension-dashtodock-60/theming.js --- gnome-shell-extension-dashtodock-57/theming.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/theming.js 2017-06-21 21:44:12.000000000 +0000 @@ -23,7 +23,7 @@ const Workspace = imports.ui.workspace; const Me = imports.misc.extensionUtils.getCurrentExtension(); -const Convenience = Me.imports.convenience; +const Utils = Me.imports.utils; /** * Manage theme customization and custom theme support @@ -33,7 +33,7 @@ _init: function(settings, actor, dash) { this._settings = settings; - this._signalsHandler = new Convenience.GlobalSignalsHandler(); + this._signalsHandler = new Utils.GlobalSignalsHandler(); this._bindSettingsChanges(); this._actor = actor; this._dash = dash; @@ -128,7 +128,7 @@ // We want to find the inside border-color of the dock because it is // the side most visible to the user. We do this by finding the side // opposite the position - let position = Convenience.getPosition(this._settings); + let position = Utils.getPosition(this._settings); let side = position + 2; if (side > 3) side = Math.abs(side - 4); @@ -212,7 +212,7 @@ return; let newStyle = ''; - let position = Convenience.getPosition(this._settings); + let position = Utils.getPosition(this._settings); if (!this._settings.get_boolean('custom-theme-shrink')) { // obtain theme border settings diff -Nru gnome-shell-extension-dashtodock-57/utils.js gnome-shell-extension-dashtodock-60/utils.js --- gnome-shell-extension-dashtodock-57/utils.js 1970-01-01 00:00:00.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/utils.js 2017-06-21 21:44:12.000000000 +0000 @@ -0,0 +1,123 @@ +const Clutter = imports.gi.Clutter; +const Lang = imports.lang; +const St = imports.gi.St; + +/** + * Simplify global signals and function injections handling + * abstract class + */ +const BasicHandler = new Lang.Class({ + Name: 'DashToDock.BasicHandler', + + _init: function() { + this._storage = new Object(); + }, + + add: function(/* unlimited 3-long array arguments */) { + // Convert arguments object to array, concatenate with generic + let args = Array.concat('generic', Array.slice(arguments)); + // Call addWithLabel with ags as if they were passed arguments + this.addWithLabel.apply(this, args); + }, + + destroy: function() { + for( let label in this._storage ) + this.removeWithLabel(label); + }, + + addWithLabel: function(label /* plus unlimited 3-long array arguments*/) { + if (this._storage[label] == undefined) + this._storage[label] = new Array(); + + // Skip first element of the arguments + for (let i = 1; i < arguments.length; i++) { + this._storage[label].push( this._create(arguments[i])); + } + }, + + removeWithLabel: function(label) { + if (this._storage[label]) { + for (let i = 0; i < this._storage[label].length; i++) + this._remove(this._storage[label][i]); + + delete this._storage[label]; + } + }, + + // Virtual methods to be implemented by subclass + + /** + * Create single element to be stored in the storage structure + */ + _create: function(item) { + throw new Error('no implementation of _create in ' + this); + }, + + /** + * Correctly delete single element + */ + _remove: function(item) { + throw new Error('no implementation of _remove in ' + this); + } +}); + +/** + * Manage global signals + */ +const GlobalSignalsHandler = new Lang.Class({ + Name: 'DashToDock.GlobalSignalHandler', + Extends: BasicHandler, + + _create: function(item) { + let object = item[0]; + let event = item[1]; + let callback = item[2] + let id = object.connect(event, callback); + + return [object, id]; + }, + + _remove: function(item) { + item[0].disconnect(item[1]); + } +}); + +/** + * Manage function injection: both instances and prototype can be overridden + * and restored + */ +const InjectionsHandler = new Lang.Class({ + Name: 'DashToDock.InjectionsHandler', + Extends: BasicHandler, + + _create: function(item) { + let object = item[0]; + let name = item[1]; + let injectedFunction = item[2]; + let original = object[name]; + + object[name] = injectedFunction; + return [object, name, injectedFunction, original]; + }, + + _remove: function(item) { + let object = item[0]; + let name = item[1]; + let original = item[3]; + object[name] = original; + } +}); + +/** + * Return the actual position reverseing left and right in rtl + */ +function getPosition(settings) { + let position = settings.get_enum('dock-position'); + if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL) { + if (position == St.Side.LEFT) + position = St.Side.RIGHT; + else if (position == St.Side.RIGHT) + position = St.Side.LEFT; + } + return position; +} diff -Nru gnome-shell-extension-dashtodock-57/windowPreview.js gnome-shell-extension-dashtodock-60/windowPreview.js --- gnome-shell-extension-dashtodock-57/windowPreview.js 2017-05-17 10:47:17.000000000 +0000 +++ gnome-shell-extension-dashtodock-60/windowPreview.js 2017-06-21 21:44:12.000000000 +0000 @@ -1,16 +1,333 @@ +/* + * Credits: + * This file is based on code from the Dash to Panel extension by Jason DeRose + * and code from the Taskbar extension by Zorin OS + * Some code was also adapted from the upstream Gnome Shell source code. + */ const Clutter = imports.gi.Clutter; const GLib = imports.gi.GLib; const Lang = imports.lang; const St = imports.gi.St; const Mainloop = imports.mainloop; +const Main = imports.ui.main; +const Gtk = imports.gi.Gtk; const Params = imports.misc.params; const PopupMenu = imports.ui.popupMenu; const Tweener = imports.ui.tweener; const Workspace = imports.ui.workspace; +const Me = imports.misc.extensionUtils.getCurrentExtension(); +const Utils = Me.imports.utils; + const PREVIEW_MAX_WIDTH = 250; const PREVIEW_MAX_HEIGHT = 150; + +const WindowPreviewMenu = new Lang.Class({ + Name: 'WindowPreviewMenu', + Extends: PopupMenu.PopupMenu, + + _init: function(source, settings) { + this._dtdSettings = settings; + + let side = Utils.getPosition(settings); + + this.parent(source.actor, 0.5, side); + + // We want to keep the item hovered while the menu is up + this.blockSourceEvents = true; + + this._source = source; + this._app = this._source.app; + let monitorIndex = this._source.monitorIndex; + + this.actor.add_style_class_name('app-well-menu'); + this.actor.set_style('max-width: ' + (Main.layoutManager.monitors[monitorIndex].width - 22) + 'px; ' + + 'max-height: ' + (Main.layoutManager.monitors[monitorIndex].height - 22) + 'px;'); + this.actor.hide(); + + // Chain our visibility and lifecycle to that of the source + this._mappedId = this._source.actor.connect('notify::mapped', Lang.bind(this, function () { + if (!this._source.actor.mapped) + this.close(); + })); + this._destroyId = this._source.actor.connect('destroy', Lang.bind(this, this.destroy)); + + Main.uiGroup.add_actor(this.actor); + + // Change the initialized side where required. + this._arrowSide = side; + this._boxPointer._arrowSide = side; + this._boxPointer._userArrowSide = side; + + this._previewBox = new WindowPreviewList(this._source, this._dtdSettings); + this.addMenuItem(this._previewBox); + }, + + _redisplay: function() { + this._previewBox._shownInitially = false; + this._previewBox._redisplay(); + }, + + popup: function() { + let windows = this._source.getInterestingWindows(); + if (windows.length > 0) { + this._redisplay(); + this.open(); + this.actor.navigate_focus(null, Gtk.DirectionType.TAB_FORWARD, false); + this._source.emit('sync-tooltip'); + } + }, + + destroy: function () { + if (this._mappedId) + this._source.actor.disconnect(this._mappedId); + + if (this._destroyId) + this._source.actor.disconnect(this._destroyId); + + this.parent(); + } + +}); + +const WindowPreviewList = new Lang.Class({ + Name: 'WindowPreviewMenuSection', + Extends: PopupMenu.PopupMenuSection, + + _init: function(source, settings) { + this._dtdSettings = settings; + + this.parent(); + + this.actor = new St.ScrollView({ name: 'dashtodockWindowScrollview', + hscrollbar_policy: Gtk.PolicyType.AUTOMATIC, + vscrollbar_policy: Gtk.PolicyType.AUTOMATIC, + enable_mouse_scrolling: true }); + + this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent )); + + let position = Utils.getPosition(this._dtdSettings); + this.isHorizontal = position == St.Side.BOTTOM || position == St.Side.TOP; + this.box.set_vertical(!this.isHorizontal); + this.box.set_name('dashtodockWindowList'); + this.actor.add_actor(this.box); + this.actor._delegate = this; + + this._shownInitially = false; + + this._source = source; + this.app = source.app; + + this._redisplayId = Main.initializeDeferredWork(this.actor, Lang.bind(this, this._redisplay)); + + this.actor.connect('destroy', Lang.bind(this, this._onDestroy)); + this._stateChangedId = this.app.connect('windows-changed', + Lang.bind(this, + this._queueRedisplay)); + }, + + _queueRedisplay: function () { + Main.queueDeferredWork(this._redisplayId); + }, + + _onScrollEvent: function(actor, event) { + // Event coordinates are relative to the stage but can be transformed + // as the actor will only receive events within his bounds. + let stage_x, stage_y, ok, event_x, event_y, actor_w, actor_h; + [stage_x, stage_y] = event.get_coords(); + [ok, event_x, event_y] = actor.transform_stage_point(stage_x, stage_y); + [actor_w, actor_h] = actor.get_size(); + + // If the scroll event is within a 1px margin from + // the relevant edge of the actor, let the event propagate. + if (event_y >= actor_h - 2) + return Clutter.EVENT_PROPAGATE; + + // Skip to avoid double events mouse + if (event.is_pointer_emulated()) + return Clutter.EVENT_STOP; + + let adjustment, delta; + + if (this.isHorizontal) + adjustment = this.actor.get_hscroll_bar().get_adjustment(); + else + adjustment = this.actor.get_vscroll_bar().get_adjustment(); + + let increment = adjustment.step_increment; + + switch ( event.get_scroll_direction() ) { + case Clutter.ScrollDirection.UP: + delta = -increment; + break; + case Clutter.ScrollDirection.DOWN: + delta = +increment; + break; + case Clutter.ScrollDirection.SMOOTH: + let [dx, dy] = event.get_scroll_delta(); + delta = dy*increment; + delta += dx*increment; + break; + + } + + adjustment.set_value(adjustment.get_value() + delta); + + return Clutter.EVENT_STOP; + }, + + _onDestroy: function() { + this.app.disconnect(this._stateChangedId); + this._stateChangedId = 0; + }, + + _createPreviewItem: function(window) { + let preview = new WindowPreviewMenuItem(window); + return preview; + }, + + _redisplay: function () { + // Remove separator + let nonWinItem = this._getMenuItems().filter(function(actor) { + return !actor._window; + }); + for (let i = 0; i < nonWinItem.length; i++) { + let item = nonWinItem[i]; + item.destroy(); + } + + let children = this._getMenuItems().filter(function(actor) { + return actor._window; + }); + + // Windows currently on the menu + let oldWin = children.map(function(actor) { + return actor._window; + }); + + // All app windows + let newWin = this._source.getInterestingWindows().sort(this.sortWindowsCompareFunction); + + let addedItems = []; + let removedActors = []; + + let newIndex = 0; + let oldIndex = 0; + + while (newIndex < newWin.length || oldIndex < oldWin.length) { + // No change at oldIndex/newIndex + if (oldWin[oldIndex] && + oldWin[oldIndex] == newWin[newIndex]) { + oldIndex++; + newIndex++; + continue; + } + + // Window removed at oldIndex + if (oldWin[oldIndex] && + newWin.indexOf(oldWin[oldIndex]) == -1) { + removedActors.push(children[oldIndex]); + oldIndex++; + continue; + } + + // Window added at newIndex + if (newWin[newIndex] && + oldWin.indexOf(newWin[newIndex]) == -1) { + addedItems.push({ item: this._createPreviewItem(newWin[newIndex]), + pos: newIndex }); + newIndex++; + continue; + } + + // Window moved + let insertHere = newWin[newIndex + 1] && + newWin[newIndex + 1] == oldWin[oldIndex]; + let alreadyRemoved = removedActors.reduce(function(result, actor) { + let removedWin = actor._window; + return result || removedWin == newWin[newIndex]; + }, false); + + if (insertHere || alreadyRemoved) { + addedItems.push({ item: this._createPreviewItem(newWin[newIndex]), + pos: newIndex + removedActors.length }); + newIndex++; + } else { + removedActors.push(children[oldIndex]); + oldIndex++; + } + } + + for (let i = 0; i < addedItems.length; i++) + this.addMenuItem(addedItems[i].item, + addedItems[i].pos); + + for (let i = 0; i < removedActors.length; i++) { + let item = removedActors[i]; + if (this._shownInitially) + item._animateOutAndDestroy(); + else + item.actor.destroy(); + } + + // Separate windows from other workspaces + let ws_index = global.screen.get_active_workspace_index(); + let separator_index = 0; + for (let i = 0; i < newWin.length; i++) + if (newWin[i].get_workspace().index() == ws_index) + separator_index++; + + if (separator_index > 0 && separator_index !== newWin.length) { + let separatorItem = new PopupMenu.PopupSeparatorMenuItem(); + if (this.isHorizontal) { + separatorItem._separator.set_x_expand(false); + separatorItem._separator.set_y_expand(true); + separatorItem._separator.set_name('dashtodockPreviewSeparator'); + separatorItem._separator.add_style_class_name('popup-separator-menu-item-horizontal'); + separatorItem._separator.set_x_align(Clutter.ActorAlign.CENTER); + separatorItem._separator.set_y_align(Clutter.ActorAlign.FILL); + } + this.addMenuItem(separatorItem, separator_index); + } + + // Skip animations on first run when adding the initial set + // of items, to avoid all items zooming in at once + let animate = this._shownInitially; + + if (!this._shownInitially) + this._shownInitially = true; + + for (let i = 0; i < addedItems.length; i++) + addedItems[i].item.show(animate); + + // Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=692744 + // Without it, StBoxLayout may use a stale size cache + this.box.queue_relayout(); + + if (newWin.length < 1) + this._getTopMenu().close(~0); + }, + + isAnimatingOut: function() { + return this.actor.get_children().reduce(function(result, actor) { + return result || actor.animatingOut; + }, false); + }, + + sortWindowsCompareFunction: function(windowA, windowB) { + let ws_index = global.screen.get_active_workspace_index(); + let winA_inActiveWS = windowA.get_workspace().index() == ws_index; + let winB_inActiveWS = windowB.get_workspace().index() == ws_index; + + // Only change the order if winA is not in the current WS, while winB is + if (!winA_inActiveWS && winB_inActiveWS) + return 1; + + return 0; + } +}); + const WindowPreviewMenuItem = new Lang.Class({ Name: 'WindowPreviewMenuItem', Extends: PopupMenu.PopupBaseMenuItem, @@ -49,6 +366,10 @@ let labelBin = new St.Bin({ child: label, x_align: St.Align.MIDDLE}); + this._windowTitleId = this._window.connect('notify::title', Lang.bind(this, function() { + label.set_text(this._window.get_title()); + })); + let box = new St.BoxLayout({ vertical: true, reactive:true, x_expand:true }); @@ -212,6 +533,21 @@ transition: 'easeInQuad' }); }, + show: function(animate) { + let fullWidth = this.actor.get_width(); + + this.actor.opacity = 0; + this.actor.set_width(0); + + let time = animate ? 0.25 : 0; + Tweener.addTween(this.actor, + { opacity: 255, + width: fullWidth, + time: time, + transition: 'easeInOutQuad' + }); + }, + _animateOutAndDestroy: function() { Tweener.addTween(this.actor, { opacity: 0, @@ -220,6 +556,7 @@ Tweener.addTween(this.actor, { height: 0, + width: 0, time: 0.25, delay: 0.25, onCompleteScope: this, @@ -229,6 +566,11 @@ }); }, + activate: function() { + this._getTopMenu().close(); + Main.activateWindow(this._window); + }, + _onDestroy: function() { this.parent(); @@ -238,9 +580,15 @@ this._windowAddedId = 0; } - if (this._destroyId > 0) + if (this._destroyId > 0) { this._mutterWindow.disconnect(this._destroyId); this._destroyId = 0; + } + + if (this._windowTitleId > 0) { + this._window.disconnect(this._windowTitleId); + this._windowTitleId = 0; + } } });