Compare commits

..

1 Commits

Author SHA1 Message Date
Jakub Steiner
b58d702a2d theme: update system grey background
Fixes https://gitlab.gnome.org/GNOME/gnome-shell/issues/2174
2020-02-04 15:28:56 +01:00
9 changed files with 236 additions and 428 deletions

View File

@@ -18,7 +18,6 @@
<file alias="icons/message-indicator-symbolic.svg">message-indicator-symbolic.svg</file>
<file>no-events.svg</file>
<file>no-notifications.svg</file>
<file>noise-texture.png</file>
<file>pad-osd.css</file>
<file alias="icons/eye-open-negative-filled-symbolic.svg">eye-open-negative-filled-symbolic.svg</file>
<file alias="icons/eye-not-looking-symbolic.svg">eye-not-looking-symbolic.svg</file>

View File

@@ -70,8 +70,7 @@ $_screenshield_shadow: 0px 0px 6px rgba(0, 0, 0, 0.726);
}
#lockDialogGroup {
background: lighten(#2e3436, 8%) url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
background-color: lighten(#2e3436, 8%);
}
#screenShieldNotifications {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

View File

@@ -447,7 +447,7 @@ var ExtensionsWindow = GObject.registerClass({
this._updatesLabel.label = Gettext.ngettext(
'%d extension will be updated on next login.',
'%d extensions will be updated on next login.',
'%d extensions will be updated on next login.e',
nUpdates).format(nUpdates);
this._updatesBar.visible = nUpdates > 0;
}

View File

@@ -504,12 +504,10 @@ var SystemBackground = GObject.registerClass({
Signals: { 'loaded': {} },
}, class SystemBackground extends Meta.BackgroundActor {
_init() {
let file = Gio.File.new_for_uri('resource:///org/gnome/shell/theme/noise-texture.png');
if (_systemBackground == null) {
_systemBackground = new Meta.Background({ meta_display: global.display });
_systemBackground.set_color(DEFAULT_BACKGROUND_COLOR);
_systemBackground.set_file(file, GDesktopEnums.BackgroundStyle.WALLPAPER);
}
super._init({

View File

@@ -745,7 +745,8 @@ var ZoomRegion = class ZoomRegion {
this._xCaret = 0;
this._yCaret = 0;
this._pointerIdleMonitor = Meta.IdleMonitor.get_core();
let seat = Clutter.get_default_backend().get_default_seat();
this._pointerIdleMonitor = Meta.IdleMonitor.get_for_device(seat.get_pointer());
this._scrollContentsTimerId = 0;
}

View File

@@ -20,13 +20,9 @@ class Indicator extends PanelMenu.SystemIndicator {
this._createSubMenu();
this._loginScreenItem.connect('notify::visible',
() => this._updateSessionSubMenu());
() => this._updateMultiUser());
this._logoutItem.connect('notify::visible',
() => this._updateSessionSubMenu());
this._suspendItem.connect('notify::visible',
() => this._updateSessionSubMenu());
this._powerOffItem.connect('notify::visible',
() => this._updateSessionSubMenu());
() => this._updateMultiUser());
// Whether shutdown is available or not depends on both lockdown
// settings (disable-log-out) and Polkit policy - the latter doesn't
// notify, so we update the menu item each time the menu opens or
@@ -37,7 +33,7 @@ class Indicator extends PanelMenu.SystemIndicator {
this._systemActions.forceUpdate();
});
this._updateSessionSubMenu();
this._updateMultiUser();
Main.sessionMode.connect('updated', this._sessionUpdated.bind(this));
this._sessionUpdated();
@@ -47,12 +43,11 @@ class Indicator extends PanelMenu.SystemIndicator {
this._settingsItem.visible = Main.sessionMode.allowSettings;
}
_updateSessionSubMenu() {
this._sessionSubMenu.visible =
this._loginScreenItem.visible ||
this._logoutItem.visible ||
this._suspendItem.visible ||
this._powerOffItem.visible;
_updateMultiUser() {
let hasSwitchUser = this._loginScreenItem.visible;
let hasLogout = this._logoutItem.visible;
this._sessionSubMenu.visible = hasSwitchUser || hasLogout;
}
_createSubMenu() {

170
po/es.po
View File

@@ -9,8 +9,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: 2020-02-04 18:00+0000\n"
"PO-Revision-Date: 2020-02-05 11:16+0100\n"
"POT-Creation-Date: 2020-02-01 07:15+0000\n"
"PO-Revision-Date: 2020-02-03 12:01+0100\n"
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
"Language-Team: Spanish - Spain <gnome-es-list@gnome.org>\n"
"Language: es_ES\n"
@@ -44,16 +44,12 @@ msgstr "Mostrar todas las aplicaciones"
msgid "Open the application menu"
msgstr "Abrir el menú de la aplicación"
#: data/org.gnome.Extensions.desktop.in.in:4 js/extensionPrefs/main.js:218
#: js/extensionPrefs/ui/extensions-window.ui:61
msgid "Extensions"
msgstr "Extensiones"
#: data/gnome-shell-extension-prefs.desktop.in.in:4
#: js/extensionPrefs/main.js:209
msgid "Shell Extensions"
msgstr "Extensiones de la Shell"
#: data/org.gnome.Extensions.desktop.in.in:5
msgid "org.gnome.Extensions"
msgstr "org.gnome.Extensions"
#: data/org.gnome.Extensions.desktop.in.in:6
#: data/gnome-shell-extension-prefs.desktop.in.in:5
msgid "Configure GNOME Shell Extensions"
msgstr "Configurar las extensiones de GNOME Shell"
@@ -414,47 +410,11 @@ msgstr ""
msgid "Network Login"
msgstr "Inicio de sesión de la red"
#: js/extensionPrefs/main.js:140
#, javascript-format
msgid "Remove “%s”?"
msgstr "¿Quitar «%s»?"
#: js/extensionPrefs/main.js:141
msgid ""
"If you remove the extension, you need to return to download it if you want "
"to enable it again"
msgstr ""
"Si quita la extensión necesitará volver a descargarla si quiere activarla de "
"nuevo"
#: js/extensionPrefs/main.js:144 js/gdm/authPrompt.js:170
#: js/ui/audioDeviceSelection.js:57 js/ui/components/networkAgent.js:107
#: js/ui/components/polkitAgent.js:139 js/ui/endSessionDialog.js:374
#: js/ui/extensionDownloader.js:166 js/ui/shellMountOperation.js:376
#: js/ui/shellMountOperation.js:386 js/ui/status/network.js:910
msgid "Cancel"
msgstr "Cancelar"
#: js/extensionPrefs/main.js:145
msgid "Remove"
msgstr "Quitar"
#: js/extensionPrefs/main.js:217
msgid "translator-credits"
msgstr ""
"Daniel Mustieles <daniel.mustieles@gmail.com>, 2010-2020\n"
"Benjamín Valero Espinosa <benjavalero@gmail.com>, 2011\n"
"Jorge González <jorgegonz@svn.gnome.org>, 2009, 2010, 2011"
#: js/extensionPrefs/main.js:219
msgid "Manage your GNOME Extensions"
msgstr "Gestionar sus extensiones de GNOME Shell"
#: js/extensionPrefs/main.js:261 js/extensionPrefs/ui/extensions-window.ui:222
#: js/extensionPrefs/main.js:102 js/extensionPrefs/main.js:525
msgid "Somethings gone wrong"
msgstr "Algo ha fallado"
#: js/extensionPrefs/main.js:268
#: js/extensionPrefs/main.js:109
msgid ""
"Were very sorry, but theres been a problem: the settings for this "
"extension cant be displayed. We recommend that you report the issue to the "
@@ -463,74 +423,39 @@ msgstr ""
"Ha habido un problema: no se puede mostrar la configuración para esta "
"extensión. Se recomienda que informe del error a los autores de la extensión."
#: js/extensionPrefs/main.js:275
#: js/extensionPrefs/main.js:116
msgid "Technical Details"
msgstr "Detalles técnicos"
#: js/extensionPrefs/main.js:310
#: js/extensionPrefs/main.js:151
msgid "Copy Error"
msgstr "Copiar error"
#: js/extensionPrefs/main.js:337
#: js/extensionPrefs/main.js:178
msgid "Homepage"
msgstr "Página web"
#: js/extensionPrefs/main.js:338
#: js/extensionPrefs/main.js:179
msgid "Visit extension homepage"
msgstr "Visitar la página web de la extensión"
#: js/extensionPrefs/main.js:449
#, javascript-format
#| msgid "%d extension will be updated on next login."
#| msgid_plural "%d extensions will be updated on next login.e"
msgid "%d extension will be updated on next login."
msgid_plural "%d extensions will be updated on next login."
msgstr[0] "la próxima vez que inicie sesión se actualizará %d extensión"
msgstr[1] "la próxima vez que inicie sesión se actualizarán %d extensiones"
#: js/extensionPrefs/ui/extensions-window.ui:8
msgid "Help"
msgstr "Ayuda"
#: js/extensionPrefs/ui/extensions-window.ui:12
msgid "About Extensions"
msgstr "Acerca de extensiones"
#: js/extensionPrefs/ui/extensions-window.ui:27
msgid ""
"To find and add extensions, visit <a href=\"https://extensions.gnome.org"
"\">extensions.gnome.org</a>."
msgstr ""
"Para buscar y añadir extensiones visite <a href=\"https://extensions.gnome."
"org\">extensions.gnome.org</a>."
#: js/extensionPrefs/ui/extensions-window.ui:35
msgid "Warning"
msgstr "Advertencia"
#: js/extensionPrefs/ui/extensions-window.ui:46
msgid ""
"Extensions can cause system issues, including performance problems. If you "
"encounter problems with your system, it is recommended to disable all "
"extensions."
msgstr ""
"Las extensiones pueden causar problemas en el sistema, incluso problemas de "
"rendimiento. Si tiene problemas con sus sistema se recomienda desactivar "
"todas las extensiones."
#: js/extensionPrefs/ui/extensions-window.ui:133
msgid "Manually Installed"
msgstr "Instalada manualmente"
#: js/extensionPrefs/ui/extensions-window.ui:157
msgid "Built-In"
msgstr "Integrada"
#: js/extensionPrefs/ui/extensions-window.ui:198
msgid "No Installed Extensions"
#: js/extensionPrefs/main.js:467
msgid "No Extensions Installed"
msgstr "No hay extensiones instaladas"
#: js/extensionPrefs/ui/extensions-window.ui:234
#: js/extensionPrefs/main.js:477
msgid ""
"Extensions can be installed through Software or <a href=\"https://extensions."
"gnome.org\">extensions.gnome.org</a>."
msgstr ""
"Las extensiones se puede instalar mediante software o <a href=\"https://"
"extensions.gnome.org\">extensions.gnome.org</a>."
#: js/extensionPrefs/main.js:492
msgid "Browse in Software"
msgstr "Buscar en Software"
#: js/extensionPrefs/main.js:532
msgid ""
"Were very sorry, but it was not possible to get the list of installed "
"extensions. Make sure you are logged into GNOME and try again."
@@ -538,9 +463,13 @@ msgstr ""
"No es posible obtener la lista de extensiones instaladas. asegúrese de que "
"ha iniciado sesión en GNOME e inténtelo de nuevo."
#: js/extensionPrefs/ui/extensions-window.ui:287
msgid "Logout…"
msgstr "Cerrar sesión…"
#: js/gdm/authPrompt.js:170 js/ui/audioDeviceSelection.js:57
#: js/ui/components/networkAgent.js:107 js/ui/components/polkitAgent.js:139
#: js/ui/endSessionDialog.js:374 js/ui/extensionDownloader.js:166
#: js/ui/shellMountOperation.js:376 js/ui/shellMountOperation.js:386
#: js/ui/status/network.js:910
msgid "Cancel"
msgstr "Cancelar"
#: js/gdm/authPrompt.js:184 js/gdm/authPrompt.js:237 js/gdm/authPrompt.js:468
msgid "Next"
@@ -1190,6 +1119,7 @@ msgid "Sorry, that didnt work. Please try again."
msgstr "Eso no ha funcionado. Inténtelo de nuevo."
#: js/ui/components/polkitAgent.js:277 js/ui/shellMountOperation.js:326
#| msgid "Remember Password"
msgid "Enter Password…"
msgstr "Introduzca la contraseña…"
@@ -1421,14 +1351,6 @@ msgstr "Instalar extensión"
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "¿Descargar e instalar «%s» desde extensions.gnome.org?"
#: js/ui/extensionSystem.js:228
msgid "Extension Updates Available"
msgstr "Actualizaciones de extensiones disponibles"
#: js/ui/extensionSystem.js:229
msgid "Extension updates are ready to be installed."
msgstr "Las actualizaciones de las extensiones están listas para instalarse."
#: js/ui/inhibitShortcutsDialog.js:79
msgid "Allow inhibiting shortcuts"
msgstr "Permitir inhibir los atajos"
@@ -1723,7 +1645,7 @@ msgid_plural "%d new notifications"
msgstr[0] "%d notificación nueva"
msgstr[1] "%d notificaciones nuevas"
#: js/ui/screenShield.js:454 js/ui/status/system.js:103
#: js/ui/screenShield.js:454 js/ui/status/system.js:98
msgid "Lock"
msgstr "Bloquear"
@@ -1803,6 +1725,7 @@ msgstr ""
"%s</i> en su lugar."
#: js/ui/shellMountOperation.js:306
#| msgid "PIM Number"
msgid "Enter PIM Number…"
msgstr "Introduzca el número PIM…"
@@ -2243,23 +2166,23 @@ msgstr "Apagar"
msgid "Airplane Mode On"
msgstr "Modo avión activado"
#: js/ui/status/system.js:116
#: js/ui/status/system.js:111
msgid "Power Off / Log Out"
msgstr "Apagar / cerrar sesión"
#: js/ui/status/system.js:119
#: js/ui/status/system.js:114
msgid "Log Out"
msgstr "Cerrar la sesión"
#: js/ui/status/system.js:131
#: js/ui/status/system.js:126
msgid "Switch User…"
msgstr "Cambiar de usuario…"
#: js/ui/status/system.js:145
#: js/ui/status/system.js:140
msgid "Suspend"
msgstr "Suspender"
#: js/ui/status/system.js:157
#: js/ui/status/system.js:152
msgid "Power Off…"
msgstr "Apagar…"
@@ -2357,6 +2280,7 @@ msgstr "«%s» está preparado"
#. Translators: This string should be shorter than 30 characters
#: js/ui/windowManager.js:55
#| msgid "Do you want to keep these display settings?"
msgid "Keep these display settings?"
msgstr "¿Quiere mantener esta configuración de la pantalla?"
@@ -2839,9 +2763,6 @@ msgstr[1] "%u entradas"
msgid "System Sounds"
msgstr "Sonidos del sistema"
#~ msgid "Browse in Software"
#~ msgstr "Buscar en Software"
#~ msgid "Password:"
#~ msgstr "Contraseña:"
@@ -3173,6 +3094,9 @@ msgstr "Sonidos del sistema"
#~ msgid "Open"
#~ msgstr "Abrir"
#~ msgid "Remove"
#~ msgstr "Quitar"
#~ msgid "Clear Messages"
#~ msgstr "Limpiar mensajes"

460
po/id.po
View File

@@ -11,8 +11,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: 2020-02-03 20:34+0000\n"
"PO-Revision-Date: 2020-02-04 13:57+0700\n"
"POT-Creation-Date: 2020-01-22 22:00+0000\n"
"PO-Revision-Date: 2020-01-23 16:31+0700\n"
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
"Language-Team: Indonesian <gnome-l10n-id@googlegroups.com>\n"
"Language: id\n"
@@ -20,7 +20,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural= n!=1;\n"
"X-Generator: Poedit 2.3\n"
"X-Generator: Poedit 2.2.4\n"
"X-DamnedLies-Scope: partial\n"
"X-Poedit-SourceCharset: UTF-8\n"
@@ -48,16 +48,12 @@ msgstr "Tampilkan semua aplikasi"
msgid "Open the application menu"
msgstr "Buka menu aplikasi"
#: data/org.gnome.Extensions.desktop.in.in:4 js/extensionPrefs/main.js:218
#: js/extensionPrefs/ui/extensions-window.ui:61
msgid "Extensions"
msgstr "Ekstensi"
#: data/gnome-shell-extension-prefs.desktop.in.in:4
#: js/extensionPrefs/main.js:209
msgid "Shell Extensions"
msgstr "Ekstensi Shell"
#: data/org.gnome.Extensions.desktop.in.in:5
msgid "org.gnome.Extensions"
msgstr "org.gnome.Extensions"
#: data/org.gnome.Extensions.desktop.in.in:6
#: data/gnome-shell-extension-prefs.desktop.in.in:5
msgid "Configure GNOME Shell Extensions"
msgstr "Konfigurasi Ekstensi GNOME Shell"
@@ -409,49 +405,11 @@ msgstr ""
msgid "Network Login"
msgstr "Log Masuk Jaringan"
#: js/extensionPrefs/main.js:140
#, javascript-format
msgid "Remove “%s”?"
msgstr "Hapus \"%s\"?"
#: js/extensionPrefs/main.js:141
msgid ""
"If you remove the extension, you need to return to download it if you want "
"to enable it again"
msgstr ""
"Jika Anda menghapus ekstensi, Anda harus kembali untuk mengunduhnya jika "
"Anda ingin mengaktifkannya lagi"
#: js/extensionPrefs/main.js:144 js/gdm/authPrompt.js:170
#: js/ui/audioDeviceSelection.js:57 js/ui/components/networkAgent.js:107
#: js/ui/components/polkitAgent.js:139 js/ui/endSessionDialog.js:374
#: js/ui/extensionDownloader.js:166 js/ui/shellMountOperation.js:376
#: js/ui/shellMountOperation.js:386 js/ui/status/network.js:910
msgid "Cancel"
msgstr "Batal"
#: js/extensionPrefs/main.js:145
msgid "Remove"
msgstr "Hapus"
#: js/extensionPrefs/main.js:217
msgid "translator-credits"
msgstr ""
"Andika Triwidada <andika@gmail.com>, 2010-2014, 2017.\n"
"Dirgita <dirgitadevina@yahoo.co.id>, 2011, 2012, 2014.\n"
"Wibiharto <wibinem@yahoo.com>, 2011.\n"
"Kukuh Syafaat <kukuhsyafaat@gnome.org>, 2017-2020.\n"
"Sucipto <sucipto@pm.me>, 2020."
#: js/extensionPrefs/main.js:219
msgid "Manage your GNOME Extensions"
msgstr "Kelola Ekstensi GNOME Anda"
#: js/extensionPrefs/main.js:261 js/extensionPrefs/ui/extensions-window.ui:222
#: js/extensionPrefs/main.js:102 js/extensionPrefs/main.js:525
msgid "Somethings gone wrong"
msgstr "Ada yang tidak beres"
#: js/extensionPrefs/main.js:268
#: js/extensionPrefs/main.js:109
msgid ""
"Were very sorry, but theres been a problem: the settings for this "
"extension cant be displayed. We recommend that you report the issue to the "
@@ -461,72 +419,39 @@ msgstr ""
"tidak dapat ditampilkan. Kami menyarankan Anda melaporkan masalah ini kepada "
"penulis ekstensi."
#: js/extensionPrefs/main.js:275
#: js/extensionPrefs/main.js:116
msgid "Technical Details"
msgstr "Detail Teknis"
#: js/extensionPrefs/main.js:310
#: js/extensionPrefs/main.js:151
msgid "Copy Error"
msgstr "Salin Galat"
#: js/extensionPrefs/main.js:337
#: js/extensionPrefs/main.js:178
msgid "Homepage"
msgstr "Halaman Web"
#: js/extensionPrefs/main.js:338
#: js/extensionPrefs/main.js:179
msgid "Visit extension homepage"
msgstr "Kunjungi halaman web ekstensi"
#: js/extensionPrefs/main.js:449
#, javascript-format
msgid "%d extension will be updated on next login."
msgid_plural "%d extensions will be updated on next login.e"
msgstr[0] "%d ekstensi akan diperbarui pada log masuk berikutnya."
msgstr[1] "%d ekstensi akan diperbarui pada log masuk berikutnya."
#: js/extensionPrefs/main.js:467
msgid "No Extensions Installed"
msgstr "Tak Ada Ekstensi Terpasang"
#: js/extensionPrefs/ui/extensions-window.ui:8
msgid "Help"
msgstr "Bantuan"
#: js/extensionPrefs/ui/extensions-window.ui:12
msgid "About Extensions"
msgstr "Tentang Ekstensi"
#: js/extensionPrefs/ui/extensions-window.ui:27
#: js/extensionPrefs/main.js:477
msgid ""
"To find and add extensions, visit <a href=\"https://extensions.gnome.org"
"\">extensions.gnome.org</a>."
"Extensions can be installed through Software or <a href=\"https://extensions."
"gnome.org\">extensions.gnome.org</a>."
msgstr ""
"Untuk menemukan dan menambahkan ekstensi, kunjungi <a href=\"https://"
"Ekstensi dapat dipasang melalui Perangkat Lunak atau <a href=\"https://"
"extensions.gnome.org\">extensions.gnome.org</a>."
#: js/extensionPrefs/ui/extensions-window.ui:35
msgid "Warning"
msgstr "Peringatan"
#: js/extensionPrefs/main.js:492
msgid "Browse in Software"
msgstr "Ramban di Perangkat Lunak"
#: js/extensionPrefs/ui/extensions-window.ui:46
msgid ""
"Extensions can cause system issues, including performance problems. If you "
"encounter problems with your system, it is recommended to disable all "
"extensions."
msgstr ""
"Ekstensi dapat menyebabkan masalah sistem, termasuk masalah kinerja. Jika "
"Anda mengalami masalah dengan sistem Anda, disarankan untuk menonaktifkan "
"semua ekstensi."
#: js/extensionPrefs/ui/extensions-window.ui:133
msgid "Manually Installed"
msgstr "Dipasang Secara Manual"
#: js/extensionPrefs/ui/extensions-window.ui:157
msgid "Built-In"
msgstr "Bawaan"
#: js/extensionPrefs/ui/extensions-window.ui:198
msgid "No Installed Extensions"
msgstr "Tidak Ada Ekstensi Terpasang"
#: js/extensionPrefs/ui/extensions-window.ui:234
#: js/extensionPrefs/main.js:532
msgid ""
"Were very sorry, but it was not possible to get the list of installed "
"extensions. Make sure you are logged into GNOME and try again."
@@ -534,20 +459,24 @@ msgstr ""
"Kami sangat menyesal, tetapi tidak mungkin mendapatkan daftar ekstensi yang "
"dipasang. Pastikan Anda masuk ke GNOME dan coba lagi."
#: js/extensionPrefs/ui/extensions-window.ui:287
msgid "Logout…"
msgstr "Keluar…"
#: js/gdm/authPrompt.js:174 js/ui/audioDeviceSelection.js:57
#: js/ui/components/networkAgent.js:129 js/ui/components/polkitAgent.js:138
#: js/ui/endSessionDialog.js:374 js/ui/extensionDownloader.js:190
#: js/ui/shellMountOperation.js:399 js/ui/shellMountOperation.js:409
#: js/ui/status/network.js:910
msgid "Cancel"
msgstr "Batal"
#: js/gdm/authPrompt.js:184 js/gdm/authPrompt.js:237 js/gdm/authPrompt.js:468
#: js/gdm/authPrompt.js:188 js/gdm/authPrompt.js:241 js/gdm/authPrompt.js:476
msgid "Next"
msgstr "Selanjutnya"
#: js/gdm/authPrompt.js:233 js/ui/shellMountOperation.js:380
#: js/gdm/authPrompt.js:237 js/ui/shellMountOperation.js:403
#: js/ui/unlockDialog.js:44
msgid "Unlock"
msgstr "Buka Kunci"
#: js/gdm/authPrompt.js:235
#: js/gdm/authPrompt.js:239
msgctxt "button"
msgid "Sign In"
msgstr "Masuk"
@@ -570,8 +499,8 @@ msgstr "(cth., pengguna dari %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:899 js/ui/components/networkAgent.js:234
#: js/ui/components/networkAgent.js:257 js/ui/components/networkAgent.js:275
#: js/gdm/loginDialog.js:899 js/ui/components/networkAgent.js:256
#: js/ui/components/networkAgent.js:279 js/ui/components/networkAgent.js:297
msgid "Username: "
msgstr "Nama pengguna: "
@@ -647,80 +576,76 @@ msgstr "Ganti Pengguna"
msgid "switch user"
msgstr "ganti pengguna"
#. Translators: The name of the lock orientation action in search
#: js/misc/systemActions.js:129
msgctxt "search-result"
msgid "Lock Orientation"
msgstr "Kunci Orientasi"
#. Translators: A list of keywords that match the lock orientation action, separated by semicolons
#: js/misc/systemActions.js:131
msgid "lock orientation;unlock orientation;screen;rotation"
msgstr "kunci orientasi;buka kunci orientasi;layar;rotasi"
#: js/misc/systemActions.js:132
msgid "lock orientation;screen;rotation"
msgstr "kunci orientasi;layar;rotasi"
#: js/misc/systemActions.js:251
msgctxt "search-result"
msgid "Unlock Screen Rotation"
msgstr "Buka Kunci Rotasi Layar"
#: js/misc/systemActions.js:252
msgctxt "search-result"
msgid "Lock Screen Rotation"
msgstr "Kunci Rotasi Layar"
#: js/misc/util.js:120
#: js/misc/util.js:116
msgid "Command not found"
msgstr "Perintah tidak ditemukan"
#. Replace "Error invoking GLib.shell_parse_argv: " with
#. something nicer
#: js/misc/util.js:156
#: js/misc/util.js:152
msgid "Could not parse command:"
msgstr "Tak dapat mengurai perintah:"
#: js/misc/util.js:164
#: js/misc/util.js:160
#, javascript-format
msgid "Execution of “%s” failed:"
msgstr "Eksekusi \"%s\" gagal:"
#: js/misc/util.js:181
#: js/misc/util.js:177
msgid "Just now"
msgstr "Baru saja"
#: js/misc/util.js:183
#: js/misc/util.js:179
#, javascript-format
msgid "%d minute ago"
msgid_plural "%d minutes ago"
msgstr[0] "%d menit yang lalu"
msgstr[1] "%d menit yang lalu"
#: js/misc/util.js:187
#: js/misc/util.js:183
#, javascript-format
msgid "%d hour ago"
msgid_plural "%d hours ago"
msgstr[0] "%d jam yang lalu"
msgstr[1] "%d jam yang lalu"
#: js/misc/util.js:191
#: js/misc/util.js:187
msgid "Yesterday"
msgstr "Kemarin"
#: js/misc/util.js:193
#: js/misc/util.js:189
#, javascript-format
msgid "%d day ago"
msgid_plural "%d days ago"
msgstr[0] "%d hari yang lalu"
msgstr[1] "%d hari yang lalu"
#: js/misc/util.js:197
#: js/misc/util.js:193
#, javascript-format
msgid "%d week ago"
msgid_plural "%d weeks ago"
msgstr[0] "%d minggu yang lalu"
msgstr[1] "%d minggu yang lalu"
#: js/misc/util.js:201
#: js/misc/util.js:197
#, javascript-format
msgid "%d month ago"
msgid_plural "%d months ago"
msgstr[0] "%d bulan yang lalu"
msgstr[1] "%d bulan yang lalu"
#: js/misc/util.js:204
#: js/misc/util.js:200
#, javascript-format
msgid "%d year ago"
msgid_plural "%d years ago"
@@ -728,20 +653,20 @@ msgstr[0] "%d tahun yang lalu"
msgstr[1] "%d tahun yang lalu"
#. Translators: Time in 24h format
#: js/misc/util.js:237
#: js/misc/util.js:233
msgid "%H%M"
msgstr "%H%M"
#. Translators: this is the word "Yesterday" followed by a
#. time string in 24h format. i.e. "Yesterday, 14:30"
#: js/misc/util.js:243
#: js/misc/util.js:239
#, no-c-format
msgid "Yesterday, %H%M"
msgstr "Kemarin, %H:%M"
#. Translators: this is the week day name followed by a time
#. string in 24h format. i.e. "Monday, 14:30"
#: js/misc/util.js:249
#: js/misc/util.js:245
#, no-c-format
msgid "%A, %H%M"
msgstr "%A, %H%M"
@@ -749,7 +674,7 @@ msgstr "%A, %H%M"
#. Translators: this is the month name and day number
#. followed by a time string in 24h format.
#. i.e. "May 25, 14:30"
#: js/misc/util.js:255
#: js/misc/util.js:251
#, no-c-format
msgid "%B %-d, %H%M"
msgstr "%d %B, %H%M"
@@ -757,7 +682,7 @@ msgstr "%d %B, %H%M"
#. Translators: this is the month name, day number, year
#. number followed by a time string in 24h format.
#. i.e. "May 25 2012, 14:30"
#: js/misc/util.js:261
#: js/misc/util.js:257
#, no-c-format
msgid "%B %-d %Y, %H%M"
msgstr "%d %B %Y, %H%M"
@@ -765,20 +690,20 @@ msgstr "%d %B %Y, %H%M"
#. Show only the time if date is on today
#. eslint-disable-line no-lonely-if
#. Translators: Time in 12h format
#: js/misc/util.js:266
#: js/misc/util.js:262
msgid "%l%M %p"
msgstr "%H%M"
#. Translators: this is the word "Yesterday" followed by a
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
#: js/misc/util.js:272
#: js/misc/util.js:268
#, no-c-format
msgid "Yesterday, %l%M %p"
msgstr "Kemarin, %l%M %p"
#. Translators: this is the week day name followed by a time
#. string in 12h format. i.e. "Monday, 2:30 pm"
#: js/misc/util.js:278
#: js/misc/util.js:274
#, no-c-format
msgid "%A, %l%M %p"
msgstr "%A, %l%M %p"
@@ -786,7 +711,7 @@ msgstr "%A, %l%M %p"
#. Translators: this is the month name and day number
#. followed by a time string in 12h format.
#. i.e. "May 25, 2:30 pm"
#: js/misc/util.js:284
#: js/misc/util.js:280
#, no-c-format
msgid "%B %-d, %l%M %p"
msgstr "%d %B, %l%M %p"
@@ -794,17 +719,17 @@ msgstr "%d %B, %l%M %p"
#. Translators: this is the month name, day number, year
#. number followed by a time string in 12h format.
#. i.e. "May 25 2012, 2:30 pm"
#: js/misc/util.js:290
#: js/misc/util.js:286
#, no-c-format
msgid "%B %-d %Y, %l%M %p"
msgstr "%d %B %Y, %l%M %p"
#. TRANSLATORS: this is the title of the wifi captive portal login window
#: js/portalHelper/main.js:42
#: js/portalHelper/main.js:40
msgid "Hotspot Login"
msgstr "Log Masuk Area Bersinyal (hotspot)"
#: js/portalHelper/main.js:88
#: js/portalHelper/main.js:86
msgid ""
"Your connection to this hotspot login is not secure. Passwords or other "
"information you enter on this page can be viewed by people nearby."
@@ -815,11 +740,11 @@ msgstr ""
#. No support for non-modal system dialogs, so ignore the option
#. let modal = options['modal'] || true;
#: js/ui/accessDialog.js:39 js/ui/status/location.js:374
#: js/ui/accessDialog.js:39 js/ui/status/location.js:366
msgid "Deny Access"
msgstr "Tolak Akses"
#: js/ui/accessDialog.js:40 js/ui/status/location.js:377
#: js/ui/accessDialog.js:40 js/ui/status/location.js:369
msgid "Grant Access"
msgstr "Beri Akses"
@@ -874,7 +799,7 @@ msgstr "%s telah ditambahkan ke favorit Anda."
msgid "%s has been removed from your favorites."
msgstr "%s telah dihapus dari favorit Anda."
#: js/ui/audioDeviceSelection.js:41
#: js/ui/audioDeviceSelection.js:40
msgid "Select Audio Device"
msgstr "Pilih Perangkat Audio"
@@ -1078,48 +1003,55 @@ msgstr "Versi udisks yang dipasang tidak mendukung pengaturan PIM"
msgid "Open with %s"
msgstr "Buka dengan %s"
#: js/ui/components/networkAgent.js:89
#: js/ui/components/keyring.js:70 js/ui/components/polkitAgent.js:278
msgid "Password:"
msgstr "Sandi:"
#: js/ui/components/keyring.js:104
msgid "Type again:"
msgstr "Ketik lagi:"
#: js/ui/components/networkAgent.js:115
msgid ""
"Alternatively you can connect by pushing the “WPS” button on your router."
msgstr ""
"Sebagai alternatif Anda dapat terhubung dengan menekan tombol \"WPS\" pada "
"router Anda."
#: js/ui/components/networkAgent.js:101 js/ui/status/network.js:223
#: js/ui/components/networkAgent.js:123 js/ui/status/network.js:223
#: js/ui/status/network.js:314 js/ui/status/network.js:913
msgid "Connect"
msgstr "Sambung"
#. Cisco LEAP
#: js/ui/components/networkAgent.js:202 js/ui/components/networkAgent.js:214
#: js/ui/components/networkAgent.js:238 js/ui/components/networkAgent.js:259
#: js/ui/components/networkAgent.js:279 js/ui/components/networkAgent.js:289
#: js/ui/components/networkAgent.js:224 js/ui/components/networkAgent.js:236
#: js/ui/components/networkAgent.js:260 js/ui/components/networkAgent.js:281
#: js/ui/components/networkAgent.js:301 js/ui/components/networkAgent.js:311
msgid "Password: "
msgstr "Sandi: "
#. static WEP
#: js/ui/components/networkAgent.js:207
#: js/ui/components/networkAgent.js:229
msgid "Key: "
msgstr "Tombol: "
#: js/ui/components/networkAgent.js:242 js/ui/components/networkAgent.js:265
#: js/ui/components/networkAgent.js:264 js/ui/components/networkAgent.js:287
msgid "Private key password: "
msgstr "Sandi kunci privat: "
#: js/ui/components/networkAgent.js:263
#: js/ui/components/networkAgent.js:285
msgid "Identity: "
msgstr "Identitas: "
#: js/ui/components/networkAgent.js:277
#: js/ui/components/networkAgent.js:299
msgid "Service: "
msgstr "Layanan: "
#: js/ui/components/networkAgent.js:306 js/ui/components/networkAgent.js:334
#: js/ui/components/networkAgent.js:681 js/ui/components/networkAgent.js:702
msgid "Authentication required"
msgstr "Diperlukan autentikasi"
#: js/ui/components/networkAgent.js:328 js/ui/components/networkAgent.js:703
msgid "Authentication required by wireless network"
msgstr "Autentikasi diperlukan oleh jaringan nirkabel"
#: js/ui/components/networkAgent.js:307 js/ui/components/networkAgent.js:682
#: js/ui/components/networkAgent.js:329 js/ui/components/networkAgent.js:704
#, javascript-format
msgid ""
"Passwords or encryption keys are required to access the wireless network "
@@ -1128,54 +1060,58 @@ msgstr ""
"Sandi atau kunci enkripsi diperlukan untuk mengakses jaringan nirkabel \"%s"
"\"."
#: js/ui/components/networkAgent.js:311 js/ui/components/networkAgent.js:686
#: js/ui/components/networkAgent.js:333 js/ui/components/networkAgent.js:708
msgid "Wired 802.1X authentication"
msgstr "Autentikasi 802.1X kabel"
#: js/ui/components/networkAgent.js:313
#: js/ui/components/networkAgent.js:335
msgid "Network name: "
msgstr "Nama jaringan: "
#: js/ui/components/networkAgent.js:318 js/ui/components/networkAgent.js:690
#: js/ui/components/networkAgent.js:340 js/ui/components/networkAgent.js:712
msgid "DSL authentication"
msgstr "Autentikasi DSL"
#: js/ui/components/networkAgent.js:325 js/ui/components/networkAgent.js:695
#: js/ui/components/networkAgent.js:347 js/ui/components/networkAgent.js:717
msgid "PIN code required"
msgstr "Perlu kode PIN"
#: js/ui/components/networkAgent.js:326 js/ui/components/networkAgent.js:696
#: js/ui/components/networkAgent.js:348 js/ui/components/networkAgent.js:718
msgid "PIN code is needed for the mobile broadband device"
msgstr "Kode PIN diperlukan untuk perangkat data seluler"
#: js/ui/components/networkAgent.js:327
#: js/ui/components/networkAgent.js:349
msgid "PIN: "
msgstr "PIN: "
#: js/ui/components/networkAgent.js:335 js/ui/components/networkAgent.js:687
#: js/ui/components/networkAgent.js:691 js/ui/components/networkAgent.js:703
#: js/ui/components/networkAgent.js:707
#: js/ui/components/networkAgent.js:356 js/ui/components/networkAgent.js:724
msgid "Mobile broadband network password"
msgstr "Sandi jaringan data seluler"
#: js/ui/components/networkAgent.js:357 js/ui/components/networkAgent.js:709
#: js/ui/components/networkAgent.js:713 js/ui/components/networkAgent.js:725
#: js/ui/components/networkAgent.js:729
#, javascript-format
msgid "A password is required to connect to “%s”."
msgstr "Perlu suatu sandi untuk menyambung ke \"%s\"."
#: js/ui/components/networkAgent.js:670 js/ui/status/network.js:1688
#: js/ui/components/networkAgent.js:692 js/ui/status/network.js:1688
msgid "Network Manager"
msgstr "Manajer Jaringan"
#: js/ui/components/networkAgent.js:706
#: js/ui/components/networkAgent.js:728
msgid "VPN password"
msgstr "Sandi VPN"
#: js/ui/components/polkitAgent.js:39
#: js/ui/components/polkitAgent.js:41
msgid "Authentication Required"
msgstr "Diperlukan Autentikasi"
#: js/ui/components/polkitAgent.js:80
#: js/ui/components/polkitAgent.js:81
msgid "Administrator"
msgstr "Administrator"
#: js/ui/components/polkitAgent.js:142
#: js/ui/components/polkitAgent.js:141
msgid "Authenticate"
msgstr "Autentikasi"
@@ -1183,14 +1119,10 @@ msgstr "Autentikasi"
#. * requested authentication was not gained; this can happen
#. * because of an authentication error (like invalid password),
#. * for instance.
#: js/ui/components/polkitAgent.js:254 js/ui/shellMountOperation.js:402
#: js/ui/components/polkitAgent.js:259 js/ui/shellMountOperation.js:383
msgid "Sorry, that didnt work. Please try again."
msgstr "Maaf, tidak berhasil. Silakan coba lagi."
#: js/ui/components/polkitAgent.js:277 js/ui/shellMountOperation.js:326
msgid "Enter Password…"
msgstr "Masukkan Kata Sandi…"
#. Translators: this is the other person changing their old IM name to their new
#. IM name.
#: js/ui/components/telepathyClient.js:787
@@ -1406,52 +1338,35 @@ msgstr "%s (jarak jauh)"
msgid "%s (console)"
msgstr "%s (konsol)"
#: js/ui/extensionDownloader.js:170
#: js/ui/extensionDownloader.js:194
msgid "Install"
msgstr "Pasang"
#: js/ui/extensionDownloader.js:176
msgid "Install Extension"
msgstr "Pasang Ekstensi"
#: js/ui/extensionDownloader.js:177
#: js/ui/extensionDownloader.js:200
#, javascript-format
msgid "Download and install “%s” from extensions.gnome.org?"
msgstr "Unduh dan pasang \"%s\" dari extensions.gnome.org?"
#: js/ui/extensionSystem.js:228
msgid "Extension Updates Available"
msgstr "Pemutakhiran Ekstensi Tersedia"
#: js/ui/extensionSystem.js:229
msgid "Extension updates are ready to be installed."
msgstr "Pemutakhiran ekstensi siap dipasang."
#: js/ui/inhibitShortcutsDialog.js:79
msgid "Allow inhibiting shortcuts"
msgstr "Izinkan menghalangi pintasan"
#. Translators: %s is an application name like "Settings"
#: js/ui/inhibitShortcutsDialog.js:82
#: js/ui/inhibitShortcutsDialog.js:80
#, javascript-format
msgid "The application %s wants to inhibit shortcuts"
msgstr "Aplikasi %s ingin menghalangi pintasan"
msgid "%s wants to inhibit shortcuts"
msgstr "%s ingin mencegah pintasan"
#: js/ui/inhibitShortcutsDialog.js:83
msgid "An application wants to inhibit shortcuts"
msgstr "Aplikasi ingin menghalangi pintasan"
#: js/ui/inhibitShortcutsDialog.js:81
msgid "Application wants to inhibit shortcuts"
msgstr "Aplikasi ingin mencegah pintasan"
#. Translators: %s is a keyboard shortcut like "Super+x"
#: js/ui/inhibitShortcutsDialog.js:90
#: js/ui/inhibitShortcutsDialog.js:89
#, javascript-format
msgid "You can restore shortcuts by pressing %s."
msgstr "Anda dapat memulihkan pintasan dengan menekan %s."
#: js/ui/inhibitShortcutsDialog.js:98
#: js/ui/inhibitShortcutsDialog.js:95
msgid "Deny"
msgstr "Tolak"
#: js/ui/inhibitShortcutsDialog.js:105
#: js/ui/inhibitShortcutsDialog.js:102
msgid "Allow"
msgstr "Izinkan"
@@ -1497,16 +1412,16 @@ msgstr ""
"berturut-turut. Ini mematikan fitur Tombol Lengket, yang mempengaruhi cara "
"kerja papan tik Anda."
#: js/ui/kbdA11yDialog.js:55
#: js/ui/kbdA11yDialog.js:57
msgid "Leave On"
msgstr "Biarkan Menyala"
#: js/ui/kbdA11yDialog.js:55 js/ui/status/bluetooth.js:135
#: js/ui/kbdA11yDialog.js:57 js/ui/status/bluetooth.js:135
#: js/ui/status/network.js:1285
msgid "Turn On"
msgstr "Nyalakan"
#: js/ui/kbdA11yDialog.js:63 js/ui/status/bluetooth.js:135
#: js/ui/kbdA11yDialog.js:65 js/ui/status/bluetooth.js:135
#: js/ui/status/network.js:131 js/ui/status/network.js:315
#: js/ui/status/network.js:1285 js/ui/status/network.js:1397
#: js/ui/status/nightLight.js:41 js/ui/status/rfkill.js:81
@@ -1514,7 +1429,7 @@ msgstr "Nyalakan"
msgid "Turn Off"
msgstr "Matikan"
#: js/ui/kbdA11yDialog.js:63
#: js/ui/kbdA11yDialog.js:65
msgid "Leave Off"
msgstr "Biarkan Mati"
@@ -1684,18 +1599,18 @@ msgid "Top Bar"
msgstr "Bar Atas"
#: js/ui/runDialog.js:58
msgid "Run a Command"
msgstr "Jalankan Perintah"
msgid "Enter a Command"
msgstr "Ketikkan Perintah"
#: js/ui/runDialog.js:73
msgid "Press ESC to close"
msgstr "Tekan Esc untuk menutup"
#: js/ui/runDialog.js:97 js/ui/windowMenu.js:167
msgid "Close"
msgstr "Tutup"
#: js/ui/runDialog.js:238
#: js/ui/runDialog.js:259
msgid "Restart is not available on Wayland"
msgstr "Memulai ulang tidak tersedia di Wayland"
#: js/ui/runDialog.js:243
#: js/ui/runDialog.js:264
msgid "Restarting…"
msgstr "Memulai ulang…"
@@ -1719,7 +1634,7 @@ msgid_plural "%d new notifications"
msgstr[0] "%d pemberitahuan baru"
msgstr[1] "%d pemberitahuan baru"
#: js/ui/screenShield.js:454 js/ui/status/system.js:98
#: js/ui/screenShield.js:454 js/ui/status/system.js:93
msgid "Lock"
msgstr "Kunci"
@@ -1777,20 +1692,20 @@ msgstr "Sembunyikan Teks"
msgid "Caps lock is on."
msgstr "Caps lock menyala."
#: js/ui/shellMountOperation.js:285
#: js/ui/shellMountOperation.js:305
msgid "Hidden Volume"
msgstr "Volume Tersembunyi"
#: js/ui/shellMountOperation.js:288
#: js/ui/shellMountOperation.js:308
msgid "Windows System Volume"
msgstr "Volume Sistem Windows"
#: js/ui/shellMountOperation.js:291
#: js/ui/shellMountOperation.js:311
msgid "Uses Keyfiles"
msgstr "Gunakan Berkas Kunci"
#. Translators: %s is the Disks application
#: js/ui/shellMountOperation.js:298
#: js/ui/shellMountOperation.js:317
#, javascript-format
msgid ""
"To unlock a volume that uses keyfiles, use the <i>%s</i> utility instead."
@@ -1798,32 +1713,36 @@ msgstr ""
"Untuk membuka kunci volume yang menggunakan berkas kunci, gunakan utilitas "
"<i>%s</i>."
#: js/ui/shellMountOperation.js:306
msgid "Enter PIM Number"
msgstr "Masukkan Nomor PIM"
#: js/ui/shellMountOperation.js:324
msgid "PIM Number"
msgstr "Nomor PIM"
#: js/ui/shellMountOperation.js:365
#: js/ui/shellMountOperation.js:343
msgid "The PIM must be a number or empty."
msgstr "PIM harus berupa angka atau kosong."
#: js/ui/shellMountOperation.js:354
msgid "Password"
msgstr "Sandi"
#: js/ui/shellMountOperation.js:390
msgid "Remember Password"
msgstr "Ingat Sandi"
#. Translators: %s is the Disks application
#: js/ui/shellMountOperation.js:391
#: js/ui/shellMountOperation.js:414
#, javascript-format
msgid "Open %s"
msgstr "Buka %s"
#: js/ui/shellMountOperation.js:423
msgid "The PIM must be a number or empty."
msgstr "PIM harus berupa angka atau kosong."
#. Translators: %s is the Disks application
#: js/ui/shellMountOperation.js:469
#: js/ui/shellMountOperation.js:486
#, javascript-format
msgid "Unable to start %s"
msgstr "Tak bisa memulai %s"
#. Translators: %s is the Disks application
#: js/ui/shellMountOperation.js:471
#: js/ui/shellMountOperation.js:488
#, javascript-format
msgid "Couldnt find the %s application"
msgstr "Tak bisa menemukan aplikasi %s"
@@ -1952,17 +1871,13 @@ msgstr "Koneksi Dinonaktifkan"
msgid "Enable"
msgstr "Fungsikan"
#: js/ui/status/location.js:355
msgid "Allow location access"
msgstr "Izinkan akses lokasi"
#. Translators: %s is an application name
#: js/ui/status/location.js:357
#: js/ui/status/location.js:355
#, javascript-format
msgid "The app %s wants to access your location"
msgstr "Aplikasi %s ingin mengakses lokasi Anda"
msgid "Give %s access to your location?"
msgstr "Beri %s akses ke lokasi Anda?"
#: js/ui/status/location.js:367
#: js/ui/status/location.js:361
msgid "Location access can be changed at any time from the privacy settings."
msgstr "Akses lokasi dapat diubah setiap saat dari pengaturan privasi."
@@ -2237,23 +2152,27 @@ msgstr "Matikan"
msgid "Airplane Mode On"
msgstr "Mode Pesawat Terbang Aktif"
#: js/ui/status/system.js:111
#: js/ui/status/system.js:57
msgid "Lock Screen Rotation"
msgstr "Rotasi Layar Kunci"
#: js/ui/status/system.js:106
msgid "Power Off / Log Out"
msgstr "Matikan / Log Keluar"
#: js/ui/status/system.js:114
#: js/ui/status/system.js:109
msgid "Log Out"
msgstr "Keluar"
#: js/ui/status/system.js:126
#: js/ui/status/system.js:121
msgid "Switch User…"
msgstr "Beralih Pengguna…"
#: js/ui/status/system.js:140
#: js/ui/status/system.js:135
msgid "Suspend"
msgstr "Suspensi"
#: js/ui/status/system.js:152
#: js/ui/status/system.js:147
msgid "Power Off…"
msgstr "Matikan…"
@@ -2349,23 +2268,22 @@ msgstr "Cari"
msgid "“%s” is ready"
msgstr "“%s” siap"
#. Translators: This string should be shorter than 30 characters
#: js/ui/windowManager.js:55
msgid "Keep these display settings?"
msgstr "Simpan pengaturan tampilan ini?"
#: js/ui/windowManager.js:54
msgid "Do you want to keep these display settings?"
msgstr "Apakah Anda ingin mempertahankan pengaturan tampilan ini?"
#. Translators: this and the following message should be limited in length,
#. to avoid ellipsizing the labels.
#.
#: js/ui/windowManager.js:64
#: js/ui/windowManager.js:68
msgid "Revert Settings"
msgstr "Balikkan Tatanan"
#: js/ui/windowManager.js:67
#: js/ui/windowManager.js:71
msgid "Keep Changes"
msgstr "Simpan Perubahan"
#: js/ui/windowManager.js:85
#: js/ui/windowManager.js:89
#, javascript-format
msgid "Settings changes will revert in %d second"
msgid_plural "Settings changes will revert in %d seconds"
@@ -2374,7 +2292,7 @@ msgstr[1] "Perubahan tatanan akan dikembalikan dalam %d detik"
#. 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:542
#: js/ui/windowManager.js:546
#, javascript-format
msgid "%d × %d"
msgstr "%d × %d"
@@ -2443,10 +2361,6 @@ msgstr "Pindahkan ke Monitor Kiri"
msgid "Move to Monitor Right"
msgstr "Pindahkan ke Monitor Kanan"
#: js/ui/windowMenu.js:167
msgid "Close"
msgstr "Tutup"
#: src/calendar-server/evolution-calendar.desktop.in:3
msgid "Evolution Calendar"
msgstr "Evolution Kalender"
@@ -2467,12 +2381,12 @@ msgstr "Menggunakan mode tertentu, mis. \"gdm\" untuk layar masuk"
msgid "List possible modes"
msgstr "Menampilkan mode yang mungkin"
#: src/shell-app.c:279
#: src/shell-app.c:265
msgctxt "program"
msgid "Unknown"
msgstr "Tak dikenal"
#: src/shell-app.c:530
#: src/shell-app.c:516
#, c-format
msgid "Failed to launch “%s”"
msgstr "Gagal meluncurkan \"%s\""
@@ -2831,27 +2745,5 @@ msgstr[1] "%u Masukan"
msgid "System Sounds"
msgstr "Suara Sistem"
#~ msgid "Browse in Software"
#~ msgstr "Ramban di Perangkat Lunak"
#~ msgctxt "search-result"
#~ msgid "Lock Orientation"
#~ msgstr "Kunci Orientasi"
#~ msgid "Password:"
#~ msgstr "Sandi:"
#~ msgid "Type again:"
#~ msgstr "Ketik lagi:"
#~ msgid "Authentication required by wireless network"
#~ msgstr "Autentikasi diperlukan oleh jaringan nirkabel"
#~ msgid "Mobile broadband network password"
#~ msgstr "Sandi jaringan data seluler"
#~ msgid "Password"
#~ msgstr "Sandi"
#~ msgid "Rename"
#~ msgstr "Ubah Nama"