Compare commits

..

5 Commits

Author SHA1 Message Date
Florian Müllner
efba8774b5 messageTray: Stop including an actor with Notifications
We now stopped using notification actors directly for anything, so
we can simplify the Notification class significantly by turning it
into a purely informational object others can use to built their UI
representation from.
2015-03-17 06:17:44 +01:00
Florian Müllner
ff68e268b2 telepathyClient: Provide a custom banner implementation
Since we stopped special-casing chat notifications to use the old
notification actor, we need to provide a notification banner to
maintain the inline chat functionality, so split out the UI from
the existing ChatNotification class.
2015-03-17 06:17:36 +01:00
Florian Müllner
d7ff7e062b messageTray: Always destroy banners when done displaying
Special-casing banners of resident notifications was really a
thinly veiled special case for chat notifications, as those were
still using the old notification actor which coupled the life-time
of the notification to its actor. This is no longer the case, so
we can do the sane thing and destroy banners once they are no
longer needed.
2015-03-17 06:05:34 +01:00
Florian Müllner
87767422e4 Revert "messageTray: Special-case chat notifications to use the old actor"
This was really just a temporary hack to buy us more time to properly port
chat notifications to the new banners ...

This reverts commit cd5318baa7.
2015-03-17 06:05:34 +01:00
Florian Müllner
73c35f8629 telepathyClient: Don't remove body on updates
Passing null as body always meant clearing the existing one. While this
mattered less with the old message tray which used the expanded actor,
the new message list in the calendar uses the unexpanded body. We clearly
don't want that to disappear on icon changes, so pass the existing one.
2015-03-17 06:05:34 +01:00
25 changed files with 4427 additions and 3637 deletions

54
NEWS
View File

@@ -1,57 +1,3 @@
3.16.0
======
* Revert erroneous login dialog changes [Ray; #740142]
* Improve accessibility of legacy tray [Florian; #746487]
* Fix legacy status icons leaking into other monitors [Florian; #745824]
Contributors:
Florian Müllner, Ray Strode
Translations:
Daniel Martinez [an], Sebastian Rasmussen [sv], Fran Dieguez [gl],
Andika Triwidada [id], Jordi Mas [ca], Kjartan Maraas [nb],
Inaki Larranaga Murgoitio [eu], Muhammet Kara [tr], Khaled Hosny [ar],
Bernd Homuth [de], Jiro Matsuzawa [ja]
3.15.92
=======
* gdm: Fix user list accessibility [Florian; #729603]
* Handle multiline questions in mount operations [Ross; #745713]
* Improve classic theme [Jakub; #745686, #745687]
* Fix ordering of calendar events [Florian; #745988]
* Pick first input source for new windows when per-window [Rui; #746037]
* networkAgent: Show a notification for non-user-initiated password requests
[Giovanni; #660293]
* Fix dismissing calendar events [Florian; #744927]
* Add legacy tray to ctrl-alt-tab popup [Florian; #746022]
* Manage on-screen-keyboard visibility in gnome-shell [Carlos; #745977]
* Add pointer barriers to legacy tray [Cosimo; #746026]
* Use fallback when app icon cannot be resolved [Cosimo; #746219]
* Fix handling of removed smartcard at startup [Ray; #740143]
* gdm: Don't pick a random session for the user [Jasper; #740142]
* Make menu selection behavior consistent with GTK [Florian; #745246]
* gdm: Fix empty user list on user switching [Ray; #719418]
* Misc bug fixes [Florian, Giovanni, Clément, Rui; #745666, #746019, #745861,
#746027, #746223, #737502, #746343, #746288]
Contributors:
Giovanni Campagna, Cosimo Cecchi, Piotr Drąg, Adel Gadllah, Carlos Garnacho,
Clément Guérin, Ross Lagerwall, Rui Matos, Florian Müllner, Jakub Steiner,
Jasper St. Pierre, Ray Strode
Translations:
Piotr Drąg [pl], Changwoo Ryu [ko], Milo Casagrande [it],
Baurzhan Muftakhidinov [kk], Мирослав Николић [sr, sr@latin], Balázs Úr [hu],
IWAI, Masaharu [ja], Daniel Korostil [uk], Aurimas Černius [lt],
Matej Urbančič [sl], Daniel Mustieles [es], Kjartan Maraas [nb],
Victor Ibragimov [tg], Claude Paroz [fr], Jordi Mas [ca], Bernd Homuth [de],
Muhammet Kara [tr], Frédéric Péters [fr], Jiri Grönroos [fi],
Alexander Shopov [bg], Stas Solovey [ru], Trần Ngọc Quân [vi],
Samir Ribic [bs], Dušan Kazik [sk], Enrico Nicoletto [pt_BR],
Marek Černocký [cs], A S Alam [pa], Ask Hjorth Larsen [da],
Tom Tryfonidis [el], Alexandre Franke [fr], Yosef Or Boczko [he],
Chao-Hsiung Liao [zh_TW]
3.15.91
=======
* Don't disable all shortcuts while non-panel menus are open [Florian; #745039]

View File

@@ -1,5 +1,5 @@
AC_PREREQ(2.63)
AC_INIT([gnome-shell],[3.16.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
AC_INIT([gnome-shell],[3.15.91],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/shell-global.c])
@@ -76,7 +76,7 @@ AC_MSG_RESULT($enable_systemd)
CLUTTER_MIN_VERSION=1.21.5
GOBJECT_INTROSPECTION_MIN_VERSION=0.10.1
GJS_MIN_VERSION=1.39.0
MUTTER_MIN_VERSION=3.16.0
MUTTER_MIN_VERSION=3.15.91
GTK_MIN_VERSION=3.15.0
GIO_MIN_VERSION=2.37.0
LIBECAL_MIN_VERSION=3.5.3

View File

@@ -393,7 +393,7 @@ StScrollBar {
background-color: black;
box-shadow: inset 0 1px 0px #0d0d0d;
font-weight: bold; }
.popup-menu .popup-menu-item.selected {
.popup-menu .popup-menu-item:hover, .popup-menu .popup-menu-item:focus {
background-color: rgba(255, 255, 255, 0.1);
color: #fff; }
.popup-menu .popup-menu-item:active {
@@ -401,6 +401,8 @@ StScrollBar {
color: #ffffff; }
.popup-menu .popup-menu-item:insensitive {
color: rgba(255, 255, 255, 0.5); }
.popup-menu .active {
background-color: #215d9c; }
.popup-menu .popup-inactive-menu-item {
color: #fff; }
.popup-menu .popup-inactive-menu-item:insensitive {

View File

@@ -393,7 +393,7 @@ StScrollBar {
background-color: #343a3a;
box-shadow: inset 0 1px 0px #282c2c;
font-weight: bold; }
.popup-menu .popup-menu-item.selected {
.popup-menu .popup-menu-item:hover, .popup-menu .popup-menu-item:focus {
background-color: rgba(238, 238, 236, 0.1);
color: #eeeeec; }
.popup-menu .popup-menu-item:active {
@@ -401,6 +401,8 @@ StScrollBar {
color: #ffffff; }
.popup-menu .popup-menu-item:insensitive {
color: rgba(238, 238, 236, 0.5); }
.popup-menu .active {
background-color: #215d9c; }
.popup-menu .popup-inactive-menu-item {
color: #eeeeec; }
.popup-menu .popup-inactive-menu-item:insensitive {

View File

@@ -323,13 +323,15 @@ const SessionMenuButton = new Lang.Class({
}
},
setActiveSession: function(sessionId) {
activeSessionChanged: function(sessionId) {
if (sessionId == this._activeSessionId)
return;
this._activeSessionId = sessionId;
this._updateOrnament();
},
setActiveSession: function(sessionId) {
this.emit('session-activated', this._activeSessionId);
},
@@ -354,9 +356,6 @@ const SessionMenuButton = new Lang.Class({
this._menu.addMenuItem(item);
this._items[id] = item;
if (!this._activeSessionId)
this.setActiveSession(id);
item.connect('activate', Lang.bind(this, function() {
this.setActiveSession(id);
}));
@@ -791,7 +790,7 @@ const LoginDialog = new Lang.Class({
},
_onDefaultSessionChanged: function(client, sessionId) {
this._sessionMenuButton.setActiveSession(sessionId);
this._sessionMenuButton.activeSessionChanged(sessionId);
},
_shouldShowSessionMenuButton: function() {
@@ -1087,11 +1086,18 @@ const LoginDialog = new Lang.Class({
},
_onUserListActivated: function(activatedItem) {
let tasks = [function() {
return GdmUtil.cloneAndFadeOutActor(this._userSelectionBox);
},
function() {
this._setUserListExpanded(false);
}];
this._user = activatedItem.user;
this._updateCancelButton();
let batch = new Batch.ConcurrentBatch(this, [GdmUtil.cloneAndFadeOutActor(this._userSelectionBox),
let batch = new Batch.ConcurrentBatch(this, [new Batch.ConsecutiveBatch(this, tasks),
this._beginVerificationForItem(activatedItem)]);
batch.run();
},

View File

@@ -122,8 +122,7 @@ const URLHighlighter = new Lang.Class({
_init: function(text, lineWrap, allowMarkup) {
if (!text)
text = '';
this.actor = new St.Label({ reactive: true, style_class: 'url-highlighter',
x_expand: true, x_align: Clutter.ActorAlign.START });
this.actor = new St.Label({ reactive: true, style_class: 'url-highlighter' });
this._linkColor = '#ccccff';
this.actor.connect('style-changed', Lang.bind(this, function() {
let [hasColor, color] = this.actor.get_theme_node().lookup_color('link-color', false);

View File

@@ -147,26 +147,10 @@ const LegacyTray = new Lang.Class({
St.ButtonMask.THREE,
can_focus: true,
x_fill: true, y_fill: true });
let app = Shell.WindowTracker.get_default().get_app_from_pid(icon.pid);
if (!app)
app = Shell.AppSystem.get_default().lookup_startup_wmclass(wmClass);
if (!app)
app = Shell.AppSystem.get_default().lookup_desktop_wmclass(wmClass);
if (app)
button.accessible_name = app.get_name();
else
button.accessible_name = icon.title;
button.connect('clicked',
function() {
icon.click(Clutter.get_current_event());
});
button.connect('key-press-event',
function() {
icon.click(Clutter.get_current_event());
return Clutter.EVENT_PROPAGATE;
});
button.connect('key-focus-in', Lang.bind(this,
function() {
this._concealHandle.show();

View File

@@ -169,10 +169,10 @@ const PopupBaseMenuItem = new Lang.Class({
if (activeChanged) {
this.active = active;
if (active) {
this.actor.add_style_class_name('selected');
this.actor.add_style_class_name('active');
this.actor.grab_key_focus();
} else {
this.actor.remove_style_class_name('selected');
this.actor.remove_style_class_name('active');
// Remove the CSS active state if the user press the button and
// while holding moves to another menu item, so we don't paint all items.
// The correct behaviour would be to set the new item with the CSS

View File

@@ -2,7 +2,6 @@
const Clutter = imports.gi.Clutter;
const Gio = imports.gi.Gio;
const GLib = imports.gi.GLib;
const Lang = imports.lang;
const Meta = imports.gi.Meta;
const Shell = imports.gi.Shell;
@@ -19,6 +18,10 @@ const PanelMenu = imports.ui.panelMenu;
const SwitcherPopup = imports.ui.switcherPopup;
const Util = imports.misc.util;
const DESKTOP_INPUT_SOURCES_SCHEMA = 'org.gnome.desktop.input-sources';
const KEY_INPUT_SOURCES = 'sources';
const KEY_KEYBOARD_OPTIONS = 'xkb-options';
const INPUT_SOURCE_TYPE_XKB = 'xkb';
const INPUT_SOURCE_TYPE_IBUS = 'ibus';
@@ -139,149 +142,6 @@ const InputSourceSwitcher = new Lang.Class({
}
});
const InputSourceSettings = new Lang.Class({
Name: 'InputSourceSettings',
Abstract: true,
_emitInputSourcesChanged: function() {
this.emit('input-sources-changed');
},
_emitKeyboardOptionsChanged: function() {
this.emit('keyboard-options-changed');
},
_emitPerWindowChanged: function() {
this.emit('per-window-changed');
},
get inputSources() {
return [];
},
get keyboardOptions() {
return [];
},
get perWindow() {
return false;
}
});
Signals.addSignalMethods(InputSourceSettings.prototype);
const InputSourceSystemSettings = new Lang.Class({
Name: 'InputSourceSystemSettings',
Extends: InputSourceSettings,
_BUS_NAME: 'org.freedesktop.locale1',
_BUS_PATH: '/org/freedesktop/locale1',
_BUS_IFACE: 'org.freedesktop.locale1',
_BUS_PROPS_IFACE: 'org.freedesktop.DBus.Properties',
_init: function() {
this._layouts = '';
this._variants = '';
this._options = '';
this._reload();
Gio.DBus.system.signal_subscribe(this._BUS_NAME,
this._BUS_PROPS_IFACE,
'PropertiesChanged',
this._BUS_PATH,
null,
Gio.DBusSignalFlags.NONE,
Lang.bind(this, this._reload));
},
_reload: function() {
Gio.DBus.system.call(this._BUS_NAME,
this._BUS_PATH,
this._BUS_PROPS_IFACE,
'GetAll',
new GLib.Variant('(s)', [this._BUS_IFACE]),
null, Gio.DBusCallFlags.NONE, -1, null,
Lang.bind(this, function(conn, result) {
let props;
try {
props = conn.call_finish(result).deep_unpack()[0];
} catch(e) {
log('Could not get properties from ' + this._BUS_NAME);
return;
}
let layouts = props['X11Layout'].unpack();
let variants = props['X11Variant'].unpack();
let options = props['X11Options'].unpack();
if (layouts != this._layouts ||
variants != this._variants) {
this._layouts = layouts;
this._variants = variants;
this._emitInputSourcesChanged();
}
if (options != this._options) {
this._options = options;
this._emitKeyboardOptionsChanged();
}
}));
},
get inputSources() {
let sourcesList = [];
let layouts = this._layouts.split(',');
let variants = this._variants.split(',');
for (let i = 0; i < layouts.length && !!layouts[i]; i++) {
let id = layouts[i];
if (!!variants[i])
id += '+' + variants[i];
sourcesList.push({ type: INPUT_SOURCE_TYPE_XKB, id: id });
}
return sourcesList;
},
get keyboardOptions() {
return this._options.split(',');
}
});
const InputSourceSessionSettings = new Lang.Class({
Name: 'InputSourceSessionSettings',
Extends: InputSourceSettings,
_DESKTOP_INPUT_SOURCES_SCHEMA: 'org.gnome.desktop.input-sources',
_KEY_INPUT_SOURCES: 'sources',
_KEY_KEYBOARD_OPTIONS: 'xkb-options',
_KEY_PER_WINDOW: 'per-window',
_init: function() {
this._settings = new Gio.Settings({ schema_id: this._DESKTOP_INPUT_SOURCES_SCHEMA });
this._settings.connect('changed::' + this._KEY_INPUT_SOURCES, Lang.bind(this, this._emitInputSourcesChanged));
this._settings.connect('changed::' + this._KEY_KEYBOARD_OPTIONS, Lang.bind(this, this._emitKeyboardOptionsChanged));
this._settings.connect('changed::' + this._KEY_PER_WINDOW, Lang.bind(this, this._emitPerWindowChanged));
},
get inputSources() {
let sourcesList = [];
let sources = this._settings.get_value(this._KEY_INPUT_SOURCES);
let nSources = sources.n_children();
for (let i = 0; i < nSources; i++) {
let [type, id] = sources.get_child_value(i).deep_unpack();
sourcesList.push({ type: type, id: id });
}
return sourcesList;
},
get keyboardOptions() {
return this._settings.get_strv(this._KEY_KEYBOARD_OPTIONS);
},
get perWindow() {
return this._settings.get_boolean(this._KEY_PER_WINDOW);
}
});
const InputSourceManager = new Lang.Class({
Name: 'InputSourceManager',
@@ -312,12 +172,9 @@ const InputSourceManager = new Lang.Class({
Meta.KeyBindingFlags.IS_REVERSED,
Shell.ActionMode.ALL,
Lang.bind(this, this._switchInputSource));
if (Main.sessionMode.isGreeter)
this._settings = new InputSourceSystemSettings();
else
this._settings = new InputSourceSessionSettings();
this._settings.connect('input-sources-changed', Lang.bind(this, this._inputSourcesChanged));
this._settings.connect('keyboard-options-changed', Lang.bind(this, this._keyboardOptionsChanged));
this._settings = new Gio.Settings({ schema_id: DESKTOP_INPUT_SOURCES_SCHEMA });
this._settings.connect('changed::' + KEY_INPUT_SOURCES, Lang.bind(this, this._inputSourcesChanged));
this._settings.connect('changed::' + KEY_KEYBOARD_OPTIONS, Lang.bind(this, this._keyboardOptionsChanged));
this._xkbInfo = KeyboardManager.getXkbInfo();
this._keyboardManager = KeyboardManager.getKeyboardManager();
@@ -335,13 +192,13 @@ const InputSourceManager = new Lang.Class({
this._focusWindowNotifyId = 0;
this._overviewShowingId = 0;
this._overviewHiddenId = 0;
this._settings.connect('per-window-changed', Lang.bind(this, this._sourcesPerWindowChanged));
this._settings.connect('changed::per-window', Lang.bind(this, this._sourcesPerWindowChanged));
this._sourcesPerWindowChanged();
this._disableIBus = false;
},
reload: function() {
this._keyboardManager.setKeyboardOptions(this._settings.keyboardOptions);
this._keyboardManager.setKeyboardOptions(this._settings.get_strv(KEY_KEYBOARD_OPTIONS));
this._inputSourcesChanged();
},
@@ -396,7 +253,7 @@ const InputSourceManager = new Lang.Class({
},
_keyboardOptionsChanged: function() {
this._keyboardManager.setKeyboardOptions(this._settings.keyboardOptions);
this._keyboardManager.setKeyboardOptions(this._settings.get_strv(KEY_KEYBOARD_OPTIONS));
this._keyboardManager.reapply();
},
@@ -437,8 +294,8 @@ const InputSourceManager = new Lang.Class({
},
_inputSourcesChanged: function() {
let sources = this._settings.inputSources;
let nSources = sources.length;
let sources = this._settings.get_value(KEY_INPUT_SOURCES);
let nSources = sources.n_children();
this._inputSources = {};
this._ibusSources = {};
@@ -447,8 +304,7 @@ const InputSourceManager = new Lang.Class({
for (let i = 0; i < nSources; i++) {
let displayName;
let shortName;
let type = sources[i].type;
let id = sources[i].id;
let [type, id] = sources.get_child_value(i).deep_unpack();
let exists = false;
if (type == INPUT_SOURCE_TYPE_XKB) {
@@ -657,7 +513,7 @@ const InputSourceManager = new Lang.Class({
},
_sourcesPerWindowChanged: function() {
this._sourcesPerWindow = this._settings.perWindow;
this._sourcesPerWindow = this._settings.get_boolean('per-window');
if (this._sourcesPerWindow && this._focusWindowNotifyId == 0) {
this._focusWindowNotifyId = global.display.connect('notify::focus-window',

968
po/an.po

File diff suppressed because it is too large Load Diff

1049
po/ar.po

File diff suppressed because it is too large Load Diff

154
po/ca.po
View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-19 01:19-0400\n"
"POT-Creation-Date: 2015-03-10 17:04-0400\n"
"PO-Revision-Date: 2014-09-14 23:32+0200\n"
"Last-Translator: Jordi Mas <jmas@softcatala.org>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
@@ -81,8 +81,7 @@ msgstr ""
#: ../data/org.gnome.shell.gschema.xml.in.in.h:3
msgid "UUIDs of extensions to enable"
msgstr ""
"Identificadors universals únics de les extensions que s'han d'habilitar"
msgstr "Identificadors universals únics de les extensions que s'han d'habilitar"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:4
msgid ""
@@ -211,13 +210,11 @@ msgstr "Vinculació per obrir la vista general d'activitats."
#: ../data/org.gnome.shell.gschema.xml.in.in.h:25
msgid "Keybinding to toggle the visibility of the notification list"
msgstr ""
"La vinculació per commutar la visibilitat de la llista de notificacions"
msgstr "La vinculació per commutar la visibilitat de la llista de notificacions"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:26
msgid "Keybinding to toggle the visibility of the notification list."
msgstr ""
"La vinculació per commutar la visibilitat de la llista de notificacions."
msgstr "La vinculació per commutar la visibilitat de la llista de notificacions."
#: ../data/org.gnome.shell.gschema.xml.in.in.h:27
msgid "Keybinding to focus the active notification"
@@ -322,7 +319,7 @@ msgstr "S'ha produït un error en carregar el diàleg de preferències de %s:"
msgid "GNOME Shell Extensions"
msgstr "Extensions del GNOME Shell"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -364,12 +361,12 @@ msgstr "(p. ex. l'usuari o %s)"
#. TTLS and PEAP are actually much more complicated, but this complication
#. is not visible here since we only care about phase2 authentication
#. (and don't even care of which one)
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "Nom d'usuari:"
#: ../js/gdm/loginDialog.js:1163
#: ../js/gdm/loginDialog.js:1170
msgid "Login Window"
msgstr "Finestra d'entrada"
@@ -525,104 +522,104 @@ msgid "Change Background…"
msgstr "Canvia el fons de l'escriptori…"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday).
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "Tot el dia"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#.
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "Dg"
#. Translators: Calendar grid abbreviation for Monday
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "Dl"
#. Translators: Calendar grid abbreviation for Tuesday
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "Dt"
#. Translators: Calendar grid abbreviation for Wednesday
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "Dc"
#. Translators: Calendar grid abbreviation for Thursday
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "Dj"
#. Translators: Calendar grid abbreviation for Friday
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "Dv"
#. Translators: Calendar grid abbreviation for Saturday
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "Ds"
#: ../js/ui/calendar.js:564
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "Mes anterior"
#: ../js/ui/calendar.js:574
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "Mes següent"
#: ../js/ui/calendar.js:781
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "Setmana %V"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:1183
msgctxt "event list time"
msgid "All Day"
msgstr "Tot el dia"
#: ../js/ui/calendar.js:1289
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "Neteja la secció"
#: ../js/ui/calendar.js:1516
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "Cites"
#: ../js/ui/calendar.js:1525
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A %d de %B"
#: ../js/ui/calendar.js:1529
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%A %d de %B de %Y"
#: ../js/ui/calendar.js:1614
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "Notificacions"
#: ../js/ui/calendar.js:1765
#: ../js/ui/calendar.js:1714
msgid "No Notifications"
msgstr "Cap notificació"
#: ../js/ui/calendar.js:1768
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "Cap cita"
@@ -647,44 +644,42 @@ msgstr "Contrasenya:"
msgid "Type again:"
msgstr "Torneu a escriure-la:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "Connecta"
#. Cisco LEAP
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "Contrasenya:"
#. static WEP
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "Clau:"
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "Identitat:"
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "Contrasenya de la clau privada:"
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "Servei:"
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "La xarxa sense fil requereix autenticació"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -693,51 +688,39 @@ msgstr ""
"Per accedir a la xarxa sense fil «%s» calen les contrasenyes o les claus "
"d'encriptació."
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "Autenticació 802.1X amb fil"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "Nom de la xarxa: "
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "Autenticació DSL"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "Cal que introduïu el codi PIN"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "Cal que introduïu el codi PIN del dispositiu de banda ampla mòbil"
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "Contrasenya de la xarxa de banda ampla mòbil"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "Cal introduir una contrasenya per connectar-vos a «%s»."
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Gestor de connexions de xarxa"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "Cal autenticació"
@@ -760,7 +743,7 @@ msgstr "No ha funcionat. Torneu-ho a provar."
#. Translators: this is the other person changing their old IM name to their new
#. IM name.
#: ../js/ui/components/telepathyClient.js:728
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "En/na %s ara es diu %s"
@@ -945,19 +928,10 @@ msgstr "Instal·la"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "Voleu baixar i instal·lar «%s» d'extensions.gnome.org?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:724
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "Teclat"
#. translators: 'Hide' is a verb
#: ../js/ui/legacyTray.js:64
msgid "Hide tray"
msgstr "Oculta la Safata"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "Icones d'estat"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "No hi ha cap extensió instal·lada"
@@ -1010,7 +984,7 @@ msgstr "Mostra el codi font"
msgid "Web Page"
msgstr "Pàgina web"
#: ../js/ui/messageTray.js:1507
#: ../js/ui/messageTray.js:2133
msgid "System Information"
msgstr "Informació de l'ordinador"
@@ -1108,11 +1082,11 @@ msgstr "No es pot blocar"
msgid "Lock was blocked by an application"
msgstr "Una aplicació està bloquejant el bloqueig"
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "S'està cercant…"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "No s'ha trobat cap resultat."
@@ -1216,7 +1190,7 @@ msgstr "No connectat"
msgid "Brightness"
msgstr "Brillantor"
#: ../js/ui/status/keyboard.js:747
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "Mostra la disposició del teclat"
@@ -1385,6 +1359,10 @@ msgstr "Paràmetres de la VPN"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Gestor de connexions de xarxa"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "Ha fallat l'activació de la connexió de xarxa"
@@ -1598,12 +1576,12 @@ msgstr "Utilitza un mode específic, p. ex. «gdm» per la pantalla d'entrada"
msgid "List possible modes"
msgstr "Llista els modes possibles"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "Desconegut"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "No s'ha pogut iniciar «%s»"

170
po/de.po
View File

@@ -21,8 +21,8 @@ msgstr ""
"Project-Id-Version: gnome-shell master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-03-22 08:38+0000\n"
"PO-Revision-Date: 2015-03-22 12:10+0100\n"
"POT-Creation-Date: 2015-03-05 08:43+0000\n"
"PO-Revision-Date: 2015-03-05 20:31+0100\n"
"Last-Translator: Bernd Homuth <dev@hmt.im>\n"
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
"Language: de_DE\n"
@@ -37,6 +37,8 @@ msgid "System"
msgstr "System"
#: ../data/50-gnome-shell-system.xml.in.h:2
#| msgid "%d new notification"
#| msgid_plural "%d new notifications"
msgid "Show the notification list"
msgstr "Benachrichtigungsliste anzeigen"
@@ -218,11 +220,13 @@ msgid "Keybinding to open the Activities Overview."
msgstr "Tastenkombination zum Öffnen der »Aktivitäten«-Übersicht"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:25
#| msgid "Keybinding to toggle the visibility of the message tray"
msgid "Keybinding to toggle the visibility of the notification list"
msgstr ""
"Tastenkombination zum Umschalten der Sichtbarkeit der Benachrichtigungsliste"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:26
#| msgid "Keybinding to toggle the visibility of the message tray."
msgid "Keybinding to toggle the visibility of the notification list."
msgstr ""
"Tastenkombination zum Umschalten der Sichtbarkeit der Benachrichtigungsliste."
@@ -328,7 +332,7 @@ msgstr "Beim Laden des Einstellungsdialogs für %s ist ein Fehler aufgetreten:"
msgid "GNOME Shell Extensions"
msgstr "GNOME-Shell-Erweiterungen"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -349,25 +353,25 @@ msgctxt "button"
msgid "Sign In"
msgstr "Anmelden"
#: ../js/gdm/loginDialog.js:280
#: ../js/gdm/loginDialog.js:276
msgid "Choose Session"
msgstr "Sitzung wählen"
#: ../js/gdm/loginDialog.js:421
#: ../js/gdm/loginDialog.js:417
msgid "Not listed?"
msgstr "Nicht aufgeführt?"
#: ../js/gdm/loginDialog.js:830
#: ../js/gdm/loginDialog.js:826
#, javascript-format
msgid "(e.g., user or %s)"
msgstr "(z.B. Benutzer oder %s)"
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:831 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "Benutzername:"
#: ../js/gdm/loginDialog.js:1163
#: ../js/gdm/loginDialog.js:1166
msgid "Login Window"
msgstr "Anmeldefenster"
@@ -477,7 +481,7 @@ msgstr "Alle"
msgid "New Window"
msgstr "Neues Fenster"
#: ../js/ui/appDisplay.js:1878 ../js/ui/dash.js:291
#: ../js/ui/appDisplay.js:1878 ../js/ui/dash.js:289
msgid "Remove from Favorites"
msgstr "Aus Favoriten entfernen"
@@ -509,104 +513,105 @@ msgid "Change Background…"
msgstr "Hintergrund ändern …"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday). */
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "Ganztägig"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#. */
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "S"
#. Translators: Calendar grid abbreviation for Monday */
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "M"
#. Translators: Calendar grid abbreviation for Tuesday */
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "D"
#. Translators: Calendar grid abbreviation for Wednesday */
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "M"
#. Translators: Calendar grid abbreviation for Thursday */
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "D"
#. Translators: Calendar grid abbreviation for Friday */
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "F"
#. Translators: Calendar grid abbreviation for Saturday */
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "S"
#: ../js/ui/calendar.js:564
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "Vorheriger Monat"
#: ../js/ui/calendar.js:574
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "Nächster Monat"
#: ../js/ui/calendar.js:781
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "Woche %V"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:1183
msgctxt "event list time"
msgid "All Day"
msgstr "Ganztägig"
#: ../js/ui/calendar.js:1289
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "Abschnitt löschen"
#: ../js/ui/calendar.js:1516
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "Termine"
#: ../js/ui/calendar.js:1525
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A, %d. %B"
#: ../js/ui/calendar.js:1529
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%a, %d. %B %Y"
#: ../js/ui/calendar.js:1614
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "Benachrichtigungen"
#: ../js/ui/calendar.js:1765
#: ../js/ui/calendar.js:1714
#| msgid "Notifications"
msgid "No Notifications"
msgstr "Keine Benachrichtigungen"
#: ../js/ui/calendar.js:1768
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "Keine Termine"
@@ -631,42 +636,40 @@ msgstr "Passwort:"
msgid "Type again:"
msgstr "Erneut eingeben:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "Verbinden"
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "Passwort:"
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "Schlüssel:"
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "Identität:"
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "Passwort für geheimen Schlüssel:"
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "Dienst:"
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "Anmeldung für Funknetzwerk wird benötigt"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -675,51 +678,39 @@ msgstr ""
"Passwörter oder Schlüssel sind erforderlich, um auf das Funknetzwerk »%s« "
"zuzugreifen."
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "Kabelgebundene 802.1X-Anmeldung"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "Netzwerkname:"
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "DSL-Anmeldung"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "PIN-Code ist erforderlich"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "Für das mobile Breitbandgerät wird ein PIN-Code benötigt."
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "Passwort der mobilen Breitbandverbindung"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "Es wird ein Passwort benötigt, um sich mit »%s« zu verbinden."
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Netzwerk-Verwaltung"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "Anmeldung erforderlich"
@@ -742,7 +733,7 @@ msgstr "Entschuldigung, das hat nicht geklappt. Bitte versuchen Sie es erneut."
#. Translators: this is the other person changing their old IM name to their new
#. IM name. */
#: ../js/ui/components/telepathyClient.js:728
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "%s heißt jetzt %s"
@@ -751,12 +742,12 @@ msgstr "%s heißt jetzt %s"
msgid "Windows"
msgstr "Fenster"
#: ../js/ui/dash.js:252 ../js/ui/dash.js:293
#: ../js/ui/dash.js:250 ../js/ui/dash.js:291
msgid "Show Applications"
msgstr "Anwendungen anzeigen"
# Würde ich so übernehmen, oder evtl. »Dock«.
#: ../js/ui/dash.js:453
#: ../js/ui/dash.js:451
msgid "Dash"
msgstr "Dash"
@@ -764,6 +755,7 @@ msgstr "Dash"
#. * shown - it is shown just below the time in the shell (e.g. "Tue 9:29 AM").
#. */
#: ../js/ui/dateMenu.js:73
#| msgid "%A %B %e, %Y"
msgid "%B %e %Y"
msgstr "%e. %B %Y"
@@ -772,6 +764,7 @@ msgstr "%e. %B %Y"
#. * date, e.g. "Tuesday February 17 2015".
#. */
#: ../js/ui/dateMenu.js:80
#| msgid "%A %B %e, %Y"
msgid "%A %B %e %Y"
msgstr "%A, %e. %B %Y"
@@ -780,6 +773,7 @@ msgid "Add world clocks…"
msgstr "Weltuhren hinzufügen …"
#: ../js/ui/dateMenu.js:161
#| msgid "Open Clocks"
msgid "World Clocks"
msgstr "Weltuhren"
@@ -923,20 +917,10 @@ msgstr "Installieren"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "»%s« von extensions.gnome.org herunterladen und installieren?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:724
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "Tastatur"
#. translators: 'Hide' is a verb */
#: ../js/ui/legacyTray.js:64
#| msgid "Hide Text"
msgid "Hide tray"
msgstr "Ablage verbergen"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "Statussymbole"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "Keine Erweiterungen installiert"
@@ -989,7 +973,7 @@ msgstr "Quelle zeigen"
msgid "Web Page"
msgstr "Webseite"
#: ../js/ui/messageTray.js:1507
#: ../js/ui/messageTray.js:2131
msgid "System Information"
msgstr "Systeminformationen"
@@ -1023,7 +1007,7 @@ msgstr "Aktivitäten"
msgid "Top Bar"
msgstr "Oberes Panel"
#: ../js/ui/popupMenu.js:289
#: ../js/ui/popupMenu.js:288
msgid "toggle-switch-us"
msgstr "toggle-switch-intl"
@@ -1078,11 +1062,11 @@ msgstr "Sperrung fehlgeschlagen"
msgid "Lock was blocked by an application"
msgstr "Sperrung wurde von einer Anwendung blockiert"
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "Suche läuft …"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "Keine Ergebnisse."
@@ -1184,7 +1168,7 @@ msgstr "Nicht verbunden"
msgid "Brightness"
msgstr "Helligkeit"
#: ../js/ui/status/keyboard.js:747
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "Tastaturbelegung anzeigen"
@@ -1356,6 +1340,10 @@ msgstr "VPN-Einstellungen"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Netzwerk-Verwaltung"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "Aktivierung der Netzwerkverbindung ist gescheitert"
@@ -1564,12 +1552,12 @@ msgstr ""
msgid "List possible modes"
msgstr "Die möglichen Modi auflisten"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "Unbekannt"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "»%s« konnte nicht gestartet werden"

965
po/eu.po

File diff suppressed because it is too large Load Diff

698
po/gl.po

File diff suppressed because it is too large Load Diff

181
po/he.po
View File

@@ -10,8 +10,8 @@ msgid ""
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-17 11:10+0200\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-04 17:01+0200\n"
"PO-Revision-Date: 2015-03-04 17:03+0200\n"
"Last-Translator: Yosef Or Boczko <yoseforb@gmail.com>\n"
"Language-Team: עברית <>\n"
@@ -305,7 +305,7 @@ msgstr "אירעה שגיאה בעת טעינת דו־שיח ההעדפות עב
#: ../js/extensionPrefs/main.js:155
msgid "GNOME Shell Extensions"
msgstr "הרחבות GNOME Shell"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
@@ -326,20 +326,20 @@ msgctxt "button"
msgctxt "button"
msgid "Sign In"
msgstr "כניסה"
#: ../js/gdm/loginDialog.js:276
msgid "Choose Session"
msgstr "בחירת הפעלה"
#. translators: this message is shown below the user list on the
#. login screen. It can be activated to reveal an entry for
#. manually entering the username.
#. manually entering the username.
#: ../js/gdm/loginDialog.js:417
msgid "Not listed?"
msgstr "לא רשום?"
#. Translators: this message is shown below the username entry field
#. to clue the user in on how to login to the local network realm
#. to clue the user in on how to login to the local network realm
#: ../js/gdm/loginDialog.js:826
#, javascript-format
msgid "(e.g., user or %s)"
@@ -347,12 +347,12 @@ msgstr "(משתמש או %s לדוגמה)"
#. TTLS and PEAP are actually much more complicated, but this complication
#. is not visible here since we only care about phase2 authentication
#. (and don't even care of which one)
#: ../js/gdm/loginDialog.js:834 ../js/ui/components/networkAgent.js:271
#. (and don't even care of which one)
#: ../js/gdm/loginDialog.js:831 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "שם משתמש:"
#: ../js/gdm/loginDialog.js:1166
msgid "Login Window"
msgstr "חלון כניסה"
@@ -460,31 +460,31 @@ msgstr "%d ב%B %Y, %l%M %p"
#: ../js/portalHelper/main.js:85
msgid "Web Authentication Redirect"
msgstr "אימות ניתוב הרשת"
#: ../js/ui/appDisplay.js:791
msgid "Frequently used applications will appear here"
msgstr "יישומים בשימוש תדיר יופיעו כאן"
#: ../js/ui/appDisplay.js:911
msgid "Frequent"
msgstr "תדיר"
#: ../js/ui/appDisplay.js:918
msgid "All"
msgstr "הכול"
#: ../js/ui/appDisplay.js:1849
msgid "New Window"
msgstr "חלון חדש"
#: ../js/ui/appDisplay.js:1877 ../js/ui/dash.js:289
msgid "Remove from Favorites"
msgstr "הסרה מהמועדפים"
#: ../js/ui/appDisplay.js:1883
msgid "Add to Favorites"
msgstr "הוספה למועדפים"
#: ../js/ui/appDisplay.js:1893
msgid "Show Details"
msgstr "הצגת פרטים"
@@ -498,7 +498,7 @@ msgstr "%s נוסף למועדפים שלך."
#, javascript-format
msgid "%s has been removed from your favorites."
msgstr "%s הוסר מהמועדפים שלך."
#: ../js/ui/backgroundMenu.js:19 ../js/ui/panel.js:649
#: ../js/ui/status/system.js:337
msgid "Settings"
@@ -508,104 +508,104 @@ msgid "Change Background…"
msgid "Change Background…"
msgstr "החלפת הרקע…"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday).
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday).
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "65"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "יום שלם"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#.
#.
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "א"
#. Translators: Calendar grid abbreviation for Monday
#. Translators: Calendar grid abbreviation for Monday
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "ב"
#. Translators: Calendar grid abbreviation for Tuesday
#. Translators: Calendar grid abbreviation for Tuesday
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "ג"
#. Translators: Calendar grid abbreviation for Wednesday
#. Translators: Calendar grid abbreviation for Wednesday
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "ד"
#. Translators: Calendar grid abbreviation for Thursday
#. Translators: Calendar grid abbreviation for Thursday
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "ה"
#. Translators: Calendar grid abbreviation for Friday
#. Translators: Calendar grid abbreviation for Friday
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "ו"
#. Translators: Calendar grid abbreviation for Saturday
#. Translators: Calendar grid abbreviation for Saturday
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "ש"
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "חודש קודם"
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "חודש הבא"
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "שבוע %V"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:1182
msgctxt "event list time"
msgid "All Day"
msgstr "יום שלם"
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "ניקוי מקטע"
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "אירועים"
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A, ה־%e ב%B"
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%A, ה־%e ב%B, %Y"
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "התרעות"
#: ../js/ui/calendar.js:1714
msgid "No Notifications"
msgstr "אין התרעות"
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "אין אירועים"
@@ -630,95 +630,81 @@ msgstr "ססמה:"
#: ../js/ui/components/keyring.js:120
msgid "Type again:"
msgstr "נא להקליד שוב:"
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "התחברות"
#. Cisco LEAP
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#. Cisco LEAP
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "ססמה:"
#. static WEP
#. static WEP
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "מפתח:"
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "זהות:"
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "ססמת מפתח פרטי:"
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "שירות:"
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "הרשת האלחוטית דורשת אימות"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
"“%s”."
msgstr "ססמאות או מפתחות הצפנה נדרשים כדי לגשת לרשת האלחוטית „%s”"
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "אימות Wired 802.1X"
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "שם הרשת:"
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "אימות DSL"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "נדרש קוד PIN"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "נדרש קוד PIN עבור התקן החיבור האלחוטי בפס רחב"
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "ססמת רשת הפס הרחב הניידת"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "נדרשת ססמה כדי להתחבר אל „%s”"
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "מנהל הרשתות"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
@@ -741,7 +727,7 @@ msgstr "פעולה זו לא הצליחה, נא לנסות שוב. עמך הסל
msgstr "פעולה זו לא הצליחה, נא לנסות שוב. עמך הסליחה."
#. Translators: this is the other person changing their old IM name to their new
#. IM name.
#. IM name.
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
@@ -750,13 +736,13 @@ msgstr "השם של %s הוחלף ל־%s"
#: ../js/ui/ctrlAltTab.js:29 ../js/ui/viewSelector.js:155
msgid "Windows"
msgstr "חלונות"
#: ../js/ui/dash.js:250 ../js/ui/dash.js:291
msgid "Show Applications"
msgstr "הצגת יישומים"
#. Translators: this is the name of the dock/favorites area on
#. the left of the overview
#. the left of the overview
#: ../js/ui/dash.js:451
msgid "Dash"
msgstr "חלונית"
@@ -918,19 +904,10 @@ msgstr "התקנה"
#, javascript-format
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "הורדה והתקנה של „%s” מ־extensions.gnome.org?"
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "מקלדת"
#. translators: 'Hide' is a verb
#: ../js/ui/legacyTray.js:64
msgid "Hide tray"
msgstr "הסתרת המגש"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "סמלי מצב"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
@@ -983,7 +960,7 @@ msgstr "צפייה במקור"
#: ../js/ui/lookingGlass.js:758
msgid "Web Page"
msgstr "דף אינטרנט"
#: ../js/ui/messageTray.js:2131
msgid "System Information"
msgstr "פרטי המערכת"
@@ -1003,17 +980,17 @@ msgstr "סקירה"
#: ../js/ui/overview.js:246
msgid "Type to search…"
msgstr "יש להקליד כדי לחפש…"
#: ../js/ui/panel.js:351
msgid "Quit"
msgstr "יציאה"
#. Translators: If there is no suitable word for "Activities"
#. in your language, you can use the word for "Overview".
#. in your language, you can use the word for "Overview".
#: ../js/ui/panel.js:403
msgid "Activities"
msgstr "פעילויות"
#: ../js/ui/panel.js:754
msgid "Top Bar"
msgstr "הסרגל העליון"
@@ -1022,7 +999,7 @@ msgstr "הסרגל העליון"
#. (for toggle switches containing the English words
#. "ON" and "OFF") or "toggle-switch-intl" (for toggle
#. switches containing "◯" and "|"). Other values will
#. simply result in invisible toggle switches.
#. simply result in invisible toggle switches.
#: ../js/ui/popupMenu.js:288
msgid "toggle-switch-us"
msgstr "toggle-switch-intl"
@@ -1083,11 +1060,11 @@ msgstr "לא ניתן לנעול"
#: ../js/ui/screenShield.js:796 ../js/ui/screenShield.js:1272
msgid "Lock was blocked by an application"
msgstr "הנעילה נחסמה ע״י היישום"
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "בחיפוש…"
#: ../js/ui/search.js:611
msgid "No results."
msgstr "אין תוצאות."
@@ -1192,7 +1169,7 @@ msgstr "לא מחובר"
#: ../js/ui/status/brightness.js:44
msgid "Brightness"
msgstr "בהירות"
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "הצגת פריסת המקלדת"
@@ -1361,6 +1338,10 @@ msgstr "הגדרות VPN"
#: ../js/ui/status/network.js:1502
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "מנהל הרשתות"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
@@ -1575,12 +1556,12 @@ msgstr "שימוש במצב מסוים, לדוגמה: „gdm“ למסך הכנ
#: ../src/main.c:391
msgid "List possible modes"
msgstr "הצגת המצבים האפשריים"
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "לא ידוע"
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"

950
po/id.po

File diff suppressed because it is too large Load Diff

163
po/it.po
View File

@@ -11,8 +11,8 @@ msgstr ""
"Project-Id-Version: gnome-shell\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-03-16 20:36+0000\n"
"PO-Revision-Date: 2015-03-17 09:07+0100\n"
"POT-Creation-Date: 2015-03-04 20:42+0000\n"
"PO-Revision-Date: 2015-03-05 08:59+0100\n"
"Last-Translator: Milo Casagrande <milo@milo.name>\n"
"Language-Team: Italiano <tp@lists.linux.it>\n"
"Language: it\n"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-DamnedLies-Scope: partial\n"
"X-Generator: Poedit 1.7.5\n"
"X-Generator: Poedit 1.7.4\n"
#: ../data/50-gnome-shell-system.xml.in.h:1
msgid "System"
@@ -323,7 +323,7 @@ msgstr ""
msgid "GNOME Shell Extensions"
msgstr "Estensioni di GNOME Shell"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -344,25 +344,25 @@ msgctxt "button"
msgid "Sign In"
msgstr "Accedi"
#: ../js/gdm/loginDialog.js:280
#: ../js/gdm/loginDialog.js:276
msgid "Choose Session"
msgstr "Scegli sessione"
#: ../js/gdm/loginDialog.js:421
#: ../js/gdm/loginDialog.js:417
msgid "Not listed?"
msgstr "Non elencato?"
#: ../js/gdm/loginDialog.js:830
#: ../js/gdm/loginDialog.js:826
#, javascript-format
msgid "(e.g., user or %s)"
msgstr "(p.e. utente o %s)"
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:831 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "Nome utente: "
#: ../js/gdm/loginDialog.js:1170
#: ../js/gdm/loginDialog.js:1166
msgid "Login Window"
msgstr "Finestra di accesso"
@@ -471,7 +471,7 @@ msgstr "Tutte"
msgid "New Window"
msgstr "Nuova finestra"
#: ../js/ui/appDisplay.js:1878 ../js/ui/dash.js:291
#: ../js/ui/appDisplay.js:1878 ../js/ui/dash.js:289
msgid "Remove from Favorites"
msgstr "Rimuovi dai preferiti"
@@ -505,104 +505,104 @@ msgid "Change Background…"
msgstr "Cambia sfondo…"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday). */
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "Giornata"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#. */
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "D"
#. Translators: Calendar grid abbreviation for Monday */
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "L"
#. Translators: Calendar grid abbreviation for Tuesday */
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "M"
#. Translators: Calendar grid abbreviation for Wednesday */
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "M"
#. Translators: Calendar grid abbreviation for Thursday */
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "G"
#. Translators: Calendar grid abbreviation for Friday */
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "V"
#. Translators: Calendar grid abbreviation for Saturday */
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "S"
#: ../js/ui/calendar.js:563
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "Mese precedente"
#: ../js/ui/calendar.js:573
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "Mese successivo"
#: ../js/ui/calendar.js:780
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "Settimana %V"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:1182
msgctxt "event list time"
msgid "All Day"
msgstr "Giornata"
#: ../js/ui/calendar.js:1288
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "Annulla selezione"
#: ../js/ui/calendar.js:1515
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "Eventi"
#: ../js/ui/calendar.js:1524
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A, %e %B"
#: ../js/ui/calendar.js:1528
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%A, %e %B %Y"
#: ../js/ui/calendar.js:1613
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "Notifiche"
#: ../js/ui/calendar.js:1764
#: ../js/ui/calendar.js:1714
msgid "No Notifications"
msgstr "Nessuna notifica"
#: ../js/ui/calendar.js:1767
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "Nessun evento"
@@ -627,42 +627,40 @@ msgstr "Password:"
msgid "Type again:"
msgstr "Inserire di nuovo:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "Connetti"
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "Password: "
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "Chiave: "
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "Identità: "
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "Password chiave privata: "
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "Servizio: "
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "Richiesta autenticazione dalla rete wireless"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -671,51 +669,39 @@ msgstr ""
"È richiesta una password o una chiave di cifratura per accedere alla rete "
"wireless «%s»."
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "Autenticazione via cavo 802.1X"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "Nome rete: "
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "Autenticazione DSL"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "Richiesto codice PIN"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "È necessario il codice PIN per il dispositivo mobile"
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "Password rete mobile"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "È richiesta una password per connettersi a «%s»."
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Gestore reti"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "Richiesta autenticazione"
@@ -738,7 +724,7 @@ msgstr "Errore nell'autenticazione. Provare di nuovo."
#. Translators: this is the other person changing their old IM name to their new
#. IM name. */
#: ../js/ui/components/telepathyClient.js:775
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "%s ha cambiato nome in %s"
@@ -747,12 +733,12 @@ msgstr "%s ha cambiato nome in %s"
msgid "Windows"
msgstr "Finestre"
#: ../js/ui/dash.js:252 ../js/ui/dash.js:293
#: ../js/ui/dash.js:250 ../js/ui/dash.js:291
msgid "Show Applications"
msgstr "Mostra applicazioni"
# cruscotto?!?!?!?!?!?!?
#: ../js/ui/dash.js:453
#: ../js/ui/dash.js:451
msgid "Dash"
msgstr "Dash"
@@ -920,19 +906,10 @@ msgstr "Installa"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "Scaricare e installare «%s» da extensions.gnome.org?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:580
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "Tastiera"
#. translators: 'Hide' is a verb */
#: ../js/ui/legacyTray.js:64
msgid "Hide tray"
msgstr "Nascondi cassetto"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "Icone di stato"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "Nessuna estensione installata"
@@ -987,7 +964,7 @@ msgstr "Visualizza sorgente"
msgid "Web Page"
msgstr "Pagina web"
#: ../js/ui/messageTray.js:2133
#: ../js/ui/messageTray.js:2131
msgid "System Information"
msgstr "Informazione di sistema"
@@ -1021,7 +998,7 @@ msgstr "Attività"
msgid "Top Bar"
msgstr "Barra superiore"
#: ../js/ui/popupMenu.js:289
#: ../js/ui/popupMenu.js:288
msgid "toggle-switch-us"
msgstr "toggle-switch-us"
@@ -1073,11 +1050,11 @@ msgstr "Impossibile bloccare"
msgid "Lock was blocked by an application"
msgstr "Il blocco è stato impedito da un'applicazione."
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "Ricerca…"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "Nessun risultato."
@@ -1180,7 +1157,7 @@ msgstr "Non collegato"
msgid "Brightness"
msgstr "Luminosità"
#: ../js/ui/status/keyboard.js:603
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "Mostra disposizione tastiera"
@@ -1353,6 +1330,10 @@ msgstr "Impostazioni VPN"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Gestore reti"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "Attivazione della connessione di rete non riuscita"
@@ -1561,12 +1542,12 @@ msgstr "Usa una modalità specifica, p.e. \"gdm\" per la schermata di accesso"
msgid "List possible modes"
msgstr "Elenca le modalità possibili"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "Sconosciuto"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "Avvio di «%s» non riuscito"

721
po/ja.po
View File

@@ -3,7 +3,7 @@
# This file is distributed under the same license as the gnome-shell package.
# Nishio Futoshi <fut_nis@d3.dion.ne.jp>, 2010.
# Kiyotaka NISHIBORI <ml.nishibori.kiyotaka@gmail.com>, 2011.
# Jiro Matsuzawa <jmatsuzawa@gnome.org>, 2011, 2012, 2013, 2014, 2015.
# Jiro Matsuzawa <jmatsuzawa@gnome.org>, 2011, 2012, 2013, 2014.
# Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>, 2011, 2012.
# Hideki Yamane <henrich@debian.org>, 2011.
# Takanori MATSUURA <t.matsuu@gmail.com>, 2012.
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: gnome-shell master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-03-20 20:39+0000\n"
"PO-Revision-Date: 2015-03-21 10:06+0900\n"
"Last-Translator: Jiro Matsuzawa <jmatsuzawa@gnome.org>\n"
"POT-Creation-Date: 2015-03-06 18:02+0000\n"
"PO-Revision-Date: 2015-01-19 00:27+0900\n"
"Last-Translator: IWAI, Masaharu <iwaim.sub@gmail.com>\n"
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -30,8 +30,11 @@ msgid "System"
msgstr "システム"
#: ../data/50-gnome-shell-system.xml.in.h:2
#, fuzzy
#| msgid "%d new notification"
#| msgid_plural "%d new notifications"
msgid "Show the notification list"
msgstr "通知リストを表示する"
msgstr "%d 件の新しい通知"
#: ../data/50-gnome-shell-system.xml.in.h:3
msgid "Focus the active notification"
@@ -167,12 +170,16 @@ msgid "Keybinding to open the Activities Overview."
msgstr "アクティビティ画面を開くキーバインドです。"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:25
#, fuzzy
#| msgid "Keybinding to toggle the visibility of the message tray"
msgid "Keybinding to toggle the visibility of the notification list"
msgstr "通知リストの表示・非表示を切り替えるキーバインド"
msgstr "メッセージトレイの表示・非表示を切り替えるキーバインド"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:26
#, fuzzy
#| msgid "Keybinding to toggle the visibility of the message tray."
msgid "Keybinding to toggle the visibility of the notification list."
msgstr "通知リストの表示・非表示を切り替えるキーバインドです。"
msgstr "メッセージトレイの表示・非表示を切り替えるキーバインドです。"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:27
msgid "Keybinding to focus the active notification"
@@ -251,7 +258,7 @@ msgstr "%s の設定ダイアログのロード中にエラーが発生しまし
msgid "GNOME Shell Extensions"
msgstr "GNOME Shell 拡張機能"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -285,12 +292,12 @@ msgstr "アカウントが見つかりませんか?"
msgid "(e.g., user or %s)"
msgstr "(たとえば、user あるいは %s)"
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "ユーザー名: "
#: ../js/gdm/loginDialog.js:1163
#: ../js/gdm/loginDialog.js:1170
msgid "Login Window"
msgstr "ログインウィンドウ"
@@ -431,106 +438,108 @@ msgid "Change Background…"
msgstr "背景の変更…"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday). */
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "終日"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#. */
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "日"
#. Translators: Calendar grid abbreviation for Monday */
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "月"
#. Translators: Calendar grid abbreviation for Tuesday */
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "火"
#. Translators: Calendar grid abbreviation for Wednesday */
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "水"
#. Translators: Calendar grid abbreviation for Thursday */
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "木"
#. Translators: Calendar grid abbreviation for Friday */
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "金"
#. Translators: Calendar grid abbreviation for Saturday */
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "土"
#: ../js/ui/calendar.js:564
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "先月"
#: ../js/ui/calendar.js:574
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "来月"
#: ../js/ui/calendar.js:781
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "第%V週"
msgstr ""
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:1183
msgctxt "event list time"
msgid "All Day"
msgstr "終日"
#: ../js/ui/calendar.js:1289
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "セクションをクリアする"
msgstr ""
#: ../js/ui/calendar.js:1516
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "イベント"
msgstr ""
#: ../js/ui/calendar.js:1525
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%B%-e日 (%a)"
#: ../js/ui/calendar.js:1529
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%Y年%B%-e日 (%a)"
#: ../js/ui/calendar.js:1614
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "通知"
#: ../js/ui/calendar.js:1765
#: ../js/ui/calendar.js:1714
#, fuzzy
#| msgid "Notifications"
msgid "No Notifications"
msgstr "通知なし"
msgstr "通知"
#: ../js/ui/calendar.js:1768
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "イベントなし"
msgstr ""
#: ../js/ui/components/automountManager.js:91
msgid "External drive connected"
@@ -553,91 +562,77 @@ msgstr "パスワード:"
msgid "Type again:"
msgstr "再入力:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "接続"
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "パスワード: "
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "キー: "
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "識別子: "
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "プライベートキーパスワード: "
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "サービス: "
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "無線ネットワークでは認証が要求されます"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid "Passwords or encryption keys are required to access the wireless network “%s”."
msgstr "無線ネットワーク ”%s” にアクセスするにはパスワードか、または暗号化キーが必要です。"
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "有線 802.1X の認証"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "ネットワーク名: "
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "DSL 認証"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "PIN コードが必要です"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "モバイルブロードバンドデバイスには PIN コードが必要です"
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN 番号: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "モバイルブロードバンドネットワークのパスワード"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "”%s” への接続にはパスワードが必要です。"
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "ネットワークマネージャー"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "認証が要求されました"
@@ -660,7 +655,7 @@ msgstr "申し訳ありません、認証できませんでした。再試行し
#. Translators: this is the other person changing their old IM name to their new
#. IM name. */
#: ../js/ui/components/telepathyClient.js:728
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "%s は %s になりました"
@@ -681,24 +676,30 @@ msgstr "ダッシュボード"
#. * shown - it is shown just below the time in the shell (e.g. "Tue 9:29 AM").
#. */
#: ../js/ui/dateMenu.js:73
#, fuzzy
#| msgid "%A %B %e, %Y"
msgid "%B %e %Y"
msgstr "%Y年%-m月%-e日"
msgstr "%Y年%B%-e日 (%a)"
#. Translators: This is the accessible name of the date button shown
#. * below the time in the shell; it should combine the weekday and the
#. * date, e.g. "Tuesday February 17 2015".
#. */
#: ../js/ui/dateMenu.js:80
#, fuzzy
#| msgid "%A %B %e, %Y"
msgid "%A %B %e %Y"
msgstr "%Y年%-m月%-e日 (%a)"
msgstr "%Y年%B%-e日 (%a)"
#: ../js/ui/dateMenu.js:160
msgid "Add world clocks…"
msgstr "世界時計を追加する…"
msgstr ""
#: ../js/ui/dateMenu.js:161
#, fuzzy
#| msgid "Open Clocks"
msgid "World Clocks"
msgstr "世界時計"
msgstr "時計を開く"
#: ../js/ui/endSessionDialog.js:64
#, javascript-format
@@ -829,19 +830,10 @@ msgstr "インストール"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "extensions.gnome.org から ”%s” をダウンロードしてインストールしますか?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:724
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "キーボード"
#. translators: 'Hide' is a verb */
#: ../js/ui/legacyTray.js:64
msgid "Hide tray"
msgstr "トレイを非表示"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "ステータスアイコン"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "機能拡張はインストールされていません"
@@ -894,7 +886,7 @@ msgstr "ソースの表示"
msgid "Web Page"
msgstr "ウェブページ"
#: ../js/ui/messageTray.js:1507
#: ../js/ui/messageTray.js:2133
msgid "System Information"
msgstr "システム情報"
@@ -978,11 +970,11 @@ msgstr "ロックできません"
msgid "Lock was blocked by an application"
msgstr "アプリケーションによってロックがブロックされました"
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "検索しています…"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "一致するものがありません。"
@@ -1083,7 +1075,7 @@ msgstr "未接続"
msgid "Brightness"
msgstr "明るさ"
#: ../js/ui/status/keyboard.js:747
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "キーボードレイアウトの表示"
@@ -1252,6 +1244,10 @@ msgstr "VPN 設定"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "ネットワークマネージャー"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "ネットワーク接続を有効にできません"
@@ -1455,12 +1451,12 @@ msgstr "指定したモードを使用する (例: ログイン画面用の \"gd
msgid "List possible modes"
msgstr "使用可能なモードを一覧表示する"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "不明なプログラム"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "”%s”の起動に失敗しました"
@@ -1476,3 +1472,534 @@ msgstr "パスワードを空白にすることはできません。"
#: ../src/shell-polkit-authentication-agent.c:346
msgid "Authentication dialog was dismissed by the user"
msgstr "認証ダイアログはユーザーに拒否されました"
#~ msgid "Show the message tray"
#~ msgstr "メッセージトレイを表示する"
#~ msgctxt "event list time"
#~ msgid "%H%M"
#~ msgstr "%H%M"
#~ msgctxt "event list time"
#~ msgid "%l%M%p"
#~ msgstr "%l%M%p"
#~ msgctxt "list sunday"
#~ msgid "Su"
#~ msgstr "日"
#~ msgctxt "list monday"
#~ msgid "M"
#~ msgstr "月"
#~ msgctxt "list tuesday"
#~ msgid "T"
#~ msgstr "火"
#~ msgctxt "list wednesday"
#~ msgid "W"
#~ msgstr "水"
#~ msgctxt "list thursday"
#~ msgid "Th"
#~ msgstr "木"
#~ msgctxt "list friday"
#~ msgid "F"
#~ msgstr "金"
#~ msgctxt "list saturday"
#~ msgid "S"
#~ msgstr "土"
#~ msgid "Nothing Scheduled"
#~ msgstr "予定がありません"
#~ msgid "Today"
#~ msgstr "今日"
#~ msgid "Tomorrow"
#~ msgstr "明日"
#~ msgid "This week"
#~ msgstr "今週"
#~ msgid "Next week"
#~ msgstr "来週"
#~ msgid "Removable Devices"
#~ msgstr "リムーバブルデバイス"
#~ msgid "Eject"
#~ msgstr "取り出し"
#~ msgid "Invitation"
#~ msgstr "招待"
#~ msgid "Call"
#~ msgstr "会話"
#~ msgid "File Transfer"
#~ msgstr "ファイル転送"
#~ msgid "Chat"
#~ msgstr "チャット"
#~ msgid "Unmute"
#~ msgstr "ミュート解除"
#~ msgid "Mute"
#~ msgstr "ミュート"
#~ msgid "Invitation to %s"
#~ msgstr "%s への招待"
#~ msgid "%s is inviting you to join %s"
#~ msgstr "%s さんがあなたを %s に招待しています"
#~ msgid "Decline"
#~ msgstr "拒否する"
#~ msgid "Accept"
#~ msgstr "受け入れる"
#~ msgid "Video call from %s"
#~ msgstr "%s さんからビデオでの呼び出し"
#~ msgid "Call from %s"
#~ msgstr "%s さんからの呼び出し"
#~ msgid "Answer"
#~ msgstr "応答"
#~ msgid "%s is sending you %s"
#~ msgstr "%s さんがあなたに %s を送信しようとしています"
#~ msgid "%s would like permission to see when you are online"
#~ msgstr "%s さんが、あなたがオンライン状態になったことを知る許可を欲しいと思っています"
#~ msgid "Network error"
#~ msgstr "ネットワークエラー"
#~ msgid "Authentication failed"
#~ msgstr "認証失敗"
#~ msgid "Encryption error"
#~ msgstr "暗号化のエラーです"
#~ msgid "Certificate not provided"
#~ msgstr "証明書がありません"
#~ msgid "Certificate untrusted"
#~ msgstr "信用のない証明書です"
#~ msgid "Certificate expired"
#~ msgstr "証明書の有効期限が切れています"
#~ msgid "Certificate not activated"
#~ msgstr "証明書は利用できません"
#~ msgid "Certificate hostname mismatch"
#~ msgstr "証明書のホスト名が一致しません"
#~ msgid "Certificate fingerprint mismatch"
#~ msgstr "証明書の指紋が一致しません"
#~ msgid "Certificate self-signed"
#~ msgstr "証明書自身の署名です"
#~ msgid "Status is set to offline"
#~ msgstr "状態はオフラインに設定されています"
#~ msgid "Encryption is not available"
#~ msgstr "暗号が利用できません"
#~ msgid "Certificate is invalid"
#~ msgstr "証明書が正しくありません"
#~ msgid "Connection has been refused"
#~ msgstr "接続が拒否されました"
#~ msgid "Connection can't be established"
#~ msgstr "接続を確立できませんでした"
#~ msgid "Connection has been lost"
#~ msgstr "接続が失われました"
#~ msgid "This account is already connected to the server"
#~ msgstr "このアカウントはすでにサーバーに接続済みです"
#~ msgid "Connection has been replaced by a new connection using the same resource"
#~ msgstr "接続は同じリソースを使って新しい接続で置き換わりました"
#~ msgid "The account already exists on the server"
#~ msgstr "アカウントがサーバーにすでに存在します"
#~ msgid "Server is currently too busy to handle the connection"
#~ msgstr "サーバーがビジー状態にあるため、この接続を処理できません"
#~ msgid "Certificate has been revoked"
#~ msgstr "証明書が無効化されました"
#~ msgid "Certificate uses an insecure cipher algorithm or is cryptographically weak"
#~ msgstr "証明書が安全でない暗号のアルゴリズムを使っているか、暗号的に弱いです"
#~ msgid "The length of the server certificate, or the depth of the server certificate chain, exceed the limits imposed by the cryptography library"
#~ msgstr "サーバー証明書の長さや、サーバー証明書のチェーンの深さが暗号ライブラリで規定されている長さを越えています"
#~ msgid "Internal error"
#~ msgstr "内部エラー"
#~ msgid "Unable to connect to %s"
#~ msgstr "%s に接続できません"
#~ msgid "View account"
#~ msgstr "アカウントを表示"
#~ msgid "Unknown reason"
#~ msgstr "原因不明"
#~ msgid "Open Calendar"
#~ msgstr "カレンダーを開く"
#~ msgid "Date & Time Settings"
#~ msgstr "日時の設定"
#~ msgid "Open"
#~ msgstr "開く"
#~ msgid "Remove"
#~ msgstr "削除"
#~ msgid "Clear Messages"
#~ msgstr "メッセージをクリア"
#~ msgid "Notification Settings"
#~ msgstr "通知設定"
#~ msgid "Tray Menu"
#~ msgstr "トレイメニュー"
#~ msgid "No Messages"
#~ msgstr "メッセージなし"
#~ msgid "Message Tray"
#~ msgstr "メッセージトレイ"
#~ msgid "Captive Portal"
#~ msgstr "キャプティブポータル"
#~ msgid "The maximum accuracy level of location."
#~ msgstr "場所の最大精度レベルです。"
#~ msgid "Arrangement of buttons on the titlebar"
#~ msgstr "タイトルバーのボタン配置方法"
#~ msgid "This key overrides the key in org.gnome.desktop.wm.preferences when running GNOME Shell."
#~ msgstr "GNOME Shell 使用時は、 このキーが、org.gnome.desktop.wm.preferences の同じキーよりも優先します。"
#~ msgid "Extension"
#~ msgstr "拡張機能"
#~ msgid "Select an extension to configure using the combobox above."
#~ msgstr "設定する拡張機能を上部のコンボボックスから選択してください。"
#~ msgid "calendar:MY"
#~ msgstr "calendar:YM"
#~ msgid "List of categories that should be displayed as folders"
#~ msgstr "フォルダー形式で表示するカテゴリ名のリスト"
#~ msgid "Each category name in this list will be represented as folder in the application view, rather than being displayed inline in the main view."
#~ msgstr "このリストに指定したカテゴリは、アプリケーションビューにおいてフォルダー形式で表示されます。メインビューのカテゴリ列には表示されません。"
#~ msgid "<b>%A</b>, <b>%H:%M</b>"
#~ msgstr "<b>%A</b> <b>%H:%M</b>"
#~ msgid "<b>%B</b> <b>%d</b>, <b>%H:%M</b>"
#~ msgstr "<b>%b</b><b>%-e日</b> <b>%H:%M</b>"
#~ msgid "<b>%B</b> <b>%d</b> <b>%Y</b>, <b>%H:%M</b> "
#~ msgstr "<b>%Y年</b><b>%b</b><b>%-e日</b><b>%H:%M</b>"
#~ msgid "Authorization request from %s"
#~ msgstr "%s からアクセス許可の要求"
#~ msgid "Device %s wants to pair with this computer"
#~ msgstr "デバイス %s がこのコンピューターとのペアリングを要求しています"
#~ msgid "Allow"
#~ msgstr "許可"
#~ msgid "Deny"
#~ msgstr "拒否"
#~ msgid "Device %s wants access to the service '%s'"
#~ msgstr "デバイス '%s' が サービス '%s' へのアクセスを要求しています"
#~ msgid "Always grant access"
#~ msgstr "許可"
#~ msgid "Grant this time only"
#~ msgstr "今回のみ許可"
#~ msgid "Reject"
#~ msgstr "拒否"
#~ msgid "Pairing confirmation for %s"
#~ msgstr "%s からペアリングの確認"
#~ msgid "Please confirm whether the Passkey '%06d' matches the one on the device."
#~ msgstr "'%06d' がデバイスのパスキーと一致しているか確認してください。"
#~ msgid "Matches"
#~ msgstr "一致"
#~ msgid "Does not match"
#~ msgstr "不一致"
#~ msgid "Pairing request for %s"
#~ msgstr "%s からペアリングの要求"
#~ msgid "Please enter the PIN mentioned on the device."
#~ msgstr "デバイスの PIN コードを入力してください。"
#~ msgid "OK"
#~ msgstr "OK"
#~ msgid ""
#~ "Sorry, no wisdom for you today:\n"
#~ "%s"
#~ msgstr ""
#~ "すまない、今日は賢言がないのだ:\n"
#~ "%s"
#~ msgid "%s the Oracle says"
#~ msgstr "預言者 %s 曰く"
#~ msgctxt "event list time"
#~ msgid "%H\\u2236%M"
#~ msgstr "%H\\u2236%M"
#~ msgctxt "event list time"
#~ msgid "%l\\u2236%M\\u2009%p"
#~ msgstr "%p%l\\u2236%M"
#~ msgid "Settings Menu"
#~ msgstr "設定メニュー"
#~ msgid "Internally used to store the last IM presence explicitly set by the user. The value here is from the TpConnectionPresenceType enumeration."
#~ msgstr "ユーザーにより明示的に設定された最新の IM プレゼンスを保存するのに内部的に使用されます。ここは TpConnectionPresenceType 列挙型の値になります。"
#~ msgid "Internally used to store the last session presence status for the user. The value here is from the GsmPresenceStatus enumeration."
#~ msgstr "ユーザーの最新のセッションプレゼンスの状態を保存するのに内部的に使用されます。ここは GsmPresenceStatus 列挙型の値になります。"
#~ msgid "Session"
#~ msgstr "セッション"
#~ msgid "Click Log Out to quit these applications and log out of the system."
#~ msgstr "ログアウトをクリックすると、起動中のアプリケーションを終了しシステムからログアウトします。"
#~ msgid "Logging out of the system."
#~ msgstr "システムからログアウトします。"
#~ msgid "Click Power Off to quit these applications and power off the system."
#~ msgstr "電源オフをクリックすると、起動中のアプリケーションを終了しシステムの電源を切ります。"
#~ msgid "Powering off the system."
#~ msgstr "システムの電源を切ります。"
#~ msgid "Click Restart to quit these applications and restart the system."
#~ msgstr "再起動をクリックすると、起動中のアプリケーションを終了しシステムを再起動します。"
#~ msgid "Restarting the system."
#~ msgstr "システムを再起動します。"
#~ msgid "Shutting down might cause them to lose unsaved work."
#~ msgstr "シャットダウンすると、他のユーザーによる未保存の作業が失われる可能性があります。"
#~ msgid "Screenshots"
#~ msgstr "スクリーンショット"
#~ msgid "Record a screencast"
#~ msgstr "スクリーンキャストを撮る"
#~ msgid "Keybinding to toggle the screen recorder"
#~ msgstr "スクリーンレコーダー切り替えのキーバインド"
#~ msgid "Keybinding to start/stop the builtin screen recorder."
#~ msgstr "内蔵のスクリーンレコーダーを起動したり止めたりするキーバインドです。"
#~ msgid "Framerate used for recording screencasts."
#~ msgstr "スクリーンキャスト録画のフレームレート"
#~ msgid "The framerate of the resulting screencast recordered by GNOME Shell's screencast recorder in frames-per-second."
#~ msgstr "GNOME Shell のスクリーンキャストレコーダーで録画するスクリーンキャストの 1秒あたりのフレーム数です。"
#~ msgid "The gstreamer pipeline used to encode the screencast"
#~ msgstr "スクリーンキャストのエンコードに使用する Gstreamer パイプライン"
#~ msgid "Sets the GStreamer pipeline used to encode recordings. It follows the syntax used for gst-launch. The pipeline should have an unconnected sink pad where the recorded video is recorded. It will normally have a unconnected source pad; output from that pad will be written into the output file. However the pipeline can also take care of its own output - this might be used to send the output to an icecast server via shout2send or similar. When unset or set to an empty value, the default pipeline will be used. This is currently 'vp8enc min_quantizer=13 max_quantizer=13 cpu-used=5 deadline=1000000 threads=%T ! queue ! webmmux' and records to WEBM using the VP8 codec. %T is used as a placeholder for a guess at the optimal thread count on the system."
#~ msgstr "録画したものをエンコードするための Gstreamer パイプラインを設定します。構文は gst-launch のものに準拠します。パイプラインは未接続の録画用 sink pad を持つようにしてください。パイプラインは通常未接続の source pad を持ち、ファイルへ出力データを書き込みますが、出力方法については独自に定義することもできます。shout2send プラグインやその類似プラグインを経由して icecast サーバーへ出力データを送信するときは、この方法をとります。値が設定されていないか、空の場合は、既定のパイプライン 'vp8enc min_quantizer=13 max_quantizer=13 cpu-used=5 deadline=1000000 threads=%T ! queue ! webmmux' が使用され、VP8 コーデックを使用した WebM 形式で録画します。 '%T' はシステムの最適スレッド数の推量値を示すプレースホルダーです。"
#~ msgid "File extension used for storing the screencast"
#~ msgstr "ファイルに保存するスクリーンキャストのファイル拡張子"
#~ msgid "The filename for recorded screencasts will be a unique filename based on the current date, and use this extension. It should be changed when recording to a different container format."
#~ msgstr "録画したスクリーンキャストをファイルに保存する際は、日付を基にした固有の名前とこの拡張子をファイル名として使用します。異なる形式で録画するときは拡張子を変更する必要があります。"
#~ msgid "Power"
#~ msgstr "電源"
#~ msgid "Restart"
#~ msgstr "再起動"
#~ msgid "Screencast from %d %t"
#~ msgstr "Screencast from %d %t"
#~ msgid "Universal Access Settings"
#~ msgstr "ユニバーサルアクセスの設定"
#~ msgid "Visibility"
#~ msgstr "検出可能にする"
#~ msgid "Send Files to Device…"
#~ msgstr "デバイスにファイルを送る…"
#~ msgid "Set Up a New Device…"
#~ msgstr "新しいデバイスを設定…"
#~ msgid "Send Files…"
#~ msgstr "ファイルを送信…"
#~ msgid "Keyboard Settings"
#~ msgstr "キーボードの設定"
#~ msgid "Mouse Settings"
#~ msgstr "マウスの設定"
#~ msgid "Sound Settings"
#~ msgstr "サウンドの設定"
#~ msgid "Region & Language Settings"
#~ msgstr "地域と言語の設定"
#~ msgid "Volume, network, battery"
#~ msgstr "音量, ネットワーク, バッテリー"
#~ msgid "Wi-Fi"
#~ msgstr "Wi-Fi"
#~ msgid "disabled"
#~ msgstr "利用不可"
#~ msgid "More…"
#~ msgstr "その他…"
#~ msgid "Wired"
#~ msgstr "有線接続"
#~ msgid "Networking is disabled"
#~ msgstr "ネットワークを利用できません"
#~ msgid "%d hour remaining"
#~ msgid_plural "%d hours remaining"
#~ msgstr[0] "残り %d時間"
#~ msgid "%d %s %d %s remaining"
#~ msgstr "残り %d%s %d%s"
#~ msgid "hour"
#~ msgid_plural "hours"
#~ msgstr[0] "時間"
#~ msgid "minute"
#~ msgid_plural "minutes"
#~ msgstr[0] "分"
#~ msgid "%d minute remaining"
#~ msgid_plural "%d minutes remaining"
#~ msgstr[0] "残り %d分"
#~ msgctxt "percent of battery remaining"
#~ msgid "%d%%"
#~ msgstr "%d%%"
#~ msgid "AC Adapter"
#~ msgstr "AC アダプター"
#~ msgid "Laptop Battery"
#~ msgstr "バッテリー"
#~ msgid "Monitor"
#~ msgstr "モニター"
#~ msgid "Mouse"
#~ msgstr "マウス"
#~ msgid "PDA"
#~ msgstr "PDA"
#~ msgid "Cell Phone"
#~ msgstr "携帯電話"
#~ msgid "Media Player"
#~ msgstr "メディアプレイヤー"
#~ msgid "Tablet"
#~ msgstr "タブレット端末"
#~ msgid "Computer"
#~ msgstr "コンピューター"
#~ msgctxt "device"
#~ msgid "Unknown"
#~ msgstr "不明なデバイス"
#~ msgid "Available"
#~ msgstr "在席中"
#~ msgid "Busy"
#~ msgstr "取り込み中"
#~ msgid "Invisible"
#~ msgstr "非表示"
#~ msgid "Away"
#~ msgstr "離席中"
#~ msgid "Idle"
#~ msgstr "待機中"
#~ msgid "Your chat status will be set to busy"
#~ msgstr "取り込み中に設定されます"
#~ msgid "Notifications are now disabled, including chat messages. Your online status has been adjusted to let others know that you might not see their messages."
#~ msgstr "チャットなどの通知メッセージが表示されなくなります。オンライン状態が変更され、あなたがメッセージに目を通せない状態にあることを、他の人が知ることができます。"
#~ msgid "Whether to collect stats about applications usage"
#~ msgstr "アプリケーション使用状況の 有効/無効"
#~ msgid "The shell normally monitors active applications in order to present the most used ones (e.g. in launchers). While this data will be kept private, you may want to disable this for privacy reasons. Please note that doing so won't remove already saved data."
#~ msgstr "通常、「お気に入り」を把握するためにアプリケーションの使用状況が監視されています。この情報が外部へ送信されることはありませんが、不安を感じるならば監視を無効にすることができます。なおすでに収集された情報は消去できません。"
#~ msgid "cable unplugged"
#~ msgstr "ケーブル抜け"
#~ msgid "Auto Ethernet"
#~ msgstr "自動イーサネット接続"
#~ msgid "Auto broadband"
#~ msgstr "自動ブロードバンド接続"
#~ msgid "Auto dial-up"
#~ msgstr "自動ダイヤルアップ"
#~ msgid "Auto %s"
#~ msgstr "自動 %s"
#~ msgid "Auto bluetooth"
#~ msgstr "自動 Bluetooth 接続"
#~ msgid "Auto wireless"
#~ msgstr "自動無線接続"

147
po/nb.po
View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: gnome-shell 3.15.x\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-19 20:47+0100\n"
"PO-Revision-Date: 2015-03-19 20:56+0100\n"
"POT-Creation-Date: 2015-03-09 19:29+0100\n"
"PO-Revision-Date: 2015-03-09 19:29+0100\n"
"Last-Translator: Åka Sikrom <a4NOSPAMPLEASETHANKYOU@hush.com>\n"
"Language-Team: Norwegian bokmål <i18n-nb@lister.ping.uio.no>\n"
"Language: Norwegian bokmål\n"
@@ -305,7 +305,7 @@ msgstr "Det oppsto en feil ved lasting av brukervalgdialog for %s:"
msgid "GNOME Shell Extensions"
msgstr "Utvidelser for GNOME Shell"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -347,12 +347,12 @@ msgstr "(f.eks. bruker eller %s)"
#. TTLS and PEAP are actually much more complicated, but this complication
#. is not visible here since we only care about phase2 authentication
#. (and don't even care of which one)
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "Brukernavn: "
#: ../js/gdm/loginDialog.js:1163
#: ../js/gdm/loginDialog.js:1170
msgid "Login Window"
msgstr "Innloggingsvindu"
@@ -508,104 +508,104 @@ msgid "Change Background…"
msgstr "Bytt bakgrunn …"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday).
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "Hele dagen"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#.
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "S"
#. Translators: Calendar grid abbreviation for Monday
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "M"
#. Translators: Calendar grid abbreviation for Tuesday
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "T"
#. Translators: Calendar grid abbreviation for Wednesday
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "O"
#. Translators: Calendar grid abbreviation for Thursday
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "T"
#. Translators: Calendar grid abbreviation for Friday
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "F"
#. Translators: Calendar grid abbreviation for Saturday
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "L"
#: ../js/ui/calendar.js:564
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "Forrige måned"
#: ../js/ui/calendar.js:574
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "Neste måned"
#: ../js/ui/calendar.js:781
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "Uke %V"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#.
#: ../js/ui/calendar.js:1183
msgctxt "event list time"
msgid "All Day"
msgstr "Hele dagen"
#: ../js/ui/calendar.js:1289
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "Tøm seksjon"
#: ../js/ui/calendar.js:1516
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "Hendelser"
#: ../js/ui/calendar.js:1525
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A %B %d"
#: ../js/ui/calendar.js:1529
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%A %B %d, %Y"
#: ../js/ui/calendar.js:1614
#: ../js/ui/calendar.js:1563
msgid "Notifications"
msgstr "Varslinger"
#: ../js/ui/calendar.js:1765
#: ../js/ui/calendar.js:1714
msgid "No Notifications"
msgstr "Ingen varslinger"
#: ../js/ui/calendar.js:1768
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "Ingen hendelser"
@@ -630,44 +630,42 @@ msgstr "Passord:"
msgid "Type again:"
msgstr "Skriv på nytt:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "Koble til"
#. Cisco LEAP
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "Passord: "
#. static WEP
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "Nøkkel: "
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "Identitet: "
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "Passord for privat nøkkel: "
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "Tjeneste: "
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "Autentisering kreves av trådløst nettverk"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -676,51 +674,39 @@ msgstr ""
"Passord eller krypteringsnøkler kreves for å koble til trådløst nettverk "
"«%s»."
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "802.1X autentisering for trådbundet nettverk"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "Navn på nettverk: "
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "DSL-autentisering"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "PIN-kode kreves"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "PIN-kode kreves for mobil bredbåndsenhet"
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "Nettverkspassord for mobilt bredbånd"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "Du må oppgi et passord for å koble til «%s»."
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Nettverkshåndtering"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "Autentisering kreves"
@@ -743,7 +729,7 @@ msgstr "Beklager, det virket ikke. Prøv igjen."
#. Translators: this is the other person changing their old IM name to their new
#. IM name.
#: ../js/ui/components/telepathyClient.js:728
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "%s er nå kjent som %s"
@@ -925,19 +911,10 @@ msgstr "Installer"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "Vil du laste ned og installere «%s» fra extensions.gnome.org?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:724
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "Tastatur"
#. translators: 'Hide' is a verb
#: ../js/ui/legacyTray.js:64
msgid "Hide tray"
msgstr "Skjul statusområde"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "Statusikoner"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "Ingen utvidelser installert"
@@ -990,7 +967,7 @@ msgstr "Vis kildekode"
msgid "Web Page"
msgstr "Nettside"
#: ../js/ui/messageTray.js:1507
#: ../js/ui/messageTray.js:2133
msgid "System Information"
msgstr "Systeminformasjon"
@@ -1088,11 +1065,11 @@ msgstr "Klarte ikke å låse"
msgid "Lock was blocked by an application"
msgstr "Låsing ble stoppet av et program"
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "Søker …"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "Ingen resultater."
@@ -1196,7 +1173,7 @@ msgstr "Ikke koblet til"
msgid "Brightness"
msgstr "Lysstyrke"
#: ../js/ui/status/keyboard.js:747
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "Vis tastaturutforming"
@@ -1365,6 +1342,10 @@ msgstr "Innstillinger for VPN"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Nettverkshåndtering"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "Aktivering av nettverkstilkobling mislyktes"
@@ -1578,12 +1559,12 @@ msgstr "Bruk spesifikt modus, f.eks «gdm» for innloggingsskjerm"
msgid "List possible modes"
msgstr "Vis mulige modi"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "Ukjent"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "Klarte ikke å starte «%s»"

739
po/sv.po

File diff suppressed because it is too large Load Diff

153
po/tr.po
View File

@@ -14,8 +14,8 @@ msgstr ""
"Project-Id-Version: gnome-shell\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-03-22 08:38+0000\n"
"PO-Revision-Date: 2015-03-22 16:00+0200\n"
"POT-Creation-Date: 2015-03-10 20:43+0000\n"
"PO-Revision-Date: 2015-03-11 00:54+0200\n"
"Last-Translator: Muhammet Kara <muhammetk@gmail.com>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
"Language: tr\n"
@@ -31,6 +31,8 @@ msgid "System"
msgstr "Sistem"
#: ../data/50-gnome-shell-system.xml.in.h:2
#| msgid "%d new notification"
#| msgid_plural "%d new notifications"
msgid "Show the notification list"
msgstr "Bildirim listesini göster"
@@ -209,10 +211,12 @@ msgid "Keybinding to open the Activities Overview."
msgstr "Etkinlikler Genel Görünümünü açmak için klavye kısayolu"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:25
#| msgid "Keybinding to toggle the visibility of the message tray"
msgid "Keybinding to toggle the visibility of the notification list"
msgstr "Bildirim listesinin görünürlüğünü değiştirmek için klavye kısayolu"
#: ../data/org.gnome.shell.gschema.xml.in.in.h:26
#| msgid "Keybinding to toggle the visibility of the message tray."
msgid "Keybinding to toggle the visibility of the notification list."
msgstr "Bildirim listesinin görünürlüğünü değiştirmek için klavye kısayolu."
@@ -317,7 +321,7 @@ msgstr "%s için tercihler iletişim penceresi yüklenirken hata oluştu:"
msgid "GNOME Shell Extensions"
msgstr "GNOME Kabuğu Uzantıları"
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:145
#: ../js/gdm/authPrompt.js:147 ../js/ui/components/networkAgent.js:143
#: ../js/ui/components/polkitAgent.js:166 ../js/ui/endSessionDialog.js:452
#: ../js/ui/extensionDownloader.js:195 ../js/ui/shellMountOperation.js:399
#: ../js/ui/status/network.js:916
@@ -351,12 +355,12 @@ msgstr "Listede yok mu?"
msgid "(e.g., user or %s)"
msgstr "(örneğin, kullanıcı veya %s)"
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:289
#: ../js/gdm/loginDialog.js:835 ../js/ui/components/networkAgent.js:269
#: ../js/ui/components/networkAgent.js:287
msgid "Username: "
msgstr "Kullanıcı Adı: "
#: ../js/gdm/loginDialog.js:1163
#: ../js/gdm/loginDialog.js:1170
msgid "Login Window"
msgstr "Oturum Açma Penceresi"
@@ -497,104 +501,105 @@ msgid "Change Background…"
msgstr "Arkaplanı Değiştir…"
#. Translators: Enter 0-6 (Sunday-Saturday) for non-work days. Examples: "0" (Sunday) "6" (Saturday) "06" (Sunday and Saturday). */
#: ../js/ui/calendar.js:53
#: ../js/ui/calendar.js:49
msgctxt "calendar-no-work"
msgid "06"
msgstr "06"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:78
msgctxt "event list time"
msgid "All Day"
msgstr "Tüm Gün"
#. Translators: Calendar grid abbreviation for Sunday.
#. *
#. * NOTE: These grid abbreviations are always shown together
#. * and in order, e.g. "S M T W T F S".
#. */
#: ../js/ui/calendar.js:82
#: ../js/ui/calendar.js:93
msgctxt "grid sunday"
msgid "S"
msgstr "P"
#. Translators: Calendar grid abbreviation for Monday */
#: ../js/ui/calendar.js:84
#: ../js/ui/calendar.js:95
msgctxt "grid monday"
msgid "M"
msgstr "P"
#. Translators: Calendar grid abbreviation for Tuesday */
#: ../js/ui/calendar.js:86
#: ../js/ui/calendar.js:97
msgctxt "grid tuesday"
msgid "T"
msgstr "S"
#. Translators: Calendar grid abbreviation for Wednesday */
#: ../js/ui/calendar.js:88
#: ../js/ui/calendar.js:99
msgctxt "grid wednesday"
msgid "W"
msgstr "Ç"
#. Translators: Calendar grid abbreviation for Thursday */
#: ../js/ui/calendar.js:90
#: ../js/ui/calendar.js:101
msgctxt "grid thursday"
msgid "T"
msgstr "P"
#. Translators: Calendar grid abbreviation for Friday */
#: ../js/ui/calendar.js:92
#: ../js/ui/calendar.js:103
msgctxt "grid friday"
msgid "F"
msgstr "C"
#. Translators: Calendar grid abbreviation for Saturday */
#: ../js/ui/calendar.js:94
#: ../js/ui/calendar.js:105
msgctxt "grid saturday"
msgid "S"
msgstr "C"
#: ../js/ui/calendar.js:564
#: ../js/ui/calendar.js:572
msgid "Previous month"
msgstr "Önceki ay"
#: ../js/ui/calendar.js:574
#: ../js/ui/calendar.js:582
msgid "Next month"
msgstr "Gelecek ay"
#: ../js/ui/calendar.js:781
#: ../js/ui/calendar.js:789
msgid "Week %V"
msgstr "%V. Hafta"
#. Translators: Shown in calendar event list for all day events
#. * Keep it short, best if you can use less then 10 characters
#. */
#: ../js/ui/calendar.js:1183
msgctxt "event list time"
msgid "All Day"
msgstr "Tüm Gün"
#: ../js/ui/calendar.js:1289
#: ../js/ui/calendar.js:1245
msgid "Clear section"
msgstr "Bölümü temizle"
#: ../js/ui/calendar.js:1516
#: ../js/ui/calendar.js:1459
msgid "Events"
msgstr "Olaylar"
#: ../js/ui/calendar.js:1525
#: ../js/ui/calendar.js:1467
msgctxt "calendar heading"
msgid "%A, %B %d"
msgstr "%A, %d %B"
#: ../js/ui/calendar.js:1529
#: ../js/ui/calendar.js:1471
msgctxt "calendar heading"
msgid "%A, %B %d, %Y"
msgstr "%A, %d %B, %Y"
#: ../js/ui/calendar.js:1614
#: ../js/ui/calendar.js:1563
#| msgid "No Notifications"
msgid "Notifications"
msgstr "Bildirimler"
#: ../js/ui/calendar.js:1765
#: ../js/ui/calendar.js:1714
msgid "No Notifications"
msgstr "Bildirim Yok"
#: ../js/ui/calendar.js:1768
#: ../js/ui/calendar.js:1717
msgid "No Events"
msgstr "Olay Yok"
@@ -619,42 +624,40 @@ msgstr "Parola:"
msgid "Type again:"
msgstr "Terkar yazın:"
#: ../js/ui/components/networkAgent.js:140 ../js/ui/status/network.js:277
#: ../js/ui/components/networkAgent.js:138 ../js/ui/status/network.js:277
#: ../js/ui/status/network.js:359 ../js/ui/status/network.js:919
msgid "Connect"
msgstr "Bağlan"
#: ../js/ui/components/networkAgent.js:233
#: ../js/ui/components/networkAgent.js:245
#: ../js/ui/components/networkAgent.js:273
#: ../js/ui/components/networkAgent.js:293
#: ../js/ui/components/networkAgent.js:303
#: ../js/ui/components/networkAgent.js:231
#: ../js/ui/components/networkAgent.js:243
#: ../js/ui/components/networkAgent.js:271
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:301
msgid "Password: "
msgstr "Parola: "
#: ../js/ui/components/networkAgent.js:238
#: ../js/ui/components/networkAgent.js:236
msgid "Key: "
msgstr "Anahtar: "
#: ../js/ui/components/networkAgent.js:277
#: ../js/ui/components/networkAgent.js:275
msgid "Identity: "
msgstr "Kimlik: "
#: ../js/ui/components/networkAgent.js:279
#: ../js/ui/components/networkAgent.js:277
msgid "Private key password: "
msgstr "Özel anahtar parolası: "
#: ../js/ui/components/networkAgent.js:291
#: ../js/ui/components/networkAgent.js:289
msgid "Service: "
msgstr "Hizmet: "
#: ../js/ui/components/networkAgent.js:320
#: ../js/ui/components/networkAgent.js:658
#: ../js/ui/components/networkAgent.js:318
msgid "Authentication required by wireless network"
msgstr "Kablosuz ağ için kimlik doğrulama gerekiyor"
#: ../js/ui/components/networkAgent.js:321
#: ../js/ui/components/networkAgent.js:659
#: ../js/ui/components/networkAgent.js:319
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -663,51 +666,39 @@ msgstr ""
"“%s” kablosuz ağına erişmek için parolalar veya şifreleme anahtarları "
"gerekiyor."
#: ../js/ui/components/networkAgent.js:325
#: ../js/ui/components/networkAgent.js:662
#: ../js/ui/components/networkAgent.js:323
msgid "Wired 802.1X authentication"
msgstr "Kablolu 802.1X kimlik doğrulaması"
#: ../js/ui/components/networkAgent.js:327
#: ../js/ui/components/networkAgent.js:325
msgid "Network name: "
msgstr "Ağ adı: "
#: ../js/ui/components/networkAgent.js:332
#: ../js/ui/components/networkAgent.js:666
#: ../js/ui/components/networkAgent.js:330
msgid "DSL authentication"
msgstr "DSL kimlik doğrulama"
#: ../js/ui/components/networkAgent.js:339
#: ../js/ui/components/networkAgent.js:672
#: ../js/ui/components/networkAgent.js:337
msgid "PIN code required"
msgstr "PIN kodu gerekli"
#: ../js/ui/components/networkAgent.js:340
#: ../js/ui/components/networkAgent.js:673
#: ../js/ui/components/networkAgent.js:338
msgid "PIN code is needed for the mobile broadband device"
msgstr "Mobil geniş bant aygıtı için PIN kodu gerekli"
#: ../js/ui/components/networkAgent.js:341
#: ../js/ui/components/networkAgent.js:339
msgid "PIN: "
msgstr "PIN: "
#: ../js/ui/components/networkAgent.js:348
#: ../js/ui/components/networkAgent.js:679
#: ../js/ui/components/networkAgent.js:345
msgid "Mobile broadband network password"
msgstr "Mobil geniş bant ağ parolası"
#: ../js/ui/components/networkAgent.js:349
#: ../js/ui/components/networkAgent.js:663
#: ../js/ui/components/networkAgent.js:667
#: ../js/ui/components/networkAgent.js:680
#: ../js/ui/components/networkAgent.js:346
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "“%s”e bağlanmak için parola gerekli."
#: ../js/ui/components/networkAgent.js:647 ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Ağ Yöneticisi"
#: ../js/ui/components/polkitAgent.js:54
msgid "Authentication Required"
msgstr "Kimlik Doğrulaması Gerekli"
@@ -730,7 +721,7 @@ msgstr "Üzgünüm ama işe yaramadı. Lütfen tekrar deneyin."
#. Translators: this is the other person changing their old IM name to their new
#. IM name. */
#: ../js/ui/components/telepathyClient.js:728
#: ../js/ui/components/telepathyClient.js:772
#, javascript-format
msgid "%s is now known as %s"
msgstr "%s, şimdi %s olarak biliniyor"
@@ -903,20 +894,10 @@ msgstr "Kur"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "extensions.gnome.org adresinden “%s” indirilip kurulsun mu?"
#: ../js/ui/keyboard.js:714 ../js/ui/status/keyboard.js:724
#: ../js/ui/keyboard.js:706 ../js/ui/status/keyboard.js:576
msgid "Keyboard"
msgstr "Klavye"
#. translators: 'Hide' is a verb */
#: ../js/ui/legacyTray.js:64
#| msgid "Hide Text"
msgid "Hide tray"
msgstr "Tepsiyi gizle"
#: ../js/ui/legacyTray.js:104
msgid "Status Icons"
msgstr "Durum Simgeleri"
#: ../js/ui/lookingGlass.js:643
msgid "No extensions installed"
msgstr "Herhangi bir uzantı kurulu değil"
@@ -969,7 +950,7 @@ msgstr "Kaynağı Görüntüle"
msgid "Web Page"
msgstr "Web Sayfası"
#: ../js/ui/messageTray.js:1507
#: ../js/ui/messageTray.js:2133
msgid "System Information"
msgstr "Sistem Bilgisi"
@@ -1053,11 +1034,11 @@ msgstr "Kilitlenemedi"
msgid "Lock was blocked by an application"
msgstr "Kilitleme bir uygulama tarafından engellendi"
#: ../js/ui/search.js:616
#: ../js/ui/search.js:609
msgid "Searching…"
msgstr "Aranıyor…"
#: ../js/ui/search.js:618
#: ../js/ui/search.js:611
msgid "No results."
msgstr "Sonuç yok."
@@ -1158,7 +1139,7 @@ msgstr "Bağlı Değil"
msgid "Brightness"
msgstr "Parlaklık"
#: ../js/ui/status/keyboard.js:747
#: ../js/ui/status/keyboard.js:599
msgid "Show Keyboard Layout"
msgstr "Klavye Düzenini Göster"
@@ -1327,6 +1308,10 @@ msgstr "VPN Ayarları"
msgid "VPN"
msgstr "VPN"
#: ../js/ui/status/network.js:1657
msgid "Network Manager"
msgstr "Ağ Yöneticisi"
#: ../js/ui/status/network.js:1697
msgid "Activation of network connection failed"
msgstr "Ağ bağlantısının etkinleştirilmesi başarısız oldu"
@@ -1530,12 +1515,12 @@ msgstr "Oturum açma için -\"gdm\" gibi- özel bir kip kullan"
msgid "List possible modes"
msgstr "Mevcut kipleri listele"
#: ../src/shell-app.c:239
#: ../src/shell-app.c:247
msgctxt "program"
msgid "Unknown"
msgstr "Bilinmeyen"
#: ../src/shell-app.c:480
#: ../src/shell-app.c:488
#, c-format
msgid "Failed to launch “%s”"
msgstr "“%s” başlatılamadı"

File diff suppressed because it is too large Load Diff

View File

@@ -94,7 +94,7 @@ shell_gtk_embed_window_created_cb (MetaDisplay *display,
clutter_actor_set_opacity (window_actor, 0);
/* Set an empty input shape on the window so that it can't get
any input. This probably isn't the ideal way to achieve this.
any input. This probably isn't the ideal way to acheive this.
It would probably be better to force the window to go behind
Mutter's guard window, but this is quite difficult to do as
Mutter doesn't manage the stacking for override redirect
@@ -116,21 +116,6 @@ shell_gtk_embed_window_created_cb (MetaDisplay *display,
}
}
static void
shell_gtk_embed_on_window_mapped (GtkWidget *object,
ShellGtkEmbed *embed)
{
MetaDisplay *display = shell_global_get_display (shell_global_get ());
/* Listen for new windows so we can detect when Mutter has
created a MutterWindow for this window */
embed->priv->window_created_handler =
g_signal_connect (display,
"window-created",
G_CALLBACK (shell_gtk_embed_window_created_cb),
embed);
}
static void
shell_gtk_embed_set_window (ShellGtkEmbed *embed,
ShellEmbeddedWindow *window)
@@ -155,10 +140,6 @@ shell_gtk_embed_set_window (ShellGtkEmbed *embed,
g_signal_handlers_disconnect_by_func (embed->priv->window,
(gpointer)shell_gtk_embed_on_window_destroy,
embed);
g_signal_handlers_disconnect_by_func (embed->priv->window,
(gpointer)shell_gtk_embed_on_window_mapped,
embed);
}
embed->priv->window = window;
@@ -172,8 +153,13 @@ shell_gtk_embed_set_window (ShellGtkEmbed *embed,
g_signal_connect (embed->priv->window, "destroy",
G_CALLBACK (shell_gtk_embed_on_window_destroy), embed);
g_signal_connect (embed->priv->window, "map",
G_CALLBACK (shell_gtk_embed_on_window_mapped), embed);
/* Listen for new windows so we can detect when Mutter has
created a MutterWindow for this window */
embed->priv->window_created_handler =
g_signal_connect (display,
"window-created",
G_CALLBACK (shell_gtk_embed_window_created_cb),
embed);
}
clutter_actor_queue_relayout (CLUTTER_ACTOR (embed));