Compare commits

...

13 Commits

Author SHA1 Message Date
Giovanni Campagna 1d38b69691 Bump version to 3.11.4
To go along GNOME Shell 3.11.4
2014-01-16 20:00:48 +01:00
Giovanni Campagna 53e9074058 window-list: remove our use of Hash module
It was removed in core shell and replaced with ES6 Map.
2014-01-16 20:00:44 +01:00
Ray Strode e08d527d51 data: set shell classic mode via env variable instead of command line
Currently, we start gnome-shell in classic mode by passing
--mode=classic to the gnome-shell command line. This --mode=classic
gets stripped away when the session is saved, which breaks classic
mode on subsequent login attempts.

This commit changes the session file to set the
GNOME_SHELL_SESSION_MODE environment variable instead.

https://bugzilla.gnome.org/show_bug.cgi?id=720894
2014-01-07 15:29:02 -05:00
Shankar Prasad 07a4c7eb25 Updated the kn.po 2013-12-30 16:47:28 +05:30
Shankar Prasad 0b399fba7a Added kn entry in the LINGUAS file 2013-12-30 16:45:42 +05:30
Shankar Prasad 1aa8561497 Added and updated the kn.po file which was partially translated by prabodh P C <prabodhcp AT gmail DOT com>. I reviewed his translation and added mine too 2013-12-30 16:44:46 +05:30
Jorge Pérez Pérez 719ec25cb7 Updated Aragonese translation 2013-12-22 21:16:36 +01:00
Giovanni Campagna 4aa27c533e Bump version to 3.11.3
To go along GNOME Shell 3.11.3.
2013-12-20 19:43:48 +01:00
Khaled Hosny 75f11da08f Update Arabic translation 2013-12-13 22:20:22 +02:00
Maciek Borzecki 12e3f39ccd Align workspace indicator label vertically to center
https://bugzilla.gnome.org/show_bug.cgi?id=711823
2013-12-13 19:27:52 +01:00
Krishnababu Krothapalli d16fb714a3 Updated Telugu Translations 2013-12-12 18:17:07 +05:30
Shantha kumar b5cc38c9dd Tamil Translations Updated 2013-11-25 14:01:16 +05:30
Ryan Lortie 6b73c8e488 Update Esperanto translation
Review by Kristjan Schmidt
2013-11-23 19:03:47 -05:00
13 changed files with 1097 additions and 497 deletions
+11
View File
@@ -1,3 +1,14 @@
3.11.4
======
* classic mode now supports session saving
* updates for gnome-shell changes
* updated translattions (ar, kn)
3.11.3
======
* workspace-indicator is vertically aligned now
* updated translations (ar, eo, ta, te)
3.11.2 3.11.2
====== ======
* updated translations (zh_CN) * updated translations (zh_CN)
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.11.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions]) AC_INIT([gnome-shell-extensions],[3.11.4],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config]) AC_CONFIG_AUX_DIR([config])
+1 -1
View File
@@ -1,7 +1,7 @@
[Desktop Entry] [Desktop Entry]
_Name=GNOME Classic _Name=GNOME Classic
_Comment=This session logs you into GNOME Classic _Comment=This session logs you into GNOME Classic
Exec=gnome-session --session gnome-classic Exec=env GNOME_SHELL_SESSION_MODE=classic gnome-session --session gnome-classic
TryExec=gnome-session TryExec=gnome-session
Icon= Icon=
Type=Application Type=Application
+1 -1
View File
@@ -2,7 +2,7 @@
Type=Application Type=Application
_Name=GNOME Shell Classic _Name=GNOME Shell Classic
_Comment=Window management and application launching _Comment=Window management and application launching
Exec=@bindir@/gnome-shell --mode=classic Exec=@bindir@/gnome-shell
TryExec=@bindir@/gnome-shell TryExec=@bindir@/gnome-shell
X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gnome-shell X-GNOME-Bugzilla-Product=gnome-shell
+3 -3
View File
@@ -7,7 +7,6 @@ const Shell = imports.gi.Shell;
const St = imports.gi.St; const St = imports.gi.St;
const DND = imports.ui.dnd; const DND = imports.ui.dnd;
const Hash = imports.misc.hash;
const Lang = imports.lang; const Lang = imports.lang;
const Main = imports.ui.main; const Main = imports.ui.main;
const MessageTray = imports.ui.messageTray; const MessageTray = imports.ui.messageTray;
@@ -761,7 +760,7 @@ const WindowList = new Lang.Class({
this._updateKeyboardAnchor(); this._updateKeyboardAnchor();
})); }));
this._workspaceSignals = new Hash.Map(); this._workspaceSignals = new Map();
this._nWorkspacesChangedId = this._nWorkspacesChangedId =
global.screen.connect('notify::n-workspaces', global.screen.connect('notify::n-workspaces',
Lang.bind(this, this._onWorkspacesChanged)); Lang.bind(this, this._onWorkspacesChanged));
@@ -931,7 +930,8 @@ const WindowList = new Lang.Class({
let numWorkspaces = global.screen.n_workspaces; let numWorkspaces = global.screen.n_workspaces;
for (let i = 0; i < numWorkspaces; i++) { for (let i = 0; i < numWorkspaces; i++) {
let workspace = global.screen.get_workspace_by_index(i); let workspace = global.screen.get_workspace_by_index(i);
let signals = this._workspaceSignals.delete(workspace)[1]; let signals = this._workspaceSignals.get(workspace);
this._workspaceSignals.delete(workspace);
workspace.disconnect(signals._windowAddedId); workspace.disconnect(signals._windowAddedId);
workspace.disconnect(signals._windowRemovedId); workspace.disconnect(signals._windowRemovedId);
} }
+2 -1
View File
@@ -30,7 +30,8 @@ const WorkspaceIndicator = new Lang.Class({
this.parent(0.0, _("Workspace Indicator")); this.parent(0.0, _("Workspace Indicator"));
this._currentWorkspace = global.screen.get_active_workspace().index(); this._currentWorkspace = global.screen.get_active_workspace().index();
this.statusLabel = new St.Label({ text: this._labelText() }); this.statusLabel = new St.Label({ y_align: Clutter.ActorAlign.CENTER,
text: this._labelText() });
this.actor.add_actor(this.statusLabel); this.actor.add_actor(this.statusLabel);
+1
View File
@@ -25,6 +25,7 @@ id
it it
ja ja
kk kk
kn
ko ko
lv lv
lt lt
+123 -66
View File
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2013-06-05 18:52+0000\n" "POT-Creation-Date: 2013-12-20 18:44+0000\n"
"PO-Revision-Date: 2013-06-05 20:51+0100\n" "PO-Revision-Date: 2013-12-21 16:24+0100\n"
"Last-Translator: Jorge Pérez Pérez <jorgtum@gmail.com>\n" "Last-Translator: Jorge Pérez Pérez <jorgtum@gmail.com>\n"
"Language-Team: Aragonese <softaragones@googlegroups.com>\n" "Language-Team: Aragonese <softaragones@googlegroups.com>\n"
"Language: an\n" "Language: an\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.4\n" "X-Generator: Poedit 1.6.3\n"
#: ../data/gnome-classic.desktop.in.h:1 #: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1 #: ../data/gnome-classic.session.desktop.in.in.h:1
@@ -35,6 +35,31 @@ msgstr "GNOME Shell clasico"
msgid "Window management and application launching" msgid "Window management and application launching"
msgstr "Chestión de finestras y inicio d'aplicacions" msgstr "Chestión de finestras y inicio d'aplicacions"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr "Acoplar un dialogo modal a la finestra pai"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid ""
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgstr ""
"Ista clau sobrescribe a clau en org.gnome.mutter en executar o GNOME Shell."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"Activar o mosaico en os cantos en arrocegar as finestras a los cantos d'a "
"finestra"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid "Workspaces only on primary monitor"
msgstr "Arias de treballo nomás en a pantalla prencipal"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"Retardar o cambeo d'o foco d'o churi dica que o puntero deixe de mover-se"
#: ../extensions/alternate-tab/prefs.js:20 #: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only" msgid "Thumbnail only"
msgstr "Nomás as miniaturas" msgstr "Nomás as miniaturas"
@@ -55,35 +80,6 @@ msgstr "Presentar as finestras como"
msgid "Show only windows in the current workspace" msgid "Show only windows in the current workspace"
msgstr "Amostrar as finestras solament en l'aria de treballo actual" msgstr "Amostrar as finestras solament en l'aria de treballo actual"
#. add the new entries
#: ../extensions/alternative-status-menu/extension.js:125
msgid "Suspend"
msgstr "Suspender"
#: ../extensions/alternative-status-menu/extension.js:128
msgid "Hibernate"
msgstr "Hibernar"
#: ../extensions/alternative-status-menu/extension.js:131
msgid "Power Off"
msgstr "Amortar"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:1
msgid "Enable suspending"
msgstr "Activar a suspensión"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:2
msgid "Control the visibility of the Suspend menu item"
msgstr "Controla la visibilidat de l'elemento de menú «Suspender»"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:3
msgid "Enable hibernating"
msgstr "Activar a hibernación"
#: ../extensions/alternative-status-menu/org.gnome.shell.extensions.alternative-status-menu.gschema.xml.in.h:4
msgid "Control the visibility of the Hibernate menu item"
msgstr "Controla la visibilidat de l'elemento de menú «Hibernar»"
#: ../extensions/apps-menu/extension.js:39 #: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview" msgid "Activities Overview"
msgstr "Anvista d'actividatz" msgstr "Anvista d'actividatz"
@@ -92,7 +88,7 @@ msgstr "Anvista d'actividatz"
msgid "Favorites" msgid "Favorites"
msgstr "Favoritos" msgstr "Favoritos"
#: ../extensions/apps-menu/extension.js:278 #: ../extensions/apps-menu/extension.js:282
msgid "Applications" msgid "Applications"
msgstr "Aplicacions" msgstr "Aplicacions"
@@ -130,16 +126,16 @@ msgstr "Creyar un regle nuevo de coincidencia"
msgid "Add" msgid "Add"
msgstr "Adhibir" msgstr "Adhibir"
#: ../extensions/drive-menu/extension.js:72 #: ../extensions/drive-menu/extension.js:73
#, c-format #, c-format
msgid "Ejecting drive '%s' failed:" msgid "Ejecting drive '%s' failed:"
msgstr "Ha fallau en fer fuera o dispositivo «%s»" msgstr "Ha fallau en fer fuera o dispositivo «%s»"
#: ../extensions/drive-menu/extension.js:89 #: ../extensions/drive-menu/extension.js:90
msgid "Removable devices" msgid "Removable devices"
msgstr "Dispositivos extraíbles" msgstr "Dispositivos extraíbles"
#: ../extensions/drive-menu/extension.js:106 #: ../extensions/drive-menu/extension.js:117
msgid "Open File" msgid "Open File"
msgstr "Ubrir o fichero" msgstr "Ubrir o fichero"
@@ -205,33 +201,34 @@ msgstr ""
"sitúa por debaixo. Cambiar ista configuración requier reiniciar a shell ta " "sitúa por debaixo. Cambiar ista configuración requier reiniciar a shell ta "
"que tienga efecto." "que tienga efecto."
#: ../extensions/places-menu/extension.js:77 #: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
msgid "Places" msgid "Places"
msgstr "Puestos" msgstr "Puestos"
#: ../extensions/places-menu/placeDisplay.js:56 #: ../extensions/places-menu/placeDisplay.js:58
#, c-format #, c-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "Ha fallau en lanzar «%s»" msgstr "Ha fallau en lanzar «%s»"
#: ../extensions/places-menu/placeDisplay.js:98 #: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer" msgid "Computer"
msgstr "Equipo" msgstr "Equipo"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:201
msgid "Home" msgid "Home"
msgstr "Carpeta presonal" msgstr "Carpeta presonal"
#: ../extensions/places-menu/placeDisplay.js:286 #: ../extensions/places-menu/placeDisplay.js:288
msgid "Browse Network" msgid "Browse Network"
msgstr "Examinar o ret" msgstr "Examinar o ret"
#: ../extensions/systemMonitor/extension.js:213 #: ../extensions/systemMonitor/extension.js:214
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:266 #: ../extensions/systemMonitor/extension.js:267
msgid "Memory" msgid "Memory"
msgstr "CPU" msgstr "CPU"
@@ -243,6 +240,55 @@ msgstr "Nombre d'o tema"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "O nombre d'o tema, que se carga dende /.themes/nombre/gnome-shell" msgstr "O nombre d'o tema, que se carga dende /.themes/nombre/gnome-shell"
#: ../extensions/window-list/extension.js:92
msgid "Close"
msgstr "Zarrar"
#: ../extensions/window-list/extension.js:102
msgid "Unminimize"
msgstr "Restaurar"
#: ../extensions/window-list/extension.js:103
msgid "Minimize"
msgstr "Minimizar"
#: ../extensions/window-list/extension.js:109
msgid "Unmaximize"
msgstr "Restaurar"
#: ../extensions/window-list/extension.js:110
msgid "Maximize"
msgstr "Maximizar"
#: ../extensions/window-list/extension.js:270
msgid "Minimize all"
msgstr "Minimizar-lo tot"
#: ../extensions/window-list/extension.js:278
msgid "Unminimize all"
msgstr "Restaurar-lo tot"
#: ../extensions/window-list/extension.js:286
msgid "Maximize all"
msgstr "Maximizar-lo tot"
#: ../extensions/window-list/extension.js:295
msgid "Unmaximize all"
msgstr "Restaurar-lo tot"
#: ../extensions/window-list/extension.js:304
msgid "Close all"
msgstr "Zarrar-lo tot"
#: ../extensions/window-list/extension.js:591
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Indicador d'aria de treballo"
#: ../extensions/window-list/extension.js:743
msgid "Window List"
msgstr "Lista de finestras"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1 #: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows" msgid "When to group windows"
msgstr "Quan agrupar as finestras" msgstr "Quan agrupar as finestras"
@@ -271,10 +317,6 @@ msgstr "Agrupar as finestras quan l'espacio siga limitau"
msgid "Always group windows" msgid "Always group windows"
msgstr "Agrupar siempre as finestras" msgstr "Agrupar siempre as finestras"
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Indicador d'aria de treballo"
#: ../extensions/workspace-indicator/prefs.js:141 #: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:" msgid "Workspace names:"
msgstr "Nombres d'as arias de treballo:" msgstr "Nombres d'as arias de treballo:"
@@ -288,26 +330,41 @@ msgstr "Nombre"
msgid "Workspace %d" msgid "Workspace %d"
msgstr "Aria de treballo %d" msgstr "Aria de treballo %d"
#: ../extensions/xrandr-indicator/extension.js:30 #~ msgid "Suspend"
msgid "Normal" #~ msgstr "Suspender"
msgstr "Normal"
#: ../extensions/xrandr-indicator/extension.js:31 #~ msgid "Hibernate"
msgid "Left" #~ msgstr "Hibernar"
msgstr "Cucha"
#: ../extensions/xrandr-indicator/extension.js:32 #~ msgid "Power Off"
msgid "Right" #~ msgstr "Amortar"
msgstr "Dreita"
#: ../extensions/xrandr-indicator/extension.js:33 #~ msgid "Enable suspending"
msgid "Upside-down" #~ msgstr "Activar a suspensión"
msgstr "Enta baixo"
#: ../extensions/xrandr-indicator/extension.js:50 #~ msgid "Control the visibility of the Suspend menu item"
msgid "Display" #~ msgstr "Controla la visibilidat de l'elemento de menú «Suspender»"
msgstr "Pantalla"
#: ../extensions/xrandr-indicator/extension.js:80 #~ msgid "Enable hibernating"
msgid "Display Settings" #~ msgstr "Activar a hibernación"
msgstr "Opcions de pantalla"
#~ msgid "Control the visibility of the Hibernate menu item"
#~ msgstr "Controla la visibilidat de l'elemento de menú «Hibernar»"
#~ msgid "Normal"
#~ msgstr "Normal"
#~ msgid "Left"
#~ msgstr "Cucha"
#~ msgid "Right"
#~ msgstr "Dreita"
#~ msgid "Upside-down"
#~ msgstr "Enta baixo"
#~ msgid "Display"
#~ msgstr "Pantalla"
#~ msgid "Display Settings"
#~ msgstr "Opcions de pantalla"
+20 -17
View File
@@ -5,10 +5,9 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: \n"
"shell&keywords=I18N+L10N&component=extensions\n" "POT-Creation-Date: 2013-12-11 06:42+0200\n"
"POT-Creation-Date: 2013-08-19 08:21+0000\n" "PO-Revision-Date: 2013-12-11 06:43+0200\n"
"PO-Revision-Date: 2013-09-09 23:22+0200\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n" "Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n" "Language-Team: Arabic <doc@arabeyes.org>\n"
"Language: ar\n" "Language: ar\n"
@@ -51,10 +50,13 @@ msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "" msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid "Workspace Indicator"
msgid "Workspaces only on primary monitor" msgid "Workspaces only on primary monitor"
msgstr "مساحات عمل على الشاشة الرئيسية فقط" msgstr "مساحات عمل على الشاشة الرئيسية فقط"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
#: ../extensions/alternate-tab/prefs.js:20 #: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only" msgid "Thumbnail only"
msgstr "مصغّرة فقط" msgstr "مصغّرة فقط"
@@ -83,7 +85,7 @@ msgstr "ملخص الأنشطة"
msgid "Favorites" msgid "Favorites"
msgstr "المفضّلات" msgstr "المفضّلات"
#: ../extensions/apps-menu/extension.js:278 #: ../extensions/apps-menu/extension.js:282
msgid "Applications" msgid "Applications"
msgstr "التطبيقات" msgstr "التطبيقات"
@@ -119,7 +121,7 @@ msgid "Add"
msgstr "أضِف" msgstr "أضِف"
#: ../extensions/drive-menu/extension.js:73 #: ../extensions/drive-menu/extension.js:73
#, c-format #, javascript-format
msgid "Ejecting drive '%s' failed:" msgid "Ejecting drive '%s' failed:"
msgstr "فشل إخراج '%s':" msgstr "فشل إخراج '%s':"
@@ -145,8 +147,6 @@ msgid ""
"panel." "panel."
msgstr "" msgstr ""
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30 #: ../extensions/example/prefs.js:30
msgid "" msgid ""
"Example aims to show how to build well behaved extensions for the Shell and " "Example aims to show how to build well behaved extensions for the Shell and "
@@ -185,22 +185,21 @@ msgstr ""
msgid "Places" msgid "Places"
msgstr "الأماكن" msgstr "الأماكن"
#: ../extensions/places-menu/placeDisplay.js:56 #: ../extensions/places-menu/placeDisplay.js:58
#, c-format #, javascript-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "فشل تشغيل \"%s\"" msgstr "فشل تشغيل \"%s\""
#: ../extensions/places-menu/placeDisplay.js:98 #: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer" msgid "Computer"
msgstr "الحاسوب" msgstr "الحاسوب"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:201
msgid "Home" msgid "Home"
msgstr "المنزل" msgstr "المنزل"
#: ../extensions/places-menu/placeDisplay.js:286 #: ../extensions/places-menu/placeDisplay.js:288
#| msgid "Browse network"
msgid "Browse Network" msgid "Browse Network"
msgstr "تصفّح الشبكة" msgstr "تصفّح الشبكة"
@@ -265,6 +264,10 @@ msgstr "أغلق الكل"
msgid "Workspace Indicator" msgid "Workspace Indicator"
msgstr "مؤشر مساحات العمل" msgstr "مؤشر مساحات العمل"
#: ../extensions/window-list/extension.js:743
msgid "Window List"
msgstr "قائمة النوافذ"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1 #: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows" msgid "When to group windows"
msgstr "متى تجمّع النوافذ" msgstr "متى تجمّع النوافذ"
@@ -302,7 +305,7 @@ msgid "Name"
msgstr "الاسم" msgstr "الاسم"
#: ../extensions/workspace-indicator/prefs.js:186 #: ../extensions/workspace-indicator/prefs.js:186
#, c-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "مساحة العمل %Id" msgstr "مساحة العمل %Id"
+255 -174
View File
@@ -2,244 +2,325 @@
# Copyright (C) 2011 Free Software Foundation, Inc. # Copyright (C) 2011 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2011. # Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2011.
# Ryan Lortie <desrt@desrt.ca>, 2013.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2011-12-28 20:45+0000\n" "POT-Creation-Date: 2013-10-05 02:00-0400\n"
"PO-Revision-Date: 2011-12-29 13:44+0100\n" "PO-Revision-Date: 2013-10-05 01:58-0400\n"
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n" "Last-Translator: Ryan Lortie <desrt@desrt.ca>\n"
"Language-Team: Esperanto <gnome-l10n-eo@lists.launchpad.net>\n" "Language-Team: Esperanto <gnome-l10n-eo@lists.launchpad.net>\n"
"Language: eo\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bits\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. add the new entries #: ../data/gnome-classic.desktop.in.h:1
#: ../extensions/alternative-status-menu/extension.js:68 #: ../data/gnome-classic.session.desktop.in.in.h:1
msgid "Suspend" msgid "GNOME Classic"
msgstr "Dormeti" msgstr "GNOME-klasika"
#: ../extensions/alternative-status-menu/extension.js:73 #: ../data/gnome-classic.desktop.in.h:2
msgid "Hibernate" msgid "This session logs you into GNOME Classic"
msgstr "Pasivumigi" msgstr "Ĉi seanco ensalutas vin GNOME-klasiken"
#: ../extensions/alternative-status-menu/extension.js:78 #: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "Power Off..." msgid "GNOME Shell Classic"
msgstr "Elŝalti..." msgstr "GNOME-ŝelo-klasika"
#: ../extensions/alternate-tab/extension.js:54 #: ../data/gnome-shell-classic.desktop.in.in.h:2
msgid "Window management and application launching"
msgstr "Fenestra administrado kaj aplikaĵa lanĉo"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr "Kunligi modalan dialogon al la patra fenestro"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid "" msgid ""
"This is the first time you use the Alternate Tab extension. \n" "This key overrides the key in org.gnome.mutter when running GNOME Shell."
"Please choose your preferred behaviour:\n"
"\n"
"All & Thumbnails:\n"
" This mode presents all applications from all workspaces in one "
"selection \n"
" list. Instead of using the application icon of every window, it uses "
"small \n"
" thumbnails resembling the window itself. \n"
"\n"
"Workspace & Icons:\n"
" This mode let's you switch between the applications of your current \n"
" workspace and gives you additionally the option to switch to the last "
"used \n"
" application of your previous workspace. This is always the last symbol "
"in \n"
" the list and is segregated by a separator/vertical line if available. \n"
" Every window is represented by its application icon. \n"
"\n"
"If you whish to revert to the default behavior for the Alt-Tab switcher, "
"just\n"
"disable the extension from extensions.gnome.org or the Advanced Settings "
"application."
msgstr "" msgstr ""
"Ĉi ŝlosilo atutas la ŝlosilon en org.gnome.mutter kiam rulanta GNOME-ŝelon."
#: ../extensions/alternate-tab/extension.js:295 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Alt Tab Behaviour" msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "" msgstr ""
"Aktivigi kahelan aranĝon kiam demetante fenestrojn sur ekranaj borderoj"
#: ../extensions/alternate-tab/extension.js:311 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid "All & Thumbnails" msgid "Workspaces only on primary monitor"
msgstr "" msgstr "Laborspacoj nur sur la ĉefa ekrano"
#: ../extensions/alternate-tab/extension.js:318 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Workspace & Icons" msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr "" msgstr "En musa reĝimo, prokrasti ŝanĝi fokuson ĝis la musmontrilo haltas"
#: ../extensions/alternate-tab/extension.js:325 #: ../extensions/alternate-tab/prefs.js:20
msgid "Cancel" msgid "Thumbnail only"
msgstr "Nuligi" msgstr "Miniaturo nur"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/alternate-tab/prefs.js:21
msgid "Ask the user for a default behaviour if true." msgid "Application icon only"
msgstr "" msgstr "Aplikaĵa piktogramo nur"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/alternate-tab/prefs.js:22
msgid "Indicates if Alternate Tab is newly installed" msgid "Thumbnail and application icon"
msgstr "" msgstr "Miniaturo kaj aplikaĵo piktogramo"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:3 #: ../extensions/alternate-tab/prefs.js:37
msgid "" msgid "Present windows as"
"Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and " msgstr "Prezenti fenestron kiel"
"workspace_icons."
msgstr ""
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:4 #: ../extensions/alternate-tab/prefs.js:62
msgid "The alt tab behaviour." msgid "Show only windows in the current workspace"
msgstr "" msgstr "Montri nur fenestrojn en la aktuala laborspaco"
#: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview"
msgstr "Aktivecoj-Superrigardon"
#: ../extensions/apps-menu/extension.js:113
msgid "Favorites"
msgstr "Plej ŝatataj"
#: ../extensions/apps-menu/extension.js:282
msgid "Applications"
msgstr "Aplikaĵoj"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1 #: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
msgid "Application and workspace list"
msgstr "Aplikaĵa kaj laborspaca listo"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
msgstr "" msgstr ""
"Listo de ĉenoj, ĉiu enhavas aplikaĵan identigilon ('desktop' dosiernomo), "
"sevkita per dupunkto kaj la laborspaca numero"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2 #: ../extensions/auto-move-windows/prefs.js:55
msgid "Application and workspace list" msgid "Application"
msgstr "" msgstr "Aplikaĵo"
#: ../extensions/dock/extension.js:561 #: ../extensions/auto-move-windows/prefs.js:64
msgid "Drag here to add favorites" #: ../extensions/auto-move-windows/prefs.js:106
msgstr "" msgid "Workspace"
msgstr "Laborspaco"
#: ../extensions/dock/extension.js:896 #: ../extensions/auto-move-windows/prefs.js:80
msgid "New Window" msgid "Add rule"
msgstr "Nova fenestro" msgstr "Aldoni regulon"
#: ../extensions/dock/extension.js:898 #: ../extensions/auto-move-windows/prefs.js:94
msgid "Quit Application" msgid "Create new matching rule"
msgstr "Ĉesi aplikaĵon" msgstr "Krei novan kongruantan regulon"
#: ../extensions/dock/extension.js:903 #: ../extensions/auto-move-windows/prefs.js:98
msgid "Remove from Favorites" msgid "Add"
msgstr "Forigi de la preferataj aplikaĵoj" msgstr "Aldoni"
#: ../extensions/dock/extension.js:904 #: ../extensions/drive-menu/extension.js:73
msgid "Add to Favorites" #, javascript-format
msgstr "Aldoni al la preferataj aplikaĵoj" msgid "Ejecting drive '%s' failed:"
msgstr "Elĵeto de volumo '%s' malsukcesis:"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1 #: ../extensions/drive-menu/extension.js:90
msgid "Autohide duration" msgid "Removable devices"
msgstr "" msgstr "Demeteblaj aparatoj"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2 #: ../extensions/drive-menu/extension.js:117
msgid "Autohide effect" msgid "Open File"
msgstr "" msgstr "Malfermi dosieron"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3 #: ../extensions/example/extension.js:17
msgid "Enable/disable autohide"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
msgid "Icon size"
msgstr "Piktogramgrando"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
msgid "Position of the dock"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
msgid "Sets icon size of the dock."
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
msgid ""
"Sets the effect of the hide dock. Allowed values are 'resize', 'rescale' and "
"'move'"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
msgid ""
"Sets the position of the dock in the screen. Allowed values are 'right' or "
"'left'"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9
msgid "Sets the time duration of the autohide effect."
msgstr ""
#: ../extensions/drive-menu/extension.js:69
msgid "Open file manager"
msgstr "Malfermi dosieradministrilo"
#: ../extensions/example/extension.js:11
msgid "Hello, world!" msgid "Hello, world!"
msgstr "Saluton, mondo!" msgstr "Saluton, mondo!"
#: ../extensions/gajim/extension.js:227 #: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
#, c-format msgid "Alternative greeting text."
msgid "%s is away." msgstr "Alterna saluta teksto."
msgstr "%s estas fora."
#: ../extensions/gajim/extension.js:230 #: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
#, c-format msgid ""
msgid "%s is offline." "If not empty, it contains the text that will be shown when clicking on the "
msgstr "%s estas nekonektita." "panel."
msgstr ""
"Se ne malplena, enhavas la tekston kiu estos montrita kiam alklakante sur la "
"panelo."
#: ../extensions/gajim/extension.js:233 #: ../extensions/example/prefs.js:30
#, c-format msgid ""
msgid "%s is online." "Example aims to show how to build well behaved extensions for the Shell and "
msgstr "%s estas konektita." "as such it has little functionality on its own.\n"
"Nevertheless it's possible to customize the greeting message."
msgstr ""
"Ekzemplo klopodas montri kial krei bone-kondutantan etendojn por la ŝelo kaj "
"sekve ne havas multan funkcion.\n"
"Tamen, eblas agordi la salutan mesagon."
#: ../extensions/gajim/extension.js:236 #: ../extensions/example/prefs.js:36
#, c-format msgid "Message:"
msgid "%s is busy." msgstr "Messaĝo:"
msgstr "%s estas okupata."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "" msgid "Use more screen for windows"
"If true, place window captions on top the respective thumbnail, overriding " msgstr "Uzi pli da ekrano por fenetroj"
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr ""
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
msgid "Place window captions on top"
msgstr ""
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"Klopodi uzi pli da ekrano por fenestraj miniaturoj per adapti al la ekrana "
"aspekta rilatumo, kaj kunfandi ilin plu por redukti la limigan keston. Ĉi "
"agordo uzitas nur kun la natura lokada strategio."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Place window captions on top"
msgstr "Meti fenestrajn apudskribojn supre"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
msgid "Use more screen for windows" msgid ""
"If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr "" msgstr ""
"Se agordita, meti fenestrajn apudskribojn super la miniaturo (la defaŭlto "
"estas meti ĝin malsupre). Si vi ŝanĝas ĉi agordon tiam vi devas restartigi "
"la ŝelon."
#: ../extensions/places-menu/extension.js:36 #: ../extensions/places-menu/extension.js:78
msgid "Removable Devices" #: ../extensions/places-menu/extension.js:81
msgstr "Demeteblaj aparatoj" msgid "Places"
msgstr "Lokoj"
#: ../extensions/places-menu/placeDisplay.js:58
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Malsukceis lanĉi \"%s\""
#: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer"
msgstr "Komputilo"
#: ../extensions/places-menu/placeDisplay.js:201
msgid "Home"
msgstr "Domo"
#: ../extensions/places-menu/placeDisplay.js:288
msgid "Browse Network"
msgstr "Foliumi reton"
#: ../extensions/systemMonitor/extension.js:214
msgid "CPU"
msgstr "Ĉefprocesoro"
#: ../extensions/systemMonitor/extension.js:267
msgid "Memory"
msgstr "Memoro"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1 #: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr ""
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
msgid "Theme name" msgid "Theme name"
msgstr "Etosnomo" msgstr "Etosnomo"
#: ../extensions/xrandr-indicator/extension.js:26 #: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
msgid "Normal" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Normale" msgstr "La nomo de la etoso, malfermigi de ~/.themes/name/gnome-shell"
#: ../extensions/xrandr-indicator/extension.js:27 #: ../extensions/window-list/extension.js:92
msgid "Left" msgid "Close"
msgstr "Maldekstre" msgstr "Malfermi"
#: ../extensions/xrandr-indicator/extension.js:28 #: ../extensions/window-list/extension.js:102
msgid "Right" msgid "Unminimize"
msgstr "Dekstre" msgstr "Neplejetigi"
#: ../extensions/xrandr-indicator/extension.js:29 #: ../extensions/window-list/extension.js:103
msgid "Upside-down" msgid "Minimize"
msgstr "Renversite" msgstr "Plejetigi"
#: ../extensions/xrandr-indicator/extension.js:78 #: ../extensions/window-list/extension.js:109
#, fuzzy msgid "Unmaximize"
msgid "Configure display settings..." msgstr "Nemaksimumigi"
msgstr "Agordi ekranagordojn..."
#: ../extensions/window-list/extension.js:110
msgid "Maximize"
msgstr "Maksimumigi"
#: ../extensions/window-list/extension.js:270
msgid "Minimize all"
msgstr "Plejetigi ĉiujn"
#: ../extensions/window-list/extension.js:278
msgid "Unminimize all"
msgstr "Neplejetigi ĉiujn"
#: ../extensions/window-list/extension.js:286
msgid "Maximize all"
msgstr "Maksimumigi ĉiujn"
#: ../extensions/window-list/extension.js:295
msgid "Unmaximize all"
msgstr "Nemaksimumigi ĉiujn"
#: ../extensions/window-list/extension.js:304
msgid "Close all"
msgstr "Fermi ĉiujn"
#: ../extensions/window-list/extension.js:591
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Laborspaco Indikilo"
#: ../extensions/window-list/extension.js:743
msgid "Window List"
msgstr "Fenestra listo"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "Kiam grupigi fenestrojn"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
msgid ""
"Decides when to group windows from the same application on the window list. "
"Possible values are \"never\", \"auto\" and \"always\"."
msgstr ""
"Decidas kiam grupi fenestrojn de la sama aplikaĵo en la fenestra listo. "
"Validaj valoroj estas \"never\" (neniam), \"auto\" (aŭtomate) kaj \"always"
"\" (ĉiam)."
#: ../extensions/window-list/prefs.js:30
msgid "Window Grouping"
msgstr "Fenestra grupigo"
#: ../extensions/window-list/prefs.js:49
msgid "Never group windows"
msgstr "Neniam grupigi fenestrojn"
#: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Grupigi fenestrojn kiam spaco limitas"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows"
msgstr "Ĉiam grupigi fenestrojn"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Laborspacaj nomoj:"
#: ../extensions/workspace-indicator/prefs.js:152
msgid "Name"
msgstr "Nomo"
#: ../extensions/workspace-indicator/prefs.js:186
#, javascript-format
msgid "Workspace %d"
msgstr "Laborspaco %d"
+337
View File
@@ -0,0 +1,337 @@
# Kannada translation for gnome-shell-extensions.
# Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
# prabodhcp <prabodhcp@gmail.com>, 2013
# Shankar Prasad <prasad.mvs@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2013-12-22 20:16+0000\n"
"PO-Revision-Date: 2013-12-30 16:41+0630\n"
"Last-Translator: Shankar Prasad <svenkate AT redhat Dot com>\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
"Language: kn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Lokalize 1.5\n"
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
msgid "GNOME Classic"
msgstr "GNOME ಕ್ಲಾಸಿಕ್"
#: ../data/gnome-classic.desktop.in.h:2
msgid "This session logs you into GNOME Classic"
msgstr "ಈ ಅಧಿವೇಶನವು ನಿಮ್ಮನ್ನು GNOME ಕ್ಲಾಸಿಕ್‌ಗೆ ಪ್ರವೇಶಿಸುವಂತೆ ಮಾಡುತ್ತದೆ"
#: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "GNOME Shell Classic"
msgstr "GNOME ಶೆಲ್‌ ಕ್ಲಾಸಿಕ್"
#: ../data/gnome-shell-classic.desktop.in.in.h:2
msgid "Window management and application launching"
msgstr "ಕಿಟಕಿ ನಿರ್ವಹಣೆ ಹಾಗು ಅನ್ವಯವನ್ನು ಆರಂಭಿಸುವಿಕೆ"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr "ಮೂಲ ಕಿಟಕಿಗೆ ಮೋಡಲ್ ಸಂವಾದವನ್ನು ಸೇರಿಸು"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid ""
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgstr ""
"GNOME ಶೆಲ್‌ ಅನ್ನು ಚಲಾಯಿಸುವಾಗ ಈ ಕೀಲಿಯು org.gnome.mutter ಯಲ್ಲಿನ ಕೀಲಿಯನ್ನು "
"ಅತಿಕ್ರಮಿಸುತ್ತದೆ."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"ತೆರೆಯ ಅಂಚುಗಳಲ್ಲಿ ಕಿಟಕಿಗಳನ್ನು ಬೀಳಿಸುವಾಗ ಅಂಚಿನ ಟೈಲಿಂಗ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid "Workspaces only on primary monitor"
msgstr "ಪ್ರಾಥಮಿಕ ತೆರೆಯಲ್ಲಿ ಇರುವ ಕಾರ್ಯಕ್ಷೇತ್ರಗಳು ಮಾತ್ರ"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"ಮೌಸ್‌ ಸ್ಥಿತಿಯಲ್ಲಿ ತೆರೆಸೂಚಕವು ನಿಲ್ಲುವವರೆಗೆ ಗಮನ ಹರಿಸುವ ಬದಲಾವಣೆಗಳನ್ನು ವಿಳಂಬವಾಗಿಸು"
#: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only"
msgstr "ಚಿಕ್ಕಚಿತ್ರ ಮಾತ್ರ"
#: ../extensions/alternate-tab/prefs.js:21
msgid "Application icon only"
msgstr "ಅನ್ವಯ ಚಿಹ್ನೆ ಮಾತ್ರ"
#: ../extensions/alternate-tab/prefs.js:22
msgid "Thumbnail and application icon"
msgstr "ಅಡಕಚಿತ್ರ ಮತ್ತು ಅನ್ವಯ ಚಿಹ್ನೆ"
#: ../extensions/alternate-tab/prefs.js:37
msgid "Present windows as"
msgstr "ಈ ರೀತಿಯಲ್ಲಿ ಈಗಿರುವ ಕಿಟಕಿ"
#: ../extensions/alternate-tab/prefs.js:62
msgid "Show only windows in the current workspace"
msgstr "ಪ್ರಸಕ್ತ ಕಾರ್ಯಕ್ಷೇತ್ರದಲ್ಲಿರುವ ಕಿಟಕಿಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸು"
#: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview"
msgstr "ಚಟುವಟಿಕೆಗಳ ಸ್ಥೂಲ ಸಮೀಕ್ಷೆ"
#: ../extensions/apps-menu/extension.js:113
msgid "Favorites"
msgstr "ಮೆಚ್ಚಿನವುಗಳು"
#: ../extensions/apps-menu/extension.js:282
msgid "Applications"
msgstr "ಅನ್ವಯಗಳು"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
msgid "Application and workspace list"
msgstr "ಅನ್ವಯ ಹಾಗು ಕಾರ್ಯಕ್ಷೇತ್ರ ಪಟ್ಟಿ"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
msgid ""
"A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number"
msgstr ""
"ಅನ್ವಯ id (ಗಣಕತೆರೆ ಕಡತದ ಹೆಸರು), ನಂತರ ಒಂದು ವಿವರಣೆ ಚಿಹ್ನೆ ಮತ್ತು ಕಾರ್ಯಕ್ಷೇತ್ರದ "
"ಸಂಖ್ಯೆಯನ್ನು ಹೊಂದಿರುವ ವಾಕ್ಯಾಂಶಗಳ ಒಂದು ಪಟ್ಟಿ"
#: ../extensions/auto-move-windows/prefs.js:55
msgid "Application"
msgstr "ಅನ್ವಯ"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Workspace"
msgstr "ಕಾರ್ಯಕ್ಷೇತ್ರ"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
msgstr "ನಿಯಮವನ್ನು ಸೇರಿಸು"
#: ../extensions/auto-move-windows/prefs.js:94
msgid "Create new matching rule"
msgstr "ಹೊಸ ಹೊಂದಿಕೆಯಾಗುವ ನಿಯಮವನ್ನು ರಚಿಸು"
#: ../extensions/auto-move-windows/prefs.js:98
msgid "Add"
msgstr "ಸೇರಿಸು"
#: ../extensions/drive-menu/extension.js:73
#, c-format
msgid "Ejecting drive '%s' failed:"
msgstr "'%s' ಡ್ರೈವ್ ಅನ್ನು ಹೊರತೆಗೆಯುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ:"
#: ../extensions/drive-menu/extension.js:90
msgid "Removable devices"
msgstr "ತೆಗೆಯಬಹುದಾದ ಸಾಧನಗಳು"
#: ../extensions/drive-menu/extension.js:117
msgid "Open File"
msgstr "ಕಡತವನ್ನು ತೆರೆ"
#: ../extensions/example/extension.js:17
msgid "Hello, world!"
msgstr "ನಮಸ್ಕಾರ, ಎಲ್ಲರಿಗೂ!"
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
msgid "Alternative greeting text."
msgstr "ಪರ್ಯಾಯ ಶುಭಾಶಯ ಪಠ್ಯ."
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
msgid ""
"If not empty, it contains the text that will be shown when clicking on the "
"panel."
msgstr ""
"ಖಾಲಿ ಇರದೆ ಇದ್ದಲ್ಲಿ, ಪ್ಯಾನೆಲ್‌ನ ಮೇಲೆ ಕ್ಲಿಕ್ ಮಾಡಿದಾಗ ತೋರಿಸಲಾಗುವ ಪಠ್ಯವನ್ನು ಇದು "
"ಹೊಂದಿರುತ್ತದೆ."
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30
msgid ""
"Example aims to show how to build well behaved extensions for the Shell and "
"as such it has little functionality on its own.\n"
"Nevertheless it's possible to customize the greeting message."
msgstr ""
"ಉದಾಹರಣೆಯು ಶೆಲ್‌ಗಾಗಿ ಉತ್ತಮವಾಗಿ ವರ್ತಿಸುವ ವಿಸ್ತರಣೆಗಳನ್ನು ನಿರ್ಮಿಸುವುದನ್ನು ತೋರಿಸುವ "
"ಉದ್ಧೇಶವನ್ನು ಹೊಂದಿರುತ್ತದೆ ಮತ್ತು ಅದು ತಾನೆ ಸ್ವತಃ ಬಹಳ ಕಡಿಮೆ ಎನ್ನುವಷ್ಟು "
"ಪ್ರಯೋಜನವನ್ನು ನೀಡಬಲ್ಲದು.\n"
"ಆದರೂ ಸಹ ಶುಭಾಶಯದ ಸಂದೇಶವನ್ನು ಅಗತ್ಯಾನುಗಣವಾಗಿಸಲು ಸಾಧ್ಯವಿರುತ್ತದೆ."
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "ಸಂದೇಶ:"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "ಕಿಟಕಿಗಳಿಗಾಗಿ ಹೆಚ್ಚಿನ ತೆರೆಯನ್ನು ಬಳಸಿ"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. "
"This setting applies only with the natural placement strategy."
msgstr ""
"ತೆರೆಯ ಆಕಾರ ಅನುಪಾತವನ್ನು ಅಳವಡಿಸಿಕೊಳ್ಳುವ ಮೂಲಕ ಕಿಟಕಿ ಅಡಕಚಿತ್ರಗಳನ್ನು (ತಂಬ್‌ನೈಲ್) "
"ಇರಿಸುವ "
"ಸಲುವಾಗಿ ಹೆಚ್ಚಿನ ತೆರೆಯನ್ನು ಬಳಸಲು, ಮತ್ತು ಸೀಮಿತ ಚೌಕವನ್ನು (ಬೌಂಡಿಂಗ್ ಬಾಕ್ಸ್) ಕಡಿಮೆ "
"ಮಾಡಲು "
"ಅವುಗಳನ್ನು ಇನ್ನಷ್ಟು ಕ್ರೋಢೀಕರಿಸಲು ಪ್ರಯತ್ನಿಸಿ. ಈ ಸಿದ್ಧತೆಯು ಕೇವಲ ನೈಸರ್ಗಿಕ "
"ಇರಿಸುವಿಕೆ "
"ತಂತ್ರದೊಂದಿಗೆ ಮಾತ್ರ ಕೆಲಸ ಮಾಡುತ್ತದೆ."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Place window captions on top"
msgstr "ಕಿಟಕಿ ತಲೆಬರಹಗಳನ್ನು ಮೇಲೆಯೆ ಇರಿಸು"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
msgid ""
"If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr ""
"ನಿಜವಾದಲ್ಲಿ, ಆಯಾಯ ಅಡಕಚಿತ್ರದ ಮೇಲ್ಭಾಗದಲ್ಲಿ ಕಿಟಕಿ ಶೀರ್ಷಿಕೆಗಳನ್ನು ಇರಿಸಿ, ಆ ಮೂಲಕ "
"ಶೆಲ್‌ನ ಪೂರ್ವನಿಯೋಜಿತವಾದಂತಹ ಕೆಳಭಾಗದಲ್ಲಿ ಇರಿಸುವಿಕೆಯನ್ನು ಅತಿಕ್ರಮಿಸಿದಂತಾಗುತ್ತದೆ. ಈ "
"ಸಿದ್ಧತೆಯನ್ನು ಬದಲಾಯಿಸಿದಲ್ಲಿ ಅದು ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರಲು ಶೆಲ್ ಅನ್ನು ಮರಳಿ ಆರಂಭಿಸುವ "
"ಅಗತ್ಯವಿರುತ್ತದೆ."
#: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
msgid "Places"
msgstr "ಸ್ಥಳಗಳು"
#: ../extensions/places-menu/placeDisplay.js:58
#, c-format
msgid "Failed to launch \"%s\""
msgstr "'%s' ಅನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ"
#: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer"
msgstr "ಗಣಕ"
#: ../extensions/places-menu/placeDisplay.js:201
msgid "Home"
msgstr "ನೆಲೆ"
#: ../extensions/places-menu/placeDisplay.js:288
msgid "Browse Network"
msgstr "ಜಾಲಬಂಧವನ್ನು ವೀಕ್ಷಿಸು"
#: ../extensions/systemMonitor/extension.js:214
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:267
msgid "Memory"
msgstr "ಮೆಮೊರಿ"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "Theme name"
msgstr "ಪರಿಸರವಿನ್ಯಾಸದ ಹೆಸರು"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "~/.themes/name/gnome-shell ಇಂದ ಲೋಡ್ ಮಾಡಬೇಕಿರುವ ಪರಿಸರವಿನ್ಯಾಸದ ಹೆಸರು"
#: ../extensions/window-list/extension.js:92
msgid "Close"
msgstr "ಮುಚ್ಚು"
#: ../extensions/window-list/extension.js:102
msgid "Unminimize"
msgstr "ಕುಗ್ಗಿಸಿದ್ದನ್ನು ಹಿಗ್ಗಿಸು"
#: ../extensions/window-list/extension.js:103
msgid "Minimize"
msgstr "ಕುಗ್ಗಿಸು"
#: ../extensions/window-list/extension.js:109
msgid "Unmaximize"
msgstr "ಹಿಂದಿನ ಸ್ಥಿತಿಗೆ ಮರಳಿಸು"
#: ../extensions/window-list/extension.js:110
msgid "Maximize"
msgstr "ಹಿಗ್ಗಿಸು"
#: ../extensions/window-list/extension.js:270
msgid "Minimize all"
msgstr "ಎಲ್ಲವನ್ನೂ ಕುಗ್ಗಿಸು"
#: ../extensions/window-list/extension.js:278
msgid "Unminimize all"
msgstr "ಎಲ್ಲವನ್ನೂ ಹಿಂದಿನ ಸ್ಥಿತಿಗೆ ಮರಳಿಸು"
#: ../extensions/window-list/extension.js:286
msgid "Maximize all"
msgstr "ಎಲ್ಲವನ್ನೂ ಹಿಗ್ಗಿಸು"
#: ../extensions/window-list/extension.js:295
msgid "Unmaximize all"
msgstr "ಎಲ್ಲವನ್ನೂ ಹಿಂದಿನ ಸ್ಥಿತಿಗೆ ಮರಳಿಸು"
#: ../extensions/window-list/extension.js:304
msgid "Close all"
msgstr "ಎಲ್ಲವನ್ನು ಮುಚ್ಚು"
#: ../extensions/window-list/extension.js:591
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "ಕಾರ್ಯಕ್ಷೇತ್ರ ಸೂಚಿ"
#: ../extensions/window-list/extension.js:743
msgid "Window List"
msgstr "ಕಿಟಕಿ ಪಟ್ಟಿ"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "ಕಿಟಕಿಗಳನ್ನು ಯಾವಾಗ ಗುಂಪುಗೂಡಿಸಬೇಕು"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
msgid ""
"Decides when to group windows from the same application on the window list. "
"Possible values are \"never\", \"auto\" and \"always\"."
msgstr ""
"ಕಿಟಕಿಯ ಪಟ್ಟಿಯಲ್ಲಿ ಒಂದೇ ಅನ್ವಯಗಳ ಕಿಟಕಿಗಳನ್ನು ಯಾವಾಗ ಗುಂಪುಗೂಡಿಸಬೇಕು ಎನ್ನುವುದನ್ನು "
"ಇದು ನಿರ್ಧರಿಸುತ್ತದೆ. "
"ಸಾಧ್ಯವಿರುವ ಮೌಲ್ಯಗಳೆಂದರೆ, \"never\", \"auto\" ಮತ್ತು \"always\""
#: ../extensions/window-list/prefs.js:30
msgid "Window Grouping"
msgstr "ಕಿಟಕಿ ಗುಂಪು ಮಾಡುವಿಕೆ"
#: ../extensions/window-list/prefs.js:49
msgid "Never group windows"
msgstr "ಎಂದಿಗೂ ಕಿಟಕಿಗಳನ್ನು ಗುಂಪುಗೂಡಿಸದಿರು"
#: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "ಸ್ಥಳದ ಮಿತಿ ಇದ್ದಾಗ ಕಿಟಕಿಗಳನ್ನು ಗುಂಪುಗೂಡಿಸು"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows"
msgstr "ಯಾವಾಗಲೂ ಕಿಟಕಿಗಳನ್ನು ಗುಂಪುಗೂಡಿಸು"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "ಕಾರ್ಯಕ್ಷೇತ್ರ ಹೆಸರುಗಳು:"
#: ../extensions/workspace-indicator/prefs.js:152
msgid "Name"
msgstr "ಹೆಸರು"
#: ../extensions/workspace-indicator/prefs.js:186
#, c-format
msgid "Workspace %d"
msgstr "ಕಾರ್ಯಕ್ಷೇತ್ರ %d"
+55 -30
View File
@@ -1,22 +1,24 @@
# Tamil translation for gnome-shell-extensions. # Tamil translation for gnome-shell-extensions.
# Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER # Copyright (C) 2013 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# தங்கமணி அருண் <thangam.arunx@gmail.com>, 2013.
# #
# தங்கமணி அருண் <thangam.arunx@gmail.com>, 2013.
# Shantha kumar <shkumar@redhat.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2013-08-19 13:01+0000\n" "POT-Creation-Date: 2013-11-10 03:36+0000\n"
"PO-Revision-Date: 2013-09-03 16:00+0530\n" "PO-Revision-Date: 2013-11-25 14:00+0530\n"
"Last-Translator: Shantha kumar <shkumar@redhat.com>\n" "Last-Translator: Shantha kumar <shkumar@redhat.com>\n"
"Language-Team: Tamil <ta@li.org>\n" "Language-Team: Tamil <>\n"
"Language: ta\n" "Language: ta\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.4\n" "X-Generator: Lokalize 1.5\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: ../data/gnome-classic.desktop.in.h:1 #: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1 #: ../data/gnome-classic.session.desktop.in.in.h:1
@@ -43,17 +45,25 @@ msgstr "சேய் உரையாடலை பெற்றோர் சா
msgid "" msgid ""
"This key overrides the key in org.gnome.mutter when running GNOME Shell." "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgstr "" msgstr ""
"இந்த திறப்பானது GNOME செல்லை இயக்கும் போது, org.gnome.mutter இல் உள்ள திறப்பைப் " "இந்த திறப்பானது GNOME செல்லை இயக்கும் போது, org.gnome.mutter இல் உள்ள "
"திறப்பைப் "
"புறக்கணிக்கிறது." "புறக்கணிக்கிறது."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Enable edge tiling when dropping windows on screen edges" msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "சாளரங்களை திரை விளிம்புகளில் விடும் போது, விளிம்பு சட்டமாக்கலை செயற்படுத்து" msgstr ""
"சாளரங்களை திரை விளிம்புகளில் விடும் போது, விளிம்பு சட்டமாக்கலை செயற்படுத்து"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid "Workspaces only on primary monitor" msgid "Workspaces only on primary monitor"
msgstr "முதன்மை திரையில் மட்டும் பணியிடங்கள்" msgstr "முதன்மை திரையில் மட்டும் பணியிடங்கள்"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"சொடுக்கி பயன்முறையில் சுட்டி நகர்வது நிற்கும் வரை கவனப் பகுதி மாறுவதைத் "
"தாமதிக்கவும்"
#: ../extensions/alternate-tab/prefs.js:20 #: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only" msgid "Thumbnail only"
msgstr "சிறுபடம் மட்டும்" msgstr "சிறுபடம் மட்டும்"
@@ -82,7 +92,7 @@ msgstr "செயல்பாடுகளின் கண்ணோட்ட
msgid "Favorites" msgid "Favorites"
msgstr "பிடித்தவை" msgstr "பிடித்தவை"
#: ../extensions/apps-menu/extension.js:278 #: ../extensions/apps-menu/extension.js:282
msgid "Applications" msgid "Applications"
msgstr "பயன்பாடுகள்" msgstr "பயன்பாடுகள்"
@@ -95,7 +105,8 @@ msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
msgstr "" msgstr ""
"பயன்பாட்டு id (பணிமேடை கோப்பு பெயர்), அதைத்தொடர்ந்து ஒரு முக்காற் குறி மற்றும் பணியிட " "பயன்பாட்டு id (பணிமேடை கோப்பு பெயர்), அதைத்தொடர்ந்து ஒரு முக்காற் குறி "
"மற்றும் பணியிட "
"எண் ஆகியவற்றைக் கொண்டிருக்கும் சரங்களின் பட்டியல்" "எண் ஆகியவற்றைக் கொண்டிருக்கும் சரங்களின் பட்டியல்"
#: ../extensions/auto-move-windows/prefs.js:55 #: ../extensions/auto-move-windows/prefs.js:55
@@ -120,7 +131,7 @@ msgid "Add"
msgstr "சேர்" msgstr "சேர்"
#: ../extensions/drive-menu/extension.js:73 #: ../extensions/drive-menu/extension.js:73
#, c-format #, javascript-format
msgid "Ejecting drive '%s' failed:" msgid "Ejecting drive '%s' failed:"
msgstr "இயக்கியை '%s' வெளித்தள்ளுவதில் தோல்வியடைந்தது:" msgstr "இயக்கியை '%s' வெளித்தள்ளுவதில் தோல்வியடைந்தது:"
@@ -145,19 +156,20 @@ msgid ""
"If not empty, it contains the text that will be shown when clicking on the " "If not empty, it contains the text that will be shown when clicking on the "
"panel." "panel."
msgstr "" msgstr ""
"காலியாக இல்லாவிட்டால், பலகத்தின் மீது சொடுக்கும் போது காண்பிக்கப்படும் உரையைக் " "காலியாக இல்லாவிட்டால், பலகத்தின் மீது சொடுக்கும் போது காண்பிக்கப்படும் "
"உரையைக் "
"கொண்டிருக்கும்." "கொண்டிருக்கும்."
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30 #: ../extensions/example/prefs.js:30
msgid "" msgid ""
"Example aims to show how to build well behaved extensions for the Shell and " "Example aims to show how to build well behaved extensions for the Shell and "
"as such it has little functionality on its own.\n" "as such it has little functionality on its own.\n"
"Nevertheless it's possible to customize the greeting message." "Nevertheless it's possible to customize the greeting message."
msgstr "" msgstr ""
"செல்லுக்கான சிறப்பாக செயல்படும் நீட்சிகளை எப்படி திறம்பட கட்டமைப்பது என்பதைக் காண்பிப்பதே " "செல்லுக்கான சிறப்பாக செயல்படும் நீட்சிகளை எப்படி திறம்பட கட்டமைப்பது என்பதைக் "
"Example இன் குறிக்கோளாகும் மேலும் அதுவும் மிகக் குறைந்த செயலம்சத்தையே கொண்டுள்ளது.\n" "காண்பிப்பதே "
"Example இன் குறிக்கோளாகும் மேலும் அதுவும் மிகக் குறைந்த செயலம்சத்தையே "
"கொண்டுள்ளது.\n"
"இருப்பினும், வாழ்த்துச்செய்தியை தனிப்பயனாக்கம் செய்யமுடியும்." "இருப்பினும், வாழ்த்துச்செய்தியை தனிப்பயனாக்கம் செய்யமுடியும்."
#: ../extensions/example/prefs.js:36 #: ../extensions/example/prefs.js:36
@@ -174,9 +186,12 @@ msgid ""
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"திரையின் தன்மை விகிதத்திற்கு ஏற்ப தகவமைப்பதன் மூலமும் சாளர சிறுபடங்களை உட்கொண்டிருக்கும் " "திரையின் தன்மை விகிதத்திற்கு ஏற்ப தகவமைப்பதன் மூலமும் சாளர சிறுபடங்களை "
"பெட்டியை மேலும் குறைப்பதற்காக அவற்றை வகைபிரித்தமைப்பதன் மூலமும் சாளர சிறுபடங்களை " "உட்கொண்டிருக்கும் "
"வைப்பதற்கு அதிக திரையைப் பயன்படுத்தவும். இந்த அமைவு இயல்பான இடவமைத்தல் உத்திக்கு மட்டுமே " "பெட்டியை மேலும் குறைப்பதற்காக அவற்றை வகைபிரித்தமைப்பதன் மூலமும் சாளர "
"சிறுபடங்களை "
"வைப்பதற்கு அதிக திரையைப் பயன்படுத்தவும். இந்த அமைவு இயல்பான இடவமைத்தல் "
"உத்திக்கு மட்டுமே "
"பொருந்தும்." "பொருந்தும்."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
@@ -189,30 +204,33 @@ msgid ""
"shell default of placing it at the bottom. Changing this setting requires " "shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect." "restarting the shell to have any effect."
msgstr "" msgstr ""
"true என இருப்பின், சாளர தலைப்புகளை அடிப்பகுதியில் வைக்கும் செல்லின் முன்னிருப்பான " "true என இருப்பின், சாளர தலைப்புகளை அடிப்பகுதியில் வைக்கும் செல்லின் "
"குணத்தைப் புறக்கணித்து, சாளர தலைப்புகளை அந்தந்த சிறுபடத்தின் மேல் பகுதியில் வைக்கும். இந்த " "முன்னிருப்பான "
"அமைவில் மாற்றம் செய்தால், மாற்றம் விளைவை ஏற்படத்த செல்லை மறுதொடக்கம் செய்ய வேண்டும்." "குணத்தைப் புறக்கணித்து, சாளர தலைப்புகளை அந்தந்த சிறுபடத்தின் மேல் பகுதியில் "
"வைக்கும். இந்த "
"அமைவில் மாற்றம் செய்தால், மாற்றம் விளைவை ஏற்படுத்த செல்லை மறுதொடக்கம் செய்ய "
"வேண்டும்."
#: ../extensions/places-menu/extension.js:78 #: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81 #: ../extensions/places-menu/extension.js:81
msgid "Places" msgid "Places"
msgstr "இடங்கள்" msgstr "இடங்கள்"
#: ../extensions/places-menu/placeDisplay.js:56 #: ../extensions/places-menu/placeDisplay.js:58
#, c-format #, javascript-format
msgid "Failed to launch \"%s\"" msgid "Failed to launch \"%s\""
msgstr "\"%s\" ஐத் தொடங்குவதில் தோல்வியடைந்தது" msgstr "\"%s\" ஐத் தொடங்குவதில் தோல்வியடைந்தது"
#: ../extensions/places-menu/placeDisplay.js:98 #: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:121 #: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer" msgid "Computer"
msgstr "கணினி" msgstr "கணினி"
#: ../extensions/places-menu/placeDisplay.js:199 #: ../extensions/places-menu/placeDisplay.js:201
msgid "Home" msgid "Home"
msgstr "இல்லம்" msgstr "இல்லம்"
#: ../extensions/places-menu/placeDisplay.js:286 #: ../extensions/places-menu/placeDisplay.js:288
msgid "Browse Network" msgid "Browse Network"
msgstr "பிணையத்தை உலாவு" msgstr "பிணையத்தை உலாவு"
@@ -277,6 +295,11 @@ msgstr "அனைத்தையும் மூடு"
msgid "Workspace Indicator" msgid "Workspace Indicator"
msgstr "பணியிடம் காட்டி" msgstr "பணியிடம் காட்டி"
#: ../extensions/window-list/extension.js:743
#| msgid "Window Grouping"
msgid "Window List"
msgstr "சாளர பட்டியல்"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1 #: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows" msgid "When to group windows"
msgstr "சாளரங்களை எப்பொழுது குழுவாக்க வேண்டும்" msgstr "சாளரங்களை எப்பொழுது குழுவாக்க வேண்டும்"
@@ -286,8 +309,10 @@ msgid ""
"Decides when to group windows from the same application on the window list. " "Decides when to group windows from the same application on the window list. "
"Possible values are \"never\", \"auto\" and \"always\"." "Possible values are \"never\", \"auto\" and \"always\"."
msgstr "" msgstr ""
"சாளர பட்டியலில், ஒரே பயன்பாட்டுக்கு உரிய சாளரங்களை எப்போது குழுவாக்க வேண்டும் என " "சாளர பட்டியலில், ஒரே பயன்பாட்டுக்கு உரிய சாளரங்களை எப்போது குழுவாக்க வேண்டும் "
"முடிவுச்செய்கிறது. சாத்தியமான மதிப்புகள் \"ஒருபோதும் வேண்டாம்\", \"தானாக\" மற்றும் " "என "
"முடிவுச்செய்கிறது. சாத்தியமான மதிப்புகள் \"ஒருபோதும் வேண்டாம்\", \"தானாக\" "
"மற்றும் "
"\"எப்பொழுதும்\"." "\"எப்பொழுதும்\"."
#: ../extensions/window-list/prefs.js:30 #: ../extensions/window-list/prefs.js:30
@@ -315,7 +340,7 @@ msgid "Name"
msgstr "பெயர்" msgstr "பெயர்"
#: ../extensions/workspace-indicator/prefs.js:186 #: ../extensions/workspace-indicator/prefs.js:186
#, c-format #, javascript-format
msgid "Workspace %d" msgid "Workspace %d"
msgstr "பணியிடம் %d" msgstr "பணியிடம் %d"
+287 -203
View File
@@ -2,271 +2,355 @@
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER # Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package. # This file is distributed under the same license as the gnome-shell-extensions package.
# Praveen Illa <mail2ipn@gmail.com>, 2011. # Praveen Illa <mail2ipn@gmail.com>, 2011.
# # Krishnababu Krothapalli <kkrothap@redhat.com>, 2013.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-" "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n" "shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2011-09-19 17:46+0000\n" "POT-Creation-Date: 2013-11-25 08:31+0000\n"
"PO-Revision-Date: 2011-09-25 15:01+0530\n" "PO-Revision-Date: 2013-10-01 04:16-0400\n"
"Last-Translator: Praveen Illa <mail2ipn@gmail.com>\n" "Last-Translator: Krishnababu Krothapalli <kkrothap@redhat.com>\n"
"Language-Team: Telugu <indlinux-telugu@lists.sourceforge.net>\n" "Language-Team: Telugu <kde-i18n-doc@kde.org>\n"
"Language: te\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Zanata 3.1.2\n"
#: ../extensions/alternative-status-menu/extension.js:44 #: ../data/gnome-classic.desktop.in.h:1
msgid "Notifications" #: ../data/gnome-classic.session.desktop.in.in.h:1
msgstr "ప్రకటనలు" msgid "GNOME Classic"
msgstr "గ్నోమ్ క్లాసిక్"
#: ../extensions/alternative-status-menu/extension.js:52 #: ../data/gnome-classic.desktop.in.h:2
msgid "Online Accounts" msgid "This session logs you into GNOME Classic"
msgstr "ఆన్‌లైన్ ఖాతాలు" msgstr "ఈ సెషన్ గ్నోమ్‌ క్లాసిక్ లోనికి లాగ్ చేస్తుంది"
#: ../extensions/alternative-status-menu/extension.js:56 #: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "System Settings" msgid "GNOME Shell Classic"
msgstr "వ్యవస్థ అమరికలు" msgstr "గ్నోమ్ షెల్ క్లాసిక్"
#: ../extensions/alternative-status-menu/extension.js:63 #: ../data/gnome-shell-classic.desktop.in.in.h:2
msgid "Lock Screen" msgid "Window management and application launching"
msgstr "తెరకు తాళంవేయి" msgstr "కిటికీ నిర్వాహణ మరియు అనువర్తనము ప్రారంభించుట"
#: ../extensions/alternative-status-menu/extension.js:68 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Switch User" msgid "Attach modal dialog to the parent window"
msgstr "వాడుకరిని మార్చు" msgstr "పేరెంట్ విండోనకు మోడల్ డైలాగ్ అనుబందించు"
#: ../extensions/alternative-status-menu/extension.js:73 #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid "Log Out..."
msgstr "నిష్క్రమించు..."
#: ../extensions/alternative-status-menu/extension.js:81
msgid "Suspend"
msgstr "తాత్కాలికంగా నిలిపివేయి"
#: ../extensions/alternative-status-menu/extension.js:87
msgid "Hibernate"
msgstr "సుప్తావస్థ"
#: ../extensions/alternative-status-menu/extension.js:93
msgid "Power Off..."
msgstr "విద్యుత్ ఆపు..."
#: ../extensions/alternate-tab/extension.js:44
msgid "" msgid ""
"This is the first time you use the Alternate Tab extension. \n" "This key overrides the key in org.gnome.mutter when running GNOME Shell."
"Please choose your preferred behaviour:\n" msgstr "గ్నోమ్ షెల్ నందు నడుచునప్పుడు ఈ కీ org.gnome.mutter నందలి కీను వోవర్‌రైడ్ చేయును."
"\n"
"All & Thumbnails:\n" #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
" This mode presents all applications from all workspaces in one " msgid "Enable edge tiling when dropping windows on screen edges"
"selection \n" msgstr "తెర అంచులనందు విండోలను విడువునప్పుడు ఎడ్జ్ టైటిలింగ్ చేతనం చేయి"
" list. Instead of using the application icon of every window, it uses "
"small \n" #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
" thumbnails resembling the window itself. \n" msgid "Workspaces only on primary monitor"
"\n" msgstr "ప్రాధమిక మానిటర్ పైని కార్యక్షేత్రాలు మాత్రమే"
"Workspace & Icons:\n"
" This mode let's you switch between the applications of your current \n" #: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
" workspace and gives you additionally the option to switch to the last " msgid "Delay focus changes in mouse mode until the pointer stops moving"
"used \n"
" application of your previous workspace. This is always the last symbol "
"in \n"
" the list and is segregated by a separator/vertical line if available. \n"
" Every window is represented by its application icon. \n"
"\n"
"Native:\n"
" This mode is the native GNOME 3 behaviour or in other words: Clicking \n"
" native switches the Alternate Tab extension off. \n"
msgstr "" msgstr ""
#: ../extensions/alternate-tab/extension.js:269 #: ../extensions/alternate-tab/prefs.js:20
msgid "Alt Tab Behaviour" msgid "Thumbnail only"
msgstr "" msgstr "థంబ్‌నెయిల్ మాత్రమే"
#: ../extensions/alternate-tab/extension.js:285 #: ../extensions/alternate-tab/prefs.js:21
msgid "All & Thumbnails" msgid "Application icon only"
msgstr "అన్నీ & చిరుచిత్రాలు" msgstr "అనువర్తనం ప్రతిమ మాత్రమే"
#: ../extensions/alternate-tab/extension.js:292 #: ../extensions/alternate-tab/prefs.js:22
msgid "Workspace & Icons" msgid "Thumbnail and application icon"
msgstr "కార్యక్షేత్రం & ప్రతీకలు" msgstr "థంబ్‌నెయిల్ మరియు అనువర్తనం ప్రతిమ"
#: ../extensions/alternate-tab/extension.js:299 #: ../extensions/alternate-tab/prefs.js:37
msgid "Native" msgid "Present windows as"
msgstr "" msgstr "విండోలు ఇలా ప్రజంట్ చేయి"
#: ../extensions/alternate-tab/extension.js:306 #: ../extensions/alternate-tab/prefs.js:62
msgid "Cancel" msgid "Show only windows in the current workspace"
msgstr "రద్దుచేయి" msgstr "‌విండోలను ప్రస్తుత పనిస్థలం నందు మాత్రమే చూపుము"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1 #: ../extensions/apps-menu/extension.js:39
msgid "Ask the user for a default behaviour if true." msgid "Activities Overview"
msgstr "" msgstr "కార్యకలాపాల పై పై పరిశీలనను చూపించు"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2 #: ../extensions/apps-menu/extension.js:113
msgid "Indicates if Alternate Tab is newly installed" msgid "Favorites"
msgstr "" msgstr "ఇష్టాలు"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:3 #: ../extensions/apps-menu/extension.js:282
msgid "" msgid "Applications"
"Sets the Alt-Tab behaviour. Possible values are: native, all_thumbnails and " msgstr "అనువర్తనాలు"
"workspace_icons."
msgstr ""
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:4
msgid "The alt tab behaviour."
msgstr ""
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1 #: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
msgid "Application and workspace list"
msgstr "అనువర్తన మరియు కార్యక్షేత్రాల జాబితా"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2
msgid "" msgid ""
"A list of strings, each containing an application id (desktop file name), " "A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number" "followed by a colon and the workspace number"
msgstr "" msgstr ""
"స్ట్రింగ్స్ జాబితా, ప్రతిదీ వొక అనువర్తనం ఐడి (డిస్కుటాప్ ఫైల్ పేరు)ను, వెంటనే కోలన్ మరియు పనిస్థలం సంఖ్యతో"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:2 #: ../extensions/auto-move-windows/prefs.js:55
msgid "Application and workspace list" msgid "Application"
msgstr "అనువర్తన మరియు కార్యక్షేత్రాల జాబితా" msgstr "అనువర్తన"
#: ../extensions/dock/extension.js:486 #: ../extensions/auto-move-windows/prefs.js:64
msgid "Drag here to add favorites" #: ../extensions/auto-move-windows/prefs.js:106
msgstr "ఇష్టాంశాలకు జతచేయడానికి ఇక్కడ లాగి వదలండి" msgid "Workspace"
msgstr "పనిస్థలం"
#: ../extensions/dock/extension.js:820 #: ../extensions/auto-move-windows/prefs.js:80
msgid "New Window" msgid "Add rule"
msgstr "కొత్త విండో" msgstr "నియమాన్ని జతచేయి"
#: ../extensions/dock/extension.js:822 #: ../extensions/auto-move-windows/prefs.js:94
msgid "Quit Application" msgid "Create new matching rule"
msgstr "అనువర్తనము నిష్క్రమించు" msgstr "పోల్చే నియమం కొత్తది సృష్టించు"
#: ../extensions/dock/extension.js:827 #: ../extensions/auto-move-windows/prefs.js:98
msgid "Remove from Favorites" msgid "Add"
msgstr "ఇష్టాంశాల నుండి తీసివేయి" msgstr "చేర్చు"
#: ../extensions/dock/extension.js:828 #: ../extensions/drive-menu/extension.js:73
msgid "Add to Favorites" msgid "Ejecting drive '%s' failed:"
msgstr "ఇష్టాంశాలకు జతచేయి" msgstr "'%s' డ్రైవ్ బయటకునెట్టుట విఫలమైంది:"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1 #: ../extensions/drive-menu/extension.js:90
msgid "Autohide duration" msgid "Removable devices"
msgstr "స్వయంగాదాగు నిడివి" msgstr "తీసివేయదగ్గ పరికరాలు"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2 #: ../extensions/drive-menu/extension.js:117
msgid "Autohide effect" msgid "Open File"
msgstr "స్వయందాగు ప్రభావం" msgstr "ఫైలు తెరువు"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:3 #: ../extensions/example/extension.js:17
msgid "Enable/disable autohide"
msgstr "స్వయందాగుటను చేతనపరుచు/అచేతనపరుచు"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
msgid "Icon size"
msgstr "ప్రతీక పరిమాణం"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
msgid "Position of the dock"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
msgid "Sets icon size of the dock."
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:7
msgid ""
"Sets the effect of the hide dock. Allowed values are 'resize' or 'rescale'"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:8
msgid ""
"Sets the position of the dock in the screen. Allowed values are 'right' or "
"'left'"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:9
msgid "Sets the time duration of the autohide effect."
msgstr "స్వయందాగు ప్రభావం యొక్క సమయ పరిధిని అమర్చును."
#: ../extensions/example/extension.js:11
msgid "Hello, world!" msgid "Hello, world!"
msgstr "హలో, ప్రపంచమా!" msgstr "హలో, ప్రపంచమా!"
#: ../extensions/gajim/extension.js:227 #: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
#, c-format msgid "Alternative greeting text."
msgid "%s is away." msgstr "ప్రత్యామ్నాయ గ్రీటింగ్ పాఠం."
msgstr "%s దూరంగావున్నారు."
#: ../extensions/gajim/extension.js:230 #: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
#, c-format msgid ""
msgid "%s is offline." "If not empty, it contains the text that will be shown when clicking on the "
msgstr "%s ఆఫ్‌లైనులోవున్నారు." "panel."
msgstr "ఒకవేళ ఖాళీ కాకపోతే, అది పానల్ పైన నొక్కినప్పుడు చూపించబడు పాఠం కలిగివుంటుంది."
#: ../extensions/gajim/extension.js:233 #: ../extensions/example/prefs.js:30
#, c-format msgid ""
msgid "%s is online." "Example aims to show how to build well behaved extensions for the Shell and "
msgstr "%s ఆన్‌లైనులోవున్నారు." "as such it has little functionality on its own.\n"
"Nevertheless it's possible to customize the greeting message."
msgstr ""
"ఉదాహరణ అనునది సరిగా ప్రవర్తించే పొడిగింతలను షెల్ కొరకు యెలా నిర్మించాలో చూపటానికి వుద్దేశించింది అది కొంత "
"దాని స్వంత ఫంక్షనాలిటీను కలిగివుంటుంది.\n"
"అయితే అభినందనలు తెలియజేసే సందేశాన్ని మలచుకోవడం సాధ్యమే."
#: ../extensions/gajim/extension.js:236 #: ../extensions/example/prefs.js:36
#, c-format msgid "Message:"
msgid "%s is busy." msgstr "సందేశం:"
msgstr "%s తీరికలేకుండావున్నారు."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "" msgid "Use more screen for windows"
"If true, place window captions on top the respective thumbnail, overriding " msgstr "విండోల కొరకు ఎక్కువ తెరను వాడు"
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr ""
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
msgid "Place window captions on top"
msgstr ""
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid ""
"The algorithm used to layout thumbnails in the overview. 'grid' to use the "
"default grid based algorithm, 'natural' to use another one that reflects "
"more the position and size of the actual window"
msgstr ""
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
msgid "" msgid ""
"Try to use more screen for placing window thumbnails by adapting to screen " "Try to use more screen for placing window thumbnails by adapting to screen "
"aspect ratio, and consolidating them further to reduce the bounding box. " "aspect ratio, and consolidating them further to reduce the bounding box. "
"This setting applies only with the natural placement strategy." "This setting applies only with the natural placement strategy."
msgstr "" msgstr ""
"స్క్రీన్ ఏస్పెక్ట్ రేషియో ను ఆపాదించుకుంటూ విండో థంబ్‌నెయిల్స్ వుంచుటకు మరింత స్క్రీన్‌ వుపయోగించుటకు "
"ప్రయత్నించుము, మరియు వాటిని ఇంకా వొకటిగా కూర్చుతూ బౌండింగ్ బాక్స్ తగ్గించు. ఈ అమర్పులు నాచురల్ "
"ప్లేస్‌మెంట్ స్ట్రాటజీ తో మాత్రమే వర్తించబడును."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:5 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Use more screen for windows" msgid "Place window captions on top"
msgstr "విండోొరకు ఎక్కువ తెరను వాడు" msgstr "విండో కాప్షన్లను పైన వుంచుము"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:6 #: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:4
msgid "Window placement strategy" msgid ""
"If true, place window captions on top the respective thumbnail, overriding "
"shell default of placing it at the bottom. Changing this setting requires "
"restarting the shell to have any effect."
msgstr "" msgstr ""
"ఒకవేళ నిజమైతే, సంభందిత థంబ్‌నెయిల్ పైన విండో కాప్షన్లు వుంచును, షెల్ అప్రమేయంగా కింద వుంచడం వోవర్‌రైడ్ "
"చేయబడును. ఈ అమర్పు ప్రభావితం కావడానికి షెల్ పునఃప్రారంభించవలసి వుంటుంది."
#: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
msgid "Places"
msgstr "స్థలములు"
#: ../extensions/places-menu/placeDisplay.js:58
msgid "Failed to launch \"%s\""
msgstr "\"%s\" ప్రారంభించుటలో విఫలమైంది"
#: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:123
msgid "Computer"
msgstr "కంప్యూటర్"
#: ../extensions/places-menu/placeDisplay.js:201
msgid "Home"
msgstr "నివాసం"
#: ../extensions/places-menu/placeDisplay.js:288
msgid "Browse Network"
msgstr "నెట్‌వర్కులో విహరించు"
#: ../extensions/systemMonitor/extension.js:214
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:267
msgid "Memory"
msgstr "మెమొరి"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1 #: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "థీము యొక్క పేరు ~/.themes/name/gnome-shell నుండి ఎక్కించబడును"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
msgid "Theme name" msgid "Theme name"
msgstr "థీము పేరు" msgstr "థీము పేరు"
#: ../extensions/xrandr-indicator/extension.js:26 #: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:2
msgid "Normal" msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "సాధారణ" msgstr "థీము యొక్క పేరు ~/.themes/name/gnome-shell నుండి ఎక్కించబడును"
#: ../extensions/xrandr-indicator/extension.js:27 #: ../extensions/window-list/extension.js:92
msgid "Left" msgid "Close"
msgstr "ఎడమ"
#: ../extensions/xrandr-indicator/extension.js:28
msgid "Right"
msgstr "కుడి"
#: ../extensions/xrandr-indicator/extension.js:29
msgid "Upside-down"
msgstr "" msgstr ""
#: ../extensions/xrandr-indicator/extension.js:78 #: ../extensions/window-list/extension.js:102
msgid "Configure display settings..." msgid "Unminimize"
msgstr "ప్రదర్శన అమరికలను స్వరూపించు..." msgstr ""
#: ../extensions/window-list/extension.js:103
msgid "Minimize"
msgstr ""
#: ../extensions/window-list/extension.js:109
msgid "Unmaximize"
msgstr ""
#: ../extensions/window-list/extension.js:110
msgid "Maximize"
msgstr ""
#: ../extensions/window-list/extension.js:270
msgid "Minimize all"
msgstr ""
#: ../extensions/window-list/extension.js:278
msgid "Unminimize all"
msgstr ""
#: ../extensions/window-list/extension.js:286
msgid "Maximize all"
msgstr ""
#: ../extensions/window-list/extension.js:295
msgid "Unmaximize all"
msgstr ""
#: ../extensions/window-list/extension.js:304
msgid "Close all"
msgstr ""
#: ../extensions/window-list/extension.js:591
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "పనిస్థలం సూచకి"
#: ../extensions/window-list/extension.js:743
#, fuzzy
msgid "Window List"
msgstr "విండో సమూహికీకరణ"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "విండోలను ఎప్పుడు సమూహం చేయాలి"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
msgid ""
"Decides when to group windows from the same application on the window list. "
"Possible values are \"never\", \"auto\" and \"always\"."
msgstr ""
"విండోజాబితాలో ఒకే రకమైన అప్లకేషన్ నుండి వచ్చిన విండోలను ఎప్పుడు సమూహం చేయాలో నిర్ణయిస్తుంది. సాధ్యమైన "
"విలువలు \"ఎప్పటికివద్దు\", \"స్వయంచాలకంగా\" మరియు \"ఎల్లప్పుడు\"."
#: ../extensions/window-list/prefs.js:30
msgid "Window Grouping"
msgstr "విండో సమూహికీకరణ"
#: ../extensions/window-list/prefs.js:49
msgid "Never group windows"
msgstr "విండోలను ఎప్పుడూ సమూహం చేయవద్దు"
#: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "స్థాలము పరిమితంగా ఉన్నప్పడు విండోలను సమూహం చేయుము"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows"
msgstr "విండోలను ఎల్లప్పుడు సమూహం చేయాలి"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "పనిస్థలం పేర్లు:"
#: ../extensions/workspace-indicator/prefs.js:152
msgid "Name"
msgstr "పేరు"
#: ../extensions/workspace-indicator/prefs.js:186
msgid "Workspace %d"
msgstr "పనిస్థలం %d"
#~ msgid "Suspend"
#~ msgstr "తాత్కాలికంగా నిలిపివేయి"
#~ msgid "Hibernate"
#~ msgstr "సుప్తావస్థ"
#~ msgid "Power Off"
#~ msgstr "విద్యుత్ ఆపు"
#~ msgid "Enable suspending"
#~ msgstr "రద్దుచేయుట చేతనంచేయి"
#~ msgid "Control the visibility of the Suspend menu item"
#~ msgstr "రద్దుచేసిన మెనూ అంశం కనిపించుటను నియంత్రించు"
#~ msgid "Enable hibernating"
#~ msgstr "హెబర్నేటింగ్ చేతనంచేయి"
#~ msgid "Control the visibility of the Hibernate menu item"
#~ msgstr "హైబర్నేట్ మెనూ అంశం కనిపించుటకు నియంత్రించు"
#~ msgid "Normal"
#~ msgstr "సాధారణ"
#~ msgid "Left"
#~ msgstr "ఎడమ"
#~ msgid "Right"
#~ msgstr "కుడి"
#~ msgid "Upside-down"
#~ msgstr "తలక్రిందులుగా"
#~ msgid "Display"
#~ msgstr "ప్రదర్శించు"
#~ msgid "Display Settings"
#~ msgstr "అమర్పులు ప్రదర్శించు"