Compare commits
9 Commits
wip/rstrod
...
wip/beniof
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
920b169709 | ||
|
|
ccc5078802 | ||
|
|
a9b816ab36 | ||
|
|
a432653c87 | ||
|
|
c1e478eb53 | ||
|
|
5f73693391 | ||
|
|
1fd5196818 | ||
|
|
679c21b27f | ||
|
|
25678747cc |
@@ -154,8 +154,12 @@ var BackgroundCache = new Lang.Class({
|
||||
|
||||
let monitor = file.monitor(Gio.FileMonitorFlags.NONE, null);
|
||||
monitor.connect('changed',
|
||||
Lang.bind(this, function() {
|
||||
this.emit('file-changed', file);
|
||||
Lang.bind(this, function(obj, file, otherFile, eventType) {
|
||||
// Ignore CHANGED and CREATED events, since in both cases
|
||||
// we'll get a CHANGES_DONE_HINT event when done.
|
||||
if (eventType != Gio.FileMonitorEvent.CHANGED &&
|
||||
eventType != Gio.FileMonitorEvent.CREATED)
|
||||
this.emit('file-changed', file);
|
||||
}));
|
||||
|
||||
this._fileMonitors[key] = monitor;
|
||||
|
||||
@@ -33,7 +33,6 @@ var DIM_BRIGHTNESS = -0.3;
|
||||
var DIM_TIME = 0.500;
|
||||
var UNDIM_TIME = 0.250;
|
||||
|
||||
var DISPLAY_REVERT_TIMEOUT = 20; // in seconds - keep in sync with mutter
|
||||
var ONE_SECOND = 1000; // in ms
|
||||
|
||||
const GSD_WACOM_BUS_NAME = 'org.gnome.SettingsDaemon.Wacom';
|
||||
@@ -64,7 +63,7 @@ var DisplayChangeDialog = new Lang.Class({
|
||||
|
||||
this._wm = wm;
|
||||
|
||||
this._countDown = DISPLAY_REVERT_TIMEOUT;
|
||||
this._countDown = Meta.MonitorManager.get_display_configuration_timeout();
|
||||
|
||||
let iconName = 'preferences-desktop-display-symbolic';
|
||||
let icon = new Gio.ThemedIcon({ name: iconName });
|
||||
@@ -514,17 +513,25 @@ var TouchpadWorkspaceSwitchAction = new Lang.Class({
|
||||
if (event.get_touchpad_gesture_finger_count() != 4)
|
||||
return Clutter.EVENT_PROPAGATE;
|
||||
|
||||
if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.UPDATE) {
|
||||
let workspacesDisplay = Main.overview.viewSelector._workspacesDisplay;
|
||||
|
||||
if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.BEGIN) {
|
||||
workspacesDisplay._onPanStart();
|
||||
} else if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.UPDATE) {
|
||||
let [dx, dy] = event.get_gesture_motion_delta(event);
|
||||
|
||||
this._dx += dx;
|
||||
this._dy += dy;
|
||||
|
||||
workspacesDisplay._onPan(dy * 1.5);
|
||||
} else if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.CANCEL) {
|
||||
workspacesDisplay._onPanCancel();
|
||||
} else {
|
||||
if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.END)
|
||||
this._checkActivated();
|
||||
this._checkActivated();
|
||||
|
||||
this._dx = 0;
|
||||
this._dy = 0;
|
||||
workspacesDisplay._onPanEnd();
|
||||
}
|
||||
|
||||
return Clutter.EVENT_STOP;
|
||||
|
||||
@@ -435,28 +435,14 @@ var WorkspacesDisplay = new Lang.Class({
|
||||
this.actor.bind_property('mapped', clickAction, 'enabled', GObject.BindingFlags.SYNC_CREATE);
|
||||
|
||||
let panAction = new Clutter.PanAction({ threshold_trigger_edge: Clutter.GestureTriggerEdge.AFTER });
|
||||
panAction.connect('pan', Lang.bind(this, this._onPan));
|
||||
panAction.connect('gesture-begin', Lang.bind(this, function() {
|
||||
if (this._workspacesOnlyOnPrimary) {
|
||||
let event = Clutter.get_current_event();
|
||||
if (this._getMonitorIndexForEvent(event) != this._primaryIndex)
|
||||
return false;
|
||||
}
|
||||
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].startSwipeScroll();
|
||||
return true;
|
||||
}));
|
||||
panAction.connect('gesture-cancel', Lang.bind(this, function() {
|
||||
clickAction.release();
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].endSwipeScroll();
|
||||
}));
|
||||
panAction.connect('gesture-end', Lang.bind(this, function() {
|
||||
clickAction.release();
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].endSwipeScroll();
|
||||
panAction.connect('pan', Lang.bind(this, function (action) {
|
||||
let [dist, dx, dy] = action.get_motion_delta(0);
|
||||
this._onPan(dy);
|
||||
}));
|
||||
//panAction.connect('pan', Lang.bind(this, this._onPan));
|
||||
panAction.connect('gesture-begin', Lang.bind(this, this._onPanStart));
|
||||
panAction.connect('gesture-cancel', Lang.bind(this, this._onPanCancel));
|
||||
panAction.connect('gesture-end', Lang.bind(this, this._onPanEnd));
|
||||
Main.overview.addAction(panAction);
|
||||
this.actor.bind_property('mapped', panAction, 'enabled', GObject.BindingFlags.SYNC_CREATE);
|
||||
|
||||
@@ -480,13 +466,36 @@ var WorkspacesDisplay = new Lang.Class({
|
||||
this._fullGeometry = null;
|
||||
},
|
||||
|
||||
_onPan: function(action) {
|
||||
let [dist, dx, dy] = action.get_motion_delta(0);
|
||||
_onPan: function(dy) {
|
||||
let adjustment = this._scrollAdjustment;
|
||||
adjustment.value -= (dy / this.actor.height) * adjustment.page_size;
|
||||
return false;
|
||||
},
|
||||
|
||||
_onPanStart: function() {
|
||||
if (this._workspacesOnlyOnPrimary) {
|
||||
let event = Clutter.get_current_event();
|
||||
if (this._getMonitorIndexForEvent(event) != this._primaryIndex)
|
||||
return false;
|
||||
}
|
||||
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].startSwipeScroll();
|
||||
return true;
|
||||
},
|
||||
|
||||
_onPanCancel: function() {
|
||||
//clickAction.release();
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].endSwipeScroll();
|
||||
},
|
||||
|
||||
_onPanEnd: function() {
|
||||
//clickAction.release();
|
||||
for (let i = 0; i < this._workspacesViews.length; i++)
|
||||
this._workspacesViews[i].endSwipeScroll();
|
||||
},
|
||||
|
||||
navigateFocus: function(from, direction) {
|
||||
return this._getPrimaryView().actor.navigate_focus(from, direction, false);
|
||||
},
|
||||
|
||||
316
po/es.po
316
po/es.po
@@ -3,16 +3,15 @@
|
||||
# This file is distributed under the same license as the gnome-shell package.
|
||||
# Jorge González <jorgegonz@svn.gnome.org>, 2009, 2010, 2011.
|
||||
# Benjamín Valero Espinosa <benjavalero@gmail.com>, 2011.
|
||||
#
|
||||
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2010-2017.
|
||||
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2010-2017, 2017.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-shell.master\n"
|
||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=general\n"
|
||||
"POT-Creation-Date: 2017-03-20 18:14+0000\n"
|
||||
"PO-Revision-Date: 2017-03-21 12:42+0100\n"
|
||||
"POT-Creation-Date: 2017-07-20 03:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-24 15:38+0200\n"
|
||||
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
||||
"Language-Team: es <gnome-es-list@gnome.org>\n"
|
||||
"Language: es\n"
|
||||
@@ -47,7 +46,7 @@ msgid "Open the application menu"
|
||||
msgstr "Abrir el menú de la aplicación"
|
||||
|
||||
#: data/gnome-shell-extension-prefs.desktop.in.in:4
|
||||
#: js/extensionPrefs/main.js:149
|
||||
#: js/extensionPrefs/main.js:152
|
||||
msgid "Shell Extensions"
|
||||
msgstr "Extensiones de la Shell"
|
||||
|
||||
@@ -342,15 +341,15 @@ msgstr "Inicio de sesión de la red"
|
||||
msgid "network-workgroup"
|
||||
msgstr "network-workgroup"
|
||||
|
||||
#: js/extensionPrefs/main.js:117
|
||||
#: js/extensionPrefs/main.js:120
|
||||
#, javascript-format
|
||||
msgid "There was an error loading the preferences dialog for %s:"
|
||||
msgstr "Hubo un error al lanzar el diálogo de preferencias para %s:"
|
||||
|
||||
#: js/gdm/authPrompt.js:149 js/ui/audioDeviceSelection.js:71
|
||||
#: js/ui/components/networkAgent.js:145 js/ui/components/polkitAgent.js:179
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:195
|
||||
#: js/ui/shellMountOperation.js:399 js/ui/status/network.js:947
|
||||
#: js/ui/components/networkAgent.js:117 js/ui/components/polkitAgent.js:148
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:197
|
||||
#: js/ui/shellMountOperation.js:344 js/ui/status/network.js:947
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
@@ -358,7 +357,7 @@ msgstr "Cancelar"
|
||||
msgid "Next"
|
||||
msgstr "Siguiente"
|
||||
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:403
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:348
|
||||
#: js/ui/unlockDialog.js:59
|
||||
msgid "Unlock"
|
||||
msgstr "Desbloquear"
|
||||
@@ -368,20 +367,20 @@ msgctxt "button"
|
||||
msgid "Sign In"
|
||||
msgstr "Iniciar sesión"
|
||||
|
||||
#: js/gdm/loginDialog.js:285
|
||||
#: js/gdm/loginDialog.js:308
|
||||
msgid "Choose Session"
|
||||
msgstr "Elegir sesión"
|
||||
|
||||
#. translators: this message is shown below the user list on the
|
||||
#. login screen. It can be activated to reveal an entry for
|
||||
#. manually entering the username.
|
||||
#: js/gdm/loginDialog.js:435
|
||||
#: js/gdm/loginDialog.js:458
|
||||
msgid "Not listed?"
|
||||
msgstr "¿No está en la lista?"
|
||||
|
||||
#. Translators: this message is shown below the username entry field
|
||||
#. to clue the user in on how to login to the local network realm
|
||||
#: js/gdm/loginDialog.js:859
|
||||
#: js/gdm/loginDialog.js:888
|
||||
#, javascript-format
|
||||
msgid "(e.g., user or %s)"
|
||||
msgstr "(ej., usuario o %s)"
|
||||
@@ -389,16 +388,16 @@ msgstr "(ej., usuario o %s)"
|
||||
#. TTLS and PEAP are actually much more complicated, but this complication
|
||||
#. is not visible here since we only care about phase2 authentication
|
||||
#. (and don't even care of which one)
|
||||
#: js/gdm/loginDialog.js:864 js/ui/components/networkAgent.js:271
|
||||
#: js/ui/components/networkAgent.js:289
|
||||
#: js/gdm/loginDialog.js:893 js/ui/components/networkAgent.js:243
|
||||
#: js/ui/components/networkAgent.js:261
|
||||
msgid "Username: "
|
||||
msgstr "Nombre de usuario:"
|
||||
|
||||
#: js/gdm/loginDialog.js:1201
|
||||
#: js/gdm/loginDialog.js:1236
|
||||
msgid "Login Window"
|
||||
msgstr "Ventana de inicio de sesión"
|
||||
|
||||
#: js/gdm/util.js:342
|
||||
#: js/gdm/util.js:346
|
||||
msgid "Authentication error"
|
||||
msgstr "Error de autenticación"
|
||||
|
||||
@@ -407,7 +406,7 @@ msgstr "Error de autenticación"
|
||||
#. as a cue to display our own message.
|
||||
#. Translators: this message is shown below the password entry field
|
||||
#. to indicate the user can swipe their finger instead
|
||||
#: js/gdm/util.js:474
|
||||
#: js/gdm/util.js:478
|
||||
msgid "(or swipe finger)"
|
||||
msgstr "(o pase el dedo)"
|
||||
|
||||
@@ -477,20 +476,20 @@ msgstr[0] "Hace %d año"
|
||||
msgstr[1] "Hace %d años"
|
||||
|
||||
#. Translators: Time in 24h format
|
||||
#: js/misc/util.js:229
|
||||
#: js/misc/util.js:228
|
||||
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:235
|
||||
#: js/misc/util.js:234
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %H∶%M"
|
||||
msgstr "Ayer, %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:241
|
||||
#: js/misc/util.js:240
|
||||
#, no-c-format
|
||||
msgid "%A, %H∶%M"
|
||||
msgstr "%A, %H∶%M"
|
||||
@@ -498,7 +497,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:247
|
||||
#: js/misc/util.js:246
|
||||
#, no-c-format
|
||||
msgid "%B %d, %H∶%M"
|
||||
msgstr "%d de %B, %H∶%M"
|
||||
@@ -506,26 +505,26 @@ msgstr "%d de %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:253
|
||||
#: js/misc/util.js:252
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %H∶%M"
|
||||
msgstr "%d de %B de %Y, %H∶%M"
|
||||
|
||||
#. Translators: Time in 12h format
|
||||
#: js/misc/util.js:258
|
||||
#: js/misc/util.js:257
|
||||
msgid "%l∶%M %p"
|
||||
msgstr "%l∶%M %p"
|
||||
|
||||
#. Translators: this is the word "Yesterday" followed by a
|
||||
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
|
||||
#: js/misc/util.js:264
|
||||
#: js/misc/util.js:263
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %l∶%M %p"
|
||||
msgstr "Ayer a las %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:270
|
||||
#: js/misc/util.js:269
|
||||
#, no-c-format
|
||||
msgid "%A, %l∶%M %p"
|
||||
msgstr "%A, %l∶%M %p"
|
||||
@@ -533,7 +532,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:276
|
||||
#: js/misc/util.js:275
|
||||
#, no-c-format
|
||||
msgid "%B %d, %l∶%M %p"
|
||||
msgstr "%d de %B, %l∶%M %p"
|
||||
@@ -541,17 +540,17 @@ msgstr "%d de %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:282
|
||||
#: js/misc/util.js:281
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %l∶%M %p"
|
||||
msgstr "%d de %B de %Y, %l∶%M %p"
|
||||
|
||||
#. TRANSLATORS: this is the title of the wifi captive portal login window
|
||||
#: js/portalHelper/main.js:67
|
||||
#: js/portalHelper/main.js:66
|
||||
msgid "Hotspot Login"
|
||||
msgstr "Inicio de sesión en el punto de acceso"
|
||||
|
||||
#: js/portalHelper/main.js:113
|
||||
#: js/portalHelper/main.js:112
|
||||
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."
|
||||
@@ -561,11 +560,11 @@ msgstr ""
|
||||
|
||||
#. No support for non-modal system dialogs, so ignore the option
|
||||
#. let modal = options['modal'] || true;
|
||||
#: js/ui/accessDialog.js:62 js/ui/status/location.js:405
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:395
|
||||
msgid "Deny Access"
|
||||
msgstr "Denegar acceso"
|
||||
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:408
|
||||
#: js/ui/accessDialog.js:64 js/ui/status/location.js:398
|
||||
msgid "Grant Access"
|
||||
msgstr "Conceder acceso"
|
||||
|
||||
@@ -581,32 +580,32 @@ msgstr "Frecuentes"
|
||||
msgid "All"
|
||||
msgstr "Todas"
|
||||
|
||||
#: js/ui/appDisplay.js:1892
|
||||
#: js/ui/appDisplay.js:1895
|
||||
msgid "New Window"
|
||||
msgstr "Ventana nueva"
|
||||
|
||||
#: js/ui/appDisplay.js:1906
|
||||
#: js/ui/appDisplay.js:1909
|
||||
msgid "Launch using Dedicated Graphics Card"
|
||||
msgstr "Lanzar usando la tarjeta gráfica dedicada"
|
||||
|
||||
#: js/ui/appDisplay.js:1933 js/ui/dash.js:289
|
||||
#: js/ui/appDisplay.js:1936 js/ui/dash.js:289
|
||||
msgid "Remove from Favorites"
|
||||
msgstr "Quitar de los favoritos"
|
||||
|
||||
#: js/ui/appDisplay.js:1939
|
||||
#: js/ui/appDisplay.js:1942
|
||||
msgid "Add to Favorites"
|
||||
msgstr "Añadir a los favoritos"
|
||||
|
||||
#: js/ui/appDisplay.js:1949
|
||||
#: js/ui/appDisplay.js:1952
|
||||
msgid "Show Details"
|
||||
msgstr "Mostrar detalles"
|
||||
|
||||
#: js/ui/appFavorites.js:138
|
||||
#: js/ui/appFavorites.js:140
|
||||
#, javascript-format
|
||||
msgid "%s has been added to your favorites."
|
||||
msgstr "Se ha añadido %s a sus favoritos."
|
||||
|
||||
#: js/ui/appFavorites.js:172
|
||||
#: js/ui/appFavorites.js:174
|
||||
#, javascript-format
|
||||
msgid "%s has been removed from your favorites."
|
||||
msgstr "Se ha quitado %s de sus favoritos."
|
||||
@@ -627,7 +626,7 @@ msgstr "Auriculares"
|
||||
msgid "Headset"
|
||||
msgstr "Manos libres"
|
||||
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:213
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:221
|
||||
msgid "Microphone"
|
||||
msgstr "Micrófono"
|
||||
|
||||
@@ -639,7 +638,7 @@ msgstr "Cambiar el fondo…"
|
||||
msgid "Display Settings"
|
||||
msgstr "Configuración de pantalla"
|
||||
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:401
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:407
|
||||
msgid "Settings"
|
||||
msgstr "Configuración"
|
||||
|
||||
@@ -743,6 +742,29 @@ msgstr "No hay eventos"
|
||||
msgid "Clear All"
|
||||
msgstr "Limpiar todo"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/closeDialog.js:44
|
||||
#, javascript-format
|
||||
#| msgid "“%s” is ready"
|
||||
msgid "“%s” is not responding."
|
||||
msgstr "«%s» no responde."
|
||||
|
||||
#: js/ui/closeDialog.js:45
|
||||
msgid ""
|
||||
"You may choose to wait a short while for it to continue or force the "
|
||||
"application to quit entirely."
|
||||
msgstr ""
|
||||
"Puede elegir esperar un momento para que continúe o forzar a la aplicación a "
|
||||
"terminar."
|
||||
|
||||
#: js/ui/closeDialog.js:61
|
||||
msgid "Force Quit"
|
||||
msgstr "Forzar la salida"
|
||||
|
||||
#: js/ui/closeDialog.js:64
|
||||
msgid "Wait"
|
||||
msgstr "Esperar"
|
||||
|
||||
#: js/ui/components/automountManager.js:91
|
||||
msgid "External drive connected"
|
||||
msgstr "Dispositivo externo conectado"
|
||||
@@ -751,53 +773,53 @@ msgstr "Dispositivo externo conectado"
|
||||
msgid "External drive disconnected"
|
||||
msgstr "Dispositivo externo desconectado"
|
||||
|
||||
#: js/ui/components/autorunManager.js:356
|
||||
#: js/ui/components/autorunManager.js:354
|
||||
#, javascript-format
|
||||
msgid "Open with %s"
|
||||
msgstr "Abrir con %s"
|
||||
|
||||
#: js/ui/components/keyring.js:120 js/ui/components/polkitAgent.js:315
|
||||
#: js/ui/components/keyring.js:107 js/ui/components/polkitAgent.js:284
|
||||
msgid "Password:"
|
||||
msgstr "Contraseña:"
|
||||
|
||||
#: js/ui/components/keyring.js:153
|
||||
#: js/ui/components/keyring.js:140
|
||||
msgid "Type again:"
|
||||
msgstr "Escriba de nuevo:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:140 js/ui/status/network.js:272
|
||||
#: js/ui/components/networkAgent.js:112 js/ui/status/network.js:272
|
||||
#: js/ui/status/network.js:366 js/ui/status/network.js:950
|
||||
msgid "Connect"
|
||||
msgstr "Conectar"
|
||||
|
||||
#. Cisco LEAP
|
||||
#: js/ui/components/networkAgent.js:233 js/ui/components/networkAgent.js:245
|
||||
#: js/ui/components/networkAgent.js:273 js/ui/components/networkAgent.js:293
|
||||
#: js/ui/components/networkAgent.js:303
|
||||
#: js/ui/components/networkAgent.js:205 js/ui/components/networkAgent.js:217
|
||||
#: js/ui/components/networkAgent.js:245 js/ui/components/networkAgent.js:265
|
||||
#: js/ui/components/networkAgent.js:275
|
||||
msgid "Password: "
|
||||
msgstr "Contraseña: "
|
||||
|
||||
#. static WEP
|
||||
#: js/ui/components/networkAgent.js:238
|
||||
#: js/ui/components/networkAgent.js:210
|
||||
msgid "Key: "
|
||||
msgstr "Clave:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:277
|
||||
#: js/ui/components/networkAgent.js:249
|
||||
msgid "Identity: "
|
||||
msgstr "Identidad:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:279
|
||||
#: js/ui/components/networkAgent.js:251
|
||||
msgid "Private key password: "
|
||||
msgstr "Contraseña de la clave privada:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:291
|
||||
#: js/ui/components/networkAgent.js:263
|
||||
msgid "Service: "
|
||||
msgstr "Servicio:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:666
|
||||
#: js/ui/components/networkAgent.js:292 js/ui/components/networkAgent.js:638
|
||||
msgid "Authentication required by wireless network"
|
||||
msgstr "La red inalámbrica requiere autenticación"
|
||||
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:667
|
||||
#: js/ui/components/networkAgent.js:293 js/ui/components/networkAgent.js:639
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Passwords or encryption keys are required to access the wireless network "
|
||||
@@ -806,53 +828,53 @@ msgstr ""
|
||||
"Se necesitan contraseñas o claves de cifrado para acceder a la red "
|
||||
"inalámbrica «%s»."
|
||||
|
||||
#: js/ui/components/networkAgent.js:325 js/ui/components/networkAgent.js:670
|
||||
#: js/ui/components/networkAgent.js:297 js/ui/components/networkAgent.js:642
|
||||
msgid "Wired 802.1X authentication"
|
||||
msgstr "Autenticación 802.1X cableada"
|
||||
|
||||
#: js/ui/components/networkAgent.js:327
|
||||
#: js/ui/components/networkAgent.js:299
|
||||
msgid "Network name: "
|
||||
msgstr "Nombre de la red: "
|
||||
|
||||
#: js/ui/components/networkAgent.js:332 js/ui/components/networkAgent.js:674
|
||||
#: js/ui/components/networkAgent.js:304 js/ui/components/networkAgent.js:646
|
||||
msgid "DSL authentication"
|
||||
msgstr "Autenticación DSL"
|
||||
|
||||
#: js/ui/components/networkAgent.js:339 js/ui/components/networkAgent.js:680
|
||||
#: js/ui/components/networkAgent.js:311 js/ui/components/networkAgent.js:652
|
||||
msgid "PIN code required"
|
||||
msgstr "Código PIN requerido"
|
||||
|
||||
#: js/ui/components/networkAgent.js:340 js/ui/components/networkAgent.js:681
|
||||
#: js/ui/components/networkAgent.js:312 js/ui/components/networkAgent.js:653
|
||||
msgid "PIN code is needed for the mobile broadband device"
|
||||
msgstr "Se necesita un código PIN para el dispositivo de banda ancha móvil"
|
||||
|
||||
#: js/ui/components/networkAgent.js:341
|
||||
#: js/ui/components/networkAgent.js:313
|
||||
msgid "PIN: "
|
||||
msgstr "PIN: "
|
||||
|
||||
#: js/ui/components/networkAgent.js:348 js/ui/components/networkAgent.js:687
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:659
|
||||
msgid "Mobile broadband network password"
|
||||
msgstr "Contraseña de la red de banda ancha móvil"
|
||||
|
||||
#: js/ui/components/networkAgent.js:349 js/ui/components/networkAgent.js:671
|
||||
#: js/ui/components/networkAgent.js:675 js/ui/components/networkAgent.js:688
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:643
|
||||
#: js/ui/components/networkAgent.js:647 js/ui/components/networkAgent.js:660
|
||||
#, javascript-format
|
||||
msgid "A password is required to connect to “%s”."
|
||||
msgstr "Se requiere una contraseña para conectarse a «%s»."
|
||||
|
||||
#: js/ui/components/networkAgent.js:655 js/ui/status/network.js:1755
|
||||
#: js/ui/components/networkAgent.js:627 js/ui/status/network.js:1760
|
||||
msgid "Network Manager"
|
||||
msgstr "Gestor de la red"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:60
|
||||
#: js/ui/components/polkitAgent.js:43
|
||||
msgid "Authentication Required"
|
||||
msgstr "Se necesita autenticación"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:102
|
||||
#: js/ui/components/polkitAgent.js:71
|
||||
msgid "Administrator"
|
||||
msgstr "Administrador"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:182
|
||||
#: js/ui/components/polkitAgent.js:151
|
||||
msgid "Authenticate"
|
||||
msgstr "Autenticar"
|
||||
|
||||
@@ -860,7 +882,7 @@ msgstr "Autenticar"
|
||||
#. * requested authentication was not gained; this can happen
|
||||
#. * because of an authentication error (like invalid password),
|
||||
#. * for instance.
|
||||
#: js/ui/components/polkitAgent.js:301 js/ui/shellMountOperation.js:383
|
||||
#: js/ui/components/polkitAgent.js:270 js/ui/shellMountOperation.js:328
|
||||
msgid "Sorry, that didn’t work. Please try again."
|
||||
msgstr "Eso no ha funcionado. Inténtelo de nuevo."
|
||||
|
||||
@@ -871,7 +893,7 @@ msgstr "Eso no ha funcionado. Inténtelo de nuevo."
|
||||
msgid "%s is now known as %s"
|
||||
msgstr "Ahora %s se llama %s"
|
||||
|
||||
#: js/ui/ctrlAltTab.js:29 js/ui/viewSelector.js:178
|
||||
#: js/ui/ctrlAltTab.js:29 js/ui/viewSelector.js:179
|
||||
msgid "Windows"
|
||||
msgstr "Ventanas"
|
||||
|
||||
@@ -940,7 +962,6 @@ msgid "%s, then %s, followed by %s later."
|
||||
msgstr "%s, luego %s seguido de %s."
|
||||
|
||||
#: js/ui/dateMenu.js:300
|
||||
#| msgid "Select a network"
|
||||
msgid "Select a location…"
|
||||
msgstr "Seleccionar ubicación…"
|
||||
|
||||
@@ -1111,16 +1132,16 @@ msgstr "%s (remoto)"
|
||||
msgid "%s (console)"
|
||||
msgstr "%s (consola)"
|
||||
|
||||
#: js/ui/extensionDownloader.js:199
|
||||
#: js/ui/extensionDownloader.js:201
|
||||
msgid "Install"
|
||||
msgstr "Instalar"
|
||||
|
||||
#: js/ui/extensionDownloader.js:204
|
||||
#: js/ui/extensionDownloader.js:206
|
||||
#, javascript-format
|
||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||
msgstr "¿Descargar e instalar «%s» desde extensions.gnome.org?"
|
||||
|
||||
#: js/ui/keyboard.js:742 js/ui/status/keyboard.js:782
|
||||
#: js/ui/keyboard.js:740 js/ui/status/keyboard.js:782
|
||||
msgid "Keyboard"
|
||||
msgstr "Teclado"
|
||||
|
||||
@@ -1157,7 +1178,7 @@ msgstr "Activado"
|
||||
|
||||
#. translators:
|
||||
#. * The device has been disabled
|
||||
#: js/ui/lookingGlass.js:718 src/gvc/gvc-mixer-control.c:1866
|
||||
#: js/ui/lookingGlass.js:718 subprojects/gvc/gvc-mixer-control.c:1866
|
||||
msgid "Disabled"
|
||||
msgstr "Desactivado"
|
||||
|
||||
@@ -1231,27 +1252,27 @@ msgstr "Cambiar monitor"
|
||||
msgid "Assign keystroke"
|
||||
msgstr "Asignar pulsación"
|
||||
|
||||
#: js/ui/padOsd.js:209
|
||||
#: js/ui/padOsd.js:220
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
|
||||
#: js/ui/padOsd.js:698
|
||||
#: js/ui/padOsd.js:734
|
||||
msgid "Edit…"
|
||||
msgstr "Editar…"
|
||||
|
||||
#: js/ui/padOsd.js:738 js/ui/padOsd.js:800
|
||||
#: js/ui/padOsd.js:774 js/ui/padOsd.js:879
|
||||
msgid "None"
|
||||
msgstr "Nada"
|
||||
|
||||
#: js/ui/padOsd.js:783
|
||||
#: js/ui/padOsd.js:833
|
||||
msgid "Press a button to configure"
|
||||
msgstr "Pulse un botón para configurar"
|
||||
|
||||
#: js/ui/padOsd.js:784
|
||||
#: js/ui/padOsd.js:834
|
||||
msgid "Press Esc to exit"
|
||||
msgstr "Pulse Esc para salir"
|
||||
|
||||
#: js/ui/padOsd.js:787
|
||||
#: js/ui/padOsd.js:837
|
||||
msgid "Press any key to exit"
|
||||
msgstr "Pulse cualquier tecla para salir"
|
||||
|
||||
@@ -1270,7 +1291,7 @@ msgctxt "System menu in the top bar"
|
||||
msgid "System"
|
||||
msgstr "Sistema"
|
||||
|
||||
#: js/ui/panel.js:810
|
||||
#: js/ui/panel.js:812
|
||||
msgid "Top Bar"
|
||||
msgstr "Barra superior"
|
||||
|
||||
@@ -1279,7 +1300,7 @@ msgstr "Barra superior"
|
||||
#. "ON" and "OFF") or "toggle-switch-intl" (for toggle
|
||||
#. switches containing "◯" and "|"). Other values will
|
||||
#. simply result in invisible toggle switches.
|
||||
#: js/ui/popupMenu.js:289
|
||||
#: js/ui/popupMenu.js:291
|
||||
msgid "toggle-switch-us"
|
||||
msgstr "toggle-switch-intl"
|
||||
|
||||
@@ -1319,7 +1340,7 @@ msgid_plural "%d new notifications"
|
||||
msgstr[0] "%d notificación nueva"
|
||||
msgstr[1] "%d notificaciones nuevas"
|
||||
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:409
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:415
|
||||
msgid "Lock"
|
||||
msgstr "Bloquear"
|
||||
|
||||
@@ -1342,14 +1363,19 @@ msgstr "No se pudo bloquear"
|
||||
msgid "Lock was blocked by an application"
|
||||
msgstr "Una aplicación impidió el bloqueo"
|
||||
|
||||
#: js/ui/search.js:617
|
||||
#: js/ui/search.js:651
|
||||
msgid "Searching…"
|
||||
msgstr "Buscando…"
|
||||
|
||||
#: js/ui/search.js:619
|
||||
#: js/ui/search.js:653
|
||||
msgid "No results."
|
||||
msgstr "No se encontraron resultados."
|
||||
|
||||
#: js/ui/search.js:768
|
||||
#, javascript-format
|
||||
msgid "%d more"
|
||||
msgstr "%d más"
|
||||
|
||||
#: js/ui/shellEntry.js:25
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
@@ -1366,11 +1392,11 @@ msgstr "Mostrar texto"
|
||||
msgid "Hide Text"
|
||||
msgstr "Ocultar texto"
|
||||
|
||||
#: js/ui/shellMountOperation.js:370
|
||||
#: js/ui/shellMountOperation.js:315
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: js/ui/shellMountOperation.js:391
|
||||
#: js/ui/shellMountOperation.js:336
|
||||
msgid "Remember Password"
|
||||
msgstr "Recordar contraseña"
|
||||
|
||||
@@ -1448,7 +1474,7 @@ msgstr "Encender"
|
||||
|
||||
#: js/ui/status/bluetooth.js:142 js/ui/status/network.js:181
|
||||
#: js/ui/status/network.js:367 js/ui/status/network.js:1310
|
||||
#: js/ui/status/network.js:1425 js/ui/status/nightLight.js:47
|
||||
#: js/ui/status/network.js:1429 js/ui/status/nightLight.js:47
|
||||
#: js/ui/status/rfkill.js:90 js/ui/status/rfkill.js:117
|
||||
msgid "Turn Off"
|
||||
msgstr "Apagar"
|
||||
@@ -1461,37 +1487,37 @@ msgstr "Brillo"
|
||||
msgid "Show Keyboard Layout"
|
||||
msgstr "Mostrar la distribución del teclado"
|
||||
|
||||
#: js/ui/status/location.js:88 js/ui/status/location.js:196
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
msgid "Location Enabled"
|
||||
msgstr "Ubicación activada"
|
||||
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
#: js/ui/status/location.js:90 js/ui/status/location.js:198
|
||||
msgid "Disable"
|
||||
msgstr "Desactivar"
|
||||
|
||||
#: js/ui/status/location.js:90
|
||||
#: js/ui/status/location.js:91
|
||||
msgid "Privacy Settings"
|
||||
msgstr "Configuración de privacidad"
|
||||
|
||||
#: js/ui/status/location.js:195
|
||||
#: js/ui/status/location.js:196
|
||||
msgid "Location In Use"
|
||||
msgstr "Ubicación en uso"
|
||||
|
||||
#: js/ui/status/location.js:199
|
||||
#: js/ui/status/location.js:200
|
||||
msgid "Location Disabled"
|
||||
msgstr "Ubicación desactivada"
|
||||
|
||||
#: js/ui/status/location.js:200
|
||||
#: js/ui/status/location.js:201
|
||||
msgid "Enable"
|
||||
msgstr "Activar"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/status/location.js:414
|
||||
#: js/ui/status/location.js:388
|
||||
#, javascript-format
|
||||
msgid "Give %s access to your location?"
|
||||
msgstr "¿Conceder acceso a %s a su ubicación?"
|
||||
|
||||
#: js/ui/status/location.js:416
|
||||
#: js/ui/status/location.js:389
|
||||
msgid "Location access can be changed at any time from the privacy settings."
|
||||
msgstr ""
|
||||
"Los servicios de ubicación se pueden cambiar en cualquier momento desde la "
|
||||
@@ -1644,62 +1670,62 @@ msgstr "Punto de acceso %s activo"
|
||||
msgid "%s Not Connected"
|
||||
msgstr "%s no conectado"
|
||||
|
||||
#: js/ui/status/network.js:1442
|
||||
#: js/ui/status/network.js:1446
|
||||
msgid "connecting…"
|
||||
msgstr "conectando…"
|
||||
|
||||
#. Translators: this is for network connections that require some kind of key or password
|
||||
#: js/ui/status/network.js:1445
|
||||
#: js/ui/status/network.js:1449
|
||||
msgid "authentication required"
|
||||
msgstr "se necesita autenticación"
|
||||
|
||||
#: js/ui/status/network.js:1447
|
||||
#: js/ui/status/network.js:1451
|
||||
msgid "connection failed"
|
||||
msgstr "falló la conexión"
|
||||
|
||||
#: js/ui/status/network.js:1513 js/ui/status/network.js:1608
|
||||
#: js/ui/status/network.js:1517 js/ui/status/network.js:1612
|
||||
#: js/ui/status/rfkill.js:93
|
||||
msgid "Network Settings"
|
||||
msgstr "Configuración de la red"
|
||||
|
||||
#: js/ui/status/network.js:1515
|
||||
#: js/ui/status/network.js:1519
|
||||
msgid "VPN Settings"
|
||||
msgstr "Configuración de VPN"
|
||||
|
||||
#: js/ui/status/network.js:1534
|
||||
#: js/ui/status/network.js:1538
|
||||
msgid "VPN"
|
||||
msgstr "VPN"
|
||||
|
||||
#: js/ui/status/network.js:1544
|
||||
#: js/ui/status/network.js:1548
|
||||
msgid "VPN Off"
|
||||
msgstr "VPN apagada"
|
||||
|
||||
#: js/ui/status/network.js:1639
|
||||
#: js/ui/status/network.js:1643
|
||||
#, javascript-format
|
||||
msgid "%s Wired Connection"
|
||||
msgid_plural "%s Wired Connections"
|
||||
msgstr[0] "%s conexión cableada"
|
||||
msgstr[1] "%s conexiones cableadas"
|
||||
|
||||
#: js/ui/status/network.js:1643
|
||||
#: js/ui/status/network.js:1647
|
||||
#, javascript-format
|
||||
msgid "%s Wi-Fi Connection"
|
||||
msgid_plural "%s Wi-Fi Connections"
|
||||
msgstr[0] "%s conexión inalámbrica"
|
||||
msgstr[1] "%s conexiones inalámbricas"
|
||||
|
||||
#: js/ui/status/network.js:1647
|
||||
#: js/ui/status/network.js:1651
|
||||
#, javascript-format
|
||||
msgid "%s Modem Connection"
|
||||
msgid_plural "%s Modem Connections"
|
||||
msgstr[0] "%s conexión por módem"
|
||||
msgstr[1] "%s conexiones por módem"
|
||||
|
||||
#: js/ui/status/network.js:1794
|
||||
#: js/ui/status/network.js:1799
|
||||
msgid "Connection failed"
|
||||
msgstr "Falló la conexión"
|
||||
|
||||
#: js/ui/status/network.js:1795
|
||||
#: js/ui/status/network.js:1800
|
||||
msgid "Activation of network connection failed"
|
||||
msgstr "Falló la activación de la conexión de red"
|
||||
|
||||
@@ -1757,35 +1783,35 @@ msgstr "%d %%"
|
||||
msgid "Airplane Mode On"
|
||||
msgstr "Modo avión activado"
|
||||
|
||||
#: js/ui/status/system.js:378
|
||||
#: js/ui/status/system.js:384
|
||||
msgid "Switch User"
|
||||
msgstr "Cambiar de usuario"
|
||||
|
||||
#: js/ui/status/system.js:383
|
||||
#: js/ui/status/system.js:389
|
||||
msgid "Log Out"
|
||||
msgstr "Cerrar la sesión"
|
||||
|
||||
#: js/ui/status/system.js:388
|
||||
#: js/ui/status/system.js:394
|
||||
msgid "Account Settings"
|
||||
msgstr "Configuración de la cuenta"
|
||||
|
||||
#: js/ui/status/system.js:405
|
||||
#: js/ui/status/system.js:411
|
||||
msgid "Orientation Lock"
|
||||
msgstr "Bloqueo de orientación"
|
||||
|
||||
#: js/ui/status/system.js:413
|
||||
#: js/ui/status/system.js:419
|
||||
msgid "Suspend"
|
||||
msgstr "Suspender"
|
||||
|
||||
#: js/ui/status/system.js:416
|
||||
#: js/ui/status/system.js:422
|
||||
msgid "Power Off"
|
||||
msgstr "Apagar"
|
||||
|
||||
#: js/ui/status/volume.js:127
|
||||
#: js/ui/status/volume.js:128
|
||||
msgid "Volume changed"
|
||||
msgstr "Volumen modificado"
|
||||
|
||||
#: js/ui/status/volume.js:162
|
||||
#: js/ui/status/volume.js:170
|
||||
msgid "Volume"
|
||||
msgstr "Volumen"
|
||||
|
||||
@@ -1797,11 +1823,11 @@ msgstr "Iniciar sesión como otro usuario"
|
||||
msgid "Unlock Window"
|
||||
msgstr "Desbloquear ventana"
|
||||
|
||||
#: js/ui/viewSelector.js:182
|
||||
#: js/ui/viewSelector.js:183
|
||||
msgid "Applications"
|
||||
msgstr "Aplicaciones"
|
||||
|
||||
#: js/ui/viewSelector.js:186
|
||||
#: js/ui/viewSelector.js:187
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
@@ -1810,22 +1836,22 @@ msgstr "Buscar"
|
||||
msgid "“%s” is ready"
|
||||
msgstr "«%s» está preparado"
|
||||
|
||||
#: js/ui/windowManager.js:84
|
||||
#: js/ui/windowManager.js:71
|
||||
msgid "Do you want to keep these display settings?"
|
||||
msgstr "¿Quiere mantener esta configuración de la pantalla?"
|
||||
|
||||
#. Translators: this and the following message should be limited in lenght,
|
||||
#. to avoid ellipsizing the labels.
|
||||
#.
|
||||
#: js/ui/windowManager.js:103
|
||||
#: js/ui/windowManager.js:83
|
||||
msgid "Revert Settings"
|
||||
msgstr "Revertir configuración"
|
||||
|
||||
#: js/ui/windowManager.js:106
|
||||
#: js/ui/windowManager.js:86
|
||||
msgid "Keep Changes"
|
||||
msgstr "Mantener cambios"
|
||||
|
||||
#: js/ui/windowManager.js:124
|
||||
#: js/ui/windowManager.js:104
|
||||
#, javascript-format
|
||||
msgid "Settings changes will revert in %d second"
|
||||
msgid_plural "Settings changes will revert in %d seconds"
|
||||
@@ -1834,7 +1860,7 @@ msgstr[1] "La configuración se revertirá en %d segundos"
|
||||
|
||||
#. 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:679
|
||||
#: js/ui/windowManager.js:659
|
||||
#, javascript-format
|
||||
msgid "%d × %d"
|
||||
msgstr "%d × %d"
|
||||
@@ -1912,28 +1938,6 @@ msgstr "Calendario de Evolution"
|
||||
msgid "evolution"
|
||||
msgstr "evolution"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u salida"
|
||||
msgstr[1] "%u salidas"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u entrada"
|
||||
msgstr[1] "%u entradas"
|
||||
|
||||
#: src/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Sonidos del sistema"
|
||||
|
||||
#: src/main.c:372
|
||||
msgid "Print version"
|
||||
msgstr "Imprimir versión"
|
||||
@@ -1974,6 +1978,28 @@ msgstr "La contraseña no puede estar vacía"
|
||||
msgid "Authentication dialog was dismissed by the user"
|
||||
msgstr "El usuario rechazó el diálogo de autenticación"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u salida"
|
||||
msgstr[1] "%u salidas"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u entrada"
|
||||
msgstr[1] "%u entradas"
|
||||
|
||||
#: subprojects/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Sonidos del sistema"
|
||||
|
||||
#~ msgid "Events"
|
||||
#~ msgstr "Eventos"
|
||||
|
||||
|
||||
18
po/fur.po
18
po/fur.po
@@ -8,7 +8,7 @@ msgstr ""
|
||||
"Project-Id-Version: video-subtitles master\n"
|
||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=general\n"
|
||||
"POT-Creation-Date: 2017-07-22 21:01+0000\n"
|
||||
"POT-Creation-Date: 2017-07-28 11:38+0000\n"
|
||||
"PO-Revision-Date: 2017-07-25 15:43+0200\n"
|
||||
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
|
||||
"Language-Team: Friulian <fur@li.org>\n"
|
||||
@@ -113,7 +113,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"GNOME Shell al cjarie nome lis estensions che a disin di supuartâ la version "
|
||||
"di GNOME Shell atualmentri in esecuzion. Abilitant cheste opzion il control "
|
||||
"nol vegnarà plui fat e al cirarà di cjariâ dutis lis estensions ignorant la "
|
||||
"nol vignarà plui fat e al cirarà di cjariâ dutis lis estensions ignorant la "
|
||||
"version che a disin di supuartâ."
|
||||
|
||||
#: data/org.gnome.shell.gschema.xml.in:43
|
||||
@@ -125,7 +125,7 @@ msgid ""
|
||||
"The applications corresponding to these identifiers will be displayed in the "
|
||||
"favorites area."
|
||||
msgstr ""
|
||||
"Lis aplicazions che a corispuindin a chescj indentificatôrs a vegnaran "
|
||||
"Lis aplicazions che a corispuindin a chescj identificadôrs a vignaran "
|
||||
"mostrâts te aree dai preferîts."
|
||||
|
||||
#: data/org.gnome.shell.gschema.xml.in:51
|
||||
@@ -190,7 +190,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"La shell e mostrarà un menù Bluetooth nome se un adatatôr Bluetooth al è "
|
||||
"alimentât, o se a son dispositîfs configurâts e associâts cul adatatôr "
|
||||
"predefinît. Chest al vegnarà azerât se l'adatatôr predefinît nol à mai vût "
|
||||
"predefinît. Chest al vignarà azerât se l'adatatôr predefinît nol à mai vût "
|
||||
"dispositîfs associâts."
|
||||
|
||||
#: data/org.gnome.shell.gschema.xml.in:101
|
||||
@@ -563,7 +563,7 @@ msgstr "Garantìs l'acès"
|
||||
|
||||
#: js/ui/appDisplay.js:806
|
||||
msgid "Frequently used applications will appear here"
|
||||
msgstr "Lis aplicazions dopradis dispès a vegnaran mostradis culì"
|
||||
msgstr "Lis aplicazions dopradis dispès a vignaran mostradis culì"
|
||||
|
||||
#: js/ui/appDisplay.js:927
|
||||
msgid "Frequent"
|
||||
@@ -1095,7 +1095,7 @@ msgid ""
|
||||
"%s %s will be installed after restart. Upgrade installation can take a long "
|
||||
"time: ensure that you have backed up and that the computer is plugged in."
|
||||
msgstr ""
|
||||
"%s %s al vegnarà instalât dopo vê tornât a inviâ il computer. La instalazion "
|
||||
"%s %s al vignarà instalât dopo vê tornât a inviâ il computer. La instalazion "
|
||||
"dal avanzament e pues tirâ a dilunc: siguriti di vê fat i backup e che il to "
|
||||
"computer al sedi tacât."
|
||||
|
||||
@@ -1134,7 +1134,7 @@ msgstr "Instale"
|
||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||
msgstr "Scjariâ e instalâ '%s' da extensions.gnome.org?"
|
||||
|
||||
#: js/ui/keyboard.js:740 js/ui/status/keyboard.js:782
|
||||
#: js/ui/keyboard.js:738 js/ui/status/keyboard.js:782
|
||||
msgid "Keyboard"
|
||||
msgstr "Tastiere"
|
||||
|
||||
@@ -1852,9 +1852,9 @@ msgstr "Ten lis modifichis"
|
||||
msgid "Settings changes will revert in %d second"
|
||||
msgid_plural "Settings changes will revert in %d seconds"
|
||||
msgstr[0] ""
|
||||
"Lis modifichis as impostazions a vegnaran ripristinadis chi di %d secont"
|
||||
"Lis modifichis as impostazions a vignaran ripristinadis chi di %d secont"
|
||||
msgstr[1] ""
|
||||
"Lis modifichis as impostazions a vegnaran ripristinadis chi di %d seconts"
|
||||
"Lis modifichis as impostazions a vignaran ripristinadis chi di %d seconts"
|
||||
|
||||
#. Translators: This represents the size of a window. The first number is
|
||||
#. * the width of the window and the second is the height.
|
||||
|
||||
287
po/hr.po
287
po/hr.po
@@ -8,8 +8,8 @@ msgstr ""
|
||||
"Project-Id-Version: gnome-shell master\n"
|
||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=general\n"
|
||||
"POT-Creation-Date: 2017-04-07 12:28+0000\n"
|
||||
"PO-Revision-Date: 2017-04-08 17:15+0200\n"
|
||||
"POT-Creation-Date: 2017-07-20 03:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-25 20:05+0200\n"
|
||||
"Last-Translator: gogo <trebelnik2@gmail.com>\n"
|
||||
"Language-Team: Croatian <hr@li.org>\n"
|
||||
"Language: hr\n"
|
||||
@@ -18,7 +18,7 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Generator: Poedit 2.0.2\n"
|
||||
|
||||
#: data/50-gnome-shell-system.xml:6
|
||||
msgid "System"
|
||||
@@ -45,7 +45,7 @@ msgid "Open the application menu"
|
||||
msgstr "Otvori izbornik aplikacija"
|
||||
|
||||
#: data/gnome-shell-extension-prefs.desktop.in.in:4
|
||||
#: js/extensionPrefs/main.js:149
|
||||
#: js/extensionPrefs/main.js:152
|
||||
msgid "Shell Extensions"
|
||||
msgstr "Proširenja ljuske"
|
||||
|
||||
@@ -332,15 +332,15 @@ msgstr "Mrežna prijava"
|
||||
msgid "network-workgroup"
|
||||
msgstr "network-workgroup"
|
||||
|
||||
#: js/extensionPrefs/main.js:117
|
||||
#: js/extensionPrefs/main.js:120
|
||||
#, javascript-format
|
||||
msgid "There was an error loading the preferences dialog for %s:"
|
||||
msgstr "Dogodila se greška učitavanja dijaloga osobitosti za %s:"
|
||||
|
||||
#: js/gdm/authPrompt.js:149 js/ui/audioDeviceSelection.js:71
|
||||
#: js/ui/components/networkAgent.js:145 js/ui/components/polkitAgent.js:179
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:195
|
||||
#: js/ui/shellMountOperation.js:399 js/ui/status/network.js:947
|
||||
#: js/ui/components/networkAgent.js:117 js/ui/components/polkitAgent.js:148
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:197
|
||||
#: js/ui/shellMountOperation.js:344 js/ui/status/network.js:947
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
@@ -348,7 +348,7 @@ msgstr "Odustani"
|
||||
msgid "Next"
|
||||
msgstr "Sljedeće"
|
||||
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:403
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:348
|
||||
#: js/ui/unlockDialog.js:59
|
||||
msgid "Unlock"
|
||||
msgstr "Otključaj"
|
||||
@@ -358,20 +358,20 @@ msgctxt "button"
|
||||
msgid "Sign In"
|
||||
msgstr "Prijava"
|
||||
|
||||
#: js/gdm/loginDialog.js:285
|
||||
#: js/gdm/loginDialog.js:308
|
||||
msgid "Choose Session"
|
||||
msgstr "Odaberi sesiju"
|
||||
|
||||
#. translators: this message is shown below the user list on the
|
||||
#. login screen. It can be activated to reveal an entry for
|
||||
#. manually entering the username.
|
||||
#: js/gdm/loginDialog.js:435
|
||||
#: js/gdm/loginDialog.js:458
|
||||
msgid "Not listed?"
|
||||
msgstr "Nije na popisu?"
|
||||
|
||||
#. Translators: this message is shown below the username entry field
|
||||
#. to clue the user in on how to login to the local network realm
|
||||
#: js/gdm/loginDialog.js:859
|
||||
#: js/gdm/loginDialog.js:888
|
||||
#, javascript-format
|
||||
msgid "(e.g., user or %s)"
|
||||
msgstr "(npr., korisnik ili %s)"
|
||||
@@ -379,16 +379,16 @@ msgstr "(npr., korisnik ili %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:864 js/ui/components/networkAgent.js:271
|
||||
#: js/ui/components/networkAgent.js:289
|
||||
#: js/gdm/loginDialog.js:893 js/ui/components/networkAgent.js:243
|
||||
#: js/ui/components/networkAgent.js:261
|
||||
msgid "Username: "
|
||||
msgstr "Korisničko ime:"
|
||||
|
||||
#: js/gdm/loginDialog.js:1201
|
||||
#: js/gdm/loginDialog.js:1236
|
||||
msgid "Login Window"
|
||||
msgstr "Prozor prijave"
|
||||
|
||||
#: js/gdm/util.js:342
|
||||
#: js/gdm/util.js:346
|
||||
msgid "Authentication error"
|
||||
msgstr "Greška ovjere"
|
||||
|
||||
@@ -397,7 +397,7 @@ msgstr "Greška ovjere"
|
||||
#. as a cue to display our own message.
|
||||
#. Translators: this message is shown below the password entry field
|
||||
#. to indicate the user can swipe their finger instead
|
||||
#: js/gdm/util.js:474
|
||||
#: js/gdm/util.js:478
|
||||
msgid "(or swipe finger)"
|
||||
msgstr "(ili pomakni prst)"
|
||||
|
||||
@@ -473,20 +473,20 @@ msgstr[1] "Prije %d godine"
|
||||
msgstr[2] "Prije %d godina"
|
||||
|
||||
#. Translators: Time in 24h format
|
||||
#: js/misc/util.js:229
|
||||
#: js/misc/util.js:228
|
||||
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:235
|
||||
#: js/misc/util.js:234
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %H∶%M"
|
||||
msgstr "Jučer, %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:241
|
||||
#: js/misc/util.js:240
|
||||
#, no-c-format
|
||||
msgid "%A, %H∶%M"
|
||||
msgstr "%A, %H∶%M"
|
||||
@@ -494,7 +494,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:247
|
||||
#: js/misc/util.js:246
|
||||
#, no-c-format
|
||||
msgid "%B %d, %H∶%M"
|
||||
msgstr "%B %d, %H∶%M"
|
||||
@@ -502,26 +502,26 @@ msgstr "%B %d, %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:253
|
||||
#: js/misc/util.js:252
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %H∶%M"
|
||||
msgstr "%B %d %Y, %H∶%M"
|
||||
|
||||
#. Translators: Time in 12h format
|
||||
#: js/misc/util.js:258
|
||||
#: js/misc/util.js:257
|
||||
msgid "%l∶%M %p"
|
||||
msgstr "%l:%M %p"
|
||||
|
||||
#. Translators: this is the word "Yesterday" followed by a
|
||||
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
|
||||
#: js/misc/util.js:264
|
||||
#: js/misc/util.js:263
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %l∶%M %p"
|
||||
msgstr "Jučer, %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:270
|
||||
#: js/misc/util.js:269
|
||||
#, no-c-format
|
||||
msgid "%A, %l∶%M %p"
|
||||
msgstr "%A, %l∶%M %p"
|
||||
@@ -529,7 +529,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:276
|
||||
#: js/misc/util.js:275
|
||||
#, no-c-format
|
||||
msgid "%B %d, %l∶%M %p"
|
||||
msgstr "%B %d, %l∶%M %p"
|
||||
@@ -537,7 +537,7 @@ msgstr "%B %d, %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:282
|
||||
#: js/misc/util.js:281
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %l∶%M %p"
|
||||
msgstr "%B %d %Y, %l∶%M %p"
|
||||
@@ -558,11 +558,11 @@ msgstr ""
|
||||
|
||||
#. No support for non-modal system dialogs, so ignore the option
|
||||
#. let modal = options['modal'] || true;
|
||||
#: js/ui/accessDialog.js:62 js/ui/status/location.js:405
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:395
|
||||
msgid "Deny Access"
|
||||
msgstr "Zabrani pristup"
|
||||
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:408
|
||||
#: js/ui/accessDialog.js:64 js/ui/status/location.js:398
|
||||
msgid "Grant Access"
|
||||
msgstr "Dopusti pristup"
|
||||
|
||||
@@ -578,32 +578,32 @@ msgstr "Najčešće"
|
||||
msgid "All"
|
||||
msgstr "Sve"
|
||||
|
||||
#: js/ui/appDisplay.js:1892
|
||||
#: js/ui/appDisplay.js:1895
|
||||
msgid "New Window"
|
||||
msgstr "Novi prozor"
|
||||
|
||||
#: js/ui/appDisplay.js:1906
|
||||
#: js/ui/appDisplay.js:1909
|
||||
msgid "Launch using Dedicated Graphics Card"
|
||||
msgstr "Pokreni pomoću namjenske grafičke kartice"
|
||||
|
||||
#: js/ui/appDisplay.js:1933 js/ui/dash.js:289
|
||||
#: js/ui/appDisplay.js:1936 js/ui/dash.js:289
|
||||
msgid "Remove from Favorites"
|
||||
msgstr "Ukloni iz omiljenih"
|
||||
|
||||
#: js/ui/appDisplay.js:1939
|
||||
#: js/ui/appDisplay.js:1942
|
||||
msgid "Add to Favorites"
|
||||
msgstr "Dodaj u omiljene"
|
||||
|
||||
#: js/ui/appDisplay.js:1949
|
||||
#: js/ui/appDisplay.js:1952
|
||||
msgid "Show Details"
|
||||
msgstr "Prikaži pojedinosti"
|
||||
|
||||
#: js/ui/appFavorites.js:138
|
||||
#: js/ui/appFavorites.js:140
|
||||
#, javascript-format
|
||||
msgid "%s has been added to your favorites."
|
||||
msgstr "%s je dodan u omiljene."
|
||||
|
||||
#: js/ui/appFavorites.js:172
|
||||
#: js/ui/appFavorites.js:174
|
||||
#, javascript-format
|
||||
msgid "%s has been removed from your favorites."
|
||||
msgstr "%s je uklonjen iz omiljenih."
|
||||
@@ -624,7 +624,7 @@ msgstr "Slušalice"
|
||||
msgid "Headset"
|
||||
msgstr "Slušalice s mikrofonom"
|
||||
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:213
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:221
|
||||
msgid "Microphone"
|
||||
msgstr "Mikrofon"
|
||||
|
||||
@@ -636,7 +636,7 @@ msgstr "Promijeni pozadinu..."
|
||||
msgid "Display Settings"
|
||||
msgstr "Postavke prikaza"
|
||||
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:401
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:407
|
||||
msgid "Settings"
|
||||
msgstr "Postavke"
|
||||
|
||||
@@ -740,6 +740,28 @@ msgstr "Nema događaja"
|
||||
msgid "Clear All"
|
||||
msgstr "Obriši sve"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/closeDialog.js:44
|
||||
#, javascript-format
|
||||
msgid "“%s” is not responding."
|
||||
msgstr "“%s” ne reagira."
|
||||
|
||||
#: js/ui/closeDialog.js:45
|
||||
msgid ""
|
||||
"You may choose to wait a short while for it to continue or force the "
|
||||
"application to quit entirely."
|
||||
msgstr ""
|
||||
"Možda ste odabrali kratko čekanje do nastavka izvođenja ili prisile "
|
||||
"aplikacije da se u potpunosti zatvori."
|
||||
|
||||
#: js/ui/closeDialog.js:61
|
||||
msgid "Force Quit"
|
||||
msgstr "Prisilno zatvori"
|
||||
|
||||
#: js/ui/closeDialog.js:64
|
||||
msgid "Wait"
|
||||
msgstr "Čekaj"
|
||||
|
||||
#: js/ui/components/automountManager.js:91
|
||||
msgid "External drive connected"
|
||||
msgstr "Vanjski uređaj povezan"
|
||||
@@ -748,53 +770,53 @@ msgstr "Vanjski uređaj povezan"
|
||||
msgid "External drive disconnected"
|
||||
msgstr "Vanjski uređaj odspojen"
|
||||
|
||||
#: js/ui/components/autorunManager.js:356
|
||||
#: js/ui/components/autorunManager.js:354
|
||||
#, javascript-format
|
||||
msgid "Open with %s"
|
||||
msgstr "Otvori s(a) %s"
|
||||
|
||||
#: js/ui/components/keyring.js:120 js/ui/components/polkitAgent.js:315
|
||||
#: js/ui/components/keyring.js:107 js/ui/components/polkitAgent.js:284
|
||||
msgid "Password:"
|
||||
msgstr "Lozinka:"
|
||||
|
||||
#: js/ui/components/keyring.js:153
|
||||
#: js/ui/components/keyring.js:140
|
||||
msgid "Type again:"
|
||||
msgstr "Pokušaj ponovno:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:140 js/ui/status/network.js:272
|
||||
#: js/ui/components/networkAgent.js:112 js/ui/status/network.js:272
|
||||
#: js/ui/status/network.js:366 js/ui/status/network.js:950
|
||||
msgid "Connect"
|
||||
msgstr "Povezivanje"
|
||||
|
||||
#. Cisco LEAP
|
||||
#: js/ui/components/networkAgent.js:233 js/ui/components/networkAgent.js:245
|
||||
#: js/ui/components/networkAgent.js:273 js/ui/components/networkAgent.js:293
|
||||
#: js/ui/components/networkAgent.js:303
|
||||
#: js/ui/components/networkAgent.js:205 js/ui/components/networkAgent.js:217
|
||||
#: js/ui/components/networkAgent.js:245 js/ui/components/networkAgent.js:265
|
||||
#: js/ui/components/networkAgent.js:275
|
||||
msgid "Password: "
|
||||
msgstr "Lozinka:"
|
||||
|
||||
#. static WEP
|
||||
#: js/ui/components/networkAgent.js:238
|
||||
#: js/ui/components/networkAgent.js:210
|
||||
msgid "Key: "
|
||||
msgstr "Ključ:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:277
|
||||
#: js/ui/components/networkAgent.js:249
|
||||
msgid "Identity: "
|
||||
msgstr "Identitet:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:279
|
||||
#: js/ui/components/networkAgent.js:251
|
||||
msgid "Private key password: "
|
||||
msgstr "Lozinka privatnog ključa:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:291
|
||||
#: js/ui/components/networkAgent.js:263
|
||||
msgid "Service: "
|
||||
msgstr "Usluga:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:666
|
||||
#: js/ui/components/networkAgent.js:292 js/ui/components/networkAgent.js:638
|
||||
msgid "Authentication required by wireless network"
|
||||
msgstr "Potrebna je ovjera za bežičnu mrežu"
|
||||
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:667
|
||||
#: js/ui/components/networkAgent.js:293 js/ui/components/networkAgent.js:639
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Passwords or encryption keys are required to access the wireless network "
|
||||
@@ -802,53 +824,53 @@ msgid ""
|
||||
msgstr ""
|
||||
"Lozinka ili ključevi šifriranja su potrebni za pristup bežičnoj mreži “%s”."
|
||||
|
||||
#: js/ui/components/networkAgent.js:325 js/ui/components/networkAgent.js:670
|
||||
#: js/ui/components/networkAgent.js:297 js/ui/components/networkAgent.js:642
|
||||
msgid "Wired 802.1X authentication"
|
||||
msgstr "Wired 802.1X ovjera"
|
||||
|
||||
#: js/ui/components/networkAgent.js:327
|
||||
#: js/ui/components/networkAgent.js:299
|
||||
msgid "Network name: "
|
||||
msgstr "Naziv mreže:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:332 js/ui/components/networkAgent.js:674
|
||||
#: js/ui/components/networkAgent.js:304 js/ui/components/networkAgent.js:646
|
||||
msgid "DSL authentication"
|
||||
msgstr "DSL ovjera"
|
||||
|
||||
#: js/ui/components/networkAgent.js:339 js/ui/components/networkAgent.js:680
|
||||
#: js/ui/components/networkAgent.js:311 js/ui/components/networkAgent.js:652
|
||||
msgid "PIN code required"
|
||||
msgstr "PIN kôd je potreban"
|
||||
|
||||
#: js/ui/components/networkAgent.js:340 js/ui/components/networkAgent.js:681
|
||||
#: js/ui/components/networkAgent.js:312 js/ui/components/networkAgent.js:653
|
||||
msgid "PIN code is needed for the mobile broadband device"
|
||||
msgstr "PIN kôd je potreban za uređaj mobilnog interneta"
|
||||
|
||||
#: js/ui/components/networkAgent.js:341
|
||||
#: js/ui/components/networkAgent.js:313
|
||||
msgid "PIN: "
|
||||
msgstr "PIN:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:348 js/ui/components/networkAgent.js:687
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:659
|
||||
msgid "Mobile broadband network password"
|
||||
msgstr "Lozinka mreže mobilnog interneta"
|
||||
|
||||
#: js/ui/components/networkAgent.js:349 js/ui/components/networkAgent.js:671
|
||||
#: js/ui/components/networkAgent.js:675 js/ui/components/networkAgent.js:688
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:643
|
||||
#: js/ui/components/networkAgent.js:647 js/ui/components/networkAgent.js:660
|
||||
#, javascript-format
|
||||
msgid "A password is required to connect to “%s”."
|
||||
msgstr "Potrebna je lozinka za povezivanje s “%s”."
|
||||
|
||||
#: js/ui/components/networkAgent.js:655 js/ui/status/network.js:1759
|
||||
#: js/ui/components/networkAgent.js:627 js/ui/status/network.js:1760
|
||||
msgid "Network Manager"
|
||||
msgstr "Mrežni upravitelj"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:60
|
||||
#: js/ui/components/polkitAgent.js:43
|
||||
msgid "Authentication Required"
|
||||
msgstr "Potrebna je ovjera"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:102
|
||||
#: js/ui/components/polkitAgent.js:71
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:182
|
||||
#: js/ui/components/polkitAgent.js:151
|
||||
msgid "Authenticate"
|
||||
msgstr "Ovjeri"
|
||||
|
||||
@@ -856,7 +878,7 @@ msgstr "Ovjeri"
|
||||
#. * requested authentication was not gained; this can happen
|
||||
#. * because of an authentication error (like invalid password),
|
||||
#. * for instance.
|
||||
#: js/ui/components/polkitAgent.js:301 js/ui/shellMountOperation.js:383
|
||||
#: js/ui/components/polkitAgent.js:270 js/ui/shellMountOperation.js:328
|
||||
msgid "Sorry, that didn’t work. Please try again."
|
||||
msgstr "Nažalost, to ne radi. Pokušajte ponovno."
|
||||
|
||||
@@ -1114,16 +1136,16 @@ msgstr "%s (udaljeno)"
|
||||
msgid "%s (console)"
|
||||
msgstr "%s (konzola)"
|
||||
|
||||
#: js/ui/extensionDownloader.js:199
|
||||
#: js/ui/extensionDownloader.js:201
|
||||
msgid "Install"
|
||||
msgstr "Instaliraj"
|
||||
|
||||
#: js/ui/extensionDownloader.js:204
|
||||
#: js/ui/extensionDownloader.js:206
|
||||
#, javascript-format
|
||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||
msgstr "Preuzmi i instaliraj “%s” sa extensions.gnome.org?"
|
||||
|
||||
#: js/ui/keyboard.js:742 js/ui/status/keyboard.js:782
|
||||
#: js/ui/keyboard.js:740 js/ui/status/keyboard.js:782
|
||||
msgid "Keyboard"
|
||||
msgstr "Tipkovnica"
|
||||
|
||||
@@ -1160,7 +1182,7 @@ msgstr "Omogućeno"
|
||||
|
||||
#. translators:
|
||||
#. * The device has been disabled
|
||||
#: js/ui/lookingGlass.js:718 src/gvc/gvc-mixer-control.c:1866
|
||||
#: js/ui/lookingGlass.js:718 subprojects/gvc/gvc-mixer-control.c:1866
|
||||
msgid "Disabled"
|
||||
msgstr "Onemogućen"
|
||||
|
||||
@@ -1234,27 +1256,27 @@ msgstr "Prebaci zaslon"
|
||||
msgid "Assign keystroke"
|
||||
msgstr "Pošalji pritisak tipke"
|
||||
|
||||
#: js/ui/padOsd.js:209
|
||||
#: js/ui/padOsd.js:220
|
||||
msgid "Done"
|
||||
msgstr "Završeno"
|
||||
|
||||
#: js/ui/padOsd.js:698
|
||||
#: js/ui/padOsd.js:734
|
||||
msgid "Edit…"
|
||||
msgstr "Uredi..."
|
||||
|
||||
#: js/ui/padOsd.js:738 js/ui/padOsd.js:800
|
||||
#: js/ui/padOsd.js:774 js/ui/padOsd.js:879
|
||||
msgid "None"
|
||||
msgstr "Nedodjeljeno"
|
||||
|
||||
#: js/ui/padOsd.js:783
|
||||
#: js/ui/padOsd.js:833
|
||||
msgid "Press a button to configure"
|
||||
msgstr "Pritisni tipku za podešavanje"
|
||||
|
||||
#: js/ui/padOsd.js:784
|
||||
#: js/ui/padOsd.js:834
|
||||
msgid "Press Esc to exit"
|
||||
msgstr "Pritisni Esc za prekidanje"
|
||||
|
||||
#: js/ui/padOsd.js:787
|
||||
#: js/ui/padOsd.js:837
|
||||
msgid "Press any key to exit"
|
||||
msgstr "Pritisni bilo koju tipku za prekidanje"
|
||||
|
||||
@@ -1273,7 +1295,7 @@ msgctxt "System menu in the top bar"
|
||||
msgid "System"
|
||||
msgstr "Sustav"
|
||||
|
||||
#: js/ui/panel.js:810
|
||||
#: js/ui/panel.js:812
|
||||
msgid "Top Bar"
|
||||
msgstr "Gornja traka"
|
||||
|
||||
@@ -1282,7 +1304,7 @@ msgstr "Gornja traka"
|
||||
#. "ON" and "OFF") or "toggle-switch-intl" (for toggle
|
||||
#. switches containing "◯" and "|"). Other values will
|
||||
#. simply result in invisible toggle switches.
|
||||
#: js/ui/popupMenu.js:289
|
||||
#: js/ui/popupMenu.js:291
|
||||
msgid "toggle-switch-us"
|
||||
msgstr ""
|
||||
|
||||
@@ -1324,7 +1346,7 @@ msgstr[0] "%d nova obavijest"
|
||||
msgstr[1] "%d nove obavijesti"
|
||||
msgstr[2] "%d novih obavijesti"
|
||||
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:409
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:415
|
||||
msgid "Lock"
|
||||
msgstr "Zaključaj"
|
||||
|
||||
@@ -1347,14 +1369,19 @@ msgstr "Nemoguće zaključavanje"
|
||||
msgid "Lock was blocked by an application"
|
||||
msgstr "Zaključavanje je blokirala apliakcija"
|
||||
|
||||
#: js/ui/search.js:617
|
||||
#: js/ui/search.js:651
|
||||
msgid "Searching…"
|
||||
msgstr "Pretraživanje…"
|
||||
|
||||
#: js/ui/search.js:619
|
||||
#: js/ui/search.js:653
|
||||
msgid "No results."
|
||||
msgstr "Nema rezultata."
|
||||
|
||||
#: js/ui/search.js:768
|
||||
#, javascript-format
|
||||
msgid "%d more"
|
||||
msgstr "Još %d"
|
||||
|
||||
#: js/ui/shellEntry.js:25
|
||||
msgid "Copy"
|
||||
msgstr "Kopiraj"
|
||||
@@ -1371,11 +1398,11 @@ msgstr "Prikaži tekst"
|
||||
msgid "Hide Text"
|
||||
msgstr "Sakrij tekst"
|
||||
|
||||
#: js/ui/shellMountOperation.js:370
|
||||
#: js/ui/shellMountOperation.js:315
|
||||
msgid "Password"
|
||||
msgstr "Lozinka"
|
||||
|
||||
#: js/ui/shellMountOperation.js:391
|
||||
#: js/ui/shellMountOperation.js:336
|
||||
msgid "Remember Password"
|
||||
msgstr "Zapamti lozinku"
|
||||
|
||||
@@ -1467,37 +1494,37 @@ msgstr "Svjetlina"
|
||||
msgid "Show Keyboard Layout"
|
||||
msgstr "Prikaži raspored tipkovnice"
|
||||
|
||||
#: js/ui/status/location.js:88 js/ui/status/location.js:196
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
msgid "Location Enabled"
|
||||
msgstr "Lokacija omogućena"
|
||||
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
#: js/ui/status/location.js:90 js/ui/status/location.js:198
|
||||
msgid "Disable"
|
||||
msgstr "Onemogući"
|
||||
|
||||
#: js/ui/status/location.js:90
|
||||
#: js/ui/status/location.js:91
|
||||
msgid "Privacy Settings"
|
||||
msgstr "Postavke privatnost"
|
||||
|
||||
#: js/ui/status/location.js:195
|
||||
#: js/ui/status/location.js:196
|
||||
msgid "Location In Use"
|
||||
msgstr "Lokacija se već koristi"
|
||||
|
||||
#: js/ui/status/location.js:199
|
||||
#: js/ui/status/location.js:200
|
||||
msgid "Location Disabled"
|
||||
msgstr "Lokacija onemogućena"
|
||||
|
||||
#: js/ui/status/location.js:200
|
||||
#: js/ui/status/location.js:201
|
||||
msgid "Enable"
|
||||
msgstr "Omogući"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/status/location.js:414
|
||||
#: js/ui/status/location.js:388
|
||||
#, javascript-format
|
||||
msgid "Give %s access to your location?"
|
||||
msgstr "Dopustite %s pristup vašoj lokaciji?"
|
||||
|
||||
#: js/ui/status/location.js:416
|
||||
#: js/ui/status/location.js:389
|
||||
msgid "Location access can be changed at any time from the privacy settings."
|
||||
msgstr ""
|
||||
"Pristup lokaciji može se promijeniti u svako vrijeme iz postavka privatnosti."
|
||||
@@ -1703,11 +1730,11 @@ msgstr[0] "%s modemsko povezivanje"
|
||||
msgstr[1] "%s modemska povezivanja"
|
||||
msgstr[2] "%s modemskih povezivanja"
|
||||
|
||||
#: js/ui/status/network.js:1798
|
||||
#: js/ui/status/network.js:1799
|
||||
msgid "Connection failed"
|
||||
msgstr "Neuspješno povezivanje"
|
||||
|
||||
#: js/ui/status/network.js:1799
|
||||
#: js/ui/status/network.js:1800
|
||||
msgid "Activation of network connection failed"
|
||||
msgstr "Aktiviranje mrežnog povezivanja je neuspjelo"
|
||||
|
||||
@@ -1765,35 +1792,35 @@ msgstr "%d %%"
|
||||
msgid "Airplane Mode On"
|
||||
msgstr "Zrakoplovni način rada uključen"
|
||||
|
||||
#: js/ui/status/system.js:378
|
||||
#: js/ui/status/system.js:384
|
||||
msgid "Switch User"
|
||||
msgstr "Zamijeni korisnika"
|
||||
|
||||
#: js/ui/status/system.js:383
|
||||
#: js/ui/status/system.js:389
|
||||
msgid "Log Out"
|
||||
msgstr "Odjava"
|
||||
|
||||
#: js/ui/status/system.js:388
|
||||
#: js/ui/status/system.js:394
|
||||
msgid "Account Settings"
|
||||
msgstr "Postavke računa"
|
||||
|
||||
#: js/ui/status/system.js:405
|
||||
#: js/ui/status/system.js:411
|
||||
msgid "Orientation Lock"
|
||||
msgstr "Zaključavanje orjentacije"
|
||||
|
||||
#: js/ui/status/system.js:413
|
||||
#: js/ui/status/system.js:419
|
||||
msgid "Suspend"
|
||||
msgstr "Suspendiraj"
|
||||
|
||||
#: js/ui/status/system.js:416
|
||||
#: js/ui/status/system.js:422
|
||||
msgid "Power Off"
|
||||
msgstr "Isključivanje"
|
||||
|
||||
#: js/ui/status/volume.js:127
|
||||
#: js/ui/status/volume.js:128
|
||||
msgid "Volume changed"
|
||||
msgstr "Glasnoća zvuka promijenjena"
|
||||
|
||||
#: js/ui/status/volume.js:162
|
||||
#: js/ui/status/volume.js:170
|
||||
msgid "Volume"
|
||||
msgstr "Glasnoća zvuka"
|
||||
|
||||
@@ -1818,22 +1845,22 @@ msgstr "Pretraži"
|
||||
msgid "“%s” is ready"
|
||||
msgstr "“%s” je spreman"
|
||||
|
||||
#: js/ui/windowManager.js:84
|
||||
#: js/ui/windowManager.js:71
|
||||
msgid "Do you want to keep these display settings?"
|
||||
msgstr "Želite li zadržati ove postavke zaslona?"
|
||||
|
||||
#. Translators: this and the following message should be limited in lenght,
|
||||
#. to avoid ellipsizing the labels.
|
||||
#.
|
||||
#: js/ui/windowManager.js:103
|
||||
#: js/ui/windowManager.js:83
|
||||
msgid "Revert Settings"
|
||||
msgstr "Vrati postavke"
|
||||
|
||||
#: js/ui/windowManager.js:106
|
||||
#: js/ui/windowManager.js:86
|
||||
msgid "Keep Changes"
|
||||
msgstr "Zadrži promjene"
|
||||
|
||||
#: js/ui/windowManager.js:124
|
||||
#: js/ui/windowManager.js:104
|
||||
#, javascript-format
|
||||
msgid "Settings changes will revert in %d second"
|
||||
msgid_plural "Settings changes will revert in %d seconds"
|
||||
@@ -1843,10 +1870,10 @@ msgstr[2] "Promjene postavka će se vratiti za %d sekundi"
|
||||
|
||||
#. 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:679
|
||||
#: js/ui/windowManager.js:659
|
||||
#, javascript-format
|
||||
msgid "%d × %d"
|
||||
msgstr ""
|
||||
msgstr "%d × %d"
|
||||
|
||||
#: js/ui/windowMenu.js:34
|
||||
msgid "Minimize"
|
||||
@@ -1921,30 +1948,6 @@ msgstr "Evolution kalendar"
|
||||
msgid "evolution"
|
||||
msgstr "evolution"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u izlaz"
|
||||
msgstr[1] "%u izlaza"
|
||||
msgstr[2] "%u izlaza"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u ulaz"
|
||||
msgstr[1] "%u ulaza"
|
||||
msgstr[2] "%u ulaza"
|
||||
|
||||
#: src/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Zvukovi sustava"
|
||||
|
||||
#: src/main.c:372
|
||||
msgid "Print version"
|
||||
msgstr "Ispiši inačicu"
|
||||
@@ -1983,6 +1986,30 @@ msgstr "Lozinka ne može biti prazna"
|
||||
msgid "Authentication dialog was dismissed by the user"
|
||||
msgstr "Dijalog ovjere je prekinut od strane korisnika"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u izlaz"
|
||||
msgstr[1] "%u izlaza"
|
||||
msgstr[2] "%u izlaza"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u ulaz"
|
||||
msgstr[1] "%u ulaza"
|
||||
msgstr[2] "%u ulaza"
|
||||
|
||||
#: subprojects/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Zvukovi sustava"
|
||||
|
||||
#~ msgid "GNOME Shell Extension Preferences"
|
||||
#~ msgstr "Osobitosti proširenja GNOME ljuske"
|
||||
|
||||
|
||||
308
po/kk.po
308
po/kk.po
@@ -8,8 +8,8 @@ msgstr ""
|
||||
"Project-Id-Version: master\n"
|
||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
|
||||
"shell&keywords=I18N+L10N&component=general\n"
|
||||
"POT-Creation-Date: 2017-03-20 18:14+0000\n"
|
||||
"PO-Revision-Date: 2017-03-21 08:59+0500\n"
|
||||
"POT-Creation-Date: 2017-07-20 03:49+0000\n"
|
||||
"PO-Revision-Date: 2017-07-27 17:09+0500\n"
|
||||
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
|
||||
"Language-Team: Kazakh <kk_KZ@googlegroups.com>\n"
|
||||
"Language: kk\n"
|
||||
@@ -44,7 +44,7 @@ msgid "Open the application menu"
|
||||
msgstr "Қолданбалар мәзірін ашу"
|
||||
|
||||
#: data/gnome-shell-extension-prefs.desktop.in.in:4
|
||||
#: js/extensionPrefs/main.js:149
|
||||
#: js/extensionPrefs/main.js:152
|
||||
msgid "Shell Extensions"
|
||||
msgstr "Қоршам кеңейтулері"
|
||||
|
||||
@@ -331,15 +331,15 @@ msgstr "Желілік кіру"
|
||||
msgid "network-workgroup"
|
||||
msgstr "network-workgroup"
|
||||
|
||||
#: js/extensionPrefs/main.js:117
|
||||
#: js/extensionPrefs/main.js:120
|
||||
#, javascript-format
|
||||
msgid "There was an error loading the preferences dialog for %s:"
|
||||
msgstr "%s үшін баптаулар сұхбатын жүктеу кезінде қате орын алды:"
|
||||
|
||||
#: js/gdm/authPrompt.js:149 js/ui/audioDeviceSelection.js:71
|
||||
#: js/ui/components/networkAgent.js:145 js/ui/components/polkitAgent.js:179
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:195
|
||||
#: js/ui/shellMountOperation.js:399 js/ui/status/network.js:947
|
||||
#: js/ui/components/networkAgent.js:117 js/ui/components/polkitAgent.js:148
|
||||
#: js/ui/endSessionDialog.js:482 js/ui/extensionDownloader.js:197
|
||||
#: js/ui/shellMountOperation.js:344 js/ui/status/network.js:947
|
||||
msgid "Cancel"
|
||||
msgstr "Бас тарту"
|
||||
|
||||
@@ -347,7 +347,7 @@ msgstr "Бас тарту"
|
||||
msgid "Next"
|
||||
msgstr "Келесі"
|
||||
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:403
|
||||
#: js/gdm/authPrompt.js:214 js/ui/shellMountOperation.js:348
|
||||
#: js/ui/unlockDialog.js:59
|
||||
msgid "Unlock"
|
||||
msgstr "Босату"
|
||||
@@ -357,20 +357,20 @@ msgctxt "button"
|
||||
msgid "Sign In"
|
||||
msgstr "Кіру"
|
||||
|
||||
#: js/gdm/loginDialog.js:285
|
||||
#: js/gdm/loginDialog.js:308
|
||||
msgid "Choose Session"
|
||||
msgstr "Сессияны таңдау"
|
||||
|
||||
#. translators: this message is shown below the user list on the
|
||||
#. login screen. It can be activated to reveal an entry for
|
||||
#. manually entering the username.
|
||||
#: js/gdm/loginDialog.js:435
|
||||
#: js/gdm/loginDialog.js:458
|
||||
msgid "Not listed?"
|
||||
msgstr "Тізімде жоқсыз ба?"
|
||||
|
||||
#. Translators: this message is shown below the username entry field
|
||||
#. to clue the user in on how to login to the local network realm
|
||||
#: js/gdm/loginDialog.js:859
|
||||
#: js/gdm/loginDialog.js:888
|
||||
#, javascript-format
|
||||
msgid "(e.g., user or %s)"
|
||||
msgstr "(мыс., пайдаланушы не %s)"
|
||||
@@ -378,16 +378,16 @@ msgstr "(мыс., пайдаланушы не %s)"
|
||||
#. TTLS and PEAP are actually much more complicated, but this complication
|
||||
#. is not visible here since we only care about phase2 authentication
|
||||
#. (and don't even care of which one)
|
||||
#: js/gdm/loginDialog.js:864 js/ui/components/networkAgent.js:271
|
||||
#: js/ui/components/networkAgent.js:289
|
||||
#: js/gdm/loginDialog.js:893 js/ui/components/networkAgent.js:243
|
||||
#: js/ui/components/networkAgent.js:261
|
||||
msgid "Username: "
|
||||
msgstr "Пайдаланушы аты:"
|
||||
|
||||
#: js/gdm/loginDialog.js:1201
|
||||
#: js/gdm/loginDialog.js:1236
|
||||
msgid "Login Window"
|
||||
msgstr "Жүйеге кіру терезесі"
|
||||
|
||||
#: js/gdm/util.js:342
|
||||
#: js/gdm/util.js:346
|
||||
msgid "Authentication error"
|
||||
msgstr "Аутентификация қатесі"
|
||||
|
||||
@@ -396,7 +396,7 @@ msgstr "Аутентификация қатесі"
|
||||
#. as a cue to display our own message.
|
||||
#. Translators: this message is shown below the password entry field
|
||||
#. to indicate the user can swipe their finger instead
|
||||
#: js/gdm/util.js:474
|
||||
#: js/gdm/util.js:478
|
||||
msgid "(or swipe finger)"
|
||||
msgstr "(немесе саусағыңызды өткізіңіз)"
|
||||
|
||||
@@ -460,20 +460,20 @@ msgid_plural "%d years ago"
|
||||
msgstr[0] "%d жыл бұрын"
|
||||
|
||||
#. Translators: Time in 24h format
|
||||
#: js/misc/util.js:229
|
||||
#: js/misc/util.js:228
|
||||
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:235
|
||||
#: js/misc/util.js:234
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %H∶%M"
|
||||
msgstr "Кеше, %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:241
|
||||
#: js/misc/util.js:240
|
||||
#, no-c-format
|
||||
msgid "%A, %H∶%M"
|
||||
msgstr "%A, %H∶%M"
|
||||
@@ -481,7 +481,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:247
|
||||
#: js/misc/util.js:246
|
||||
#, no-c-format
|
||||
msgid "%B %d, %H∶%M"
|
||||
msgstr "%B %d, %H∶%M"
|
||||
@@ -489,26 +489,26 @@ msgstr "%B %d, %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:253
|
||||
#: js/misc/util.js:252
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %H∶%M"
|
||||
msgstr "%B %d %Y, %H∶%M"
|
||||
|
||||
#. Translators: Time in 12h format
|
||||
#: js/misc/util.js:258
|
||||
#: js/misc/util.js:257
|
||||
msgid "%l∶%M %p"
|
||||
msgstr "%l∶%M %p"
|
||||
|
||||
#. Translators: this is the word "Yesterday" followed by a
|
||||
#. time string in 12h format. i.e. "Yesterday, 2:30 pm"
|
||||
#: js/misc/util.js:264
|
||||
#: js/misc/util.js:263
|
||||
#, no-c-format
|
||||
msgid "Yesterday, %l∶%M %p"
|
||||
msgstr "Кеше, %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:270
|
||||
#: js/misc/util.js:269
|
||||
#, no-c-format
|
||||
msgid "%A, %l∶%M %p"
|
||||
msgstr "%A, %l∶%M %p"
|
||||
@@ -516,7 +516,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:276
|
||||
#: js/misc/util.js:275
|
||||
#, no-c-format
|
||||
msgid "%B %d, %l∶%M %p"
|
||||
msgstr "%B %d, %l∶%M %p"
|
||||
@@ -524,17 +524,17 @@ msgstr "%B %d, %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:282
|
||||
#: js/misc/util.js:281
|
||||
#, no-c-format
|
||||
msgid "%B %d %Y, %l∶%M %p"
|
||||
msgstr "%B %d %Y, %l∶%M %p"
|
||||
|
||||
#. TRANSLATORS: this is the title of the wifi captive portal login window
|
||||
#: js/portalHelper/main.js:67
|
||||
#: js/portalHelper/main.js:66
|
||||
msgid "Hotspot Login"
|
||||
msgstr "Қатынау нүктесіне кіру"
|
||||
|
||||
#: js/portalHelper/main.js:113
|
||||
#: js/portalHelper/main.js:112
|
||||
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."
|
||||
@@ -545,11 +545,11 @@ msgstr ""
|
||||
|
||||
#. No support for non-modal system dialogs, so ignore the option
|
||||
#. let modal = options['modal'] || true;
|
||||
#: js/ui/accessDialog.js:62 js/ui/status/location.js:405
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:395
|
||||
msgid "Deny Access"
|
||||
msgstr "Тыйым салу"
|
||||
|
||||
#: js/ui/accessDialog.js:63 js/ui/status/location.js:408
|
||||
#: js/ui/accessDialog.js:64 js/ui/status/location.js:398
|
||||
msgid "Grant Access"
|
||||
msgstr "Рұқсат ету"
|
||||
|
||||
@@ -565,32 +565,32 @@ msgstr "Жиі қолданылатын"
|
||||
msgid "All"
|
||||
msgstr "Барлығы"
|
||||
|
||||
#: js/ui/appDisplay.js:1892
|
||||
#: js/ui/appDisplay.js:1895
|
||||
msgid "New Window"
|
||||
msgstr "Жаңа терезе"
|
||||
|
||||
#: js/ui/appDisplay.js:1906
|
||||
#: js/ui/appDisplay.js:1909
|
||||
msgid "Launch using Dedicated Graphics Card"
|
||||
msgstr "Бөлек графикалық картаны пайдаланып жөнелту"
|
||||
|
||||
#: js/ui/appDisplay.js:1933 js/ui/dash.js:289
|
||||
#: js/ui/appDisplay.js:1936 js/ui/dash.js:289
|
||||
msgid "Remove from Favorites"
|
||||
msgstr "Таңдамалылардан өшіру"
|
||||
|
||||
#: js/ui/appDisplay.js:1939
|
||||
#: js/ui/appDisplay.js:1942
|
||||
msgid "Add to Favorites"
|
||||
msgstr "Таңдамалыларға қосу"
|
||||
|
||||
#: js/ui/appDisplay.js:1949
|
||||
#: js/ui/appDisplay.js:1952
|
||||
msgid "Show Details"
|
||||
msgstr "Деректерді көрсету"
|
||||
|
||||
#: js/ui/appFavorites.js:138
|
||||
#: js/ui/appFavorites.js:140
|
||||
#, javascript-format
|
||||
msgid "%s has been added to your favorites."
|
||||
msgstr "%s таңдамалыларыңызға қосылды."
|
||||
|
||||
#: js/ui/appFavorites.js:172
|
||||
#: js/ui/appFavorites.js:174
|
||||
#, javascript-format
|
||||
msgid "%s has been removed from your favorites."
|
||||
msgstr "%s таңдамалыларыңыздан өшірілді."
|
||||
@@ -611,7 +611,7 @@ msgstr "Құлаққап"
|
||||
msgid "Headset"
|
||||
msgstr "Микрофонды құлаққап"
|
||||
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:213
|
||||
#: js/ui/audioDeviceSelection.js:82 js/ui/status/volume.js:221
|
||||
msgid "Microphone"
|
||||
msgstr "Микрофон"
|
||||
|
||||
@@ -623,7 +623,7 @@ msgstr "Фонды өзгерту..."
|
||||
msgid "Display Settings"
|
||||
msgstr "Экран баптаулары"
|
||||
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:401
|
||||
#: js/ui/backgroundMenu.js:22 js/ui/status/system.js:407
|
||||
msgid "Settings"
|
||||
msgstr "Баптаулар"
|
||||
|
||||
@@ -727,6 +727,28 @@ msgstr "Оқиғалар жоқ"
|
||||
msgid "Clear All"
|
||||
msgstr "Барлығын тазарту"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/closeDialog.js:44
|
||||
#, javascript-format
|
||||
msgid "“%s” is not responding."
|
||||
msgstr "\"%s\" жауап бермейді."
|
||||
|
||||
#: js/ui/closeDialog.js:45
|
||||
msgid ""
|
||||
"You may choose to wait a short while for it to continue or force the "
|
||||
"application to quit entirely."
|
||||
msgstr ""
|
||||
"Сіз оның жалғастыруын біраз уақыт бойы күте аласыз, немесе қолданбаны "
|
||||
"толықтай шығуды мәжбүрлете аласыз."
|
||||
|
||||
#: js/ui/closeDialog.js:61
|
||||
msgid "Force Quit"
|
||||
msgstr "Мәжбүрлі тоқтату"
|
||||
|
||||
#: js/ui/closeDialog.js:64
|
||||
msgid "Wait"
|
||||
msgstr "Күту"
|
||||
|
||||
#: js/ui/components/automountManager.js:91
|
||||
msgid "External drive connected"
|
||||
msgstr "Сыртқы диск қосылды"
|
||||
@@ -735,53 +757,53 @@ msgstr "Сыртқы диск қосылды"
|
||||
msgid "External drive disconnected"
|
||||
msgstr "Сыртқы диск алынды"
|
||||
|
||||
#: js/ui/components/autorunManager.js:356
|
||||
#: js/ui/components/autorunManager.js:354
|
||||
#, javascript-format
|
||||
msgid "Open with %s"
|
||||
msgstr "%s көмегімен ашу"
|
||||
|
||||
#: js/ui/components/keyring.js:120 js/ui/components/polkitAgent.js:315
|
||||
#: js/ui/components/keyring.js:107 js/ui/components/polkitAgent.js:284
|
||||
msgid "Password:"
|
||||
msgstr "Пароль:"
|
||||
|
||||
#: js/ui/components/keyring.js:153
|
||||
#: js/ui/components/keyring.js:140
|
||||
msgid "Type again:"
|
||||
msgstr "Қайтадан енгізіңіз:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:140 js/ui/status/network.js:272
|
||||
#: js/ui/components/networkAgent.js:112 js/ui/status/network.js:272
|
||||
#: js/ui/status/network.js:366 js/ui/status/network.js:950
|
||||
msgid "Connect"
|
||||
msgstr "Байланысу"
|
||||
|
||||
#. Cisco LEAP
|
||||
#: js/ui/components/networkAgent.js:233 js/ui/components/networkAgent.js:245
|
||||
#: js/ui/components/networkAgent.js:273 js/ui/components/networkAgent.js:293
|
||||
#: js/ui/components/networkAgent.js:303
|
||||
#: js/ui/components/networkAgent.js:205 js/ui/components/networkAgent.js:217
|
||||
#: js/ui/components/networkAgent.js:245 js/ui/components/networkAgent.js:265
|
||||
#: js/ui/components/networkAgent.js:275
|
||||
msgid "Password: "
|
||||
msgstr "Пароль:"
|
||||
|
||||
#. static WEP
|
||||
#: js/ui/components/networkAgent.js:238
|
||||
#: js/ui/components/networkAgent.js:210
|
||||
msgid "Key: "
|
||||
msgstr "Кілт:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:277
|
||||
#: js/ui/components/networkAgent.js:249
|
||||
msgid "Identity: "
|
||||
msgstr "Анықтағыш:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:279
|
||||
#: js/ui/components/networkAgent.js:251
|
||||
msgid "Private key password: "
|
||||
msgstr "Жеке кілт паролі:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:291
|
||||
#: js/ui/components/networkAgent.js:263
|
||||
msgid "Service: "
|
||||
msgstr "Қызмет:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:666
|
||||
#: js/ui/components/networkAgent.js:292 js/ui/components/networkAgent.js:638
|
||||
msgid "Authentication required by wireless network"
|
||||
msgstr "Сымсыз желісі аутентификацияны талап етеді"
|
||||
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:667
|
||||
#: js/ui/components/networkAgent.js:293 js/ui/components/networkAgent.js:639
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Passwords or encryption keys are required to access the wireless network "
|
||||
@@ -789,53 +811,53 @@ msgid ""
|
||||
msgstr ""
|
||||
"\"%s\" сымсыз желісіне қатынау үшін парольдер не шифрлеу кілттері керек."
|
||||
|
||||
#: js/ui/components/networkAgent.js:325 js/ui/components/networkAgent.js:670
|
||||
#: js/ui/components/networkAgent.js:297 js/ui/components/networkAgent.js:642
|
||||
msgid "Wired 802.1X authentication"
|
||||
msgstr "Сымды 802.1X аутентификациясы"
|
||||
|
||||
#: js/ui/components/networkAgent.js:327
|
||||
#: js/ui/components/networkAgent.js:299
|
||||
msgid "Network name: "
|
||||
msgstr "Желі аты:"
|
||||
|
||||
#: js/ui/components/networkAgent.js:332 js/ui/components/networkAgent.js:674
|
||||
#: js/ui/components/networkAgent.js:304 js/ui/components/networkAgent.js:646
|
||||
msgid "DSL authentication"
|
||||
msgstr "DSL аутентификациясы"
|
||||
|
||||
#: js/ui/components/networkAgent.js:339 js/ui/components/networkAgent.js:680
|
||||
#: js/ui/components/networkAgent.js:311 js/ui/components/networkAgent.js:652
|
||||
msgid "PIN code required"
|
||||
msgstr "PIN коды керек"
|
||||
|
||||
#: js/ui/components/networkAgent.js:340 js/ui/components/networkAgent.js:681
|
||||
#: js/ui/components/networkAgent.js:312 js/ui/components/networkAgent.js:653
|
||||
msgid "PIN code is needed for the mobile broadband device"
|
||||
msgstr "Сымсыз кеңжолақты құрылғы үшін PIN коды керек"
|
||||
|
||||
#: js/ui/components/networkAgent.js:341
|
||||
#: js/ui/components/networkAgent.js:313
|
||||
msgid "PIN: "
|
||||
msgstr "PIN: "
|
||||
|
||||
#: js/ui/components/networkAgent.js:348 js/ui/components/networkAgent.js:687
|
||||
#: js/ui/components/networkAgent.js:320 js/ui/components/networkAgent.js:659
|
||||
msgid "Mobile broadband network password"
|
||||
msgstr "Сымсыз кеңжолақты желісінің паролі"
|
||||
|
||||
#: js/ui/components/networkAgent.js:349 js/ui/components/networkAgent.js:671
|
||||
#: js/ui/components/networkAgent.js:675 js/ui/components/networkAgent.js:688
|
||||
#: js/ui/components/networkAgent.js:321 js/ui/components/networkAgent.js:643
|
||||
#: js/ui/components/networkAgent.js:647 js/ui/components/networkAgent.js:660
|
||||
#, javascript-format
|
||||
msgid "A password is required to connect to “%s”."
|
||||
msgstr "\"%s\" үшін байланысты орнату үшін пароль керек."
|
||||
|
||||
#: js/ui/components/networkAgent.js:655 js/ui/status/network.js:1755
|
||||
#: js/ui/components/networkAgent.js:627 js/ui/status/network.js:1760
|
||||
msgid "Network Manager"
|
||||
msgstr "Желілер басқарушысы"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:60
|
||||
#: js/ui/components/polkitAgent.js:43
|
||||
msgid "Authentication Required"
|
||||
msgstr "Аутентификация керек"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:102
|
||||
#: js/ui/components/polkitAgent.js:71
|
||||
msgid "Administrator"
|
||||
msgstr "Әкімші"
|
||||
|
||||
#: js/ui/components/polkitAgent.js:182
|
||||
#: js/ui/components/polkitAgent.js:151
|
||||
msgid "Authenticate"
|
||||
msgstr "Аутентификация"
|
||||
|
||||
@@ -843,7 +865,7 @@ msgstr "Аутентификация"
|
||||
#. * requested authentication was not gained; this can happen
|
||||
#. * because of an authentication error (like invalid password),
|
||||
#. * for instance.
|
||||
#: js/ui/components/polkitAgent.js:301 js/ui/shellMountOperation.js:383
|
||||
#: js/ui/components/polkitAgent.js:270 js/ui/shellMountOperation.js:328
|
||||
msgid "Sorry, that didn’t work. Please try again."
|
||||
msgstr "Кешіріңіз, талап сәтсіз. Қайтадан көріңіз."
|
||||
|
||||
@@ -854,7 +876,7 @@ msgstr "Кешіріңіз, талап сәтсіз. Қайтадан көрің
|
||||
msgid "%s is now known as %s"
|
||||
msgstr "%s енді %s ретінде белгілі"
|
||||
|
||||
#: js/ui/ctrlAltTab.js:29 js/ui/viewSelector.js:178
|
||||
#: js/ui/ctrlAltTab.js:29 js/ui/viewSelector.js:179
|
||||
msgid "Windows"
|
||||
msgstr "Терезелер"
|
||||
|
||||
@@ -923,7 +945,6 @@ msgid "%s, then %s, followed by %s later."
|
||||
msgstr "%s, одан кейін %s, одан кейін %s."
|
||||
|
||||
#: js/ui/dateMenu.js:300
|
||||
#| msgid "Select a network"
|
||||
msgid "Select a location…"
|
||||
msgstr "Орналасуды таңдаңыз…"
|
||||
|
||||
@@ -1088,16 +1109,16 @@ msgstr "%s (қашықтағы)"
|
||||
msgid "%s (console)"
|
||||
msgstr "%s (консоль)"
|
||||
|
||||
#: js/ui/extensionDownloader.js:199
|
||||
#: js/ui/extensionDownloader.js:201
|
||||
msgid "Install"
|
||||
msgstr "Орнату"
|
||||
|
||||
#: js/ui/extensionDownloader.js:204
|
||||
#: js/ui/extensionDownloader.js:206
|
||||
#, javascript-format
|
||||
msgid "Download and install “%s” from extensions.gnome.org?"
|
||||
msgstr "extensions.gnome.org адресінен \"%s\" жүктеп алып, орнату керек пе?"
|
||||
|
||||
#: js/ui/keyboard.js:742 js/ui/status/keyboard.js:782
|
||||
#: js/ui/keyboard.js:740 js/ui/status/keyboard.js:782
|
||||
msgid "Keyboard"
|
||||
msgstr "Пернетақта"
|
||||
|
||||
@@ -1134,7 +1155,7 @@ msgstr "Іске қосылған"
|
||||
|
||||
#. translators:
|
||||
#. * The device has been disabled
|
||||
#: js/ui/lookingGlass.js:718 src/gvc/gvc-mixer-control.c:1866
|
||||
#: js/ui/lookingGlass.js:718 subprojects/gvc/gvc-mixer-control.c:1866
|
||||
msgid "Disabled"
|
||||
msgstr "Сөндірулі"
|
||||
|
||||
@@ -1208,27 +1229,27 @@ msgstr "Мониторды ауыстыру"
|
||||
msgid "Assign keystroke"
|
||||
msgstr "Пернелер жарлығын тағайындау"
|
||||
|
||||
#: js/ui/padOsd.js:209
|
||||
#: js/ui/padOsd.js:220
|
||||
msgid "Done"
|
||||
msgstr "Дайын"
|
||||
|
||||
#: js/ui/padOsd.js:698
|
||||
#: js/ui/padOsd.js:734
|
||||
msgid "Edit…"
|
||||
msgstr "Түзету…"
|
||||
|
||||
#: js/ui/padOsd.js:738 js/ui/padOsd.js:800
|
||||
#: js/ui/padOsd.js:774 js/ui/padOsd.js:879
|
||||
msgid "None"
|
||||
msgstr "Ешнәрсе"
|
||||
|
||||
#: js/ui/padOsd.js:783
|
||||
#: js/ui/padOsd.js:833
|
||||
msgid "Press a button to configure"
|
||||
msgstr "Баптау үшін батырманы басыңыз"
|
||||
|
||||
#: js/ui/padOsd.js:784
|
||||
#: js/ui/padOsd.js:834
|
||||
msgid "Press Esc to exit"
|
||||
msgstr "Шығу үшін Esc басыңыз"
|
||||
|
||||
#: js/ui/padOsd.js:787
|
||||
#: js/ui/padOsd.js:837
|
||||
msgid "Press any key to exit"
|
||||
msgstr "Шығу үшін кез-келген батырманы басыңыз"
|
||||
|
||||
@@ -1247,7 +1268,7 @@ msgctxt "System menu in the top bar"
|
||||
msgid "System"
|
||||
msgstr "Жүйелік"
|
||||
|
||||
#: js/ui/panel.js:810
|
||||
#: js/ui/panel.js:812
|
||||
msgid "Top Bar"
|
||||
msgstr "Үстідегі панель"
|
||||
|
||||
@@ -1256,7 +1277,7 @@ msgstr "Үстідегі панель"
|
||||
#. "ON" and "OFF") or "toggle-switch-intl" (for toggle
|
||||
#. switches containing "◯" and "|"). Other values will
|
||||
#. simply result in invisible toggle switches.
|
||||
#: js/ui/popupMenu.js:289
|
||||
#: js/ui/popupMenu.js:291
|
||||
msgid "toggle-switch-us"
|
||||
msgstr "toggle-switch-intl"
|
||||
|
||||
@@ -1294,7 +1315,7 @@ msgid "%d new notification"
|
||||
msgid_plural "%d new notifications"
|
||||
msgstr[0] "%d жаңа ескерту"
|
||||
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:409
|
||||
#: js/ui/screenShield.js:452 js/ui/status/system.js:415
|
||||
msgid "Lock"
|
||||
msgstr "Блоктау"
|
||||
|
||||
@@ -1317,14 +1338,19 @@ msgstr "Блоктау мүмкін емес"
|
||||
msgid "Lock was blocked by an application"
|
||||
msgstr "Блоктауды басқа қолданба болдырмады"
|
||||
|
||||
#: js/ui/search.js:617
|
||||
#: js/ui/search.js:651
|
||||
msgid "Searching…"
|
||||
msgstr "Іздеу..."
|
||||
|
||||
#: js/ui/search.js:619
|
||||
#: js/ui/search.js:653
|
||||
msgid "No results."
|
||||
msgstr "Нәтижелер жоқ."
|
||||
|
||||
#: js/ui/search.js:768
|
||||
#, javascript-format
|
||||
msgid "%d more"
|
||||
msgstr "тағы %d"
|
||||
|
||||
#: js/ui/shellEntry.js:25
|
||||
msgid "Copy"
|
||||
msgstr "Көшіру"
|
||||
@@ -1341,11 +1367,11 @@ msgstr "Мәтінді көрсету"
|
||||
msgid "Hide Text"
|
||||
msgstr "Мәтінді жасыру"
|
||||
|
||||
#: js/ui/shellMountOperation.js:370
|
||||
#: js/ui/shellMountOperation.js:315
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: js/ui/shellMountOperation.js:391
|
||||
#: js/ui/shellMountOperation.js:336
|
||||
msgid "Remember Password"
|
||||
msgstr "Парольді есте сақтау"
|
||||
|
||||
@@ -1422,7 +1448,7 @@ msgstr "Іске қосу"
|
||||
|
||||
#: js/ui/status/bluetooth.js:142 js/ui/status/network.js:181
|
||||
#: js/ui/status/network.js:367 js/ui/status/network.js:1310
|
||||
#: js/ui/status/network.js:1425 js/ui/status/nightLight.js:47
|
||||
#: js/ui/status/network.js:1429 js/ui/status/nightLight.js:47
|
||||
#: js/ui/status/rfkill.js:90 js/ui/status/rfkill.js:117
|
||||
msgid "Turn Off"
|
||||
msgstr "Сөндіру"
|
||||
@@ -1435,37 +1461,37 @@ msgstr "Жарықтылығы"
|
||||
msgid "Show Keyboard Layout"
|
||||
msgstr "Пернетақта жаймасын көрсету"
|
||||
|
||||
#: js/ui/status/location.js:88 js/ui/status/location.js:196
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
msgid "Location Enabled"
|
||||
msgstr "Орналасу іске қосулы тұр"
|
||||
|
||||
#: js/ui/status/location.js:89 js/ui/status/location.js:197
|
||||
#: js/ui/status/location.js:90 js/ui/status/location.js:198
|
||||
msgid "Disable"
|
||||
msgstr "Сөндіру"
|
||||
|
||||
#: js/ui/status/location.js:90
|
||||
#: js/ui/status/location.js:91
|
||||
msgid "Privacy Settings"
|
||||
msgstr "Жекелік баптаулары"
|
||||
|
||||
#: js/ui/status/location.js:195
|
||||
#: js/ui/status/location.js:196
|
||||
msgid "Location In Use"
|
||||
msgstr "Орналасу қолданылуда"
|
||||
|
||||
#: js/ui/status/location.js:199
|
||||
#: js/ui/status/location.js:200
|
||||
msgid "Location Disabled"
|
||||
msgstr "Орналасу сөндірулі тұр"
|
||||
|
||||
#: js/ui/status/location.js:200
|
||||
#: js/ui/status/location.js:201
|
||||
msgid "Enable"
|
||||
msgstr "Іске қосу"
|
||||
|
||||
#. Translators: %s is an application name
|
||||
#: js/ui/status/location.js:414
|
||||
#: js/ui/status/location.js:388
|
||||
#, javascript-format
|
||||
msgid "Give %s access to your location?"
|
||||
msgstr "%s үшін орналасуыңызға рұқсат ету керек пе?"
|
||||
|
||||
#: js/ui/status/location.js:416
|
||||
#: js/ui/status/location.js:389
|
||||
msgid "Location access can be changed at any time from the privacy settings."
|
||||
msgstr ""
|
||||
"Орналасуыңызға қатынауды кез-кезген кезде жекелік баптауларының ішінен "
|
||||
@@ -1618,59 +1644,59 @@ msgstr "%s қатынау нүктесі белсенді"
|
||||
msgid "%s Not Connected"
|
||||
msgstr "%s байланыспаған"
|
||||
|
||||
#: js/ui/status/network.js:1442
|
||||
#: js/ui/status/network.js:1446
|
||||
msgid "connecting…"
|
||||
msgstr "байланысты орнату…"
|
||||
|
||||
#. Translators: this is for network connections that require some kind of key or password
|
||||
#: js/ui/status/network.js:1445
|
||||
#: js/ui/status/network.js:1449
|
||||
msgid "authentication required"
|
||||
msgstr "аутентификация керек"
|
||||
|
||||
#: js/ui/status/network.js:1447
|
||||
#: js/ui/status/network.js:1451
|
||||
msgid "connection failed"
|
||||
msgstr "байланысты орнату сәтсіз"
|
||||
|
||||
#: js/ui/status/network.js:1513 js/ui/status/network.js:1608
|
||||
#: js/ui/status/network.js:1517 js/ui/status/network.js:1612
|
||||
#: js/ui/status/rfkill.js:93
|
||||
msgid "Network Settings"
|
||||
msgstr "Желі баптаулары"
|
||||
|
||||
#: js/ui/status/network.js:1515
|
||||
#: js/ui/status/network.js:1519
|
||||
msgid "VPN Settings"
|
||||
msgstr "VPN баптаулары"
|
||||
|
||||
#: js/ui/status/network.js:1534
|
||||
#: js/ui/status/network.js:1538
|
||||
msgid "VPN"
|
||||
msgstr "VPN"
|
||||
|
||||
#: js/ui/status/network.js:1544
|
||||
#: js/ui/status/network.js:1548
|
||||
msgid "VPN Off"
|
||||
msgstr "VPN сөндірілген"
|
||||
|
||||
#: js/ui/status/network.js:1639
|
||||
#: js/ui/status/network.js:1643
|
||||
#, javascript-format
|
||||
msgid "%s Wired Connection"
|
||||
msgid_plural "%s Wired Connections"
|
||||
msgstr[0] "%s сымды желі байланысы"
|
||||
|
||||
#: js/ui/status/network.js:1643
|
||||
#: js/ui/status/network.js:1647
|
||||
#, javascript-format
|
||||
msgid "%s Wi-Fi Connection"
|
||||
msgid_plural "%s Wi-Fi Connections"
|
||||
msgstr[0] "%s Wi-Fi желі байланысы"
|
||||
|
||||
#: js/ui/status/network.js:1647
|
||||
#: js/ui/status/network.js:1651
|
||||
#, javascript-format
|
||||
msgid "%s Modem Connection"
|
||||
msgid_plural "%s Modem Connections"
|
||||
msgstr[0] "%s модем желі байланысы"
|
||||
|
||||
#: js/ui/status/network.js:1794
|
||||
#: js/ui/status/network.js:1799
|
||||
msgid "Connection failed"
|
||||
msgstr "Байланыс орнату сәтсіз"
|
||||
|
||||
#: js/ui/status/network.js:1795
|
||||
#: js/ui/status/network.js:1800
|
||||
msgid "Activation of network connection failed"
|
||||
msgstr "Желілік байланысты белсендіру сәтсіз"
|
||||
|
||||
@@ -1728,35 +1754,35 @@ msgstr "%d %%"
|
||||
msgid "Airplane Mode On"
|
||||
msgstr "Ұшақтағы режим іске қосулы"
|
||||
|
||||
#: js/ui/status/system.js:378
|
||||
#: js/ui/status/system.js:384
|
||||
msgid "Switch User"
|
||||
msgstr "Пайдаланушыны ауыстыру"
|
||||
|
||||
#: js/ui/status/system.js:383
|
||||
#: js/ui/status/system.js:389
|
||||
msgid "Log Out"
|
||||
msgstr "Жүйеден шығу"
|
||||
|
||||
#: js/ui/status/system.js:388
|
||||
#: js/ui/status/system.js:394
|
||||
msgid "Account Settings"
|
||||
msgstr "Тіркелгі баптаулары"
|
||||
|
||||
#: js/ui/status/system.js:405
|
||||
#: js/ui/status/system.js:411
|
||||
msgid "Orientation Lock"
|
||||
msgstr "Бағдарды бекіту"
|
||||
|
||||
#: js/ui/status/system.js:413
|
||||
#: js/ui/status/system.js:419
|
||||
msgid "Suspend"
|
||||
msgstr "Ұйықтату"
|
||||
|
||||
#: js/ui/status/system.js:416
|
||||
#: js/ui/status/system.js:422
|
||||
msgid "Power Off"
|
||||
msgstr "Сөндіру"
|
||||
|
||||
#: js/ui/status/volume.js:127
|
||||
#: js/ui/status/volume.js:128
|
||||
msgid "Volume changed"
|
||||
msgstr "Дыбыс өзгертілді"
|
||||
|
||||
#: js/ui/status/volume.js:162
|
||||
#: js/ui/status/volume.js:170
|
||||
msgid "Volume"
|
||||
msgstr "Дыбыс деңгейі"
|
||||
|
||||
@@ -1768,11 +1794,11 @@ msgstr "Басқа пайдаланушы ретінде жүйеге кіру"
|
||||
msgid "Unlock Window"
|
||||
msgstr "Блоктауды алу терезесі"
|
||||
|
||||
#: js/ui/viewSelector.js:182
|
||||
#: js/ui/viewSelector.js:183
|
||||
msgid "Applications"
|
||||
msgstr "Қолданбалар"
|
||||
|
||||
#: js/ui/viewSelector.js:186
|
||||
#: js/ui/viewSelector.js:187
|
||||
msgid "Search"
|
||||
msgstr "Іздеу"
|
||||
|
||||
@@ -1781,22 +1807,22 @@ msgstr "Іздеу"
|
||||
msgid "“%s” is ready"
|
||||
msgstr "\"%s\" дайын"
|
||||
|
||||
#: js/ui/windowManager.js:84
|
||||
#: js/ui/windowManager.js:71
|
||||
msgid "Do you want to keep these display settings?"
|
||||
msgstr "Экранның бұл баптауларын сақтауды қалайсыз ба?"
|
||||
|
||||
#. Translators: this and the following message should be limited in lenght,
|
||||
#. to avoid ellipsizing the labels.
|
||||
#.
|
||||
#: js/ui/windowManager.js:103
|
||||
#: js/ui/windowManager.js:83
|
||||
msgid "Revert Settings"
|
||||
msgstr "Баптауларды қалпына келтіру"
|
||||
|
||||
#: js/ui/windowManager.js:106
|
||||
#: js/ui/windowManager.js:86
|
||||
msgid "Keep Changes"
|
||||
msgstr "Өзгерістерді сақтау"
|
||||
|
||||
#: js/ui/windowManager.js:124
|
||||
#: js/ui/windowManager.js:104
|
||||
#, javascript-format
|
||||
msgid "Settings changes will revert in %d second"
|
||||
msgid_plural "Settings changes will revert in %d seconds"
|
||||
@@ -1804,7 +1830,7 @@ msgstr[0] "Өзгертілген баптаулар %d секундтан ке
|
||||
|
||||
#. 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:679
|
||||
#: js/ui/windowManager.js:659
|
||||
#, javascript-format
|
||||
msgid "%d × %d"
|
||||
msgstr "%d × %d"
|
||||
@@ -1882,26 +1908,6 @@ msgstr "Evolution күнтізбесі"
|
||||
msgid "evolution"
|
||||
msgstr "evolution"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u шығысы"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: src/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u кірісі"
|
||||
|
||||
#: src/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Жүйелік дыбыстар"
|
||||
|
||||
#: src/main.c:372
|
||||
msgid "Print version"
|
||||
msgstr "Баспа нұсқасы"
|
||||
@@ -1940,6 +1946,26 @@ msgstr "Пароль бос болуы мүмкін емес"
|
||||
msgid "Authentication dialog was dismissed by the user"
|
||||
msgstr "Аутентификация терезесін пайдаланушы тайдырды"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound outputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1873
|
||||
#, c-format
|
||||
msgid "%u Output"
|
||||
msgid_plural "%u Outputs"
|
||||
msgstr[0] "%u шығысы"
|
||||
|
||||
#. translators:
|
||||
#. * The number of sound inputs on a particular device
|
||||
#: subprojects/gvc/gvc-mixer-control.c:1883
|
||||
#, c-format
|
||||
msgid "%u Input"
|
||||
msgid_plural "%u Inputs"
|
||||
msgstr[0] "%u кірісі"
|
||||
|
||||
#: subprojects/gvc/gvc-mixer-control.c:2738
|
||||
msgid "System Sounds"
|
||||
msgstr "Жүйелік дыбыстар"
|
||||
|
||||
#~ msgid "Events"
|
||||
#~ msgstr "Оқиғалар"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user