Compare commits
	
		
			2 Commits
		
	
	
		
			3.33.1
			...
			wip/carlos
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					7f66aede01 | ||
| 
						 | 
					bd5a1121d6 | 
							
								
								
									
										29
									
								
								NEWS
									
									
									
									
									
								
							
							
						
						
									
										29
									
								
								NEWS
									
									
									
									
									
								
							@@ -1,32 +1,3 @@
 | 
			
		||||
3.33.1
 | 
			
		||||
======
 | 
			
		||||
* Refine the app menu [Florian; #968]
 | 
			
		||||
* Refine window preview style [Feichtmeier; !461]
 | 
			
		||||
* Only emit ::style-changed on actual changes [Carlos; #1153]
 | 
			
		||||
* Disable emoji on-screen keyboard support on X11 [Florian; #1172]
 | 
			
		||||
* Fix tablet button mapping overlay [Carlos; #1220]
 | 
			
		||||
* Don't crash for world clock locations with no timezone [Florian; #1062]
 | 
			
		||||
* Don't leak old on-screen keyboard layout groups [Carlos; mutter#556]
 | 
			
		||||
* Fix ellipsization in dialog subtitles/bodies [Marco; !531]
 | 
			
		||||
* Fix glitch of fullscreen window in workspace switch animation [Jonas D.; !322]
 | 
			
		||||
* Fix distortion of some image contents [Florian; !525]
 | 
			
		||||
* Allow dragging unfocused tiled/maximized windows from top bar [Dylan; #679290]
 | 
			
		||||
* Handle network interface name changes [Fabrice; !534]
 | 
			
		||||
* Avoid unnecessary style changes when computing :first/:last-child
 | 
			
		||||
  [Florian; !529]
 | 
			
		||||
* Misc. bug fixes and cleanups [Florian, Marco, Robert, Georges, Carlos, Simon,
 | 
			
		||||
  Jonas D.; !487, !441, !502, !503, !504, !506, #822, !551, !512, !509, !511,
 | 
			
		||||
  #1054, !524, #1065, !331, !540]
 | 
			
		||||
 | 
			
		||||
Contributors:
 | 
			
		||||
  Fabrice Bellet, Jonas Dreßler, Feichtmeier, Carlos Garnacho, Robert Mader,
 | 
			
		||||
  Dylan McCall, Simon McVittie, Florian Müllner, Georges Basile Stavracas Neto,
 | 
			
		||||
  Marco Trevisan (Treviño)
 | 
			
		||||
 | 
			
		||||
Translators:
 | 
			
		||||
  Daniel Mustieles [es], Kukuh Syafaat [id], Fabio Tomat [fur],
 | 
			
		||||
  Carmen Bianca BAKKER [eo], Dingzhong Chen [zh_CN], Tim Sabsch [de]
 | 
			
		||||
 | 
			
		||||
3.32.1
 | 
			
		||||
======
 | 
			
		||||
* Fix avatar scaling on login screen [Florian; #1024]
 | 
			
		||||
 
 | 
			
		||||
@@ -1144,7 +1144,6 @@ var Keyboard = class Keyboard {
 | 
			
		||||
            this._keyboardController.disconnect(this._keypadVisibleId);
 | 
			
		||||
        if (this._focusNotifyId)
 | 
			
		||||
            global.stage.disconnect(this._focusNotifyId);
 | 
			
		||||
        this._clearShowIdle();
 | 
			
		||||
        this._keyboard = null;
 | 
			
		||||
        this.actor.destroy();
 | 
			
		||||
        this.actor = null;
 | 
			
		||||
@@ -1230,7 +1229,6 @@ var Keyboard = class Keyboard {
 | 
			
		||||
        if (!this._showIdleId) {
 | 
			
		||||
          this._showIdleId = GLib.idle_add(GLib.PRIORITY_DEFAULT_IDLE, () => {
 | 
			
		||||
              this.show(Main.layoutManager.focusIndex);
 | 
			
		||||
              this._showIdleId = 0;
 | 
			
		||||
              return GLib.SOURCE_REMOVE;
 | 
			
		||||
          });
 | 
			
		||||
          GLib.Source.set_name_by_id(this._showIdleId, '[gnome-shell] this.show');
 | 
			
		||||
@@ -1479,6 +1477,7 @@ var Keyboard = class Keyboard {
 | 
			
		||||
            c.destroy();
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        this._currentPage = null;
 | 
			
		||||
        this._groups = {};
 | 
			
		||||
        this._onGroupChanged();
 | 
			
		||||
    }
 | 
			
		||||
@@ -1521,24 +1520,13 @@ var Keyboard = class Keyboard {
 | 
			
		||||
    _setActiveLayer(activeLevel) {
 | 
			
		||||
        let activeGroupName = this._keyboardController.getCurrentGroup();
 | 
			
		||||
        let layers = this._groups[activeGroupName];
 | 
			
		||||
        let currentPage = layers[activeLevel];
 | 
			
		||||
 | 
			
		||||
        if (this._currentPage == currentPage) {
 | 
			
		||||
            this._updateCurrentPageVisible();
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        if (this._currentPage != null) {
 | 
			
		||||
            this._setCurrentLevelLatched(this._currentPage, false);
 | 
			
		||||
            this._currentPage.disconnect(this._currentPage._destroyID);
 | 
			
		||||
            this._currentPage.hide();
 | 
			
		||||
            delete this._currentPage._destroyID;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        this._currentPage = currentPage;
 | 
			
		||||
        this._currentPage._destroyID = this._currentPage.connect('destroy', () => {
 | 
			
		||||
            this._currentPage = null;
 | 
			
		||||
        });
 | 
			
		||||
        this._currentPage = layers[activeLevel];
 | 
			
		||||
        this._updateCurrentPageVisible();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@@ -1626,6 +1614,18 @@ var Keyboard = class Keyboard {
 | 
			
		||||
        this.setCursorLocation(null);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    _hideSubkeys() {
 | 
			
		||||
        if (this._subkeysBoxPointer) {
 | 
			
		||||
            this._subkeysBoxPointer.hide(BoxPointer.PopupAnimation.FULL);
 | 
			
		||||
            this._subkeysBoxPointer = null;
 | 
			
		||||
        }
 | 
			
		||||
        if (this._capturedEventId) {
 | 
			
		||||
            this.actor.disconnect(this._capturedEventId);
 | 
			
		||||
            this._capturedEventId = 0;
 | 
			
		||||
        }
 | 
			
		||||
        this._capturedPress = false;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    resetSuggestions() {
 | 
			
		||||
        if (this._suggestions)
 | 
			
		||||
            this._suggestions.clear();
 | 
			
		||||
 
 | 
			
		||||
@@ -1731,24 +1731,14 @@ var NMApplet = class extends PanelMenu.SystemIndicator {
 | 
			
		||||
            this._addDeviceWrapper(wrapper);
 | 
			
		||||
 | 
			
		||||
            this._nmDevices.push(device);
 | 
			
		||||
            this._deviceChanged(device, skipSyncDeviceNames);
 | 
			
		||||
            if (!skipSyncDeviceNames)
 | 
			
		||||
                this._syncDeviceNames();
 | 
			
		||||
 | 
			
		||||
            device.connect('notify::interface', () => {
 | 
			
		||||
                this._deviceChanged(device, false);
 | 
			
		||||
            });
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    _deviceChanged(device, skipSyncDeviceNames) {
 | 
			
		||||
        let wrapper = device._delegate;
 | 
			
		||||
 | 
			
		||||
        if (!skipSyncDeviceNames)
 | 
			
		||||
            this._syncDeviceNames();
 | 
			
		||||
 | 
			
		||||
        if (wrapper instanceof NMConnectionSection) {
 | 
			
		||||
            this._connections.forEach(connection => {
 | 
			
		||||
                wrapper.checkConnection(connection);
 | 
			
		||||
            });
 | 
			
		||||
            if (wrapper instanceof NMConnectionSection) {
 | 
			
		||||
                this._connections.forEach(connection => {
 | 
			
		||||
                    wrapper.checkConnection(connection);
 | 
			
		||||
                });
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
project('gnome-shell', 'c',
 | 
			
		||||
  version: '3.33.1',
 | 
			
		||||
  version: '3.32.1',
 | 
			
		||||
  meson_version: '>= 0.47.0',
 | 
			
		||||
  license: 'GPLv2+'
 | 
			
		||||
)
 | 
			
		||||
@@ -23,7 +23,7 @@ gi_req = '>= 1.49.1'
 | 
			
		||||
gjs_req = '>= 1.54.0'
 | 
			
		||||
gtk_req = '>= 3.15.0'
 | 
			
		||||
json_glib_req = '>= 0.13.2'
 | 
			
		||||
mutter_req = '>= 3.33.1'
 | 
			
		||||
mutter_req = '>= 3.32.0'
 | 
			
		||||
polkit_req = '>= 0.100'
 | 
			
		||||
schemas_req = '>= 3.27.90'
 | 
			
		||||
startup_req = '>= 0.11'
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										128
									
								
								po/de.po
									
									
									
									
									
								
							
							
						
						
									
										128
									
								
								po/de.po
									
									
									
									
									
								
							@@ -16,14 +16,14 @@
 | 
			
		||||
# Benjamin Steinwender <b@stbe.at>, 2013-2014.
 | 
			
		||||
# Bernd Homuth <dev@hmt.im>, 2014-2015, 2016, 2019.
 | 
			
		||||
# Franco Della-Monica <franco.della.monica@gmail.com>, 2016.
 | 
			
		||||
# Tim Sabsch <tim@sabsch.com>, 2018-2019.
 | 
			
		||||
# Tim Sabsch <tim@sabsch.com>, 2018.
 | 
			
		||||
#
 | 
			
		||||
msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: gnome-shell master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
 | 
			
		||||
"POT-Creation-Date: 2019-05-08 10:16+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2019-05-12 12:36+0200\n"
 | 
			
		||||
"POT-Creation-Date: 2019-03-02 19:56+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2019-03-02 21:13+0100\n"
 | 
			
		||||
"Last-Translator: Tim Sabsch <tim@sabsch.com>\n"
 | 
			
		||||
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
 | 
			
		||||
"Language: de\n"
 | 
			
		||||
@@ -390,6 +390,11 @@ msgstr ""
 | 
			
		||||
msgid "Network Login"
 | 
			
		||||
msgstr "Netzwerkanmeldung"
 | 
			
		||||
 | 
			
		||||
#. Translators: Do NOT translate or transliterate this text (this is an icon file name)!
 | 
			
		||||
#: data/org.gnome.Shell.PortalHelper.desktop.in.in:9
 | 
			
		||||
msgid "network-workgroup"
 | 
			
		||||
msgstr "network-workgroup"
 | 
			
		||||
 | 
			
		||||
#: js/extensionPrefs/main.js:116
 | 
			
		||||
msgid "Something’s gone wrong"
 | 
			
		||||
msgstr "Etwas ist schiefgelaufen"
 | 
			
		||||
@@ -537,7 +542,7 @@ msgstr "abmelden;verlassen"
 | 
			
		||||
#: js/misc/systemActions.js:109
 | 
			
		||||
msgctxt "search-result"
 | 
			
		||||
msgid "Suspend"
 | 
			
		||||
msgstr "Bereitschaft"
 | 
			
		||||
msgstr "In Bereitschaft versetzen"
 | 
			
		||||
 | 
			
		||||
#. Translators: A list of keywords that match the suspend action, separated by semicolons
 | 
			
		||||
#: js/misc/systemActions.js:112
 | 
			
		||||
@@ -757,12 +762,12 @@ msgstr "Zu Favoriten hinzufügen"
 | 
			
		||||
msgid "Show Details"
 | 
			
		||||
msgstr "Details anzeigen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/appFavorites.js:149
 | 
			
		||||
#: js/ui/appFavorites.js:141
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s has been added to your favorites."
 | 
			
		||||
msgstr "%s wurde zu Ihren Favoriten hinzugefügt"
 | 
			
		||||
 | 
			
		||||
#: js/ui/appFavorites.js:183
 | 
			
		||||
#: js/ui/appFavorites.js:175
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s has been removed from your favorites."
 | 
			
		||||
msgstr "%s wurde aus Ihren Favoriten entfernt"
 | 
			
		||||
@@ -1048,7 +1053,7 @@ msgstr "Passwort der mobilen Breitbandverbindung"
 | 
			
		||||
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:674 js/ui/status/network.js:1664
 | 
			
		||||
#: js/ui/components/networkAgent.js:674 js/ui/status/network.js:1665
 | 
			
		||||
msgid "Network Manager"
 | 
			
		||||
msgstr "Netzwerk-Verwaltung"
 | 
			
		||||
 | 
			
		||||
@@ -1120,23 +1125,23 @@ msgstr "Weltuhren hinzufügen …"
 | 
			
		||||
msgid "World Clocks"
 | 
			
		||||
msgstr "Weltuhren"
 | 
			
		||||
 | 
			
		||||
#: js/ui/dateMenu.js:228
 | 
			
		||||
#: js/ui/dateMenu.js:222
 | 
			
		||||
msgid "Weather"
 | 
			
		||||
msgstr "Wetter"
 | 
			
		||||
 | 
			
		||||
#: js/ui/dateMenu.js:311
 | 
			
		||||
#: js/ui/dateMenu.js:305
 | 
			
		||||
msgid "Select a location…"
 | 
			
		||||
msgstr "Ort auswählen …"
 | 
			
		||||
 | 
			
		||||
#: js/ui/dateMenu.js:319
 | 
			
		||||
#: js/ui/dateMenu.js:313
 | 
			
		||||
msgid "Loading…"
 | 
			
		||||
msgstr "Wird geladen …"
 | 
			
		||||
 | 
			
		||||
#: js/ui/dateMenu.js:329
 | 
			
		||||
#: js/ui/dateMenu.js:323
 | 
			
		||||
msgid "Go online for weather information"
 | 
			
		||||
msgstr "Gehen Sie Online, um Wetterinformationen beziehen zu können"
 | 
			
		||||
 | 
			
		||||
#: js/ui/dateMenu.js:331
 | 
			
		||||
#: js/ui/dateMenu.js:325
 | 
			
		||||
msgid "Weather information is currently unavailable"
 | 
			
		||||
msgstr "Wetterinformationen sind momentan nicht verfügbar"
 | 
			
		||||
 | 
			
		||||
@@ -1299,26 +1304,26 @@ msgid "Download and install “%s” from extensions.gnome.org?"
 | 
			
		||||
msgstr "»%s« von extensions.gnome.org herunterladen und installieren?"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is an application name like "Settings"
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:78
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:50
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s wants to inhibit shortcuts"
 | 
			
		||||
msgstr "%s möchte Tastenkombinationen sperren"
 | 
			
		||||
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:79
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:51
 | 
			
		||||
msgid "Application wants to inhibit shortcuts"
 | 
			
		||||
msgstr "Die Anwendung möchte Tastenkombinationen sperren"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a keyboard shortcut like "Super+x"
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:88
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:60
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "You can restore shortcuts by pressing %s."
 | 
			
		||||
msgstr "Sie können Tastenkombinationen durch Drücken von %s wiederherstellen."
 | 
			
		||||
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:93
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:65
 | 
			
		||||
msgid "Deny"
 | 
			
		||||
msgstr "Ablehnen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:100
 | 
			
		||||
#: js/ui/inhibitShortcutsDialog.js:71
 | 
			
		||||
msgid "Allow"
 | 
			
		||||
msgstr "Zulassen"
 | 
			
		||||
 | 
			
		||||
@@ -1371,13 +1376,13 @@ msgid "Leave On"
 | 
			
		||||
msgstr "Eingeschaltet lassen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/kbdA11yDialog.js:57 js/ui/status/bluetooth.js:133
 | 
			
		||||
#: js/ui/status/network.js:1263
 | 
			
		||||
#: js/ui/status/network.js:1264
 | 
			
		||||
msgid "Turn On"
 | 
			
		||||
msgstr "Einschalten"
 | 
			
		||||
 | 
			
		||||
#: js/ui/kbdA11yDialog.js:65 js/ui/status/bluetooth.js:133
 | 
			
		||||
#: js/ui/status/network.js:128 js/ui/status/network.js:310
 | 
			
		||||
#: js/ui/status/network.js:1263 js/ui/status/network.js:1375
 | 
			
		||||
#: js/ui/status/network.js:1264 js/ui/status/network.js:1376
 | 
			
		||||
#: js/ui/status/nightLight.js:39 js/ui/status/rfkill.js:79
 | 
			
		||||
#: js/ui/status/rfkill.js:106
 | 
			
		||||
msgid "Turn Off"
 | 
			
		||||
@@ -1387,7 +1392,7 @@ msgstr "Ausschalten"
 | 
			
		||||
msgid "Leave Off"
 | 
			
		||||
msgstr "Ausgeschaltet lassen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/keyboard.js:200
 | 
			
		||||
#: js/ui/keyboard.js:203
 | 
			
		||||
msgid "Region & Language Settings"
 | 
			
		||||
msgstr "Regions- und Spracheinstellungen"
 | 
			
		||||
 | 
			
		||||
@@ -1439,7 +1444,7 @@ msgstr "Quelle zeigen"
 | 
			
		||||
msgid "Web Page"
 | 
			
		||||
msgstr "Webseite"
 | 
			
		||||
 | 
			
		||||
#: js/ui/messageTray.js:1480
 | 
			
		||||
#: js/ui/messageTray.js:1474
 | 
			
		||||
msgid "System Information"
 | 
			
		||||
msgstr "Systeminformationen"
 | 
			
		||||
 | 
			
		||||
@@ -1523,11 +1528,11 @@ msgstr "Beenden"
 | 
			
		||||
 | 
			
		||||
#. Translators: If there is no suitable word for "Activities"
 | 
			
		||||
#. in your language, you can use the word for "Overview".
 | 
			
		||||
#: js/ui/panel.js:470
 | 
			
		||||
#: js/ui/panel.js:471
 | 
			
		||||
msgid "Activities"
 | 
			
		||||
msgstr "Aktivitäten"
 | 
			
		||||
 | 
			
		||||
#: js/ui/panel.js:745
 | 
			
		||||
#: js/ui/panel.js:746
 | 
			
		||||
msgctxt "System menu in the top bar"
 | 
			
		||||
msgid "System"
 | 
			
		||||
msgstr "System"
 | 
			
		||||
@@ -1536,6 +1541,15 @@ msgstr "System"
 | 
			
		||||
msgid "Top Bar"
 | 
			
		||||
msgstr "Oberes Panel"
 | 
			
		||||
 | 
			
		||||
#. Translators: this MUST be either "toggle-switch-us"
 | 
			
		||||
#. (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.
 | 
			
		||||
#: js/ui/popupMenu.js:285
 | 
			
		||||
msgid "toggle-switch-us"
 | 
			
		||||
msgstr "toggle-switch-intl"
 | 
			
		||||
 | 
			
		||||
#: js/ui/runDialog.js:64
 | 
			
		||||
msgid "Enter a Command"
 | 
			
		||||
msgstr "Bitte geben Sie einen Befehl ein"
 | 
			
		||||
@@ -1575,7 +1589,7 @@ msgid_plural "%d new notifications"
 | 
			
		||||
msgstr[0] "%d neue Benachrichtigung"
 | 
			
		||||
msgstr[1] "%d neue Benachrichtigungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/screenShield.js:449 js/ui/status/system.js:271
 | 
			
		||||
#: js/ui/screenShield.js:449 js/ui/status/system.js:270
 | 
			
		||||
msgid "Lock"
 | 
			
		||||
msgstr "Sperren"
 | 
			
		||||
 | 
			
		||||
@@ -1590,11 +1604,11 @@ msgstr "GNOME muss den Bildschirm sperren"
 | 
			
		||||
#.
 | 
			
		||||
#. XXX: another option is to kick the user into the gdm login
 | 
			
		||||
#. screen, where we're not affected by grabs
 | 
			
		||||
#: js/ui/screenShield.js:826 js/ui/screenShield.js:1299
 | 
			
		||||
#: js/ui/screenShield.js:834 js/ui/screenShield.js:1307
 | 
			
		||||
msgid "Unable to lock"
 | 
			
		||||
msgstr "Sperrung fehlgeschlagen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/screenShield.js:827 js/ui/screenShield.js:1300
 | 
			
		||||
#: js/ui/screenShield.js:835 js/ui/screenShield.js:1308
 | 
			
		||||
msgid "Lock was blocked by an application"
 | 
			
		||||
msgstr "Sperrung wurde von einer Anwendung blockiert"
 | 
			
		||||
 | 
			
		||||
@@ -1758,7 +1772,7 @@ msgid "<unknown>"
 | 
			
		||||
msgstr "<Unbekannt>"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:416 js/ui/status/network.js:1292
 | 
			
		||||
#: js/ui/status/network.js:416 js/ui/status/network.js:1293
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Off"
 | 
			
		||||
msgstr "%s ausgeschaltet"
 | 
			
		||||
@@ -1784,7 +1798,7 @@ msgid "%s Disconnecting"
 | 
			
		||||
msgstr "%s wird getrennt"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:434 js/ui/status/network.js:1284
 | 
			
		||||
#: js/ui/status/network.js:434 js/ui/status/network.js:1285
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Connecting"
 | 
			
		||||
msgstr "%s wird verbunden"
 | 
			
		||||
@@ -1824,7 +1838,7 @@ msgid "Mobile Broadband Settings"
 | 
			
		||||
msgstr "Einstellungen der mobilen Breitbandverbindung"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:553 js/ui/status/network.js:1289
 | 
			
		||||
#: js/ui/status/network.js:553 js/ui/status/network.js:1290
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Hardware Disabled"
 | 
			
		||||
msgstr "%s-Hardware ausgeschaltet"
 | 
			
		||||
@@ -1896,72 +1910,72 @@ msgid "Wi-Fi Settings"
 | 
			
		||||
msgstr "Drahtlosnetzwerk-Einstellungen"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:1280
 | 
			
		||||
#: js/ui/status/network.js:1281
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Hotspot Active"
 | 
			
		||||
msgstr "Hotspot %s eingeschaltet"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:1295
 | 
			
		||||
#: js/ui/status/network.js:1296
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Not Connected"
 | 
			
		||||
msgstr "%s nicht verbunden"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1392
 | 
			
		||||
#: js/ui/status/network.js:1393
 | 
			
		||||
msgid "connecting…"
 | 
			
		||||
msgstr "Verbindungsaufbau …"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for network connections that require some kind of key or password
 | 
			
		||||
#: js/ui/status/network.js:1395
 | 
			
		||||
#: js/ui/status/network.js:1396
 | 
			
		||||
msgid "authentication required"
 | 
			
		||||
msgstr "Anmeldung erforderlich"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1397
 | 
			
		||||
#: js/ui/status/network.js:1398
 | 
			
		||||
msgid "connection failed"
 | 
			
		||||
msgstr "Verbindung gescheitert"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1447
 | 
			
		||||
#: js/ui/status/network.js:1448
 | 
			
		||||
msgid "VPN Settings"
 | 
			
		||||
msgstr "VPN-Einstellungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1464
 | 
			
		||||
#: js/ui/status/network.js:1465
 | 
			
		||||
msgid "VPN"
 | 
			
		||||
msgstr "VPN"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1474
 | 
			
		||||
#: js/ui/status/network.js:1475
 | 
			
		||||
msgid "VPN Off"
 | 
			
		||||
msgstr "VPN ausgeschaltet"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1535 js/ui/status/rfkill.js:82
 | 
			
		||||
#: js/ui/status/network.js:1536 js/ui/status/rfkill.js:82
 | 
			
		||||
msgid "Network Settings"
 | 
			
		||||
msgstr "Netzwerkeinstellungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1564
 | 
			
		||||
#: js/ui/status/network.js:1565
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Wired Connection"
 | 
			
		||||
msgid_plural "%s Wired Connections"
 | 
			
		||||
msgstr[0] "%s Kabelverbindung"
 | 
			
		||||
msgstr[1] "%s Kabelverbindungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1568
 | 
			
		||||
#: js/ui/status/network.js:1569
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Wi-Fi Connection"
 | 
			
		||||
msgid_plural "%s Wi-Fi Connections"
 | 
			
		||||
msgstr[0] "%s Funknetzwerkverbindung"
 | 
			
		||||
msgstr[1] "%s Funknetzwerkverbindungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1572
 | 
			
		||||
#: js/ui/status/network.js:1573
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Modem Connection"
 | 
			
		||||
msgid_plural "%s Modem Connections"
 | 
			
		||||
msgstr[0] "%s Modem-Verbindung"
 | 
			
		||||
msgstr[1] "%s Modem-Verbindungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1705
 | 
			
		||||
#: js/ui/status/network.js:1702
 | 
			
		||||
msgid "Connection failed"
 | 
			
		||||
msgstr "Verbindung gescheitert"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1706
 | 
			
		||||
#: js/ui/status/network.js:1703
 | 
			
		||||
msgid "Activation of network connection failed"
 | 
			
		||||
msgstr "Aktivierung der Netzwerkverbindung ist gescheitert"
 | 
			
		||||
 | 
			
		||||
@@ -2043,15 +2057,15 @@ msgstr "Abmelden"
 | 
			
		||||
msgid "Account Settings"
 | 
			
		||||
msgstr "Kontoeinstellungen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/system.js:256
 | 
			
		||||
#: js/ui/status/system.js:255
 | 
			
		||||
msgid "Orientation Lock"
 | 
			
		||||
msgstr "Hoch-/Querformats-Fixierung"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/system.js:282
 | 
			
		||||
#: js/ui/status/system.js:281
 | 
			
		||||
msgid "Suspend"
 | 
			
		||||
msgstr "Bereitschaft"
 | 
			
		||||
msgstr "In Bereitschaft versetzen"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/system.js:292
 | 
			
		||||
#: js/ui/status/system.js:291
 | 
			
		||||
msgid "Power Off"
 | 
			
		||||
msgstr "Ausschalten"
 | 
			
		||||
 | 
			
		||||
@@ -2169,7 +2183,7 @@ msgstr[1] ""
 | 
			
		||||
 | 
			
		||||
#. Translators: This represents the size of a window. The first number is
 | 
			
		||||
#. * the width of the window and the second is the height.
 | 
			
		||||
#: js/ui/windowManager.js:677
 | 
			
		||||
#: js/ui/windowManager.js:662
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%d × %d"
 | 
			
		||||
msgstr "%d × %d"
 | 
			
		||||
@@ -2242,6 +2256,11 @@ msgstr "Auf den Bildschirm nach rechts verschieben"
 | 
			
		||||
msgid "Evolution Calendar"
 | 
			
		||||
msgstr "Evolution-Kalender"
 | 
			
		||||
 | 
			
		||||
#. Translators: Do NOT translate or transliterate this text (this is an icon file name)!
 | 
			
		||||
#: src/calendar-server/evolution-calendar.desktop.in:6
 | 
			
		||||
msgid "evolution"
 | 
			
		||||
msgstr "evolution"
 | 
			
		||||
 | 
			
		||||
#: src/main.c:408
 | 
			
		||||
msgid "Print version"
 | 
			
		||||
msgstr "Version ausgeben"
 | 
			
		||||
@@ -2260,12 +2279,12 @@ msgstr ""
 | 
			
		||||
msgid "List possible modes"
 | 
			
		||||
msgstr "Die möglichen Modi auflisten"
 | 
			
		||||
 | 
			
		||||
#: src/shell-app.c:264
 | 
			
		||||
#: src/shell-app.c:260
 | 
			
		||||
msgctxt "program"
 | 
			
		||||
msgid "Unknown"
 | 
			
		||||
msgstr "Unbekannt"
 | 
			
		||||
 | 
			
		||||
#: src/shell-app.c:515
 | 
			
		||||
#: src/shell-app.c:511
 | 
			
		||||
#, c-format
 | 
			
		||||
msgid "Failed to launch “%s”"
 | 
			
		||||
msgstr "»%s« konnte nicht gestartet werden"
 | 
			
		||||
@@ -2304,15 +2323,6 @@ msgstr[1] "%u Eingänge"
 | 
			
		||||
msgid "System Sounds"
 | 
			
		||||
msgstr "Systemklänge"
 | 
			
		||||
 | 
			
		||||
#~ msgid "network-workgroup"
 | 
			
		||||
#~ msgstr "network-workgroup"
 | 
			
		||||
 | 
			
		||||
#~ msgid "toggle-switch-us"
 | 
			
		||||
#~ msgstr "toggle-switch-intl"
 | 
			
		||||
 | 
			
		||||
#~ msgid "evolution"
 | 
			
		||||
#~ msgstr "evolution"
 | 
			
		||||
 | 
			
		||||
#~ msgid "There was an error loading the preferences dialog for %s:"
 | 
			
		||||
#~ msgstr ""
 | 
			
		||||
#~ "Beim Laden des Einstellungsdialogs für %s ist ein Fehler aufgetreten:"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										113
									
								
								po/eo.po
									
									
									
									
									
								
							
							
						
						
									
										113
									
								
								po/eo.po
									
									
									
									
									
								
							@@ -12,8 +12,8 @@ msgid ""
 | 
			
		||||
msgstr ""
 | 
			
		||||
"Project-Id-Version: gnome-shell master\n"
 | 
			
		||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
 | 
			
		||||
"POT-Creation-Date: 2019-05-08 17:45+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2019-05-09 20:12+0200\n"
 | 
			
		||||
"POT-Creation-Date: 2019-04-17 19:29+0000\n"
 | 
			
		||||
"PO-Revision-Date: 2019-05-01 16:29+0200\n"
 | 
			
		||||
"Last-Translator: Carmen Bianca BAKKER <carmen@carmenbianca.eu>\n"
 | 
			
		||||
"Language-Team: Esperanto <gnome-eo-list@gnome.org>\n"
 | 
			
		||||
"Language: eo\n"
 | 
			
		||||
@@ -383,7 +383,7 @@ msgstr "Foliumi en Programaro"
 | 
			
		||||
#: js/gdm/authPrompt.js:140 js/ui/audioDeviceSelection.js:55
 | 
			
		||||
#: js/ui/components/networkAgent.js:117 js/ui/components/polkitAgent.js:136
 | 
			
		||||
#: js/ui/endSessionDialog.js:430 js/ui/extensionDownloader.js:188
 | 
			
		||||
#: js/ui/shellMountOperation.js:325 js/ui/status/network.js:889
 | 
			
		||||
#: js/ui/shellMountOperation.js:325 js/ui/status/network.js:888
 | 
			
		||||
msgid "Cancel"
 | 
			
		||||
msgstr "Nuligi"
 | 
			
		||||
 | 
			
		||||
@@ -683,6 +683,7 @@ msgstr "Ĉiuj"
 | 
			
		||||
 | 
			
		||||
#. Translators: This is the heading of a list of open windows
 | 
			
		||||
#: js/ui/appDisplay.js:1713 js/ui/panel.js:79
 | 
			
		||||
#| msgid "Windows"
 | 
			
		||||
msgid "Open Windows"
 | 
			
		||||
msgstr "Malfermaj fenestroj"
 | 
			
		||||
 | 
			
		||||
@@ -919,7 +920,7 @@ msgstr ""
 | 
			
		||||
"Alternative vi povas konekti per premi la “WPS”-butonon de via enkursigilo."
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:112 js/ui/status/network.js:219
 | 
			
		||||
#: js/ui/status/network.js:310 js/ui/status/network.js:892
 | 
			
		||||
#: js/ui/status/network.js:309 js/ui/status/network.js:891
 | 
			
		||||
msgid "Connect"
 | 
			
		||||
msgstr "Konekti"
 | 
			
		||||
 | 
			
		||||
@@ -949,7 +950,7 @@ msgstr "Servo: "
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:312 js/ui/components/networkAgent.js:685
 | 
			
		||||
msgid "Authentication required by wireless network"
 | 
			
		||||
msgstr "Sendrata reto bezonas aŭtentigon"
 | 
			
		||||
msgstr "Aŭtentigo estas bezonata de sendrata reto"
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:313 js/ui/components/networkAgent.js:686
 | 
			
		||||
#, javascript-format
 | 
			
		||||
@@ -977,7 +978,7 @@ msgstr "PIN-kodo bezonata"
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:332 js/ui/components/networkAgent.js:700
 | 
			
		||||
msgid "PIN code is needed for the mobile broadband device"
 | 
			
		||||
msgstr "PIN-kodo necesas por la portebla larĝkapacita aparato"
 | 
			
		||||
msgstr "PIN-kodo estas bezonata por la portebla larĝkapacita aparato"
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:333
 | 
			
		||||
msgid "PIN: "
 | 
			
		||||
@@ -991,9 +992,9 @@ msgstr "Portebla larĝkapacita retopasvorto"
 | 
			
		||||
#: js/ui/components/networkAgent.js:694 js/ui/components/networkAgent.js:707
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "A password is required to connect to “%s”."
 | 
			
		||||
msgstr "Pasvorto necesas por konekti al “%s”."
 | 
			
		||||
msgstr "Pasvorto estas bezonata por konekti al “%s”."
 | 
			
		||||
 | 
			
		||||
#: js/ui/components/networkAgent.js:674 js/ui/status/network.js:1665
 | 
			
		||||
#: js/ui/components/networkAgent.js:674 js/ui/status/network.js:1664
 | 
			
		||||
msgid "Network Manager"
 | 
			
		||||
msgstr "Retadministrilo"
 | 
			
		||||
 | 
			
		||||
@@ -1310,13 +1311,13 @@ msgid "Leave On"
 | 
			
		||||
msgstr "Lasi ŝaltita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/kbdA11yDialog.js:57 js/ui/status/bluetooth.js:133
 | 
			
		||||
#: js/ui/status/network.js:1264
 | 
			
		||||
#: js/ui/status/network.js:1263
 | 
			
		||||
msgid "Turn On"
 | 
			
		||||
msgstr "Ŝalti"
 | 
			
		||||
 | 
			
		||||
#: js/ui/kbdA11yDialog.js:65 js/ui/status/bluetooth.js:133
 | 
			
		||||
#: js/ui/status/network.js:128 js/ui/status/network.js:311
 | 
			
		||||
#: js/ui/status/network.js:1264 js/ui/status/network.js:1376
 | 
			
		||||
#: js/ui/status/network.js:128 js/ui/status/network.js:310
 | 
			
		||||
#: js/ui/status/network.js:1263 js/ui/status/network.js:1375
 | 
			
		||||
#: js/ui/status/nightLight.js:39 js/ui/status/rfkill.js:79
 | 
			
		||||
#: js/ui/status/rfkill.js:106
 | 
			
		||||
msgid "Turn Off"
 | 
			
		||||
@@ -1378,7 +1379,7 @@ msgstr "Montri fonton"
 | 
			
		||||
msgid "Web Page"
 | 
			
		||||
msgstr "Retpaĝo"
 | 
			
		||||
 | 
			
		||||
#: js/ui/messageTray.js:1479
 | 
			
		||||
#: js/ui/messageTray.js:1480
 | 
			
		||||
msgid "System Information"
 | 
			
		||||
msgstr "Sisteminformoj"
 | 
			
		||||
 | 
			
		||||
@@ -1472,7 +1473,7 @@ msgctxt "System menu in the top bar"
 | 
			
		||||
msgid "System"
 | 
			
		||||
msgstr "Sistemo"
 | 
			
		||||
 | 
			
		||||
#: js/ui/panel.js:861
 | 
			
		||||
#: js/ui/panel.js:864
 | 
			
		||||
msgid "Top Bar"
 | 
			
		||||
msgstr "Supra breto"
 | 
			
		||||
 | 
			
		||||
@@ -1610,11 +1611,11 @@ msgstr "Saltaj klavoj"
 | 
			
		||||
msgid "Mouse Keys"
 | 
			
		||||
msgstr "Musklavoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/accessibility.js:135
 | 
			
		||||
#: js/ui/status/accessibility.js:151
 | 
			
		||||
msgid "High Contrast"
 | 
			
		||||
msgstr "Alta kontrasto"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/accessibility.js:177
 | 
			
		||||
#: js/ui/status/accessibility.js:182
 | 
			
		||||
msgid "Large Text"
 | 
			
		||||
msgstr "Granda teksto"
 | 
			
		||||
 | 
			
		||||
@@ -1622,7 +1623,7 @@ msgstr "Granda teksto"
 | 
			
		||||
msgid "Bluetooth"
 | 
			
		||||
msgstr "Bludento"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/bluetooth.js:47 js/ui/status/network.js:586
 | 
			
		||||
#: js/ui/status/bluetooth.js:47 js/ui/status/network.js:585
 | 
			
		||||
msgid "Bluetooth Settings"
 | 
			
		||||
msgstr "Bludento-agordoj"
 | 
			
		||||
 | 
			
		||||
@@ -1693,13 +1694,13 @@ msgid "<unknown>"
 | 
			
		||||
msgstr "<nekonata>"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:417 js/ui/status/network.js:1293
 | 
			
		||||
#: js/ui/status/network.js:416 js/ui/status/network.js:1292
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Off"
 | 
			
		||||
msgstr "%s malŝaltita"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:420
 | 
			
		||||
#: js/ui/status/network.js:419
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Connected"
 | 
			
		||||
msgstr "%s konektita"
 | 
			
		||||
@@ -1707,189 +1708,189 @@ msgstr "%s konektita"
 | 
			
		||||
#. Translators: this is for network devices that are physically present but are not
 | 
			
		||||
#. under NetworkManager's control (and thus cannot be used in the menu);
 | 
			
		||||
#. %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:425
 | 
			
		||||
#: js/ui/status/network.js:424
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Unmanaged"
 | 
			
		||||
msgstr "%s nemastrumita"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:428
 | 
			
		||||
#: js/ui/status/network.js:427
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Disconnecting"
 | 
			
		||||
msgstr "%s malkonektante"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:435 js/ui/status/network.js:1285
 | 
			
		||||
#: js/ui/status/network.js:434 js/ui/status/network.js:1284
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Connecting"
 | 
			
		||||
msgstr "%s konektante"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for network connections that require some kind of key or password; %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:438
 | 
			
		||||
#: js/ui/status/network.js:437
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Requires Authentication"
 | 
			
		||||
msgstr "%s postulas aŭtentigon"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for devices that require some kind of firmware or kernel
 | 
			
		||||
#. module, which is missing; %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:446
 | 
			
		||||
#: js/ui/status/network.js:445
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "Firmware Missing For %s"
 | 
			
		||||
msgstr "Mikroprogramo mankas por %s"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for a network device that cannot be activated (for example it
 | 
			
		||||
#. is disabled by rfkill, or it has no coverage; %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:450
 | 
			
		||||
#: js/ui/status/network.js:449
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Unavailable"
 | 
			
		||||
msgstr "%s nedisponebla"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:453
 | 
			
		||||
#: js/ui/status/network.js:452
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Connection Failed"
 | 
			
		||||
msgstr "%s konekto malsukcesis"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:465
 | 
			
		||||
#: js/ui/status/network.js:464
 | 
			
		||||
msgid "Wired Settings"
 | 
			
		||||
msgstr "Drataj agordoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:507
 | 
			
		||||
#: js/ui/status/network.js:506
 | 
			
		||||
msgid "Mobile Broadband Settings"
 | 
			
		||||
msgstr "Porteblaj larĝkapacitaj agordoj"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:554 js/ui/status/network.js:1290
 | 
			
		||||
#: js/ui/status/network.js:553 js/ui/status/network.js:1289
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Hardware Disabled"
 | 
			
		||||
msgstr "%s aparataro malŝaltita"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for a network device that cannot be activated
 | 
			
		||||
#. because it's disabled by rfkill (airplane mode); %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:558
 | 
			
		||||
#: js/ui/status/network.js:557
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Disabled"
 | 
			
		||||
msgstr "%s malŝaltita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:598
 | 
			
		||||
#: js/ui/status/network.js:597
 | 
			
		||||
msgid "Connect to Internet"
 | 
			
		||||
msgstr "Konekti al interreto"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:787
 | 
			
		||||
#: js/ui/status/network.js:786
 | 
			
		||||
msgid "Airplane Mode is On"
 | 
			
		||||
msgstr "Aviadila reĝimo ŝaltita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:788
 | 
			
		||||
#: js/ui/status/network.js:787
 | 
			
		||||
msgid "Wi-Fi is disabled when airplane mode is on."
 | 
			
		||||
msgstr "Vifio malebliĝas se aviadila reĝimo estas ŝaltita."
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:789
 | 
			
		||||
#: js/ui/status/network.js:788
 | 
			
		||||
msgid "Turn Off Airplane Mode"
 | 
			
		||||
msgstr "Malŝalti aviadilan reĝimon"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:798
 | 
			
		||||
#: js/ui/status/network.js:797
 | 
			
		||||
msgid "Wi-Fi is Off"
 | 
			
		||||
msgstr "Vifio malŝaltita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:799
 | 
			
		||||
#: js/ui/status/network.js:798
 | 
			
		||||
msgid "Wi-Fi needs to be turned on in order to connect to a network."
 | 
			
		||||
msgstr "Necesas ŝalti vifion por konekti al reto."
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:800
 | 
			
		||||
#: js/ui/status/network.js:799
 | 
			
		||||
msgid "Turn On Wi-Fi"
 | 
			
		||||
msgstr "Ŝalti vifion"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:825
 | 
			
		||||
#: js/ui/status/network.js:824
 | 
			
		||||
msgid "Wi-Fi Networks"
 | 
			
		||||
msgstr "Vifiaj retoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:827
 | 
			
		||||
#: js/ui/status/network.js:826
 | 
			
		||||
msgid "Select a network"
 | 
			
		||||
msgstr "Elekti reton"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:856
 | 
			
		||||
#: js/ui/status/network.js:855
 | 
			
		||||
msgid "No Networks"
 | 
			
		||||
msgstr "Neniu reto"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:877 js/ui/status/rfkill.js:104
 | 
			
		||||
#: js/ui/status/network.js:876 js/ui/status/rfkill.js:104
 | 
			
		||||
msgid "Use hardware switch to turn off"
 | 
			
		||||
msgstr "Uzi aparataran ŝaltilon por malŝalti"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1153
 | 
			
		||||
#: js/ui/status/network.js:1152
 | 
			
		||||
msgid "Select Network"
 | 
			
		||||
msgstr "Elekti reton"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1159
 | 
			
		||||
#: js/ui/status/network.js:1158
 | 
			
		||||
msgid "Wi-Fi Settings"
 | 
			
		||||
msgstr "Vifio-agordoj"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:1281
 | 
			
		||||
#: js/ui/status/network.js:1280
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Hotspot Active"
 | 
			
		||||
msgstr "%s retkaptejo aktiva"
 | 
			
		||||
 | 
			
		||||
#. Translators: %s is a network identifier
 | 
			
		||||
#: js/ui/status/network.js:1296
 | 
			
		||||
#: js/ui/status/network.js:1295
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Not Connected"
 | 
			
		||||
msgstr "%s ne konektita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1393
 | 
			
		||||
#: js/ui/status/network.js:1392
 | 
			
		||||
msgid "connecting…"
 | 
			
		||||
msgstr "konektante…"
 | 
			
		||||
 | 
			
		||||
#. Translators: this is for network connections that require some kind of key or password
 | 
			
		||||
#: js/ui/status/network.js:1396
 | 
			
		||||
#: js/ui/status/network.js:1395
 | 
			
		||||
msgid "authentication required"
 | 
			
		||||
msgstr "aŭtentigo necesas"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1398
 | 
			
		||||
#: js/ui/status/network.js:1397
 | 
			
		||||
msgid "connection failed"
 | 
			
		||||
msgstr "konekto malsukcesis"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1448
 | 
			
		||||
#: js/ui/status/network.js:1447
 | 
			
		||||
msgid "VPN Settings"
 | 
			
		||||
msgstr "VPR-agordoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1465
 | 
			
		||||
#: js/ui/status/network.js:1464
 | 
			
		||||
msgid "VPN"
 | 
			
		||||
msgstr "VPR"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1475
 | 
			
		||||
#: js/ui/status/network.js:1474
 | 
			
		||||
msgid "VPN Off"
 | 
			
		||||
msgstr "VPR malŝaltita"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1536 js/ui/status/rfkill.js:82
 | 
			
		||||
#: js/ui/status/network.js:1535 js/ui/status/rfkill.js:82
 | 
			
		||||
msgid "Network Settings"
 | 
			
		||||
msgstr "Ret-agordoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1565
 | 
			
		||||
#: js/ui/status/network.js:1564
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Wired Connection"
 | 
			
		||||
msgid_plural "%s Wired Connections"
 | 
			
		||||
msgstr[0] "%s drata konekto"
 | 
			
		||||
msgstr[1] "%s drataj konektoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1569
 | 
			
		||||
#: js/ui/status/network.js:1568
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Wi-Fi Connection"
 | 
			
		||||
msgid_plural "%s Wi-Fi Connections"
 | 
			
		||||
msgstr[0] "%s vifia konekto"
 | 
			
		||||
msgstr[1] "%s vifiaj konektoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1573
 | 
			
		||||
#: js/ui/status/network.js:1572
 | 
			
		||||
#, javascript-format
 | 
			
		||||
msgid "%s Modem Connection"
 | 
			
		||||
msgid_plural "%s Modem Connections"
 | 
			
		||||
msgstr[0] "%s modema konekto"
 | 
			
		||||
msgstr[1] "%s modemaj konektoj"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1706
 | 
			
		||||
#: js/ui/status/network.js:1705
 | 
			
		||||
msgid "Connection failed"
 | 
			
		||||
msgstr "Konekto malsukcesis"
 | 
			
		||||
 | 
			
		||||
#: js/ui/status/network.js:1707
 | 
			
		||||
#: js/ui/status/network.js:1706
 | 
			
		||||
msgid "Activation of network connection failed"
 | 
			
		||||
msgstr "Aktivigo de reto-konekto malsukcesis"
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										1083
									
								
								po/zh_CN.po
									
									
									
									
									
								
							
							
						
						
									
										1083
									
								
								po/zh_CN.po
									
									
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -206,8 +206,8 @@ st_icon_style_changed (StWidget *widget)
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  priv->theme_icon_size = (int)(0.5 + st_theme_node_get_length (theme_node, "icon-size"));
 | 
			
		||||
  st_icon_update_icon_size (self);
 | 
			
		||||
  st_icon_update (self);
 | 
			
		||||
  if (st_icon_update_icon_size (self))
 | 
			
		||||
    st_icon_update (self);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
 
 | 
			
		||||
@@ -65,8 +65,6 @@ struct _StWidgetPrivate
 | 
			
		||||
  StThemeNodeTransition *transition_animation;
 | 
			
		||||
 | 
			
		||||
  guint is_style_dirty : 1;
 | 
			
		||||
  guint first_child_dirty : 1;
 | 
			
		||||
  guint last_child_dirty : 1;
 | 
			
		||||
  guint draw_bg_color : 1;
 | 
			
		||||
  guint draw_border_internal : 1;
 | 
			
		||||
  guint track_hover : 1;
 | 
			
		||||
@@ -74,7 +72,6 @@ struct _StWidgetPrivate
 | 
			
		||||
  guint can_focus : 1;
 | 
			
		||||
 | 
			
		||||
  gulong texture_file_changed_id;
 | 
			
		||||
  guint update_child_styles_id;
 | 
			
		||||
 | 
			
		||||
  AtkObject *accessible;
 | 
			
		||||
  AtkRole accessible_role;
 | 
			
		||||
@@ -326,8 +323,6 @@ st_widget_dispose (GObject *gobject)
 | 
			
		||||
  g_clear_object (&priv->last_visible_child);
 | 
			
		||||
 | 
			
		||||
  G_OBJECT_CLASS (st_widget_parent_class)->dispose (gobject);
 | 
			
		||||
 | 
			
		||||
  g_clear_handle_id (&priv->update_child_styles_id, g_source_remove);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
@@ -1613,85 +1608,47 @@ find_nearest_visible_forward (ClutterActor *actor)
 | 
			
		||||
  return next;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static gboolean
 | 
			
		||||
st_widget_update_child_styles (StWidget *widget)
 | 
			
		||||
{
 | 
			
		||||
  StWidgetPrivate *priv = st_widget_get_instance_private (widget);
 | 
			
		||||
 | 
			
		||||
  if (priv->first_child_dirty)
 | 
			
		||||
    {
 | 
			
		||||
      ClutterActor *first_child;
 | 
			
		||||
 | 
			
		||||
      priv->first_child_dirty = FALSE;
 | 
			
		||||
 | 
			
		||||
      first_child = clutter_actor_get_first_child (CLUTTER_ACTOR (widget));
 | 
			
		||||
      st_widget_set_first_visible_child (widget,
 | 
			
		||||
                                         find_nearest_visible_forward (first_child));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  if (priv->last_child_dirty)
 | 
			
		||||
    {
 | 
			
		||||
      ClutterActor *last_child;
 | 
			
		||||
 | 
			
		||||
      priv->last_child_dirty = FALSE;
 | 
			
		||||
 | 
			
		||||
      last_child = clutter_actor_get_last_child (CLUTTER_ACTOR (widget));
 | 
			
		||||
      st_widget_set_last_visible_child (widget,
 | 
			
		||||
                                        find_nearest_visible_backwards (last_child));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  priv->update_child_styles_id = 0;
 | 
			
		||||
  return G_SOURCE_REMOVE;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
st_widget_queue_child_styles_update (StWidget *widget)
 | 
			
		||||
{
 | 
			
		||||
  StWidgetPrivate *priv = st_widget_get_instance_private (widget);
 | 
			
		||||
 | 
			
		||||
  if (priv->update_child_styles_id != 0)
 | 
			
		||||
    return;
 | 
			
		||||
 | 
			
		||||
  priv->update_child_styles_id = g_idle_add ((GSourceFunc) st_widget_update_child_styles, widget);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
st_widget_visible_notify (StWidget   *widget,
 | 
			
		||||
                          GParamSpec *pspec,
 | 
			
		||||
                          gpointer    data)
 | 
			
		||||
{
 | 
			
		||||
  StWidgetPrivate *parent_priv;
 | 
			
		||||
  ClutterActor *actor = CLUTTER_ACTOR (widget);
 | 
			
		||||
  ClutterActor *parent = clutter_actor_get_parent (actor);
 | 
			
		||||
 | 
			
		||||
  if (parent == NULL || !ST_IS_WIDGET (parent))
 | 
			
		||||
    return;
 | 
			
		||||
 | 
			
		||||
  parent_priv = st_widget_get_instance_private (ST_WIDGET (parent));
 | 
			
		||||
 | 
			
		||||
  if (clutter_actor_is_visible (actor))
 | 
			
		||||
    {
 | 
			
		||||
      ClutterActor *before, *after;
 | 
			
		||||
 | 
			
		||||
      before = clutter_actor_get_previous_sibling (actor);
 | 
			
		||||
      if (find_nearest_visible_backwards (before) == NULL)
 | 
			
		||||
        parent_priv->first_child_dirty = TRUE;
 | 
			
		||||
        st_widget_set_first_visible_child (ST_WIDGET (parent), actor);
 | 
			
		||||
 | 
			
		||||
      after = clutter_actor_get_next_sibling (actor);
 | 
			
		||||
      if (find_nearest_visible_forward (after) == NULL)
 | 
			
		||||
        parent_priv->last_child_dirty = TRUE;
 | 
			
		||||
        st_widget_set_last_visible_child (ST_WIDGET (parent), actor);
 | 
			
		||||
    }
 | 
			
		||||
  else
 | 
			
		||||
    {
 | 
			
		||||
      if (st_widget_has_style_pseudo_class (widget, "first-child"))
 | 
			
		||||
        parent_priv->first_child_dirty = TRUE;
 | 
			
		||||
        {
 | 
			
		||||
          ClutterActor *new_first;
 | 
			
		||||
 | 
			
		||||
          new_first = find_nearest_visible_forward (CLUTTER_ACTOR (widget));
 | 
			
		||||
          st_widget_set_first_visible_child (ST_WIDGET (parent), new_first);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
      if (st_widget_has_style_pseudo_class (widget, "last-child"))
 | 
			
		||||
        parent_priv->last_child_dirty = TRUE;
 | 
			
		||||
    }
 | 
			
		||||
        {
 | 
			
		||||
          ClutterActor *new_last;
 | 
			
		||||
 | 
			
		||||
  if (parent_priv->first_child_dirty || parent_priv->last_child_dirty)
 | 
			
		||||
    st_widget_queue_child_styles_update (ST_WIDGET (parent));
 | 
			
		||||
          new_last = find_nearest_visible_backwards (CLUTTER_ACTOR (widget));
 | 
			
		||||
          st_widget_set_last_visible_child (ST_WIDGET (parent), new_last);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
@@ -1699,10 +1656,10 @@ st_widget_first_child_notify (StWidget   *widget,
 | 
			
		||||
                              GParamSpec *pspec,
 | 
			
		||||
                              gpointer    data)
 | 
			
		||||
{
 | 
			
		||||
  StWidgetPrivate *priv = st_widget_get_instance_private (widget);
 | 
			
		||||
  ClutterActor *first_child;
 | 
			
		||||
 | 
			
		||||
  priv->first_child_dirty = TRUE;
 | 
			
		||||
  st_widget_queue_child_styles_update (widget);
 | 
			
		||||
  first_child = clutter_actor_get_first_child (CLUTTER_ACTOR (widget));
 | 
			
		||||
  st_widget_set_first_visible_child (widget, find_nearest_visible_forward (first_child));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
@@ -1710,10 +1667,10 @@ st_widget_last_child_notify (StWidget   *widget,
 | 
			
		||||
                             GParamSpec *pspec,
 | 
			
		||||
                             gpointer    data)
 | 
			
		||||
{
 | 
			
		||||
  StWidgetPrivate *priv = st_widget_get_instance_private (widget);
 | 
			
		||||
  ClutterActor *last_child;
 | 
			
		||||
 | 
			
		||||
  priv->last_child_dirty = TRUE;
 | 
			
		||||
  st_widget_queue_child_styles_update (widget);
 | 
			
		||||
  last_child = clutter_actor_get_last_child (CLUTTER_ACTOR (widget));
 | 
			
		||||
  st_widget_set_last_visible_child (widget, find_nearest_visible_backwards (last_child));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user