Compare commits

..

20 Commits

Author SHA1 Message Date
Florian Müllner
d421eff477 Bump version to 3.13.92
To go along GNOME Shell 3.13.92
2014-09-17 07:05:54 +02:00
Florian Müllner
8696067186 screenshot-window-sizer: Do not translate schema for now
It's not worth a string freeze break, we can revert after the freeze
has been lifted ...
2014-09-17 07:05:22 +02:00
Florian Müllner
1d5ab0f0de screenshot-window-sizer: New extension
Originally from hughsie's github[0], but way too useful to leave
in a 3rd party repo :-)

[0] https://github.com/hughsie/gnome-shell-extension-screenshot-window-sizer

https://bugzilla.gnome.org/show_bug.cgi?id=736470
2014-09-17 07:05:22 +02:00
Sandeep Sheshrao Shedmake
162ece1bba Added mr to LINGUAS file && Updated Marathi Translations 2014-09-17 09:13:00 +05:30
Sandeep Sheshrao Shedmake
d8974faa65 Added mr in LINGUAS && Updated Marathi Translations 2014-09-17 09:02:33 +05:30
Muhammet Kara
be38e343cd Updated Turkish translation 2014-09-16 11:43:50 +00:00
Umarzuki Bin Mochlis Moktar
88f2eef2b2 Added Malay translation 2014-09-16 06:45:37 +00:00
Shantha kumar
04e5c1da9e Updated Tamil translation 2014-09-15 06:56:42 +00:00
Wolfgang Stöggl
f48055f331 Updated German translation 2014-09-14 17:58:55 +00:00
Pawan Chitrakar
3a484a9988 Added Nepali translation 2014-09-14 17:53:38 +00:00
Ask Hjorth Larsen
3fd977779f Updated Danish translation 2014-09-11 21:56:47 +00:00
Florian Müllner
191c7ccc24 window-list: Do not add sticky windows more than once
When a window's on-all-workspaces property changes to true, the
workspaces the window was not located on will emit the ::window-added
signal for the window; however we don't want multiple buttons for
the same window, so filter out the extra calls.

https://bugzilla.gnome.org/show_bug.cgi?id=736398
2014-09-11 12:13:10 +02:00
Dušan Kazik
f77e38e771 Updated Slovak translation 2014-09-10 06:58:11 +00:00
Mattias Eriksson
4c53d9b143 Updated Swedish translation 2014-09-09 19:10:31 +00:00
Krishnababu Krothapalli
4164422156 Updated Telugu translations 2014-09-09 16:27:00 +05:30
Krishnababu Krothapalli
28d0d9e9bc Updated Telugu Translations 2014-09-09 15:09:19 +05:30
A S Alam
e40ac33fb2 update Punjabi Translation - back for 3.14 2014-09-08 21:15:34 -05:00
Ville-Pekka Vainio
631ac48a4e Finnish translation update by Jiri Grönroos 2014-09-07 13:41:18 +03:00
Changwoo Ryu
a8b2746089 Updated Korean translation 2014-09-05 07:14:36 +09:00
Piotr Drąg
6e53f579dd Updated Polish translation 2014-09-03 16:25:25 +02:00
23 changed files with 2038 additions and 612 deletions

6
NEWS
View File

@@ -1,3 +1,9 @@
3.13.92
=======
* new extension: screenshot-window-sizer
* window-list: Don't add sticky windows more than once
* updated translations (da, de, fi, ko, mr, ms, ne, pa, pl, sk, sv, ta, te, tr)
3.13.91
=======
* window-list: restore fitts'ability of workspace button

View File

@@ -1,5 +1,5 @@
AC_PREREQ(2.63)
AC_INIT([gnome-shell-extensions],[3.13.91],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_INIT([gnome-shell-extensions],[3.13.92],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([config])
@@ -28,7 +28,7 @@ AC_SUBST([SHELL_VERSION])
dnl keep this in alphabetic order
CLASSIC_EXTENSIONS="apps-menu places-menu alternate-tab launch-new-instance window-list"
DEFAULT_EXTENSIONS="$CLASSIC_EXTENSIONS drive-menu windowsNavigator workspace-indicator"
DEFAULT_EXTENSIONS="$CLASSIC_EXTENSIONS drive-menu screenshot-window-sizer windowsNavigator workspace-indicator"
ALL_EXTENSIONS="$DEFAULT_EXTENSIONS auto-move-windows example native-window-placement systemMonitor user-theme"
AC_SUBST(CLASSIC_EXTENSIONS, [$CLASSIC_EXTENSIONS])
AC_SUBST(ALL_EXTENSIONS, [$ALL_EXTENSIONS])
@@ -66,7 +66,7 @@ for e in $enable_extensions; do
[AC_MSG_WARN([libgtop-2.0 not found, disabling systemMonitor])])
;;
dnl keep this in alphabetic order
alternate-tab|apps-menu|auto-move-windows|drive-menu|example|launch-new-instance|native-window-placement|places-menu|user-theme|window-list|windowsNavigator|workspace-indicator)
alternate-tab|apps-menu|auto-move-windows|drive-menu|example|launch-new-instance|native-window-placement|places-menu|screenshot-window-sizer|user-theme|window-list|windowsNavigator|workspace-indicator)
ENABLED_EXTENSIONS="$ENABLED_EXTENSIONS $e"
;;
*)
@@ -87,6 +87,7 @@ AC_CONFIG_FILES([
extensions/launch-new-instance/Makefile
extensions/native-window-placement/Makefile
extensions/places-menu/Makefile
extensions/screenshot-window-sizer/Makefile
extensions/systemMonitor/Makefile
extensions/user-theme/Makefile
extensions/window-list/Makefile

View File

@@ -0,0 +1,4 @@
EXTENSION_ID = screenshot-window-sizer
include ../../extension.mk
include ../../settings.mk

View File

@@ -0,0 +1,147 @@
/* Screenshot Window Sizer for Gnome Shell
*
* Copyright (c) 2013 Owen Taylor <otaylor@redhat.com>
* Copyright (c) 2013 Richard Hughes <richard@hughsie.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
const Gio = imports.gi.Gio;
const Meta = imports.gi.Meta;
const Shell = imports.gi.Shell;
const St = imports.gi.St;
const Main = imports.ui.main;
const Tweener = imports.ui.tweener;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience;
const MESSAGE_FADE_TIME = 2;
let text, button;
function hideMessage() {
text.destroy();
text = null;
}
function flashMessage(message) {
if (!text) {
text = new St.Label({ style_class: 'screenshot-sizer-message' });
Main.uiGroup.add_actor(text);
}
Tweener.removeTweens(text);
text.text = message;
text.opacity = 255;
let monitor = Main.layoutManager.primaryMonitor;
text.set_position(monitor.x + Math.floor(monitor.width / 2 - text.width / 2),
monitor.y + Math.floor(monitor.height / 2 - text.height / 2));
Tweener.addTween(text,
{ opacity: 0,
time: MESSAGE_FADE_TIME,
transition: 'easeOutQuad',
onComplete: hideMessage });
}
let SIZES = [
[624, 351],
[800, 450],
[1024, 576],
[1200, 675],
[1600, 900]
];
function cycleScreenshotSizes(display, screen, window, binding) {
// Probably this isn't useful with 5 sizes, but you can decrease instead
// of increase by holding down shift.
let modifiers = binding.get_modifiers();
let backwards = (modifiers & Meta.VirtualModifier.SHIFT_MASK) != 0;
// Unmaximize first
if (window.maximized_horizontally || window.maximizedVertically)
window.unmaximize(Meta.MaximizeFlags.HORIZONTAL | Meta.MaximizeFlags.VERTICAL);
let workArea = window.get_work_area_current_monitor();
let outerRect = window.get_outer_rect();
// Find the nearest 16:9 size for the current window size
let nearestIndex;
let nearestError;
for (let i = 0; i < SIZES.length; i++) {
let [width, height] = SIZES[i];
// ignore sizes bigger than the workArea
if (width > workArea.width || height > workArea.height)
continue;
// get the best initial window size
let error = Math.abs(width - outerRect.width) + Math.abs(height - outerRect.height);
if (nearestIndex == null || error < nearestError) {
nearestIndex = i;
nearestError = error;
}
}
// get the next size up or down from ideal
let newIndex = (nearestIndex + (backwards ? -1 : 1)) % SIZES.length;
let newWidth, newHeight;
[newWidth, newHeight] = SIZES[newIndex];
if (newWidth > workArea.width || newHeight > workArea.height)
[newWidth, newHeight] = SIZES[0];
// Push the window onscreen if it would be resized offscreen
let newX = outerRect.x;
let newY = outerRect.y;
if (newX + newWidth > workArea.x + workArea.width)
newX = Math.max(workArea.x + workArea.width - newWidth);
if (newY + newHeight > workArea.y + workArea.height)
newY = Math.max(workArea.y + workArea.height - newHeight);
window.move_resize_frame(true, newX, newY, newWidth, newHeight);
let newOuterRect = window.get_outer_rect();
let message = newOuterRect.width + 'x' + newOuterRect.height;
// The new size might have been constrained by geometry hints (e.g. for
// a terminal) - in that case, include the actual ratio to the message
// we flash
let actualNumerator = (newOuterRect.width / newOuterRect.height) * 9;
if (Math.abs(actualNumerator - 16) > 0.01)
message += ' (%.2f:9)'.format(actualNumerator);
flashMessage(message);
}
function init() {
}
function enable() {
Main.wm.addKeybinding('cycle-screenshot-sizes',
Convenience.getSettings(),
Meta.KeyBindingFlags.PER_WINDOW | Meta.KeyBindingFlags.REVERSES,
Shell.KeyBindingMode.NORMAL,
cycleScreenshotSizes);
}
function disable() {
Main.wm.removeKeybinding('cycle-screenshot-sizes');
}

View File

@@ -0,0 +1,10 @@
{
"extension-id": "@extension_id@",
"uuid": "@uuid@",
"settings-schema": "@gschemaname@",
"gettext-domain": "@gettext_domain@",
"name": "Screenshot Window Sizer",
"description": "Resize windows for GNOME Software screenshots",
"shell-version": [ "@shell_current@" ],
"url": "@url@"
}

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.shell.extensions.screenshot-window-sizer"
path="/org/gnome/shell/extensions/screenshot-window-sizer/">
<key type="as" name="cycle-screenshot-sizes">
<default><![CDATA[['<Alt><Control>s']]]></default>
<summary>Cycle Screenshot Sizes</summary>
</key>
</schema>
</schemalist>

View File

@@ -0,0 +1,8 @@
.screenshot-sizer-message {
font-size: 36px;
font-weight: bold;
color: #ffffff;
background-color: rgba(10,10,10,0.7);
border-radius: 5px;
padding: .5em;
}

View File

@@ -983,6 +983,12 @@ const WindowList = new Lang.Class({
if (this._grouped)
return;
let children = this._windowList.get_children();
for (let i = 0; i < children.length; i++) {
if (children[i]._delegate.metaWindow == win)
return;
}
let button = new WindowButton(win);
this._windowList.layout_manager.pack(button.actor,
true, true, true,

View File

@@ -31,7 +31,10 @@ ko
lv
lt
ml
mr
ms
nb
ne
nl
pa
pt

112
po/da.po
View File

@@ -2,14 +2,15 @@
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
#
# Kris Thomsen <mail@kristhomsen.dk>, 2011-2013.
# Kris Thomsen <mail@kristhomsen.dk>, 2011-2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-09-23 19:34+0200\n"
"PO-Revision-Date: 2013-09-23 19:29+0200\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2014-09-08 07:38+0000\n"
"PO-Revision-Date: 2014-09-09 20:54+0200\n"
"Last-Translator: Kris Thomsen <mail@kristhomsen.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
"Language: da\n"
@@ -46,14 +47,28 @@ msgstr ""
"Denne nøgle tilsidesætter nøglen i org.gnome.mutter når GNOME Shell kører."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Placeringen af knapper i titellinjen"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid ""
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"Denne nøgle tilsidesætter nøglen i org.gnome.desktop.wm.preferences når "
"GNOME Shell kører."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "Aktivér kant-fliselægning når vinduer slippes på skærmkanter"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Kun arbejdsområder på primær skærm"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"Forsink fokusændringer i musetilstand indtil pegeren holder op med at bevæge "
@@ -71,11 +86,11 @@ msgstr "Kun programikon"
msgid "Thumbnail and application icon"
msgstr "Miniaturebillede og programikon"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Præsentér vindue som"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Vis kun vinduer i det nuværende arbejdsområde"
@@ -103,37 +118,38 @@ msgstr ""
"En liste over strenge, som hver indeholder et program-id "
"(skrivebordsfilnavn), efterfulgt af et kolon og arbejdsområdets nummer"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Program"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Arbejdsområde"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "Tilføj regel"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Opret ny regel for match"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Tilføj"
#: ../extensions/drive-menu/extension.js:73
#, c-format
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Udskubning af drevet \"%s\" fejlede:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Flytbare enheder"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Åbn fil"
@@ -153,9 +169,12 @@ msgstr ""
"Hvis den ikke er tom, så indeholder den teksten, der vil blive vist når der "
"klikkes på panelet."
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30
#| msgid "Message:"
msgid "Message"
msgstr "Besked"
#: ../extensions/example/prefs.js:43
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"
@@ -165,10 +184,6 @@ msgstr ""
"opfører sig ordentligt, og har som sådan meget lidt selvstændig "
"funktionalitet.Alligevel er det muligt at tilpasse velkomstbeskeden."
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Besked:"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "Brug mere skærmplads til vinduer"
@@ -204,21 +219,21 @@ msgstr ""
msgid "Places"
msgstr "Steder"
#: ../extensions/places-menu/placeDisplay.js:56
#, c-format
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Kunne ikke åbne \"%s\""
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Computer"
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Hjem"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Gennemse netværk"
@@ -238,52 +253,52 @@ msgstr "Temanavn"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Navnet på temaet, som indlæses fra ~/.themes/name/gnome-shell"
#: ../extensions/window-list/extension.js:92
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Luk"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Afminimér"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Minimér"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Afmaksimér"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Maksimér"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Minimér"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Afminimér alle"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Maksimér alle"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Afmaksimér alle"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Luk alle"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Arbejdsområdeindikator"
#: ../extensions/window-list/extension.js:743
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Vinduesliste"
@@ -317,15 +332,16 @@ msgid "Always group windows"
msgstr "Gruppér altid vinduer"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Arbejdsområdenavne:"
#| msgid "Workspace names:"
msgid "Workspace Names"
msgstr "Navne på arbejdsområder"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Navn"
#: ../extensions/workspace-indicator/prefs.js:186
#, c-format
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Arbejdsområde %d"

120
po/de.po
View File

@@ -4,21 +4,23 @@
# Mario Blättermann <mario.blaettermann@gmail.com>, 2011-2013.
# Christian Kirbach <Christian.Kirbach@googlemail.com>, 2011, 2012.
# Benjamin Steinwender <b@stbe.at>, 2013.
# Wolfgang Stöggl <c72578@yahoo.de>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-09-25 15:26+0200\n"
"PO-Revision-Date: 2013-09-25 15:27+0100\n"
"Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2014-09-12 07:37+0000\n"
"PO-Revision-Date: 2014-09-12 10:36+0100\n"
"Last-Translator: Wolfgang Stoeggl <c72578@yahoo.de>\n"
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
"Language: de_DE\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: Poedit 1.5.4\n"
"X-Generator: Poedit 1.6.9\n"
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
@@ -45,21 +47,33 @@ msgstr "Einen modalen Dialog an das übergeordnete Fenster anhängen"
msgid ""
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgstr ""
"Dieser Schlüssel überschreibt den Schlüssel in »org.gnome.mutter« wenn die "
"Dieser Schlüssel überschreibt den Schlüssel in »org.gnome.mutter«, wenn die "
"GNOME-Shell ausgeführt wird."
# identisch zum Schüssel in »gnome-shell«
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Anordnung von Knöpfen auf der Titelleiste"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"Dieser Schlüssel überschreibt den Schlüssel in »org.gnome.desktop.wm."
"preferences«, wenn die GNOME-Shell ausgeführt wird."
# identisch zum Schüssel in »gnome-shell«
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"Größenanpassung aktivieren, wenn ein Fenster an die Bildschirmkante "
"verschoben wird"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Arbeitsflächen nur auf dem Primärmonitor"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"Fokuswechsel im Mausmodus verzögern, bis sich der Zeiger nicht mehr bewegt."
@@ -76,11 +90,11 @@ msgstr "Nur Anwendungssymbol"
msgid "Thumbnail and application icon"
msgstr "Vorschaubild und Anwendungssymbol"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Fenster darstellen als"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Nur Fenster der aktuellen Arbeitsfläche anzeigen"
@@ -109,47 +123,47 @@ msgstr ""
"Datei) enthält, gefolgt von einem Doppelpunkt und der Nummer der "
"Arbeitsfläche"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Anwendung"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Arbeitsfläche "
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "Regel hinzufügen"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Neue Übereinstimmungsregel erstellen"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Hinzufügen"
#: ../extensions/drive-menu/extension.js:73
#, c-format
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Auswerfen von Laufwerk »%s« schlug fehl:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Wechseldatenträger"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Datei öffnen"
#: ../extensions/example/extension.js:17
msgid "Hello, world!"
msgstr "Hallo, Welt!"
msgstr "Hallo Welt!"
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
msgid "Alternative greeting text."
msgstr "Alternative Begrüßungstext."
msgstr "Alternativer Begrüßungstext."
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:2
msgid ""
@@ -159,9 +173,11 @@ msgstr ""
"Falls nicht leer, ist dies der Text, der beim Anklicken des Panels angezeigt "
"wird."
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "Nachricht"
#: ../extensions/example/prefs.js:43
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"
@@ -171,10 +187,6 @@ msgstr ""
"Shell erstellt werden. Es enthält grundlegende Funktionalität.\n"
"Es ist möglich, die Begrüßungsnachricht zu ändern."
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Nachricht:"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "Mehr Bildschirmbereich für Fenster verwenden"
@@ -210,21 +222,21 @@ msgstr ""
msgid "Places"
msgstr "Orte"
#: ../extensions/places-menu/placeDisplay.js:56
#, c-format
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Starten von »%s« fehlgeschlagen"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Rechner"
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Persönlicher Ordner"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Netzwerk durchsuchen"
@@ -246,58 +258,58 @@ msgstr ""
"Der Name des Themas, welches aus ~/.themes/name/gnome-shell geladen werden "
"soll"
#: ../extensions/window-list/extension.js:92
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Schließen"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Minimieren rückgängig"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Minimieren"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Maximieren rückgängig"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Maximieren"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Alle minimieren"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Alle minimieren rückgängig"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Alle maximieren"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Alle maximieren rückgängig"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Alle schließen"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Arbeitsflächenindikator"
#: ../extensions/window-list/extension.js:743
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Fensterliste"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "Fenstergruppierung"
msgstr "Legt fest, wann Fenster gruppiert werden"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:2
msgid ""
@@ -325,15 +337,15 @@ msgid "Always group windows"
msgstr "Fenster immer gruppieren"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Namen der Arbeitsflächen:"
msgid "Workspace Names"
msgstr "Namen der Arbeitsflächen"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Name"
#: ../extensions/workspace-indicator/prefs.js:186
#, c-format
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Arbeitsfläche %d"

114
po/fi.po
View File

@@ -5,15 +5,15 @@
# Niklas Laxström
# Ville-Pekka Vainio
# Ville-Pekka Vainio <vpvainio@iki.fi>, 2011.
# Jiri Grönroos <jiri.gronroos+l10n@iki.fi>, 2012, 2013.
# Jiri Grönroos <jiri.gronroos+l10n@iki.fi>, 2012, 2013, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions\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-09-15 00:43+0000\n"
"PO-Revision-Date: 2013-09-18 20:21+0300\n"
"POT-Creation-Date: 2014-09-06 07:37+0000\n"
"PO-Revision-Date: 2014-09-06 13:22+0300\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos+l10n@iki.fi>\n"
"Language-Team: suomi <gnome-fi-laatu@lists.sourceforge.net>\n"
"Language: fi\n"
@@ -44,7 +44,7 @@ msgstr "Ikkunoiden hallintaa ja sovellusten käynnistämistä"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr ""
msgstr "Liitä modaali-ikkuna ylätason ikkunaan"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid ""
@@ -52,13 +52,27 @@ msgid ""
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Painikkeiden järjestys otsikkopalkissa"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Työtilat vain ensisijaisella näytöllä"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
#: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only"
msgstr "Pelkkä pienoiskuva"
@@ -71,11 +85,11 @@ msgstr "Pelkkä sovelluksen kuvake"
msgid "Thumbnail and application icon"
msgstr "Pienoiskuva ja sovelluksen kuvake"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Ikkunoiden esittäminen"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Näytä vain nykyisessä työtilassa olevat ikkunat"
@@ -87,7 +101,7 @@ msgstr "Yleisnäkymä"
msgid "Favorites"
msgstr "Suosikit"
#: ../extensions/apps-menu/extension.js:278
#: ../extensions/apps-menu/extension.js:282
msgid "Applications"
msgstr "Sovellukset"
@@ -101,37 +115,38 @@ msgid ""
"followed by a colon and the workspace number"
msgstr ""
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Sovellus"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Työtila"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "Lisää sääntö"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Luo uusi vastaava sääntö"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Lisää"
#: ../extensions/drive-menu/extension.js:73
#, c-format
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Aseman \"%s\" irrottaminen epäonnistui:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Erilliset tallennusvälineet"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Avaa tiedosto"
@@ -149,22 +164,21 @@ msgid ""
"panel."
msgstr ""
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30
#| msgid "Message:"
msgid "Message"
msgstr "Viesti"
#: ../extensions/example/prefs.js:43
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 ""
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Viesti:"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr ""
msgstr "Käytä enemmän tilaa ikkunoille"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:2
msgid ""
@@ -192,21 +206,21 @@ msgstr ""
msgid "Places"
msgstr "Sijainnit"
#: ../extensions/places-menu/placeDisplay.js:56
#, c-format
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Kohteen \"%s\" käynnistys epäonnistui"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Tietokone"
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Koti"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Selaa verkkoa"
@@ -226,53 +240,52 @@ msgstr "Teeman nimi"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Teeman nimi, ladataan sijainnista ~/.themes/name/gnome-shell"
#: ../extensions/window-list/extension.js:92
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Sulje"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Palauta pienennys"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Pienennä"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Palauta suurennus"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Suurenna"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Pienennä kaikki"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Palauta kaikkien koko"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Suurenna kaikki"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Palauta kaikkien koko"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Sulje kaikki"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Työtilan ilmaisin"
#: ../extensions/window-list/extension.js:743
#| msgid "Window Grouping"
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Ikkunaluettelo"
@@ -305,15 +318,16 @@ msgid "Always group windows"
msgstr "Ryhmitä ikkunat aina"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Työtilojen nimet:"
#| msgid "Workspace names:"
msgid "Workspace Names"
msgstr "Työtilojen nimet"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Nimi"
#: ../extensions/workspace-indicator/prefs.js:186
#, c-format
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Työtila %d"

View File

@@ -10,8 +10,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2014-03-05 08:31+0000\n"
"PO-Revision-Date: 2014-03-05 20:11+0900\n"
"POT-Creation-Date: 2014-09-04 19:38+0000\n"
"PO-Revision-Date: 2014-09-05 07:14+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <gnome-kr@googlegroups.com>\n"
"Language: ko\n"
@@ -47,14 +47,24 @@ msgid ""
msgstr "그놈 셸을 실행할 때 org.gnome.mutter에 있는 키 대신 사용됩니다."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "제목 표시줄의 단추 정렬"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr "그놈 셸을 실행할 때 org.gnome.desktop.wm.preferences에 있는 키 대신 사용됩니다."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "화면 가장자리에 창을 놓을 때 가장자리 맞추기 기능을 사용합니다"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "주 모니터에만 작업 공간 사용"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr "마우스 포인터가 움직이지 않을 때까지 포커스 전환을 미루기"
@@ -70,11 +80,11 @@ msgstr "프로그램 아이콘만"
msgid "Thumbnail and application icon"
msgstr "섬네일과 프로그램 아이콘"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "현재 창 표시 방법"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "현재 작업 공간의 창만 표시합니다"
@@ -102,24 +112,24 @@ msgstr ""
"문자열 목록, 각각은 프로그램 ID(데스크톱 파일 이름) 다음에 콜론 뒤에 작업 공"
"간 번호."
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "프로그램"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "작업 공간"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "규칙 추가"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "새 일치 규칙 만들기"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "추가"
@@ -151,6 +161,10 @@ msgid ""
msgstr "빈 값이 아니면, 패널을 눌렀을때 보일 텍스트입니다."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "메시지"
#: ../extensions/example/prefs.js:43
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"
@@ -160,10 +174,6 @@ 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 "창에 더 많은 화면 사용하기"
@@ -231,52 +241,52 @@ msgstr "테마 이름"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "테마 이름, ~/.themes/name/gnome-shell 아래에서 읽어들입니다."
#: ../extensions/window-list/extension.js:104
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "닫기"
#: ../extensions/window-list/extension.js:114
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "최소화 취소"
#: ../extensions/window-list/extension.js:115
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "최소화"
#: ../extensions/window-list/extension.js:121
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "최대화 취소"
#: ../extensions/window-list/extension.js:122
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "최대화"
#: ../extensions/window-list/extension.js:294
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "모두 최소화"
#: ../extensions/window-list/extension.js:302
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "모두 최소화 취소"
#: ../extensions/window-list/extension.js:310
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "모두 최대화"
#: ../extensions/window-list/extension.js:319
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "모두 최대화 취소"
#: ../extensions/window-list/extension.js:328
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "모두 닫기"
#: ../extensions/window-list/extension.js:638
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "작업 공간 표시"
#: ../extensions/window-list/extension.js:792
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "창 목록"
@@ -309,14 +319,14 @@ msgid "Always group windows"
msgstr "항상 창 모으기"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "작업 공간 이름:"
msgid "Workspace Names"
msgstr "작업 공간 이름"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "이름"
#: ../extensions/workspace-indicator/prefs.js:186
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "작업 공간 %d"

335
po/mr.po Normal file
View File

@@ -0,0 +1,335 @@
# Marathi translation for gnome-shell-extensions.
# Copyright (C) 2014 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
#
# Sandeep Shedmake <sshedmak@redhat.com>, 2014.
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: 2014-09-16 19:39+0000\n"
"PO-Revision-Date: 2014-09-17 09:01+0530\n"
"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
"Language-Team: Marathi <mr@li.org>\n"
"Language: mr\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 "Arrangement of buttons on the titlebar"
msgstr "शीर्षकपट्टीवरील बटनांची व्यवस्था"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"GNOME शेल चालवतेवेळी ही कि org.gnome.desktop.wm.preferences मधील कि खोडून "
"पुन्हा लिहते."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "स्क्रीन किनारांवर पटल टाकतेवेळी किनार टाइनिंग सुरू करा"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "फक्त प्राथमिक मॉनिटरवरील वर्कस्पेसेस"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
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:38
msgid "Present windows as"
msgstr "पटलांना असे प्रस्तुत करा"
#: ../extensions/alternate-tab/prefs.js:69
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:60
msgid "Application"
msgstr "ॲप्लिकेशन"
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "कार्यक्षेत्र"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "नियम समाविष्ट करा"
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "नवीन जुळण्याजोगी नियम निर्माण करा"
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "समाविष्ट करा"
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "ड्राइव्ह '%s' बाहेर काढणे अपयशी:"
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "काढून टाकण्याजोगी साधने"
#: ../extensions/drive-menu/extension.js:150
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 "रिकामे नसल्यास, पटलावर क्लिक करताना दाखवण्याजोगी मजकूर समाविष्टीत आहे."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "संदेश"
#: ../extensions/example/prefs.js:43
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/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:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "\"%s\" सुरू करण्यास अपयशी"
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "संगणक"
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "होम"
#: ../extensions/places-menu/placeDisplay.js:287
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:110
msgid "Close"
msgstr "बंद करा"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "छोटे करणे अशक्य करा"
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "छोटे करा"
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "मोठे करणे अशक्य करा"
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "मोठे करा"
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "सर्व छोटे करा"
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "सर्व छोटे करणे अशक्य करा"
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "सर्व मोठे करा"
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "सर्व मोठे करणे अशक्य करा"
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "सर्व बंद करा"
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "कार्यक्षेत्र निर्देशक"
#: ../extensions/window-list/extension.js:808
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:157
msgid "Name"
msgstr "नाव"
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "कार्यक्षेत्र %d"

302
po/ms.po Normal file
View File

@@ -0,0 +1,302 @@
# Malay translation for gnome-shell-extensions.
# Copyright (C) 2014 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
# Umarzuki Bin Mochlis Moktar <umarzuki@gmail.com>, 2014.
#
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: 2014-09-15 07:37+0000\n"
"PO-Revision-Date: 2014-09-15 23:10+0730\n"
"Last-Translator: Umarzuki Mochlis Moktar <umar@umarzuki.org>\n"
"Language-Team: Malay <ms@li.org>\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
msgid "GNOME Classic"
msgstr "GNOME Klasik"
#: ../data/gnome-classic.desktop.in.h:2
msgid "This session logs you into GNOME Classic"
msgstr "Sesi ini log masukkan anda ke GNOME Klasik"
#: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "GNOME Shell Classic"
msgstr "GNOME Shell Klasik"
#: ../data/gnome-shell-classic.desktop.in.in.h:2
msgid "Window management and application launching"
msgstr "Pengurusan tetingkap dan pelancaran aplikasi"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr "Sambung tetingkap dialog pada tetingkap induk"
#: ../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 "Kekunci ini membatalkan kekunci di dalam org.gnome.mutter apabila menjalankan GNOME Shell."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Kedudukan butang pada bar tajuk"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid "This key overrides the key in org.gnome.desktop.wm.preferences when running GNOME Shell."
msgstr "Kekunci ini membatalkan kekunci di dalam org.gnome.desktop.wm.preferences apabila menjalankan GNOME Shell"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "Benarkan penggentingan bucu apabila menjatuhkan tetingkap pada bucu skrin"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Ruangkerja hanya pada monitor utama"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr "Lengahkan pertukaran fokus didalam mod tetikus sehingga penuding berhenti bergerak"
#: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only"
msgstr "Lakaran kecil sahaja"
#: ../extensions/alternate-tab/prefs.js:21
msgid "Application icon only"
msgstr "Hanya ikon aplikasi"
#: ../extensions/alternate-tab/prefs.js:22
msgid "Thumbnail and application icon"
msgstr "Lakaran kecil dan ikon aplikasi"
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Wakilkan tetingkap sebagai"
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Hanya tunjukkan tetingkap didalam ruangkerja semasa"
#: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview"
msgstr "Gambaran Keseluruhan Aktiviti"
#: ../extensions/apps-menu/extension.js:113
msgid "Favorites"
msgstr "Kegemaran"
#: ../extensions/apps-menu/extension.js:282
msgid "Applications"
msgstr "Aplikasi"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
msgid "Application and workspace list"
msgstr "Senarai aplikasi dan ruangkerja"
#: ../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 "Senarai rentetan dimana setiap satu mengandungi id aplikasi (nama fail desktop) diikuti dengan kolon dan nombor ruangkerja"
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Aplikasi"
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Ruangkerja"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "Tambah Peraturan"
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Cipta peraturan baharu yang sepadan"
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Tambah"
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Gagal melentingkan pemacu '%s':"
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Peranti boleh tanggal"
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Buka Fail"
#: ../extensions/example/extension.js:17
msgid "Hello, world!"
msgstr "Hello dunia!"
#: ../extensions/example/org.gnome.shell.extensions.example.gschema.xml.in.h:1
msgid "Alternative greeting text."
msgstr "Teks aluan alternatif."
#: ../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 "Mengandungi teks yang akan ditunjukkan apabila mengklik panel jika tidak kosong."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "Mesej"
#: ../extensions/example/prefs.js:43
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 ""
"Contoh bertujuan untuk menunjukkan bagaimana kelakuan ciri tambahan yang sepatutnya dimana setiap satu ada fungsian sendiri.\n"
"Walau bagaimanapun, mesej aluan boleh diubahsuai. "
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "Gunakan lebih banyak skrin untuk tetingkap"
#: ../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 "Cuba menggunakan lebih banyak skrin untuk meletakkan lakaran kecil dengan menyesuaikan nisbah bidang skrin dan menggabungkan kesemuanya untuk mengurangkan kotak pembatasan. Tetapan ini hanya digunakan dengan strategi penempatan natural."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Place window captions on top"
msgstr "Letakkan kapsyen tetingkap diatas"
#: ../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 "Jika benar, letakkan kapsyen diatas lakaran kecil masing-masing sekaligus membatalkan tetapan asal shell dibawah. Menukar tetapan ini perlu memulakan semula shell untuk berkesan."
#: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
msgid "Places"
msgstr "Tempat-tempat"
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Gagal melancarkan \"%s\""
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Komputer"
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Rumah"
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Semak Lewa Rangkaian"
#: ../extensions/systemMonitor/extension.js:214
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:267
msgid "Memory"
msgstr "Memori"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "Theme name"
msgstr "Nama tema"
#: ../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 "Nama tema yang hendak dimuatkan dari ~/.themes/name/gnome-shell"
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Tutup"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Berbalik dari saiz minima"
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Minima"
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Berbalik dari saiz maksima"
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Maksima"
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Minimakan semua"
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Semua berbalik dari saiz minima"
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Maksimakan semua"
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Semua berbalik dari saiz maksima "
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "tutup semua"
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Penunjuk Ruangkerja"
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Senarai Tetingkap"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "Waktu untuk kumpulkan tetingkap"
#: ../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 "Tentukan bila untuk kumpulkan tetingkap dari aplikasi yang sama pada senarai tetingkap. Nilai yang sesuai adalah \"never\", \"auto\" dan \"always\"."
#: ../extensions/window-list/prefs.js:30
msgid "Window Grouping"
msgstr "Kumpulan Tetingkap"
#: ../extensions/window-list/prefs.js:49
msgid "Never group windows"
msgstr "Jangan kumpulkan tetingkap"
#: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Kumpulkan tetingkap apabila ruang terhad"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows"
msgstr "Sentiasa kumpulkan tetingkap"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace Names"
msgstr "Nama Ruangkerja"
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Nama"
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Ruangkerja %d"

325
po/ne.po Normal file
View File

@@ -0,0 +1,325 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extension gnome 3.14\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2014-09-09 10:57+0000\n"
"PO-Revision-Date: 2014-09-14 21:52+0400\n"
"Last-Translator: Pawan Chitrakar <chautari@gmail.com>\n"
"Language-Team: Nepali Translation Team <chautari@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.9\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: ne\n"
"X-Poedit-SourceCharset: UTF-8\n"
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
msgid "GNOME Classic"
msgstr "जिनोम क्लासिक"
#: ../data/gnome-classic.desktop.in.h:2
msgid "This session logs you into GNOME Classic"
msgstr "यो सेसन जिनोम क्लासिकमा लगईन हुन्छ"
#: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "GNOME Shell Classic"
msgstr "जिनोम शेल क्लासिक"
#: ../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 ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
#, fuzzy
msgid "Arrangement of buttons on the titlebar"
msgstr "टाँकहरू"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
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:38
msgid "Present windows as"
msgstr "हालको सञ्झ्याल"
#: ../extensions/alternate-tab/prefs.js:69
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 ""
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "अनुप्रयोग"
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "कार्यस्थल"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "नियम थप्नुहोस्"
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "मिल्ने नियम सिर्जना गर्नुहोस्"
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "थप्नुहोस्..."
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr ""
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "छुट्याउन मिल्ने यन्त्र"
#: ../extensions/drive-menu/extension.js:150
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
#, fuzzy
msgid "Alternative greeting text."
msgstr "युआरएल (URL) %s हो, वैकल्पिक पाठ %s हो ।"
#: ../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 ""
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "सन्देश"
#: ../extensions/example/prefs.js:43
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 ""
#: ../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
#, fuzzy
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:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "%s सुरु गर्न असफल"
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "कम्प्युटर"
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "गृह"
#: ../extensions/places-menu/placeDisplay.js:287
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 ""
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "बन्द"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr ""
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "सानो बनाउनुहोस्"
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr ""
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "ठूलो बनाउनुहोस्"
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "सबै सानो बनाउनुहोस्"
#: ../extensions/window-list/extension.js:308
#, fuzzy
msgid "Unminimize all"
msgstr "सबै"
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "सबै ठूलो बनाउनुहोस्"
#: ../extensions/window-list/extension.js:325
#, fuzzy
msgid "Unmaximize all"
msgstr "सबै"
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "सबै बन्द गर्नुहोस्"
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
#, fuzzy
msgid "Workspace Indicator"
msgstr "कार्यस्थल"
#: ../extensions/window-list/extension.js:808
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:157
msgid "Name"
msgstr "नाम: "
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "कार्यस्थल %d"

109
po/pa.po
View File

@@ -2,14 +2,14 @@
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
#
# A S Alam <aalam@users.sf.net>, 2011, 2012, 2013.
# A S Alam <aalam@users.sf.net>, 2011, 2012, 2013, 2014.
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions gnome-3-0\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-09-23 10:19+0000\n"
"PO-Revision-Date: 2013-09-24 07:53-0500\n"
"POT-Creation-Date: 2014-09-08 19:35+0000\n"
"PO-Revision-Date: 2014-09-08 21:14-0500\n"
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
"Language: pa\n"
@@ -47,14 +47,28 @@ msgstr ""
"ਇਹ ਕੁੰਜੀ ਗਨੋਮ ਸ਼ੈੱਲ ਚੱਲਣ ਦੇ ਦੌਰਾਨ org.gnome.mutter ਕੁੰਜੀ ਨੂੰ ਅਣਡਿੱਠਾ ਕਰਦੀ ਹੈ।"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "ਟਾਈਟਲ-ਪੱਟੀ ਵਿੱਚ ਬਟਨਾਂ ਦਾ ਪ੍ਰਬੰਧ"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid ""
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"ਇਹ ਕੁੰਜੀ ਗਨੋਮ ਸ਼ੈੱਲ ਚੱਲਣ ਦੇ ਦੌਰਾਨ org.gnome.desktop.wm.preferencesr ਕੁੰਜੀ ਨੂੰ "
"ਅਣਡਿੱਠਾ ਕਰਦੀ ਹੈ।"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "ਕੋਨਾ ਟਿਲਿੰਗ ਚਾਲੂ, ਜਦੋਂ ਵਿੰਡੋਜ਼ ਨੂੰ ਸਕਰੀਨ ਕੋਨਿਆਂ ਤੋਂ ਡਰਾਪ ਕਰਨਾ ਹੋਵੇ"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "ਪ੍ਰਾਈਮਰੀ ਮਾਨੀਟਰ ਉੱਤੇ ਕੇਵਲ ਵਰਕਸਪੇਸ"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr "ਪੁਆਇੰਟਰ ਦੇ ਹਿਲਣ ਤੋਂ ਰੁਕਣ ਤੱਕ ਮਾਊਸ ਮੋਡ ਵਿੱਚ ਫੋਕਸ ਬਦਲਾਅ ਵਿੱਚ ਦੇਰੀ"
@@ -70,11 +84,11 @@ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਆਈਕਾਨ ਹੀ"
msgid "Thumbnail and application icon"
msgstr "ਥੰਮਨੇਲ ਅਤੇ ਐਪਲੀਕੇਸ਼ਨ ਆਈਕਾਨ"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "ਵਿੰਡੋਜ਼ ਨੂੰ ਪੇਸ਼ ਕਰੋ"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "ਮੌਜੂਦਾ ਵਰਕਸਪੇਸ ਵਿੱਚੋਂ ਹੀ ਵਿੰਡੋਜ਼ ਹੀ ਵੇਖਾਓ"
@@ -103,37 +117,38 @@ msgstr ""
"ਵਰਕਸਪੇਸ ਨੰਬਰ "
"ਰੱਖਦਾ ਹੈ"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "ਐਪਲੀਕੇਸ਼ਨ"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "ਵਰਕਸਪੇਸ"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "ਨਿਯਮ ਜੋੜੋ"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "ਨਵਾਂ ਮਿਲਾਉਣ ਨਿਯਮ ਬਣਾਉ"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "ਸ਼ਾਮਲ"
#: ../extensions/drive-menu/extension.js:73
#, c-format
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "ਡਰਾਇਵ '%s' ਬਾਹਰ ਕੱਢਣ ਲਈ ਫੇਲ੍ਹ:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "ਹਟਾਉਣਯੋਗ ਜੰਤਰ"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "ਫਾਇਲ ਖੋਲ੍ਹੋ"
@@ -153,9 +168,12 @@ msgstr ""
"ਜੇ ਖਾਲੀ ਨਹੀਂ ਤਾਂ ਇਹ ਟੈਕਸਟ ਰੱਖਦਾ ਹੈ, ਜੋ ਕਿ ਪੈਨਲ ਨੂੰ ਕਲਿੱਕ ਕਰਨ ਨਾਲ ਵੇਖਾਇਆ "
"ਜਾਵੇਗਾ।"
#. TRANSLATORS: Example is the name of the extension, should not be
#. translated
#: ../extensions/example/prefs.js:30
#| msgid "Message:"
msgid "Message"
msgstr "ਸੁਨੇਹਾ"
#: ../extensions/example/prefs.js:43
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"
@@ -166,10 +184,6 @@ 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 "ਵਿੰਡੋਜ਼ ਲਈ ਹੋਰ ਸਕਰੀਨ ਵਰਤੋਂ"
@@ -206,21 +220,21 @@ msgstr ""
msgid "Places"
msgstr "ਥਾਵਾਂ"
#: ../extensions/places-menu/placeDisplay.js:56
#, c-format
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "\"%s\" ਚਲਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "ਕੰਪਿਊਟਰ"
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "ਘਰ"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "ਨੈੱਟਵਰਕ ਝਲਕ ਵੇਖੋ"
@@ -240,52 +254,52 @@ msgstr "ਥੀਮ ਨਾਂ"
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
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "ਬੰਦ ਕਰੋ"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "ਅਣ-ਨਿਊਨਤਮ"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "ਨਿਊਨਤਮ"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "ਅਣ-ਵੱਧੋ-ਵੱਧ"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "ਵੱਧੋ-ਵੱਧ"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "ਸਭ ਨਿਊਨਤਮ ਕਰੋ"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "ਸਭ ਅਣ-ਨਿਊਨਤਮ ਕਰੋ"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "ਸਭ ਵੱਧ-ਵੱਧ ਕਰੋ"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "ਸਭ ਅਣ-ਵੱਧੋ-ਵੱਧ ਕਰੋ"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "ਸਭ ਬੰਦ ਕਰੋ"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "ਵਰਕਸਪੇਸ ਇੰਡੀਕੇਟਰ"
#: ../extensions/window-list/extension.js:743
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "ਵਿੰਡੋਜ਼ ਲਿਸਟ"
@@ -319,15 +333,16 @@ msgid "Always group windows"
msgstr "ਵਿੰਡੋ ਦਾ ਗਰੁੱਪ ਹਮੇਸ਼ਾ ਬਣਾਓ"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "ਵਰਕਸਪੇਸ ਨਾਂ:"
#| msgid "Workspace names:"
msgid "Workspace Names"
msgstr "ਵਰਕਸਪੇਸ ਨਾਂ"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "ਨਾਂ"
#: ../extensions/workspace-indicator/prefs.js:186
#, c-format
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "ਵਰਕਸਪੇਸ %d"

View File

@@ -4,14 +4,14 @@
# pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas:
# gnomepl@aviary.pl
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# Piotr Drąg <piotrdrag@gmail.com>, 2011-2013.
# Aviary.pl <gnomepl@aviary.pl>, 2011-2013.
# Piotr Drąg <piotrdrag@gmail.com>, 2011-2014.
# Aviary.pl <gnomepl@aviary.pl>, 2011-2014.
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-09-23 20:36+0200\n"
"PO-Revision-Date: 2013-09-15 02:42+0200\n"
"POT-Creation-Date: 2014-09-03 16:20+0200\n"
"PO-Revision-Date: 2014-09-03 16:24+0200\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <gnomepl@aviary.pl>\n"
"Language: pl\n"
@@ -52,16 +52,28 @@ msgstr ""
"powłoka GNOME."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Kolejność przycisków na pasku tytułowym"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"Ten klucz zastępuje klucz w \"org.gnome.desktop.wm.preferences\", kiedy "
"uruchomiona jest powłoka GNOME."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"Włączenie kafelkowania przy krawędziach podczas przenoszenia okien do "
"krawędzi ekranu"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Obszary robocze tylko na pierwszym monitorze"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"Opóźnienie zmiany aktywności w trybie myszy do momentu, w którym kursor się "
@@ -79,11 +91,11 @@ msgstr "Tylko ikony programów"
msgid "Thumbnail and application icon"
msgstr "Miniatura i ikona programu"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Wyświetlanie okien jako"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Wyświetlanie tylko okien w bieżącym obszarze roboczym"
@@ -111,37 +123,37 @@ msgstr ""
"Lista ciągów, każdy zawierający identyfikator programu (nazwę pliku ."
"desktop) z przecinkiem i numerem obszaru roboczego"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Program"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Obszar roboczy"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "Dodaj regułę"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Utwórz nową pasującą regułę"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Dodaj"
#: ../extensions/drive-menu/extension.js:73
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Wysunięcie napędu \"%s\" się nie powiodło:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Urządzenia wymienne"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Otwórz plik"
@@ -161,6 +173,10 @@ msgstr ""
"Jeśli nie jest puste, to zawiera tekst wyświetlany po kliknięciu na panelu."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "Wiadomość"
#: ../extensions/example/prefs.js:43
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"
@@ -170,10 +186,6 @@ msgstr ""
"najmniej własnych funkcji.\n"
"Niemniej można dostosować wiadomość powitalną."
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Wiadomość:"
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "Użycie więcej miejsca dla okien"
@@ -208,21 +220,21 @@ msgstr ""
msgid "Places"
msgstr "Miejsca"
#: ../extensions/places-menu/placeDisplay.js:56
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Uruchomienie \"%s\" się nie powiodło"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Komputer"
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Katalog domowy"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Przeglądaj sieć"
@@ -242,52 +254,52 @@ msgstr "Nazwa motywu"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Nazwa motywu do wczytania z katalogu ~/.themes/name/gnome-shell"
#: ../extensions/window-list/extension.js:92
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Zamknij"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Cofnij minimalizację"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Zminimalizuj"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Cofnij maksymalizację"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Zmaksymalizuj"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Zminimalizuj wszystkie"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Cofnij minimalizację wszystkich"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Zmaksymalizuj wszystkie"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Cofnij maksymalizację wszystkich"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Zamknij wszystkie"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Wskaźnik obszaru roboczego"
#: ../extensions/window-list/extension.js:743
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Lista okien"
@@ -320,14 +332,14 @@ msgid "Always group windows"
msgstr "Zawsze grupowanie okien"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Nazwy obszarów roboczych:"
msgid "Workspace Names"
msgstr "Nazwy obszarów roboczych"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Nazwa"
#: ../extensions/workspace-indicator/prefs.js:186
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Obszar roboczy %d"

104
po/sk.po
View File

@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: gnome-shell-extensions\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-09-27 14:18+0000\n"
"PO-Revision-Date: 2013-09-27 17:42+0100\n"
"POT-Creation-Date: 2014-09-09 19:36+0000\n"
"PO-Revision-Date: 2014-09-10 08:57+0100\n"
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n"
"Language-Team: Slovak <gnome-sk-list@gnome.org>\n"
"Language: sk\n"
@@ -51,19 +51,34 @@ msgstr ""
"Tento kľúč preváži kľúč v org.gnome.mutter, keď je spustené prostredie GNOME "
"Shell."
# summary
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Usporiadanie tlačidiel v záhlaví okna"
# description
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid ""
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"Tento kľúč preváži kľúč v org.gnome.desktop.wm.preferences, keď je spustené "
"prostredie GNOME Shell."
# summary
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"Povoliť usporiadanie okien do dlaždíc pri ich pustení na okrajoch obrazovky"
# Label
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Pracovné priestory iba na primárnom monitore"
# summary
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"Oneskoriť pohyb zamerania v režime myši, až kým sa ukazovateľ nezastaví"
@@ -84,12 +99,12 @@ msgid "Thumbnail and application icon"
msgstr "Miniatúra a ikona aplikácie"
#  Label
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Uvádzať okná ako"
# CheckButton
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Zobraziť len okná z aktuálneho pracovného priestoru"
@@ -121,44 +136,45 @@ msgstr ""
"súboru .desktop), nasledovaný čiarkou a číslom pracovného priestoru"
# TreeViewColumn
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Aplikácia"
# TreeViewColumn; Label
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Pracovný priestor"
# ToolButton label
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "Pridať pravidlo"
# Dialog title
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Vytvorenie nového odpovedajúceho pravidla"
# button label
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Pridať"
# https://bugzilla.gnome.org/show_bug.cgi?id=687590
#: ../extensions/drive-menu/extension.js:73
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Zlyhalo vysúvanie jednotky „%s“:"
#  Menu
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Vymeniteľné zariadenia"
# Menu Action
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Otvoriť súbor"
@@ -181,8 +197,13 @@ msgid ""
"panel."
msgstr "Obsahuje text, ktorý bude zobrazený po kliknutí na panel."
# PM: podľa mňa chýba preklad druhej časti prvej vety
#: ../extensions/example/prefs.js:30
#| msgid "Message:"
msgid "Message"
msgstr "Správa"
# PM: podľa mňa chýba preklad druhej časti prvej vety
#: ../extensions/example/prefs.js:43
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"
@@ -192,10 +213,6 @@ msgstr ""
"jednoduché rozšírenia pre Shell a demonštrovať tak funkčnosť.\n"
"Napriek tomu je možné prispôsobiť správu privítania."
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Správa:"
# summary
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
@@ -234,22 +251,22 @@ msgstr ""
msgid "Places"
msgstr "Miesta"
#: ../extensions/places-menu/placeDisplay.js:56
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Zlyhalo spustenie „%s“"
#: ../extensions/places-menu/placeDisplay.js:98
#: ../extensions/places-menu/placeDisplay.js:121
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Počítač"
# Places
#: ../extensions/places-menu/placeDisplay.js:199
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Domov"
#: ../extensions/places-menu/placeDisplay.js:286
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Prehliadať sieť"
@@ -274,62 +291,62 @@ msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Názov témy, ktorá sa načíta z ~/.themes/nazov/gnome-shell"
# PopupMenuItem
#: ../extensions/window-list/extension.js:92
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Zavrieť"
# label
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Odminimalizovať"
# label
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Minimalizovať"
# label
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Odmaximalizovať"
# label
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Maximalizovať"
# PopupMenuItem
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Minimalizovať všetko"
# PopupMenuItem
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Odminimalizovať všetko"
# PopupMenuItem
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Maximalizovať všetko"
# PopupMenuItem
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Odmaximalizovať všetko"
# PopupMenuItem
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Zavrieť všetko"
# Label
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "Indikátor pracovného priestoru"
#: ../extensions/window-list/extension.js:743
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Zoznam okien"
@@ -363,16 +380,17 @@ msgstr "Vždy zoskupovať okná"
# Label
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "Názvy pracovných priestorov:"
#| msgid "Workspace names:"
msgid "Workspace Names"
msgstr "Názvy pracovných priestorov"
# TreeViewColumn
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Názov"
# store label
#: ../extensions/workspace-indicator/prefs.js:186
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Pracovný priestor č. %d"

454
po/sv.po
View File

@@ -2,155 +2,151 @@
# Copyright (C) 2011, 2012 Free Software Foundation, Inc.
# This file is distributed under the same license as the gnome-shell-extensions package.
# Daniel Nylander <po@danielnylander.se>, 2011, 2012.
# Mattias Eriksson <snaggen@gmail.com>, 2014
#
msgid ""
msgstr ""
"Project-Id-Version: gnome-shell-extensions\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-28 21:43+0100\n"
"PO-Revision-Date: 2012-02-28 21:45+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-"
"shell&keywords=I18N+L10N&component=extensions\n"
"POT-Creation-Date: 2014-09-03 13:16+0000\n"
"PO-Revision-Date: 2014-09-03 17:19+0100\n"
"Last-Translator: Mattias Eriksson <snaggen@gmail.com>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"Language: \n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.5.4\n"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:1
msgid "The alt tab behaviour."
msgstr ""
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
msgid "GNOME Classic"
msgstr "GNOME Klassisk"
#: ../extensions/alternate-tab/org.gnome.shell.extensions.alternate-tab.gschema.xml.in.h:2
msgid "Sets the Alt-Tab behaviour. Possible values are: all_thumbnails and workspace_icons. See the configuration dialogs for details."
msgstr ""
#: ../data/gnome-classic.desktop.in.h:2
msgid "This session logs you into GNOME Classic"
msgstr "Denna session loggar in dig till GNOME Klassisk"
#: ../extensions/alternate-tab/prefs.js:27
msgid "All & Thumbnails"
msgstr ""
#: ../data/gnome-shell-classic.desktop.in.in.h:1
msgid "GNOME Shell Classic"
msgstr "GNOME-skal Klassisk"
#: ../extensions/alternate-tab/prefs.js:28
msgid "This mode presents all applications from all workspaces in one selection list. Instead of using the application icon of every window, it uses small thumbnails resembling the window itself."
msgstr ""
#: ../data/gnome-shell-classic.desktop.in.in.h:2
msgid "Window management and application launching"
msgstr "Fönsterhantering och programuppstart"
#: ../extensions/alternate-tab/prefs.js:34
msgid "Workspace & Icons"
msgstr "Arbetsyta och ikoner"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:1
msgid "Attach modal dialog to the parent window"
msgstr "Koppla samman modal dialog till föräldrafönstret"
#: ../extensions/alternate-tab/prefs.js:35
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:2
msgid ""
"This mode let's you switch between the applications of your current workspace and gives you additionally the option to switch to the last used application of your previous workspace. This is always the last symbol in the list and is segregated by a separator/vertical line if available. \n"
"Every window is represented by its application icon."
"This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgstr ""
"Denna nyckel överskuggar nyckeln i org.gnome.mutter när GNOME-skalet körs."
#: ../extensions/alternate-tab/prefs.js:41
msgid "Move current selection to front before closing the popup"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "Arrangemang för knappar i titelraden"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"Denna nyckel överskuggar nyckeln i org.gnome.desktop.wm.preferences när "
"GNOME-skalet körs."
#: ../extensions/alternate-tab/prefs.js:58
msgid "The Alternate Tab can be used in different modes, that affect the way windows are chosen and presented."
msgstr ""
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "Slå på kantdockning när fönster släpps på skärmkanter"
#. add the new entries
#: ../extensions/alternative-status-menu/extension.js:64
msgid "Suspend"
msgstr "Vänteläge"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "Arbetsytor endast på primär monitor"
#: ../extensions/alternative-status-menu/extension.js:69
msgid "Hibernate"
msgstr "Viloläge"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr "Fördröj fokusändringar i musläge tills pekare slutar röra sig"
#: ../extensions/alternative-status-menu/extension.js:74
msgid "Power Off..."
msgstr "Stäng av..."
#: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only"
msgstr "Endast miniatyrbild"
#: ../extensions/alternate-tab/prefs.js:21
msgid "Application icon only"
msgstr "Endast programikon"
#: ../extensions/alternate-tab/prefs.js:22
msgid "Thumbnail and application icon"
msgstr "Miniatyrbild och programikon"
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "Presentera fönster som"
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "Visa endast fönster på den aktuell arbetsytan"
#: ../extensions/apps-menu/extension.js:39
msgid "Activities Overview"
msgstr "Aktivitetsöversikt"
#: ../extensions/apps-menu/extension.js:113
msgid "Favorites"
msgstr "Favoriter"
#: ../extensions/apps-menu/extension.js:282
msgid "Applications"
msgstr "Program"
#: ../extensions/auto-move-windows/org.gnome.shell.extensions.auto-move-windows.gschema.xml.in.h:1
msgid "Application and workspace list"
msgstr "Lista över program och arbetsyta"
#: ../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 "En lista över strängar, var och en innehållande ett program-id (skrivbordsfilnamn), följt av ett kolontecken och arbetsytans nummer"
msgid ""
"A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number"
msgstr ""
"En lista över strängar, var och en innehållande ett program-id "
"(skrivbordsfilnamn), följt av ett kolontecken och arbetsytans nummer"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "Program"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "Arbetsyta"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
#: ../extensions/auto-move-windows/prefs.js:85
msgid "Add Rule"
msgstr "Lägg till regel"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "Skapa ny matchande regel"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "Lägg till"
#: ../extensions/dock/extension.js:489
msgid "Drag here to add favorites"
msgstr "Dra hit för att lägga till i favoriter"
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "Utmatning av disk \"%s\" misslyckades:"
#: ../extensions/dock/extension.js:815
msgid "New Window"
msgstr "Nytt fönster"
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "Flyttbara enheter"
#: ../extensions/dock/extension.js:817
msgid "Quit Application"
msgstr "Avsluta programmet"
#: ../extensions/dock/extension.js:822
msgid "Remove from Favorites"
msgstr "Ta bort från favoriter"
#: ../extensions/dock/extension.js:823
msgid "Add to Favorites"
msgstr "Lägg till i favoriter"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:1
msgid "Position of the dock"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:2
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:3
msgid "Icon size"
msgstr "Ikonstorlek"
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:4
msgid "Sets icon size of the dock."
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:5
msgid "Enable/disable autohide"
msgstr ""
#: ../extensions/dock/org.gnome.shell.extensions.dock.gschema.xml.in.h:6
msgid "Autohide effect"
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 "Autohide duration"
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:66
msgid "Open file manager"
msgstr "Öppna filhanterare"
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "Öppna fil"
#: ../extensions/example/extension.js:17
msgid "Hello, world!"
@@ -161,60 +157,86 @@ msgid "Alternative greeting text."
msgstr "Alternativ hälsningstext."
#: ../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"
"If not empty, it contains the text that will be shown when clicking on the "
"panel."
msgstr ""
"Om inte tom, innehåller den text som kommer att visas när man klickar på "
"panelen."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "Meddelande"
#: ../extensions/example/prefs.js:43
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 ""
#: ../extensions/example/prefs.js:36
msgid "Message:"
msgstr "Meddelande:"
#: ../extensions/gajim/extension.js:227
#, c-format
msgid "%s is away."
msgstr "%s är borta."
#: ../extensions/gajim/extension.js:230
#, c-format
msgid "%s is offline."
msgstr "%s är frånkopplad."
#: ../extensions/gajim/extension.js:233
#, c-format
msgid "%s is online."
msgstr "%s är ansluten."
#: ../extensions/gajim/extension.js:236
#, c-format
msgid "%s is busy."
msgstr "%s är upptagen."
"Exemplet ämnar visa hur man bygger ett väluppfostrat tillägg för skalet och "
"som sådant har det lite funktionalitet i sig självt.\n"
"Hur som helst är det i alla fall möjligt att anpassa välkomstmeddelandet."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
msgstr "Använd mer av skärmen för fönster"
#: ../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."
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 ""
"Försök att använda mer skärm för att placera fönsterminiatyrer genom att "
"anpassa till skärmens bildförhållande, och sammanfoga dem ytterligare genom "
"att reducera den begränsande ytan. Denna inställning gäller endast med "
"naturlig placeringsstrategi."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Place window captions on top"
msgstr ""
msgstr "Placera fönstertitlar överst"
#: ../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."
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 ""
"Om sant, placera fönster titlar över respektive miniatyrbild, överskuggar "
"skalets standardplacering under miniatyrbilden. För att ändra denna "
"inställning krävs att skalet startas om för att den ska få effekt."
#: ../extensions/places-menu/extension.js:37
msgid "Removable Devices"
msgstr "Flyttbara enheter"
#: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
msgid "Places"
msgstr "Platser"
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "Misslyckades att starta \"%s\""
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "Dator"
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "Hem"
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "Bläddra i nätverket"
#: ../extensions/systemMonitor/extension.js:214
msgid "CPU"
msgstr "CPU"
#: ../extensions/systemMonitor/extension.js:267
msgid "Memory"
msgstr "Minne"
#: ../extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml.in.h:1
msgid "Theme name"
@@ -224,40 +246,146 @@ msgstr "Temanamn"
msgid "The name of the theme, to be loaded from ~/.themes/name/gnome-shell"
msgstr "Namnet på temat, kommer att läsas in från ~/.themes/name/gnome-shell"
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "Stäng"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "Avminimera"
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "Minimera"
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "Avmaximera"
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "Maximera"
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "Minimera alla"
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "Avminimera alla"
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "Maximera alla"
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr "Avmaximera alla"
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "Stäng alla"
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr ""
msgstr "Arbetsyteindikator"
#: ../extensions/workspace-indicator/prefs.js:151
msgid "Workspace names:"
msgstr ""
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Fönsterlist"
#: ../extensions/workspace-indicator/prefs.js:162
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
msgstr "När ska fönster grupperas"
#: ../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 ""
"Avgör när fönster från samma program ska grupperas i fönsterlisten. Möjliga "
"värden är \"never\", \"auto\" and \"always\"."
#: ../extensions/window-list/prefs.js:30
msgid "Window Grouping"
msgstr "Fönstergruppering"
#: ../extensions/window-list/prefs.js:49
msgid "Never group windows"
msgstr "Gruppera aldrig fönster"
#: ../extensions/window-list/prefs.js:50
msgid "Group windows when space is limited"
msgstr "Gruppera fönster när utrymmet är begränsat"
#: ../extensions/window-list/prefs.js:51
msgid "Always group windows"
msgstr "Gruppera alltid fönster"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace Names"
msgstr "Namn på Arbetsytor"
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "Namn"
#: ../extensions/workspace-indicator/prefs.js:196
#, c-format
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "Arbetsyta %d"
#: ../extensions/xrandr-indicator/extension.js:30
msgid "Normal"
msgstr "Normal"
#~ msgid "Workspace & Icons"
#~ msgstr "Arbetsyta och ikoner"
#: ../extensions/xrandr-indicator/extension.js:31
msgid "Left"
msgstr "Vänster"
#~ msgid "Suspend"
#~ msgstr "Vänteläge"
#: ../extensions/xrandr-indicator/extension.js:32
msgid "Right"
msgstr "Höger"
#~ msgid "Hibernate"
#~ msgstr "Viloläge"
#: ../extensions/xrandr-indicator/extension.js:33
msgid "Upside-down"
msgstr "Upp och ner"
#~ msgid "Power Off..."
#~ msgstr "Stäng av..."
#: ../extensions/xrandr-indicator/extension.js:82
msgid "Configure display settings..."
msgstr "Konfigurera skärminställningar.."
#~ msgid "Drag here to add favorites"
#~ msgstr "Dra hit för att lägga till i favoriter"
#~ msgid "New Window"
#~ msgstr "Nytt fönster"
#~ msgid "Quit Application"
#~ msgstr "Avsluta programmet"
#~ msgid "Remove from Favorites"
#~ msgstr "Ta bort från favoriter"
#~ msgid "Icon size"
#~ msgstr "Ikonstorlek"
#~ msgid "%s is away."
#~ msgstr "%s är borta."
#~ msgid "%s is offline."
#~ msgstr "%s är frånkopplad."
#~ msgid "%s is online."
#~ msgstr "%s är ansluten."
#~ msgid "%s is busy."
#~ msgstr "%s är upptagen."
#~ msgid "Normal"
#~ msgstr "Normal"
#~ msgid "Left"
#~ msgstr "Vänster"
#~ msgid "Right"
#~ msgstr "Höger"
#~ msgid "Upside-down"
#~ msgstr "Upp och ner"
#~ msgid "Configure display settings..."
#~ msgstr "Konfigurera skärminställningar.."

107
po/ta.po
View File

@@ -3,16 +3,16 @@
# This file is distributed under the same license as the gnome-shell-extensions package.
#
# தங்கமணி அருண் <thangam.arunx@gmail.com>, 2013.
# Shantha kumar <shkumar@redhat.com>, 2013.
# Shantha kumar <shkumar@redhat.com>, 2013, 2014.
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-11-10 03:36+0000\n"
"PO-Revision-Date: 2013-11-25 14:00+0530\n"
"POT-Creation-Date: 2014-09-14 19:34+0000\n"
"PO-Revision-Date: 2014-09-15 12:25+0630\n"
"Last-Translator: Shantha kumar <shkumar@redhat.com>\n"
"Language-Team: Tamil <>\n"
"Language-Team: Tamil <kde-i18n-doc@kde.org>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -50,15 +50,30 @@ msgstr ""
"புறக்கணிக்கிறது."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "தலைப்புப்பட்டியில் பட்டன்கள் அடுக்கப்பட்ட நிலை"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid ""
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"இந்தத் திறப்பானது GNOME ஷெல்லை இயக்கும் போது,org.gnome.desktop.wm.preferences "
"இல் உள்ள திறப்பைப் "
"புறக்கணிக்கிறது."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr ""
"சாளரங்களை திரை விளிம்புகளில் விடும் போது, விளிம்பு சட்டமாக்கலை செயற்படுத்து"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "முதன்மை திரையில் மட்டும் பணியிடங்கள்"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
"சொடுக்கி பயன்முறையில் சுட்டி நகர்வது நிற்கும் வரை கவனப் பகுதி மாறுவதைத் "
@@ -76,11 +91,11 @@ msgstr "பயன்பாட்டு சின்னம் மட்டும
msgid "Thumbnail and application icon"
msgstr "சிறுபடம் மற்றும் பயன்பாட்டு சின்னம்"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "சாளரத்தை இவ்வாறு காட்டு"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "தற்போதைய பணியிடத்தில் மட்டும் சாளரங்களைக் காட்டு"
@@ -109,37 +124,38 @@ msgstr ""
"மற்றும் பணியிட "
"எண் ஆகியவற்றைக் கொண்டிருக்கும் சரங்களின் பட்டியல்"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "பயன்பாடு"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "பணியிடம்"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
msgstr "விதியை சேர்"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "விதியைச் சேர்"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "புதிய பொருத்தும் விதியை உருவாக்கு"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "சேர்"
#: ../extensions/drive-menu/extension.js:73
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "இயக்கியை '%s' வெளித்தள்ளுவதில் தோல்வியடைந்தது:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "நீக்கக்கூடிய சாதனங்கள்"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "கோப்பைத் திற"
@@ -161,6 +177,11 @@ msgstr ""
"கொண்டிருக்கும்."
#: ../extensions/example/prefs.js:30
#| msgid "Message:"
msgid "Message"
msgstr "செய்தி"
#: ../extensions/example/prefs.js:43
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"
@@ -172,10 +193,6 @@ 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 "சாளரங்களுக்காக அதிக திரையை பயன்படுத்தவும்"
@@ -216,21 +233,21 @@ msgstr ""
msgid "Places"
msgstr "இடங்கள்"
#: ../extensions/places-menu/placeDisplay.js:58
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "\"%s\" ஐத் தொடங்குவதில் தோல்வியடைந்தது"
#: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:123
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "கணினி"
#: ../extensions/places-menu/placeDisplay.js:201
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "இல்லம்"
#: ../extensions/places-menu/placeDisplay.js:288
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "பிணையத்தை உலாவு"
@@ -250,53 +267,52 @@ msgstr "தீம் பெயர்"
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
#: ../extensions/window-list/extension.js:110
msgid "Close"
msgstr "மூடு"
#: ../extensions/window-list/extension.js:102
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "குறுக்கல் நீக்கு"
#: ../extensions/window-list/extension.js:103
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "சிறிதாக்கு"
#: ../extensions/window-list/extension.js:109
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "பெரிதாக்கல் நீக்கு"
#: ../extensions/window-list/extension.js:110
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr "பெரிதாக்கு"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr "அனைத்தையும் சிறிதாக்கு"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr "அனைத்தையும் குறுக்கல் நீக்கு"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr "அனைத்தையும் பெரிதாக்கு"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr " அனைத்தையும் பெரிதாக்கல் நீக்கு"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr "அனைத்தையும் மூடு"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "பணியிடம் காட்டி"
#: ../extensions/window-list/extension.js:743
#| msgid "Window Grouping"
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "சாளர பட்டியல்"
@@ -332,14 +348,15 @@ msgid "Always group windows"
msgstr "சாளரங்களை எப்பொதும் குழுவாக்கு"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "பணியிடப் பெயர்கள்:"
#| msgid "Workspace names:"
msgid "Workspace Names"
msgstr "பணியிடப் பெயர்கள்"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "பெயர்"
#: ../extensions/workspace-indicator/prefs.js:186
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "பணியிடம் %d"

172
po/te.po
View File

@@ -2,14 +2,14 @@
# Copyright (C) 2011 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
# Praveen Illa <mail2ipn@gmail.com>, 2011.
# Krishnababu Krothapalli <kkrothap@redhat.com>, 2013.
# Krishnababu Krothapalli <kkrothap@redhat.com>, 2013, 2014.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Project-Id-Version: \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-11-25 08:31+0000\n"
"PO-Revision-Date: 2013-10-01 04:16-0400\n"
"POT-Creation-Date: 2014-09-09 09:39+0000\n"
"PO-Revision-Date: 2014-09-09 16:25+0530\n"
"Last-Translator: Krishnababu Krothapalli <kkrothap@redhat.com>\n"
"Language-Team: Telugu <kde-i18n-doc@kde.org>\n"
"Language: te\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Zanata 3.1.2\n"
"X-Generator: Lokalize 1.5\n"
#: ../data/gnome-classic.desktop.in.h:1
#: ../data/gnome-classic.session.desktop.in.in.h:1
@@ -43,19 +43,35 @@ 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 "గ్నోమ్ షెల్ నందు నడుచునప్పుడు ఈ కీ org.gnome.mutter నందలి కీను వోవర్‌రైడ్ చేయును."
msgstr ""
"గ్నోమ్ షెల్ నందు నడుచునప్పుడు ఈ కీ org.gnome.mutter నందలి కీను వోవర్‌రైడ్ "
"చేయును."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:3
msgid "Arrangement of buttons on the titlebar"
msgstr "శీర్షికపట్టీపైన బటన్లు సర్దుట"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#| msgid ""
#| "This key overrides the key in org.gnome.mutter when running GNOME Shell."
msgid ""
"This key overrides the key in org.gnome.desktop.wm.preferences when running "
"GNOME Shell."
msgstr ""
"గ్నోమ్ షెల్ నందు నడుచునప్పుడు ఈ కీ org.gnome.desktop.wm.preferences నందలి "
"కీను వోవర్‌రైడ్ చేయును."
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
msgid "Enable edge tiling when dropping windows on screen edges"
msgstr "తెర అంచులనందు విండోలను విడువునప్పుడు ఎడ్జ్ టైటిలింగ్ చేతనం చేయి"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:4
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:6
msgid "Workspaces only on primary monitor"
msgstr "ప్రాధమిక మానిటర్ పైని కార్యక్షేత్రాలు మాత్రమే"
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:5
#: ../data/org.gnome.shell.extensions.classic-overrides.gschema.xml.in.h:7
msgid "Delay focus changes in mouse mode until the pointer stops moving"
msgstr ""
msgstr "సూచకి కదులుట ఆగునంతవరకు మౌస్ రీతినందు ఫోకస్ మార్పులను జాగుచేయి"
#: ../extensions/alternate-tab/prefs.js:20
msgid "Thumbnail only"
@@ -69,11 +85,11 @@ msgstr "అనువర్తనం ప్రతిమ మాత్రమే"
msgid "Thumbnail and application icon"
msgstr "థంబ్‌నెయిల్ మరియు అనువర్తనం ప్రతిమ"
#: ../extensions/alternate-tab/prefs.js:37
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr "విండోలు ఇలా ప్రజంట్ చేయి"
#: ../extensions/alternate-tab/prefs.js:62
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
msgstr "‌విండోలను ప్రస్తుత పనిస్థలం నందు మాత్రమే చూపుము"
@@ -98,38 +114,41 @@ msgid ""
"A list of strings, each containing an application id (desktop file name), "
"followed by a colon and the workspace number"
msgstr ""
"స్ట్రింగ్స్ జాబితా, ప్రతిదీ వొక అనువర్తనం ఐడి (డిస్కుటాప్ ఫైల్ పేరు)ను, వెంటనే కోలన్ మరియు పనిస్థలం సంఖ్యతో"
"స్ట్రింగ్స్ జాబితా, ప్రతిదీ వొక అనువర్తనం ఐడి (డిస్కుటాప్ ఫైల్ పేరు)ను, "
"వెంటనే కోలన్ మరియు పనిస్థలం సంఖ్యతో"
#: ../extensions/auto-move-windows/prefs.js:55
#: ../extensions/auto-move-windows/prefs.js:60
msgid "Application"
msgstr "అనువర్తనం"
#: ../extensions/auto-move-windows/prefs.js:64
#: ../extensions/auto-move-windows/prefs.js:106
#: ../extensions/auto-move-windows/prefs.js:69
#: ../extensions/auto-move-windows/prefs.js:127
msgid "Workspace"
msgstr "పనిస్థలం"
#: ../extensions/auto-move-windows/prefs.js:80
msgid "Add rule"
msgstr "నియమాన్ని జతచేయి"
#: ../extensions/auto-move-windows/prefs.js:85
#| msgid "Add rule"
msgid "Add Rule"
msgstr "నియమాన్ని జతచేయుము"
#: ../extensions/auto-move-windows/prefs.js:94
#: ../extensions/auto-move-windows/prefs.js:106
msgid "Create new matching rule"
msgstr "పోల్చే నియమం కొత్తది సృష్టించు"
#: ../extensions/auto-move-windows/prefs.js:98
#: ../extensions/auto-move-windows/prefs.js:111
msgid "Add"
msgstr "చేర్చు"
#: ../extensions/drive-menu/extension.js:73
#: ../extensions/drive-menu/extension.js:106
#, javascript-format
msgid "Ejecting drive '%s' failed:"
msgstr "'%s' డ్రైవ్ బయటకునెట్టుట విఫలమైంది:"
#: ../extensions/drive-menu/extension.js:90
#: ../extensions/drive-menu/extension.js:123
msgid "Removable devices"
msgstr "తీసివేయదగ్గ పరికరాలు"
#: ../extensions/drive-menu/extension.js:117
#: ../extensions/drive-menu/extension.js:150
msgid "Open File"
msgstr "ఫైలు తెరువు"
@@ -145,22 +164,24 @@ msgstr "ప్రత్యామ్నాయ గ్రీటింగ్ పా
msgid ""
"If not empty, it contains the text that will be shown when clicking on the "
"panel."
msgstr "ఒకవేళ ఖాళీ కాకపోతే, అది పానల్ పైన నొక్కినప్పుడు చూపించబడు పాఠం కలిగివుంటుంది."
msgstr ""
"ఒకవేళ ఖాళీ కాకపోతే, అది పానల్ పైన నొక్కినప్పుడు చూపించబడు పాఠం కలిగివుంటుంది."
#: ../extensions/example/prefs.js:30
msgid "Message"
msgstr "సందేశం"
#: ../extensions/example/prefs.js:43
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 "విండోల కొరకు ఎక్కువ తెరను వాడు"
@@ -171,8 +192,10 @@ msgid ""
"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
@@ -185,7 +208,8 @@ msgid ""
"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
@@ -193,20 +217,21 @@ msgstr ""
msgid "Places"
msgstr "స్థలములు"
#: ../extensions/places-menu/placeDisplay.js:58
#: ../extensions/places-menu/placeDisplay.js:57
#, javascript-format
msgid "Failed to launch \"%s\""
msgstr "\"%s\" ప్రారంభించుటలో విఫలమైంది"
#: ../extensions/places-menu/placeDisplay.js:100
#: ../extensions/places-menu/placeDisplay.js:123
#: ../extensions/places-menu/placeDisplay.js:99
#: ../extensions/places-menu/placeDisplay.js:122
msgid "Computer"
msgstr "కంప్యూటర్"
#: ../extensions/places-menu/placeDisplay.js:201
#: ../extensions/places-menu/placeDisplay.js:200
msgid "Home"
msgstr "నివాసం"
#: ../extensions/places-menu/placeDisplay.js:288
#: ../extensions/places-menu/placeDisplay.js:287
msgid "Browse Network"
msgstr "నెట్‌వర్కులో విహరించు"
@@ -226,55 +251,54 @@ msgstr "థీము పేరు"
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 "Close"
msgstr "మూయి"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr "పైకితెరువు"
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
msgstr "కిందకుమూయి"
#: ../extensions/window-list/extension.js:127
msgid "Unmaximize"
msgstr "చిన్నదిగాచేయి"
#: ../extensions/window-list/extension.js:128
msgid "Maximize"
msgstr ""
msgstr "పెద్దది చేయు"
#: ../extensions/window-list/extension.js:270
#: ../extensions/window-list/extension.js:300
msgid "Minimize all"
msgstr ""
msgstr "అన్నీ కిందకుమూయి"
#: ../extensions/window-list/extension.js:278
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr ""
msgstr "అన్నీ పైకితెరువు"
#: ../extensions/window-list/extension.js:286
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
msgstr ""
msgstr "అన్నీ పెద్దవిచేయి"
#: ../extensions/window-list/extension.js:295
#: ../extensions/window-list/extension.js:325
msgid "Unmaximize all"
msgstr ""
msgstr "అన్నీ చిన్నవిచేయి"
#: ../extensions/window-list/extension.js:304
#: ../extensions/window-list/extension.js:334
msgid "Close all"
msgstr ""
msgstr "అన్నీ మూయి"
#: ../extensions/window-list/extension.js:591
#: ../extensions/window-list/extension.js:644
#: ../extensions/workspace-indicator/extension.js:30
msgid "Workspace Indicator"
msgstr "పనిస్థలం సూచకి"
#: ../extensions/window-list/extension.js:743
#, fuzzy
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "విండో సమూహికీకరణ"
msgstr "విండో జాబితా"
#: ../extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml.in.h:1
msgid "When to group windows"
@@ -285,7 +309,8 @@ 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
@@ -305,14 +330,15 @@ msgid "Always group windows"
msgstr "విండోలను ఎల్లప్పుడు సమూహం చేయాలి"
#: ../extensions/workspace-indicator/prefs.js:141
msgid "Workspace names:"
msgstr "పనిస్థలం పేర్లు:"
msgid "Workspace Names"
msgstr "పనిస్థలం పేర్లు"
#: ../extensions/workspace-indicator/prefs.js:152
#: ../extensions/workspace-indicator/prefs.js:157
msgid "Name"
msgstr "పేరు"
#: ../extensions/workspace-indicator/prefs.js:186
#: ../extensions/workspace-indicator/prefs.js:198
#, javascript-format
msgid "Workspace %d"
msgstr "పనిస్థలం %d"

View File

@@ -2,20 +2,21 @@
# Copyright (C) 2012 gnome-shell-extensions's COPYRIGHT HOLDER
# This file is distributed under the same license as the gnome-shell-extensions package.
# Osman Karagöz <osmank3@gmail.com>, 2012.
# sabri ünal <yakushabb@gmail.com>, 2014
# Muhammet Kara <muhammetk@gmail.com>, 2013, 2014.
#
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: 2014-06-07 07:31+0000\n"
"PO-Revision-Date: 2014-06-07 21:23+0000\n"
"POT-Creation-Date: 2014-09-16 07:39+0000\n"
"PO-Revision-Date: 2014-09-16 11:34+0000\n"
"Last-Translator: Muhammet Kara <muhammetk@gmail.com>\n"
"Language-Team: Türkçe <gnome-turk@gnome.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tr_TR\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../data/gnome-classic.desktop.in.h:1
@@ -80,7 +81,7 @@ msgstr "Küçük resim ve uygulama simgesi"
#: ../extensions/alternate-tab/prefs.js:38
msgid "Present windows as"
msgstr ""
msgstr "Pencereleri farklı sun"
#: ../extensions/alternate-tab/prefs.js:69
msgid "Show only windows in the current workspace"
@@ -164,7 +165,7 @@ msgstr "İleti"
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 ""
msgstr "Bu örnek, Shell için uygun uzantıların nasıl geliştirileceğini göstermeyi amaçlar; bu yüzden kendi başına çok az işleve sahiptir.\nYine de karşılama mesajını özelleştirmek mümkündür."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:1
msgid "Use more screen for windows"
@@ -175,7 +176,7 @@ 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 ""
msgstr "Ekran en-boy oranına uyum sağlayarak ve sınır kutucuğunu küçültmek için daha da sıkılaştırarak, pencere küçük resimlerini yerleştirmek için ekranda daha fazla alan kullanmayı dene. Bu seçenek sadece doğal yerleştirme stratejisi ile geçerlidir."
#: ../extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml.in.h:3
msgid "Place window captions on top"
@@ -186,7 +187,7 @@ 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 "Eğer doğruysa, kabukta öntanıml olarak alta yerleştirme ayarını geçersiz kıl ve pencere açıklamalarını ilgili küçük resimlerin üstüne yerleştir. Bu ayarda yapılan değişikliklerin etkili olması için kabuğun yeniden başlatılması gerekir."
#: ../extensions/places-menu/extension.js:78
#: ../extensions/places-menu/extension.js:81
@@ -233,7 +234,7 @@ msgstr "Kapat"
#: ../extensions/window-list/extension.js:120
msgid "Unminimize"
msgstr ""
msgstr "Önceki Boyutuna Getir"
#: ../extensions/window-list/extension.js:121
msgid "Minimize"
@@ -253,7 +254,7 @@ msgstr "Tümünü simge durumuna küçült"
#: ../extensions/window-list/extension.js:308
msgid "Unminimize all"
msgstr ""
msgstr "Tümünü Önceki Boyutuna Getir"
#: ../extensions/window-list/extension.js:316
msgid "Maximize all"
@@ -272,7 +273,7 @@ msgstr "Hepsini kapat"
msgid "Workspace Indicator"
msgstr "Çalışma Alanı Belirteci"
#: ../extensions/window-list/extension.js:798
#: ../extensions/window-list/extension.js:808
msgid "Window List"
msgstr "Pencere Listesi"