Compare commits
1 Commits
wip/carlos
...
wip/jimmac
Author | SHA1 | Date | |
---|---|---|---|
![]() |
b58d702a2d |
@@ -18,7 +18,6 @@
|
|||||||
<file alias="icons/message-indicator-symbolic.svg">message-indicator-symbolic.svg</file>
|
<file alias="icons/message-indicator-symbolic.svg">message-indicator-symbolic.svg</file>
|
||||||
<file>no-events.svg</file>
|
<file>no-events.svg</file>
|
||||||
<file>no-notifications.svg</file>
|
<file>no-notifications.svg</file>
|
||||||
<file>noise-texture.png</file>
|
|
||||||
<file>pad-osd.css</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-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>
|
<file alias="icons/eye-not-looking-symbolic.svg">eye-not-looking-symbolic.svg</file>
|
||||||
|
@@ -70,8 +70,7 @@ $_screenshield_shadow: 0px 0px 6px rgba(0, 0, 0, 0.726);
|
|||||||
}
|
}
|
||||||
|
|
||||||
#lockDialogGroup {
|
#lockDialogGroup {
|
||||||
background: lighten(#2e3436, 8%) url(resource:///org/gnome/shell/theme/noise-texture.png);
|
background-color: lighten(#2e3436, 8%);
|
||||||
background-repeat: repeat;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#screenShieldNotifications {
|
#screenShieldNotifications {
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 78 KiB |
@@ -447,7 +447,7 @@ var ExtensionsWindow = GObject.registerClass({
|
|||||||
|
|
||||||
this._updatesLabel.label = Gettext.ngettext(
|
this._updatesLabel.label = Gettext.ngettext(
|
||||||
'%d extension will be updated on next login.',
|
'%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);
|
nUpdates).format(nUpdates);
|
||||||
this._updatesBar.visible = nUpdates > 0;
|
this._updatesBar.visible = nUpdates > 0;
|
||||||
}
|
}
|
||||||
|
@@ -504,12 +504,10 @@ var SystemBackground = GObject.registerClass({
|
|||||||
Signals: { 'loaded': {} },
|
Signals: { 'loaded': {} },
|
||||||
}, class SystemBackground extends Meta.BackgroundActor {
|
}, class SystemBackground extends Meta.BackgroundActor {
|
||||||
_init() {
|
_init() {
|
||||||
let file = Gio.File.new_for_uri('resource:///org/gnome/shell/theme/noise-texture.png');
|
|
||||||
|
|
||||||
if (_systemBackground == null) {
|
if (_systemBackground == null) {
|
||||||
_systemBackground = new Meta.Background({ meta_display: global.display });
|
_systemBackground = new Meta.Background({ meta_display: global.display });
|
||||||
_systemBackground.set_color(DEFAULT_BACKGROUND_COLOR);
|
_systemBackground.set_color(DEFAULT_BACKGROUND_COLOR);
|
||||||
_systemBackground.set_file(file, GDesktopEnums.BackgroundStyle.WALLPAPER);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
super._init({
|
super._init({
|
||||||
|
@@ -745,7 +745,8 @@ var ZoomRegion = class ZoomRegion {
|
|||||||
this._xCaret = 0;
|
this._xCaret = 0;
|
||||||
this._yCaret = 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;
|
this._scrollContentsTimerId = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -20,13 +20,9 @@ class Indicator extends PanelMenu.SystemIndicator {
|
|||||||
this._createSubMenu();
|
this._createSubMenu();
|
||||||
|
|
||||||
this._loginScreenItem.connect('notify::visible',
|
this._loginScreenItem.connect('notify::visible',
|
||||||
() => this._updateSessionSubMenu());
|
() => this._updateMultiUser());
|
||||||
this._logoutItem.connect('notify::visible',
|
this._logoutItem.connect('notify::visible',
|
||||||
() => this._updateSessionSubMenu());
|
() => this._updateMultiUser());
|
||||||
this._suspendItem.connect('notify::visible',
|
|
||||||
() => this._updateSessionSubMenu());
|
|
||||||
this._powerOffItem.connect('notify::visible',
|
|
||||||
() => this._updateSessionSubMenu());
|
|
||||||
// Whether shutdown is available or not depends on both lockdown
|
// Whether shutdown is available or not depends on both lockdown
|
||||||
// settings (disable-log-out) and Polkit policy - the latter doesn't
|
// settings (disable-log-out) and Polkit policy - the latter doesn't
|
||||||
// notify, so we update the menu item each time the menu opens or
|
// 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._systemActions.forceUpdate();
|
||||||
});
|
});
|
||||||
this._updateSessionSubMenu();
|
this._updateMultiUser();
|
||||||
|
|
||||||
Main.sessionMode.connect('updated', this._sessionUpdated.bind(this));
|
Main.sessionMode.connect('updated', this._sessionUpdated.bind(this));
|
||||||
this._sessionUpdated();
|
this._sessionUpdated();
|
||||||
@@ -47,12 +43,11 @@ class Indicator extends PanelMenu.SystemIndicator {
|
|||||||
this._settingsItem.visible = Main.sessionMode.allowSettings;
|
this._settingsItem.visible = Main.sessionMode.allowSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
_updateSessionSubMenu() {
|
_updateMultiUser() {
|
||||||
this._sessionSubMenu.visible =
|
let hasSwitchUser = this._loginScreenItem.visible;
|
||||||
this._loginScreenItem.visible ||
|
let hasLogout = this._logoutItem.visible;
|
||||||
this._logoutItem.visible ||
|
|
||||||
this._suspendItem.visible ||
|
this._sessionSubMenu.visible = hasSwitchUser || hasLogout;
|
||||||
this._powerOffItem.visible;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_createSubMenu() {
|
_createSubMenu() {
|
||||||
|
170
po/es.po
170
po/es.po
@@ -9,8 +9,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gnome-shell.master\n"
|
"Project-Id-Version: gnome-shell.master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
|
||||||
"POT-Creation-Date: 2020-02-04 18:00+0000\n"
|
"POT-Creation-Date: 2020-02-01 07:15+0000\n"
|
||||||
"PO-Revision-Date: 2020-02-05 11:16+0100\n"
|
"PO-Revision-Date: 2020-02-03 12:01+0100\n"
|
||||||
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
||||||
"Language-Team: Spanish - Spain <gnome-es-list@gnome.org>\n"
|
"Language-Team: Spanish - Spain <gnome-es-list@gnome.org>\n"
|
||||||
"Language: es_ES\n"
|
"Language: es_ES\n"
|
||||||
@@ -44,16 +44,12 @@ msgstr "Mostrar todas las aplicaciones"
|
|||||||
msgid "Open the application menu"
|
msgid "Open the application menu"
|
||||||
msgstr "Abrir el menú de la aplicación"
|
msgstr "Abrir el menú de la aplicación"
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:4 js/extensionPrefs/main.js:218
|
#: data/gnome-shell-extension-prefs.desktop.in.in:4
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:61
|
#: js/extensionPrefs/main.js:209
|
||||||
msgid "Extensions"
|
msgid "Shell Extensions"
|
||||||
msgstr "Extensiones"
|
msgstr "Extensiones de la Shell"
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:5
|
#: data/gnome-shell-extension-prefs.desktop.in.in:5
|
||||||
msgid "org.gnome.Extensions"
|
|
||||||
msgstr "org.gnome.Extensions"
|
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:6
|
|
||||||
msgid "Configure GNOME Shell Extensions"
|
msgid "Configure GNOME Shell Extensions"
|
||||||
msgstr "Configurar las extensiones de GNOME Shell"
|
msgstr "Configurar las extensiones de GNOME Shell"
|
||||||
|
|
||||||
@@ -414,47 +410,11 @@ msgstr ""
|
|||||||
msgid "Network Login"
|
msgid "Network Login"
|
||||||
msgstr "Inicio de sesión de la red"
|
msgstr "Inicio de sesión de la red"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:140
|
#: js/extensionPrefs/main.js:102 js/extensionPrefs/main.js:525
|
||||||
#, 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
|
|
||||||
msgid "Something’s gone wrong"
|
msgid "Something’s gone wrong"
|
||||||
msgstr "Algo ha fallado"
|
msgstr "Algo ha fallado"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:268
|
#: js/extensionPrefs/main.js:109
|
||||||
msgid ""
|
msgid ""
|
||||||
"We’re very sorry, but there’s been a problem: the settings for this "
|
"We’re very sorry, but there’s been a problem: the settings for this "
|
||||||
"extension can’t be displayed. We recommend that you report the issue to the "
|
"extension can’t 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 "
|
"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."
|
"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"
|
msgid "Technical Details"
|
||||||
msgstr "Detalles técnicos"
|
msgstr "Detalles técnicos"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:310
|
#: js/extensionPrefs/main.js:151
|
||||||
msgid "Copy Error"
|
msgid "Copy Error"
|
||||||
msgstr "Copiar error"
|
msgstr "Copiar error"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:337
|
#: js/extensionPrefs/main.js:178
|
||||||
msgid "Homepage"
|
msgid "Homepage"
|
||||||
msgstr "Página web"
|
msgstr "Página web"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:338
|
#: js/extensionPrefs/main.js:179
|
||||||
msgid "Visit extension homepage"
|
msgid "Visit extension homepage"
|
||||||
msgstr "Visitar la página web de la extensión"
|
msgstr "Visitar la página web de la extensión"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:449
|
#: js/extensionPrefs/main.js:467
|
||||||
#, javascript-format
|
msgid "No Extensions Installed"
|
||||||
#| 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"
|
|
||||||
msgstr "No hay extensiones instaladas"
|
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 ""
|
msgid ""
|
||||||
"We’re very sorry, but it was not possible to get the list of installed "
|
"We’re very sorry, but it was not possible to get the list of installed "
|
||||||
"extensions. Make sure you are logged into GNOME and try again."
|
"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 "
|
"No es posible obtener la lista de extensiones instaladas. asegúrese de que "
|
||||||
"ha iniciado sesión en GNOME e inténtelo de nuevo."
|
"ha iniciado sesión en GNOME e inténtelo de nuevo."
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:287
|
#: js/gdm/authPrompt.js:170 js/ui/audioDeviceSelection.js:57
|
||||||
msgid "Logout…"
|
#: js/ui/components/networkAgent.js:107 js/ui/components/polkitAgent.js:139
|
||||||
msgstr "Cerrar sesión…"
|
#: 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
|
#: js/gdm/authPrompt.js:184 js/gdm/authPrompt.js:237 js/gdm/authPrompt.js:468
|
||||||
msgid "Next"
|
msgid "Next"
|
||||||
@@ -1190,6 +1119,7 @@ msgid "Sorry, that didn’t work. Please try again."
|
|||||||
msgstr "Eso no ha funcionado. Inténtelo de nuevo."
|
msgstr "Eso no ha funcionado. Inténtelo de nuevo."
|
||||||
|
|
||||||
#: js/ui/components/polkitAgent.js:277 js/ui/shellMountOperation.js:326
|
#: js/ui/components/polkitAgent.js:277 js/ui/shellMountOperation.js:326
|
||||||
|
#| msgid "Remember Password"
|
||||||
msgid "Enter Password…"
|
msgid "Enter Password…"
|
||||||
msgstr "Introduzca la contraseña…"
|
msgstr "Introduzca la contraseña…"
|
||||||
|
|
||||||
@@ -1421,14 +1351,6 @@ msgstr "Instalar extensión"
|
|||||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||||
msgstr "¿Descargar e instalar «%s» desde 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
|
#: js/ui/inhibitShortcutsDialog.js:79
|
||||||
msgid "Allow inhibiting shortcuts"
|
msgid "Allow inhibiting shortcuts"
|
||||||
msgstr "Permitir inhibir los atajos"
|
msgstr "Permitir inhibir los atajos"
|
||||||
@@ -1723,7 +1645,7 @@ msgid_plural "%d new notifications"
|
|||||||
msgstr[0] "%d notificación nueva"
|
msgstr[0] "%d notificación nueva"
|
||||||
msgstr[1] "%d notificaciones nuevas"
|
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"
|
msgid "Lock"
|
||||||
msgstr "Bloquear"
|
msgstr "Bloquear"
|
||||||
|
|
||||||
@@ -1803,6 +1725,7 @@ msgstr ""
|
|||||||
"%s</i> en su lugar."
|
"%s</i> en su lugar."
|
||||||
|
|
||||||
#: js/ui/shellMountOperation.js:306
|
#: js/ui/shellMountOperation.js:306
|
||||||
|
#| msgid "PIM Number"
|
||||||
msgid "Enter PIM Number…"
|
msgid "Enter PIM Number…"
|
||||||
msgstr "Introduzca el número PIM…"
|
msgstr "Introduzca el número PIM…"
|
||||||
|
|
||||||
@@ -2243,23 +2166,23 @@ msgstr "Apagar"
|
|||||||
msgid "Airplane Mode On"
|
msgid "Airplane Mode On"
|
||||||
msgstr "Modo avión activado"
|
msgstr "Modo avión activado"
|
||||||
|
|
||||||
#: js/ui/status/system.js:116
|
#: js/ui/status/system.js:111
|
||||||
msgid "Power Off / Log Out"
|
msgid "Power Off / Log Out"
|
||||||
msgstr "Apagar / cerrar sesión"
|
msgstr "Apagar / cerrar sesión"
|
||||||
|
|
||||||
#: js/ui/status/system.js:119
|
#: js/ui/status/system.js:114
|
||||||
msgid "Log Out"
|
msgid "Log Out"
|
||||||
msgstr "Cerrar la sesión"
|
msgstr "Cerrar la sesión"
|
||||||
|
|
||||||
#: js/ui/status/system.js:131
|
#: js/ui/status/system.js:126
|
||||||
msgid "Switch User…"
|
msgid "Switch User…"
|
||||||
msgstr "Cambiar de usuario…"
|
msgstr "Cambiar de usuario…"
|
||||||
|
|
||||||
#: js/ui/status/system.js:145
|
#: js/ui/status/system.js:140
|
||||||
msgid "Suspend"
|
msgid "Suspend"
|
||||||
msgstr "Suspender"
|
msgstr "Suspender"
|
||||||
|
|
||||||
#: js/ui/status/system.js:157
|
#: js/ui/status/system.js:152
|
||||||
msgid "Power Off…"
|
msgid "Power Off…"
|
||||||
msgstr "Apagar…"
|
msgstr "Apagar…"
|
||||||
|
|
||||||
@@ -2357,6 +2280,7 @@ msgstr "«%s» está preparado"
|
|||||||
|
|
||||||
#. Translators: This string should be shorter than 30 characters
|
#. Translators: This string should be shorter than 30 characters
|
||||||
#: js/ui/windowManager.js:55
|
#: js/ui/windowManager.js:55
|
||||||
|
#| msgid "Do you want to keep these display settings?"
|
||||||
msgid "Keep these display settings?"
|
msgid "Keep these display settings?"
|
||||||
msgstr "¿Quiere mantener esta configuración de la pantalla?"
|
msgstr "¿Quiere mantener esta configuración de la pantalla?"
|
||||||
|
|
||||||
@@ -2839,9 +2763,6 @@ msgstr[1] "%u entradas"
|
|||||||
msgid "System Sounds"
|
msgid "System Sounds"
|
||||||
msgstr "Sonidos del sistema"
|
msgstr "Sonidos del sistema"
|
||||||
|
|
||||||
#~ msgid "Browse in Software"
|
|
||||||
#~ msgstr "Buscar en Software"
|
|
||||||
|
|
||||||
#~ msgid "Password:"
|
#~ msgid "Password:"
|
||||||
#~ msgstr "Contraseña:"
|
#~ msgstr "Contraseña:"
|
||||||
|
|
||||||
@@ -3173,6 +3094,9 @@ msgstr "Sonidos del sistema"
|
|||||||
#~ msgid "Open"
|
#~ msgid "Open"
|
||||||
#~ msgstr "Abrir"
|
#~ msgstr "Abrir"
|
||||||
|
|
||||||
|
#~ msgid "Remove"
|
||||||
|
#~ msgstr "Quitar"
|
||||||
|
|
||||||
#~ msgid "Clear Messages"
|
#~ msgid "Clear Messages"
|
||||||
#~ msgstr "Limpiar mensajes"
|
#~ msgstr "Limpiar mensajes"
|
||||||
|
|
||||||
|
460
po/id.po
460
po/id.po
@@ -11,8 +11,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gnome-shell master\n"
|
"Project-Id-Version: gnome-shell master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell/issues\n"
|
||||||
"POT-Creation-Date: 2020-02-03 20:34+0000\n"
|
"POT-Creation-Date: 2020-01-22 22:00+0000\n"
|
||||||
"PO-Revision-Date: 2020-02-04 13:57+0700\n"
|
"PO-Revision-Date: 2020-01-23 16:31+0700\n"
|
||||||
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
|
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
|
||||||
"Language-Team: Indonesian <gnome-l10n-id@googlegroups.com>\n"
|
"Language-Team: Indonesian <gnome-l10n-id@googlegroups.com>\n"
|
||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
@@ -20,7 +20,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural= n!=1;\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-DamnedLies-Scope: partial\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\n"
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
|
||||||
@@ -48,16 +48,12 @@ msgstr "Tampilkan semua aplikasi"
|
|||||||
msgid "Open the application menu"
|
msgid "Open the application menu"
|
||||||
msgstr "Buka menu aplikasi"
|
msgstr "Buka menu aplikasi"
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:4 js/extensionPrefs/main.js:218
|
#: data/gnome-shell-extension-prefs.desktop.in.in:4
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:61
|
#: js/extensionPrefs/main.js:209
|
||||||
msgid "Extensions"
|
msgid "Shell Extensions"
|
||||||
msgstr "Ekstensi"
|
msgstr "Ekstensi Shell"
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:5
|
#: data/gnome-shell-extension-prefs.desktop.in.in:5
|
||||||
msgid "org.gnome.Extensions"
|
|
||||||
msgstr "org.gnome.Extensions"
|
|
||||||
|
|
||||||
#: data/org.gnome.Extensions.desktop.in.in:6
|
|
||||||
msgid "Configure GNOME Shell Extensions"
|
msgid "Configure GNOME Shell Extensions"
|
||||||
msgstr "Konfigurasi Ekstensi GNOME Shell"
|
msgstr "Konfigurasi Ekstensi GNOME Shell"
|
||||||
|
|
||||||
@@ -409,49 +405,11 @@ msgstr ""
|
|||||||
msgid "Network Login"
|
msgid "Network Login"
|
||||||
msgstr "Log Masuk Jaringan"
|
msgstr "Log Masuk Jaringan"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:140
|
#: js/extensionPrefs/main.js:102 js/extensionPrefs/main.js:525
|
||||||
#, 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
|
|
||||||
msgid "Something’s gone wrong"
|
msgid "Something’s gone wrong"
|
||||||
msgstr "Ada yang tidak beres"
|
msgstr "Ada yang tidak beres"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:268
|
#: js/extensionPrefs/main.js:109
|
||||||
msgid ""
|
msgid ""
|
||||||
"We’re very sorry, but there’s been a problem: the settings for this "
|
"We’re very sorry, but there’s been a problem: the settings for this "
|
||||||
"extension can’t be displayed. We recommend that you report the issue to the "
|
"extension can’t 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 "
|
"tidak dapat ditampilkan. Kami menyarankan Anda melaporkan masalah ini kepada "
|
||||||
"penulis ekstensi."
|
"penulis ekstensi."
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:275
|
#: js/extensionPrefs/main.js:116
|
||||||
msgid "Technical Details"
|
msgid "Technical Details"
|
||||||
msgstr "Detail Teknis"
|
msgstr "Detail Teknis"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:310
|
#: js/extensionPrefs/main.js:151
|
||||||
msgid "Copy Error"
|
msgid "Copy Error"
|
||||||
msgstr "Salin Galat"
|
msgstr "Salin Galat"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:337
|
#: js/extensionPrefs/main.js:178
|
||||||
msgid "Homepage"
|
msgid "Homepage"
|
||||||
msgstr "Halaman Web"
|
msgstr "Halaman Web"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:338
|
#: js/extensionPrefs/main.js:179
|
||||||
msgid "Visit extension homepage"
|
msgid "Visit extension homepage"
|
||||||
msgstr "Kunjungi halaman web ekstensi"
|
msgstr "Kunjungi halaman web ekstensi"
|
||||||
|
|
||||||
#: js/extensionPrefs/main.js:449
|
#: js/extensionPrefs/main.js:467
|
||||||
#, javascript-format
|
msgid "No Extensions Installed"
|
||||||
msgid "%d extension will be updated on next login."
|
msgstr "Tak Ada Ekstensi Terpasang"
|
||||||
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/ui/extensions-window.ui:8
|
#: js/extensionPrefs/main.js:477
|
||||||
msgid "Help"
|
|
||||||
msgstr "Bantuan"
|
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:12
|
|
||||||
msgid "About Extensions"
|
|
||||||
msgstr "Tentang Ekstensi"
|
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:27
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"To find and add extensions, visit <a href=\"https://extensions.gnome.org"
|
"Extensions can be installed through Software or <a href=\"https://extensions."
|
||||||
"\">extensions.gnome.org</a>."
|
"gnome.org\">extensions.gnome.org</a>."
|
||||||
msgstr ""
|
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>."
|
"extensions.gnome.org\">extensions.gnome.org</a>."
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:35
|
#: js/extensionPrefs/main.js:492
|
||||||
msgid "Warning"
|
msgid "Browse in Software"
|
||||||
msgstr "Peringatan"
|
msgstr "Ramban di Perangkat Lunak"
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:46
|
#: js/extensionPrefs/main.js:532
|
||||||
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
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We’re very sorry, but it was not possible to get the list of installed "
|
"We’re very sorry, but it was not possible to get the list of installed "
|
||||||
"extensions. Make sure you are logged into GNOME and try again."
|
"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 "
|
"Kami sangat menyesal, tetapi tidak mungkin mendapatkan daftar ekstensi yang "
|
||||||
"dipasang. Pastikan Anda masuk ke GNOME dan coba lagi."
|
"dipasang. Pastikan Anda masuk ke GNOME dan coba lagi."
|
||||||
|
|
||||||
#: js/extensionPrefs/ui/extensions-window.ui:287
|
#: js/gdm/authPrompt.js:174 js/ui/audioDeviceSelection.js:57
|
||||||
msgid "Logout…"
|
#: js/ui/components/networkAgent.js:129 js/ui/components/polkitAgent.js:138
|
||||||
msgstr "Keluar…"
|
#: 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"
|
msgid "Next"
|
||||||
msgstr "Selanjutnya"
|
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
|
#: js/ui/unlockDialog.js:44
|
||||||
msgid "Unlock"
|
msgid "Unlock"
|
||||||
msgstr "Buka Kunci"
|
msgstr "Buka Kunci"
|
||||||
|
|
||||||
#: js/gdm/authPrompt.js:235
|
#: js/gdm/authPrompt.js:239
|
||||||
msgctxt "button"
|
msgctxt "button"
|
||||||
msgid "Sign In"
|
msgid "Sign In"
|
||||||
msgstr "Masuk"
|
msgstr "Masuk"
|
||||||
@@ -570,8 +499,8 @@ msgstr "(cth., pengguna dari %s)"
|
|||||||
#. TTLS and PEAP are actually much more complicated, but this complication
|
#. TTLS and PEAP are actually much more complicated, but this complication
|
||||||
#. is not visible here since we only care about phase2 authentication
|
#. is not visible here since we only care about phase2 authentication
|
||||||
#. (and don't even care of which one)
|
#. (and don't even care of which one)
|
||||||
#: js/gdm/loginDialog.js:899 js/ui/components/networkAgent.js:234
|
#: js/gdm/loginDialog.js:899 js/ui/components/networkAgent.js:256
|
||||||
#: js/ui/components/networkAgent.js:257 js/ui/components/networkAgent.js:275
|
#: js/ui/components/networkAgent.js:279 js/ui/components/networkAgent.js:297
|
||||||
msgid "Username: "
|
msgid "Username: "
|
||||||
msgstr "Nama pengguna: "
|
msgstr "Nama pengguna: "
|
||||||
|
|
||||||
@@ -647,80 +576,76 @@ msgstr "Ganti Pengguna"
|
|||||||
msgid "switch user"
|
msgid "switch user"
|
||||||
msgstr "ganti pengguna"
|
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
|
#. Translators: A list of keywords that match the lock orientation action, separated by semicolons
|
||||||
#: js/misc/systemActions.js:131
|
#: js/misc/systemActions.js:132
|
||||||
msgid "lock orientation;unlock orientation;screen;rotation"
|
msgid "lock orientation;screen;rotation"
|
||||||
msgstr "kunci orientasi;buka kunci orientasi;layar;rotasi"
|
msgstr "kunci orientasi;layar;rotasi"
|
||||||
|
|
||||||
#: js/misc/systemActions.js:251
|
#: js/misc/util.js:116
|
||||||
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
|
|
||||||
msgid "Command not found"
|
msgid "Command not found"
|
||||||
msgstr "Perintah tidak ditemukan"
|
msgstr "Perintah tidak ditemukan"
|
||||||
|
|
||||||
#. Replace "Error invoking GLib.shell_parse_argv: " with
|
#. Replace "Error invoking GLib.shell_parse_argv: " with
|
||||||
#. something nicer
|
#. something nicer
|
||||||
#: js/misc/util.js:156
|
#: js/misc/util.js:152
|
||||||
msgid "Could not parse command:"
|
msgid "Could not parse command:"
|
||||||
msgstr "Tak dapat mengurai perintah:"
|
msgstr "Tak dapat mengurai perintah:"
|
||||||
|
|
||||||
#: js/misc/util.js:164
|
#: js/misc/util.js:160
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Execution of “%s” failed:"
|
msgid "Execution of “%s” failed:"
|
||||||
msgstr "Eksekusi \"%s\" gagal:"
|
msgstr "Eksekusi \"%s\" gagal:"
|
||||||
|
|
||||||
#: js/misc/util.js:181
|
#: js/misc/util.js:177
|
||||||
msgid "Just now"
|
msgid "Just now"
|
||||||
msgstr "Baru saja"
|
msgstr "Baru saja"
|
||||||
|
|
||||||
#: js/misc/util.js:183
|
#: js/misc/util.js:179
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d minute ago"
|
msgid "%d minute ago"
|
||||||
msgid_plural "%d minutes ago"
|
msgid_plural "%d minutes ago"
|
||||||
msgstr[0] "%d menit yang lalu"
|
msgstr[0] "%d menit yang lalu"
|
||||||
msgstr[1] "%d menit yang lalu"
|
msgstr[1] "%d menit yang lalu"
|
||||||
|
|
||||||
#: js/misc/util.js:187
|
#: js/misc/util.js:183
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d hour ago"
|
msgid "%d hour ago"
|
||||||
msgid_plural "%d hours ago"
|
msgid_plural "%d hours ago"
|
||||||
msgstr[0] "%d jam yang lalu"
|
msgstr[0] "%d jam yang lalu"
|
||||||
msgstr[1] "%d jam yang lalu"
|
msgstr[1] "%d jam yang lalu"
|
||||||
|
|
||||||
#: js/misc/util.js:191
|
#: js/misc/util.js:187
|
||||||
msgid "Yesterday"
|
msgid "Yesterday"
|
||||||
msgstr "Kemarin"
|
msgstr "Kemarin"
|
||||||
|
|
||||||
#: js/misc/util.js:193
|
#: js/misc/util.js:189
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d day ago"
|
msgid "%d day ago"
|
||||||
msgid_plural "%d days ago"
|
msgid_plural "%d days ago"
|
||||||
msgstr[0] "%d hari yang lalu"
|
msgstr[0] "%d hari yang lalu"
|
||||||
msgstr[1] "%d hari yang lalu"
|
msgstr[1] "%d hari yang lalu"
|
||||||
|
|
||||||
#: js/misc/util.js:197
|
#: js/misc/util.js:193
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d week ago"
|
msgid "%d week ago"
|
||||||
msgid_plural "%d weeks ago"
|
msgid_plural "%d weeks ago"
|
||||||
msgstr[0] "%d minggu yang lalu"
|
msgstr[0] "%d minggu yang lalu"
|
||||||
msgstr[1] "%d minggu yang lalu"
|
msgstr[1] "%d minggu yang lalu"
|
||||||
|
|
||||||
#: js/misc/util.js:201
|
#: js/misc/util.js:197
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d month ago"
|
msgid "%d month ago"
|
||||||
msgid_plural "%d months ago"
|
msgid_plural "%d months ago"
|
||||||
msgstr[0] "%d bulan yang lalu"
|
msgstr[0] "%d bulan yang lalu"
|
||||||
msgstr[1] "%d bulan yang lalu"
|
msgstr[1] "%d bulan yang lalu"
|
||||||
|
|
||||||
#: js/misc/util.js:204
|
#: js/misc/util.js:200
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d year ago"
|
msgid "%d year ago"
|
||||||
msgid_plural "%d years ago"
|
msgid_plural "%d years ago"
|
||||||
@@ -728,20 +653,20 @@ msgstr[0] "%d tahun yang lalu"
|
|||||||
msgstr[1] "%d tahun yang lalu"
|
msgstr[1] "%d tahun yang lalu"
|
||||||
|
|
||||||
#. Translators: Time in 24h format
|
#. Translators: Time in 24h format
|
||||||
#: js/misc/util.js:237
|
#: js/misc/util.js:233
|
||||||
msgid "%H∶%M"
|
msgid "%H∶%M"
|
||||||
msgstr "%H∶%M"
|
msgstr "%H∶%M"
|
||||||
|
|
||||||
#. Translators: this is the word "Yesterday" followed by a
|
#. Translators: this is the word "Yesterday" followed by a
|
||||||
#. time string in 24h format. i.e. "Yesterday, 14:30"
|
#. time string in 24h format. i.e. "Yesterday, 14:30"
|
||||||
#: js/misc/util.js:243
|
#: js/misc/util.js:239
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "Yesterday, %H∶%M"
|
msgid "Yesterday, %H∶%M"
|
||||||
msgstr "Kemarin, %H:%M"
|
msgstr "Kemarin, %H:%M"
|
||||||
|
|
||||||
#. Translators: this is the week day name followed by a time
|
#. Translators: this is the week day name followed by a time
|
||||||
#. string in 24h format. i.e. "Monday, 14:30"
|
#. string in 24h format. i.e. "Monday, 14:30"
|
||||||
#: js/misc/util.js:249
|
#: js/misc/util.js:245
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%A, %H∶%M"
|
msgid "%A, %H∶%M"
|
||||||
msgstr "%A, %H∶%M"
|
msgstr "%A, %H∶%M"
|
||||||
@@ -749,7 +674,7 @@ msgstr "%A, %H∶%M"
|
|||||||
#. Translators: this is the month name and day number
|
#. Translators: this is the month name and day number
|
||||||
#. followed by a time string in 24h format.
|
#. followed by a time string in 24h format.
|
||||||
#. i.e. "May 25, 14:30"
|
#. i.e. "May 25, 14:30"
|
||||||
#: js/misc/util.js:255
|
#: js/misc/util.js:251
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%B %-d, %H∶%M"
|
msgid "%B %-d, %H∶%M"
|
||||||
msgstr "%d %B, %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
|
#. Translators: this is the month name, day number, year
|
||||||
#. number followed by a time string in 24h format.
|
#. number followed by a time string in 24h format.
|
||||||
#. i.e. "May 25 2012, 14:30"
|
#. i.e. "May 25 2012, 14:30"
|
||||||
#: js/misc/util.js:261
|
#: js/misc/util.js:257
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%B %-d %Y, %H∶%M"
|
msgid "%B %-d %Y, %H∶%M"
|
||||||
msgstr "%d %B %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
|
#. Show only the time if date is on today
|
||||||
#. eslint-disable-line no-lonely-if
|
#. eslint-disable-line no-lonely-if
|
||||||
#. Translators: Time in 12h format
|
#. Translators: Time in 12h format
|
||||||
#: js/misc/util.js:266
|
#: js/misc/util.js:262
|
||||||
msgid "%l∶%M %p"
|
msgid "%l∶%M %p"
|
||||||
msgstr "%H∶%M"
|
msgstr "%H∶%M"
|
||||||
|
|
||||||
#. Translators: this is the word "Yesterday" followed by a
|
#. Translators: this is the word "Yesterday" followed by a
|
||||||
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
|
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
|
||||||
#: js/misc/util.js:272
|
#: js/misc/util.js:268
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "Yesterday, %l∶%M %p"
|
msgid "Yesterday, %l∶%M %p"
|
||||||
msgstr "Kemarin, %l∶%M %p"
|
msgstr "Kemarin, %l∶%M %p"
|
||||||
|
|
||||||
#. Translators: this is the week day name followed by a time
|
#. Translators: this is the week day name followed by a time
|
||||||
#. string in 12h format. i.e. "Monday, 2:30 pm"
|
#. string in 12h format. i.e. "Monday, 2:30 pm"
|
||||||
#: js/misc/util.js:278
|
#: js/misc/util.js:274
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%A, %l∶%M %p"
|
msgid "%A, %l∶%M %p"
|
||||||
msgstr "%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
|
#. Translators: this is the month name and day number
|
||||||
#. followed by a time string in 12h format.
|
#. followed by a time string in 12h format.
|
||||||
#. i.e. "May 25, 2:30 pm"
|
#. i.e. "May 25, 2:30 pm"
|
||||||
#: js/misc/util.js:284
|
#: js/misc/util.js:280
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%B %-d, %l∶%M %p"
|
msgid "%B %-d, %l∶%M %p"
|
||||||
msgstr "%d %B, %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
|
#. Translators: this is the month name, day number, year
|
||||||
#. number followed by a time string in 12h format.
|
#. number followed by a time string in 12h format.
|
||||||
#. i.e. "May 25 2012, 2:30 pm"
|
#. i.e. "May 25 2012, 2:30 pm"
|
||||||
#: js/misc/util.js:290
|
#: js/misc/util.js:286
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%B %-d %Y, %l∶%M %p"
|
msgid "%B %-d %Y, %l∶%M %p"
|
||||||
msgstr "%d %B %Y, %l∶%M %p"
|
msgstr "%d %B %Y, %l∶%M %p"
|
||||||
|
|
||||||
#. TRANSLATORS: this is the title of the wifi captive portal login window
|
#. 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"
|
msgid "Hotspot Login"
|
||||||
msgstr "Log Masuk Area Bersinyal (hotspot)"
|
msgstr "Log Masuk Area Bersinyal (hotspot)"
|
||||||
|
|
||||||
#: js/portalHelper/main.js:88
|
#: js/portalHelper/main.js:86
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your connection to this hotspot login is not secure. Passwords or other "
|
"Your connection to this hotspot login is not secure. Passwords or other "
|
||||||
"information you enter on this page can be viewed by people nearby."
|
"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
|
#. No support for non-modal system dialogs, so ignore the option
|
||||||
#. let modal = options['modal'] || true;
|
#. 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"
|
msgid "Deny Access"
|
||||||
msgstr "Tolak Akses"
|
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"
|
msgid "Grant Access"
|
||||||
msgstr "Beri Akses"
|
msgstr "Beri Akses"
|
||||||
|
|
||||||
@@ -874,7 +799,7 @@ msgstr "%s telah ditambahkan ke favorit Anda."
|
|||||||
msgid "%s has been removed from your favorites."
|
msgid "%s has been removed from your favorites."
|
||||||
msgstr "%s telah dihapus dari favorit Anda."
|
msgstr "%s telah dihapus dari favorit Anda."
|
||||||
|
|
||||||
#: js/ui/audioDeviceSelection.js:41
|
#: js/ui/audioDeviceSelection.js:40
|
||||||
msgid "Select Audio Device"
|
msgid "Select Audio Device"
|
||||||
msgstr "Pilih Perangkat Audio"
|
msgstr "Pilih Perangkat Audio"
|
||||||
|
|
||||||
@@ -1078,48 +1003,55 @@ msgstr "Versi udisks yang dipasang tidak mendukung pengaturan PIM"
|
|||||||
msgid "Open with %s"
|
msgid "Open with %s"
|
||||||
msgstr "Buka dengan %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 ""
|
msgid ""
|
||||||
"Alternatively you can connect by pushing the “WPS” button on your router."
|
"Alternatively you can connect by pushing the “WPS” button on your router."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sebagai alternatif Anda dapat terhubung dengan menekan tombol \"WPS\" pada "
|
"Sebagai alternatif Anda dapat terhubung dengan menekan tombol \"WPS\" pada "
|
||||||
"router Anda."
|
"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
|
#: js/ui/status/network.js:314 js/ui/status/network.js:913
|
||||||
msgid "Connect"
|
msgid "Connect"
|
||||||
msgstr "Sambung"
|
msgstr "Sambung"
|
||||||
|
|
||||||
#. Cisco LEAP
|
#. Cisco LEAP
|
||||||
#: js/ui/components/networkAgent.js:202 js/ui/components/networkAgent.js:214
|
#: js/ui/components/networkAgent.js:224 js/ui/components/networkAgent.js:236
|
||||||
#: js/ui/components/networkAgent.js:238 js/ui/components/networkAgent.js:259
|
#: js/ui/components/networkAgent.js:260 js/ui/components/networkAgent.js:281
|
||||||
#: js/ui/components/networkAgent.js:279 js/ui/components/networkAgent.js:289
|
#: js/ui/components/networkAgent.js:301 js/ui/components/networkAgent.js:311
|
||||||
msgid "Password: "
|
msgid "Password: "
|
||||||
msgstr "Sandi: "
|
msgstr "Sandi: "
|
||||||
|
|
||||||
#. static WEP
|
#. static WEP
|
||||||
#: js/ui/components/networkAgent.js:207
|
#: js/ui/components/networkAgent.js:229
|
||||||
msgid "Key: "
|
msgid "Key: "
|
||||||
msgstr "Tombol: "
|
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: "
|
msgid "Private key password: "
|
||||||
msgstr "Sandi kunci privat: "
|
msgstr "Sandi kunci privat: "
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:263
|
#: js/ui/components/networkAgent.js:285
|
||||||
msgid "Identity: "
|
msgid "Identity: "
|
||||||
msgstr "Identitas: "
|
msgstr "Identitas: "
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:277
|
#: js/ui/components/networkAgent.js:299
|
||||||
msgid "Service: "
|
msgid "Service: "
|
||||||
msgstr "Layanan: "
|
msgstr "Layanan: "
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:306 js/ui/components/networkAgent.js:334
|
#: js/ui/components/networkAgent.js:328 js/ui/components/networkAgent.js:703
|
||||||
#: js/ui/components/networkAgent.js:681 js/ui/components/networkAgent.js:702
|
msgid "Authentication required by wireless network"
|
||||||
msgid "Authentication required"
|
msgstr "Autentikasi diperlukan oleh jaringan nirkabel"
|
||||||
msgstr "Diperlukan autentikasi"
|
|
||||||
|
|
||||||
#: 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
|
#, javascript-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Passwords or encryption keys are required to access the wireless network "
|
"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"
|
"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"
|
msgid "Wired 802.1X authentication"
|
||||||
msgstr "Autentikasi 802.1X kabel"
|
msgstr "Autentikasi 802.1X kabel"
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:313
|
#: js/ui/components/networkAgent.js:335
|
||||||
msgid "Network name: "
|
msgid "Network name: "
|
||||||
msgstr "Nama jaringan: "
|
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"
|
msgid "DSL authentication"
|
||||||
msgstr "Autentikasi DSL"
|
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"
|
msgid "PIN code required"
|
||||||
msgstr "Perlu kode PIN"
|
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"
|
msgid "PIN code is needed for the mobile broadband device"
|
||||||
msgstr "Kode PIN diperlukan untuk perangkat data seluler"
|
msgstr "Kode PIN diperlukan untuk perangkat data seluler"
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:327
|
#: js/ui/components/networkAgent.js:349
|
||||||
msgid "PIN: "
|
msgid "PIN: "
|
||||||
msgstr "PIN: "
|
msgstr "PIN: "
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:335 js/ui/components/networkAgent.js:687
|
#: js/ui/components/networkAgent.js:356 js/ui/components/networkAgent.js:724
|
||||||
#: js/ui/components/networkAgent.js:691 js/ui/components/networkAgent.js:703
|
msgid "Mobile broadband network password"
|
||||||
#: js/ui/components/networkAgent.js:707
|
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
|
#, javascript-format
|
||||||
msgid "A password is required to connect to “%s”."
|
msgid "A password is required to connect to “%s”."
|
||||||
msgstr "Perlu suatu sandi untuk menyambung ke \"%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"
|
msgid "Network Manager"
|
||||||
msgstr "Manajer Jaringan"
|
msgstr "Manajer Jaringan"
|
||||||
|
|
||||||
#: js/ui/components/networkAgent.js:706
|
#: js/ui/components/networkAgent.js:728
|
||||||
msgid "VPN password"
|
msgid "VPN password"
|
||||||
msgstr "Sandi VPN"
|
msgstr "Sandi VPN"
|
||||||
|
|
||||||
#: js/ui/components/polkitAgent.js:39
|
#: js/ui/components/polkitAgent.js:41
|
||||||
msgid "Authentication Required"
|
msgid "Authentication Required"
|
||||||
msgstr "Diperlukan Autentikasi"
|
msgstr "Diperlukan Autentikasi"
|
||||||
|
|
||||||
#: js/ui/components/polkitAgent.js:80
|
#: js/ui/components/polkitAgent.js:81
|
||||||
msgid "Administrator"
|
msgid "Administrator"
|
||||||
msgstr "Administrator"
|
msgstr "Administrator"
|
||||||
|
|
||||||
#: js/ui/components/polkitAgent.js:142
|
#: js/ui/components/polkitAgent.js:141
|
||||||
msgid "Authenticate"
|
msgid "Authenticate"
|
||||||
msgstr "Autentikasi"
|
msgstr "Autentikasi"
|
||||||
|
|
||||||
@@ -1183,14 +1119,10 @@ msgstr "Autentikasi"
|
|||||||
#. * requested authentication was not gained; this can happen
|
#. * requested authentication was not gained; this can happen
|
||||||
#. * because of an authentication error (like invalid password),
|
#. * because of an authentication error (like invalid password),
|
||||||
#. * for instance.
|
#. * 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 didn’t work. Please try again."
|
msgid "Sorry, that didn’t work. Please try again."
|
||||||
msgstr "Maaf, tidak berhasil. Silakan coba lagi."
|
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
|
#. Translators: this is the other person changing their old IM name to their new
|
||||||
#. IM name.
|
#. IM name.
|
||||||
#: js/ui/components/telepathyClient.js:787
|
#: js/ui/components/telepathyClient.js:787
|
||||||
@@ -1406,52 +1338,35 @@ msgstr "%s (jarak jauh)"
|
|||||||
msgid "%s (console)"
|
msgid "%s (console)"
|
||||||
msgstr "%s (konsol)"
|
msgstr "%s (konsol)"
|
||||||
|
|
||||||
#: js/ui/extensionDownloader.js:170
|
#: js/ui/extensionDownloader.js:194
|
||||||
msgid "Install"
|
msgid "Install"
|
||||||
msgstr "Pasang"
|
msgstr "Pasang"
|
||||||
|
|
||||||
#: js/ui/extensionDownloader.js:176
|
#: js/ui/extensionDownloader.js:200
|
||||||
msgid "Install Extension"
|
|
||||||
msgstr "Pasang Ekstensi"
|
|
||||||
|
|
||||||
#: js/ui/extensionDownloader.js:177
|
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||||
msgstr "Unduh dan pasang \"%s\" dari extensions.gnome.org?"
|
msgstr "Unduh dan pasang \"%s\" dari extensions.gnome.org?"
|
||||||
|
|
||||||
#: js/ui/extensionSystem.js:228
|
#: js/ui/inhibitShortcutsDialog.js:80
|
||||||
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
|
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "The application %s wants to inhibit shortcuts"
|
msgid "%s wants to inhibit shortcuts"
|
||||||
msgstr "Aplikasi %s ingin menghalangi pintasan"
|
msgstr "%s ingin mencegah pintasan"
|
||||||
|
|
||||||
#: js/ui/inhibitShortcutsDialog.js:83
|
#: js/ui/inhibitShortcutsDialog.js:81
|
||||||
msgid "An application wants to inhibit shortcuts"
|
msgid "Application wants to inhibit shortcuts"
|
||||||
msgstr "Aplikasi ingin menghalangi pintasan"
|
msgstr "Aplikasi ingin mencegah pintasan"
|
||||||
|
|
||||||
#. Translators: %s is a keyboard shortcut like "Super+x"
|
#. Translators: %s is a keyboard shortcut like "Super+x"
|
||||||
#: js/ui/inhibitShortcutsDialog.js:90
|
#: js/ui/inhibitShortcutsDialog.js:89
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "You can restore shortcuts by pressing %s."
|
msgid "You can restore shortcuts by pressing %s."
|
||||||
msgstr "Anda dapat memulihkan pintasan dengan menekan %s."
|
msgstr "Anda dapat memulihkan pintasan dengan menekan %s."
|
||||||
|
|
||||||
#: js/ui/inhibitShortcutsDialog.js:98
|
#: js/ui/inhibitShortcutsDialog.js:95
|
||||||
msgid "Deny"
|
msgid "Deny"
|
||||||
msgstr "Tolak"
|
msgstr "Tolak"
|
||||||
|
|
||||||
#: js/ui/inhibitShortcutsDialog.js:105
|
#: js/ui/inhibitShortcutsDialog.js:102
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Izinkan"
|
msgstr "Izinkan"
|
||||||
|
|
||||||
@@ -1497,16 +1412,16 @@ msgstr ""
|
|||||||
"berturut-turut. Ini mematikan fitur Tombol Lengket, yang mempengaruhi cara "
|
"berturut-turut. Ini mematikan fitur Tombol Lengket, yang mempengaruhi cara "
|
||||||
"kerja papan tik Anda."
|
"kerja papan tik Anda."
|
||||||
|
|
||||||
#: js/ui/kbdA11yDialog.js:55
|
#: js/ui/kbdA11yDialog.js:57
|
||||||
msgid "Leave On"
|
msgid "Leave On"
|
||||||
msgstr "Biarkan Menyala"
|
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
|
#: js/ui/status/network.js:1285
|
||||||
msgid "Turn On"
|
msgid "Turn On"
|
||||||
msgstr "Nyalakan"
|
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:131 js/ui/status/network.js:315
|
||||||
#: js/ui/status/network.js:1285 js/ui/status/network.js:1397
|
#: js/ui/status/network.js:1285 js/ui/status/network.js:1397
|
||||||
#: js/ui/status/nightLight.js:41 js/ui/status/rfkill.js:81
|
#: js/ui/status/nightLight.js:41 js/ui/status/rfkill.js:81
|
||||||
@@ -1514,7 +1429,7 @@ msgstr "Nyalakan"
|
|||||||
msgid "Turn Off"
|
msgid "Turn Off"
|
||||||
msgstr "Matikan"
|
msgstr "Matikan"
|
||||||
|
|
||||||
#: js/ui/kbdA11yDialog.js:63
|
#: js/ui/kbdA11yDialog.js:65
|
||||||
msgid "Leave Off"
|
msgid "Leave Off"
|
||||||
msgstr "Biarkan Mati"
|
msgstr "Biarkan Mati"
|
||||||
|
|
||||||
@@ -1684,18 +1599,18 @@ msgid "Top Bar"
|
|||||||
msgstr "Bar Atas"
|
msgstr "Bar Atas"
|
||||||
|
|
||||||
#: js/ui/runDialog.js:58
|
#: js/ui/runDialog.js:58
|
||||||
msgid "Run a Command"
|
msgid "Enter a Command"
|
||||||
msgstr "Jalankan Perintah"
|
msgstr "Ketikkan Perintah"
|
||||||
|
|
||||||
#: js/ui/runDialog.js:73
|
#: js/ui/runDialog.js:97 js/ui/windowMenu.js:167
|
||||||
msgid "Press ESC to close"
|
msgid "Close"
|
||||||
msgstr "Tekan Esc untuk menutup"
|
msgstr "Tutup"
|
||||||
|
|
||||||
#: js/ui/runDialog.js:238
|
#: js/ui/runDialog.js:259
|
||||||
msgid "Restart is not available on Wayland"
|
msgid "Restart is not available on Wayland"
|
||||||
msgstr "Memulai ulang tidak tersedia di Wayland"
|
msgstr "Memulai ulang tidak tersedia di Wayland"
|
||||||
|
|
||||||
#: js/ui/runDialog.js:243
|
#: js/ui/runDialog.js:264
|
||||||
msgid "Restarting…"
|
msgid "Restarting…"
|
||||||
msgstr "Memulai ulang…"
|
msgstr "Memulai ulang…"
|
||||||
|
|
||||||
@@ -1719,7 +1634,7 @@ msgid_plural "%d new notifications"
|
|||||||
msgstr[0] "%d pemberitahuan baru"
|
msgstr[0] "%d pemberitahuan baru"
|
||||||
msgstr[1] "%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"
|
msgid "Lock"
|
||||||
msgstr "Kunci"
|
msgstr "Kunci"
|
||||||
|
|
||||||
@@ -1777,20 +1692,20 @@ msgstr "Sembunyikan Teks"
|
|||||||
msgid "Caps lock is on."
|
msgid "Caps lock is on."
|
||||||
msgstr "Caps lock menyala."
|
msgstr "Caps lock menyala."
|
||||||
|
|
||||||
#: js/ui/shellMountOperation.js:285
|
#: js/ui/shellMountOperation.js:305
|
||||||
msgid "Hidden Volume"
|
msgid "Hidden Volume"
|
||||||
msgstr "Volume Tersembunyi"
|
msgstr "Volume Tersembunyi"
|
||||||
|
|
||||||
#: js/ui/shellMountOperation.js:288
|
#: js/ui/shellMountOperation.js:308
|
||||||
msgid "Windows System Volume"
|
msgid "Windows System Volume"
|
||||||
msgstr "Volume Sistem Windows"
|
msgstr "Volume Sistem Windows"
|
||||||
|
|
||||||
#: js/ui/shellMountOperation.js:291
|
#: js/ui/shellMountOperation.js:311
|
||||||
msgid "Uses Keyfiles"
|
msgid "Uses Keyfiles"
|
||||||
msgstr "Gunakan Berkas Kunci"
|
msgstr "Gunakan Berkas Kunci"
|
||||||
|
|
||||||
#. Translators: %s is the Disks application
|
#. Translators: %s is the Disks application
|
||||||
#: js/ui/shellMountOperation.js:298
|
#: js/ui/shellMountOperation.js:317
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"To unlock a volume that uses keyfiles, use the <i>%s</i> utility instead."
|
"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 "
|
"Untuk membuka kunci volume yang menggunakan berkas kunci, gunakan utilitas "
|
||||||
"<i>%s</i>."
|
"<i>%s</i>."
|
||||||
|
|
||||||
#: js/ui/shellMountOperation.js:306
|
#: js/ui/shellMountOperation.js:324
|
||||||
msgid "Enter PIM Number…"
|
msgid "PIM Number"
|
||||||
msgstr "Masukkan Nomor PIM…"
|
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"
|
msgid "Remember Password"
|
||||||
msgstr "Ingat Sandi"
|
msgstr "Ingat Sandi"
|
||||||
|
|
||||||
#. Translators: %s is the Disks application
|
#. Translators: %s is the Disks application
|
||||||
#: js/ui/shellMountOperation.js:391
|
#: js/ui/shellMountOperation.js:414
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Open %s"
|
msgid "Open %s"
|
||||||
msgstr "Buka %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
|
#. Translators: %s is the Disks application
|
||||||
#: js/ui/shellMountOperation.js:469
|
#: js/ui/shellMountOperation.js:486
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Unable to start %s"
|
msgid "Unable to start %s"
|
||||||
msgstr "Tak bisa memulai %s"
|
msgstr "Tak bisa memulai %s"
|
||||||
|
|
||||||
#. Translators: %s is the Disks application
|
#. Translators: %s is the Disks application
|
||||||
#: js/ui/shellMountOperation.js:471
|
#: js/ui/shellMountOperation.js:488
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Couldn’t find the %s application"
|
msgid "Couldn’t find the %s application"
|
||||||
msgstr "Tak bisa menemukan aplikasi %s"
|
msgstr "Tak bisa menemukan aplikasi %s"
|
||||||
@@ -1952,17 +1871,13 @@ msgstr "Koneksi Dinonaktifkan"
|
|||||||
msgid "Enable"
|
msgid "Enable"
|
||||||
msgstr "Fungsikan"
|
msgstr "Fungsikan"
|
||||||
|
|
||||||
#: js/ui/status/location.js:355
|
|
||||||
msgid "Allow location access"
|
|
||||||
msgstr "Izinkan akses lokasi"
|
|
||||||
|
|
||||||
#. Translators: %s is an application name
|
#. Translators: %s is an application name
|
||||||
#: js/ui/status/location.js:357
|
#: js/ui/status/location.js:355
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "The app %s wants to access your location"
|
msgid "Give %s access to your location?"
|
||||||
msgstr "Aplikasi %s ingin mengakses lokasi Anda"
|
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."
|
msgid "Location access can be changed at any time from the privacy settings."
|
||||||
msgstr "Akses lokasi dapat diubah setiap saat dari pengaturan privasi."
|
msgstr "Akses lokasi dapat diubah setiap saat dari pengaturan privasi."
|
||||||
|
|
||||||
@@ -2237,23 +2152,27 @@ msgstr "Matikan"
|
|||||||
msgid "Airplane Mode On"
|
msgid "Airplane Mode On"
|
||||||
msgstr "Mode Pesawat Terbang Aktif"
|
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"
|
msgid "Power Off / Log Out"
|
||||||
msgstr "Matikan / Log Keluar"
|
msgstr "Matikan / Log Keluar"
|
||||||
|
|
||||||
#: js/ui/status/system.js:114
|
#: js/ui/status/system.js:109
|
||||||
msgid "Log Out"
|
msgid "Log Out"
|
||||||
msgstr "Keluar"
|
msgstr "Keluar"
|
||||||
|
|
||||||
#: js/ui/status/system.js:126
|
#: js/ui/status/system.js:121
|
||||||
msgid "Switch User…"
|
msgid "Switch User…"
|
||||||
msgstr "Beralih Pengguna…"
|
msgstr "Beralih Pengguna…"
|
||||||
|
|
||||||
#: js/ui/status/system.js:140
|
#: js/ui/status/system.js:135
|
||||||
msgid "Suspend"
|
msgid "Suspend"
|
||||||
msgstr "Suspensi"
|
msgstr "Suspensi"
|
||||||
|
|
||||||
#: js/ui/status/system.js:152
|
#: js/ui/status/system.js:147
|
||||||
msgid "Power Off…"
|
msgid "Power Off…"
|
||||||
msgstr "Matikan…"
|
msgstr "Matikan…"
|
||||||
|
|
||||||
@@ -2349,23 +2268,22 @@ msgstr "Cari"
|
|||||||
msgid "“%s” is ready"
|
msgid "“%s” is ready"
|
||||||
msgstr "“%s” siap"
|
msgstr "“%s” siap"
|
||||||
|
|
||||||
#. Translators: This string should be shorter than 30 characters
|
#: js/ui/windowManager.js:54
|
||||||
#: js/ui/windowManager.js:55
|
msgid "Do you want to keep these display settings?"
|
||||||
msgid "Keep these display settings?"
|
msgstr "Apakah Anda ingin mempertahankan pengaturan tampilan ini?"
|
||||||
msgstr "Simpan pengaturan tampilan ini?"
|
|
||||||
|
|
||||||
#. Translators: this and the following message should be limited in length,
|
#. Translators: this and the following message should be limited in length,
|
||||||
#. to avoid ellipsizing the labels.
|
#. to avoid ellipsizing the labels.
|
||||||
#.
|
#.
|
||||||
#: js/ui/windowManager.js:64
|
#: js/ui/windowManager.js:68
|
||||||
msgid "Revert Settings"
|
msgid "Revert Settings"
|
||||||
msgstr "Balikkan Tatanan"
|
msgstr "Balikkan Tatanan"
|
||||||
|
|
||||||
#: js/ui/windowManager.js:67
|
#: js/ui/windowManager.js:71
|
||||||
msgid "Keep Changes"
|
msgid "Keep Changes"
|
||||||
msgstr "Simpan Perubahan"
|
msgstr "Simpan Perubahan"
|
||||||
|
|
||||||
#: js/ui/windowManager.js:85
|
#: js/ui/windowManager.js:89
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "Settings changes will revert in %d second"
|
msgid "Settings changes will revert in %d second"
|
||||||
msgid_plural "Settings changes will revert in %d seconds"
|
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
|
#. Translators: This represents the size of a window. The first number is
|
||||||
#. * the width of the window and the second is the height.
|
#. * the width of the window and the second is the height.
|
||||||
#: js/ui/windowManager.js:542
|
#: js/ui/windowManager.js:546
|
||||||
#, javascript-format
|
#, javascript-format
|
||||||
msgid "%d × %d"
|
msgid "%d × %d"
|
||||||
msgstr "%d × %d"
|
msgstr "%d × %d"
|
||||||
@@ -2443,10 +2361,6 @@ msgstr "Pindahkan ke Monitor Kiri"
|
|||||||
msgid "Move to Monitor Right"
|
msgid "Move to Monitor Right"
|
||||||
msgstr "Pindahkan ke Monitor Kanan"
|
msgstr "Pindahkan ke Monitor Kanan"
|
||||||
|
|
||||||
#: js/ui/windowMenu.js:167
|
|
||||||
msgid "Close"
|
|
||||||
msgstr "Tutup"
|
|
||||||
|
|
||||||
#: src/calendar-server/evolution-calendar.desktop.in:3
|
#: src/calendar-server/evolution-calendar.desktop.in:3
|
||||||
msgid "Evolution Calendar"
|
msgid "Evolution Calendar"
|
||||||
msgstr "Evolution Kalender"
|
msgstr "Evolution Kalender"
|
||||||
@@ -2467,12 +2381,12 @@ msgstr "Menggunakan mode tertentu, mis. \"gdm\" untuk layar masuk"
|
|||||||
msgid "List possible modes"
|
msgid "List possible modes"
|
||||||
msgstr "Menampilkan mode yang mungkin"
|
msgstr "Menampilkan mode yang mungkin"
|
||||||
|
|
||||||
#: src/shell-app.c:279
|
#: src/shell-app.c:265
|
||||||
msgctxt "program"
|
msgctxt "program"
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Tak dikenal"
|
msgstr "Tak dikenal"
|
||||||
|
|
||||||
#: src/shell-app.c:530
|
#: src/shell-app.c:516
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Failed to launch “%s”"
|
msgid "Failed to launch “%s”"
|
||||||
msgstr "Gagal meluncurkan \"%s\""
|
msgstr "Gagal meluncurkan \"%s\""
|
||||||
@@ -2831,27 +2745,5 @@ msgstr[1] "%u Masukan"
|
|||||||
msgid "System Sounds"
|
msgid "System Sounds"
|
||||||
msgstr "Suara Sistem"
|
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"
|
#~ msgid "Rename"
|
||||||
#~ msgstr "Ubah Nama"
|
#~ msgstr "Ubah Nama"
|
||||||
|
Reference in New Issue
Block a user