Codebase list gnome-shell-extensions / 20f8fcb
Merge branch 'debian' into kali/master Daniel Ruiz de Alegría 1 year, 4 months ago
13 changed file(s) with 108 addition(s) and 172 deletion(s). Raw diff Collapse all Expand all
0 43.1
1 ====
2 * Fixed crash [Florian; !243]
3 * Misc. bug fixes and cleanups [mowemcfc; !244]
4
5 Contributors:
6 Florian Müllner, mowemcfc
7
8 Translators:
9 Sabri Ünal [tr]
10
011 43.0
112 ====
213
3939
4040 // cards
4141 $card_bg_color: if($variant == 'light', darken($bg_color, 5%), lighten($bg_color, 2%));
42 $card_outer_borders_color: transparentize($fg_color, 0.98);
4243
4344 // notifications
4445 $bubble_buttons_color: if($variant == 'light', darken($bg_color, 12%), lighten($bg_color, 10%));
104104 &:insensitive { @include button(insensitive);}
105105 &:active { @include button(active);}
106106 &:checked { @include button(checked);}
107 }
108
109 // normal icon-only button
110 %icon_button {
111 border-radius: 99px;
112 border-style: solid;
113 border-width: 1px;
114 font-weight: bold;
115 padding: $base_padding*2;
116
117 @include button(normal);
118 &:focus { @include button(focus);}
119 &:hover { @include button(hover);}
120 &:insensitive { @include button(insensitive);}
121 &:active { @include button(active);}
122 &:checked { @include button(checked);}
123
124 & > StIcon { icon-size: $base_icon_size; }
107
108 &.flat {
109 @include button(normal, $flat:true);
110 &:focus { @include button(focus, $flat:true);}
111 &:hover { @include button(hover, $flat:true);}
112 &:insensitive { @include button(insensitive, $flat:true);}
113 &:active { @include button(active, $flat:true);}
114 &:checked { @include button(checked, $flat:true);}
115 }
125116 }
126117
127118 // buttons in dialogs/notifications
142133 &:hover { @include button(hover, $c:$bubble_buttons_color);}
143134 &:active { @include button(active, $c:$bubble_buttons_color);}
144135 &:checked { @include button(checked, $c:$bubble_buttons_color);}
145
136
146137 &:first-child:ltr {
147 border-radius: 0 0 0 $bubble_button_radius;
138 border-radius: 0 0 0 $bubble_button_radius;
148139 }
149140
150141 &:last-child:ltr {
142142 //
143143 // since buttons are all flat an borderless now the mixin is simpler
144144
145 @mixin button($t, $tc:$fg_color, $c:$bg_color) {
145 @mixin button($t, $tc:$fg_color, $c:$bg_color, $flat: false) {
146146
147147 $button_bg_color: mix($tc, $c, $button_mix_factor);
148148 transition-duration: 100ms;
151151 @if $t==normal {
152152 color: $tc;
153153 background-color: $button_bg_color;
154 @if $flat {
155 background-color: transparent;
156 }
154157 @if $is_highcontrast == "true" {
155158 box-shadow: inset 0 0 0 1px $button_inset_color;
156159 }
309312 @mixin card($flat: false) {
310313 border-radius: $base_border_radius;
311314 margin: $base_margin;
312 box-shadow: 0 1px 1px 0 $shadow_color;
315 box-shadow: inset 0 0 0 1px $card_outer_borders_color;
313316
314317 @if $flat {
315318 @include button(undecorated);
3737
3838 // cards
3939 $card_bg_color: if($variant == 'light', darken($bg_color, 12%), lighten($bg_color, 12%));
40 $card_outer_borders_color: $card_bg_color;
4041
4142 // notifications
4243 $bubble_buttons_color: if($variant == 'light', darken($bg_color, 22%), lighten($bg_color, 31%));
55 }
66
77 .icon-button {
8 @extend %icon_button; // that's it
9 }
8 @extend .button; // same style as buttons
9
10 border-radius: 99px;
11 padding: $base_padding*2;
12 min-height: 16px;
13
14 StIcon {
15 icon-size: $base_icon_size;
16 -st-icon-style: symbolic;
17 }
18 }
1414
1515 /* today button (the date) */
1616 .datemenu-today-button {
17 @include card($flat: true);
17 @include card(flat);
1818 padding: $base_padding * 1.5;
1919
2020 // weekday label
4747 }
4848
4949 .quick-slider {
50 padding: 0 $base_padding;
51
5250 & > StBoxLayout { spacing: $base_padding; }
5351
5452 .slider-bin {
5755 padding: $base_padding;
5856 border-radius: 99px;
5957 }
60 .quick-toggle-icon { icon-size: $base_icon_size; }
61 .icon-button { background-color: transparent; }
58 .quick-toggle-icon {
59 icon-size: $base_icon_size;
60
61 &:ltr { margin-left: $base_padding; }
62 &:rtl { margin-right: $base_padding; }
63 }
6264 }
6365
6466 .quick-toggle-menu {
99101 .quick-settings-system-item {
100102 & > StBoxLayout { spacing: 2 * $base_padding; }
101103
102 .icon-button > StIcon { -st-icon-style: symbolic; }
103
104104 & .power-item {
105105 min-height: 0;
106106 min-width: 0;
0 gnome-shell-extensions (43.1-1) unstable; urgency=medium
1
2 * New upstream release
3
4 -- Jeremy Bicha <[email protected]> Tue, 22 Nov 2022 14:14:48 -0500
5
06 gnome-shell-extensions (43.0-2+kali1) kali-dev; urgency=medium
17
28 * Sync with Debian
511
612 -- Arnaud Rebillout <[email protected]> Wed, 02 Nov 2022 14:34:22 +0700
713
14 gnome-shell-extensions (43.0-0kali2) kali-dev; urgency=medium
15
16 * Fix debian/control.in
17
18 -- Daniel Ruiz de Alegría <[email protected]> Fri, 30 Sep 2022 18:45:13 +0200
19
820 gnome-shell-extensions (43.0-2) unstable; urgency=medium
921
1022 * Release to unstable
1123
1224 -- Jeremy Bicha <[email protected]> Tue, 27 Sep 2022 19:13:41 -0400
13
14 gnome-shell-extensions (43.0-0kali2) kali-dev; urgency=medium
15
16 * Fix debian/control.in
17
18 -- Daniel Ruiz de Alegría <[email protected]> Fri, 30 Sep 2022 18:45:13 +0200
1925
2026 gnome-shell-extensions (43.0-0kali1) kali-dev; urgency=medium
2127
0 #!/bin/sh
0 #!/bin/bash
11
22 srcdir=`dirname $0`
33 srcdir=`(cd $srcdir && pwd)`
859859 this._dndWindow = null;
860860
861861 this._settings = ExtensionUtils.getSettings();
862 this._groupingModeChangedId = this._settings.connect(
863 'changed::grouping-mode', this._groupingModeChanged.bind(this));
862 this._settings.connect('changed::grouping-mode',
863 () => this._groupingModeChanged());
864864 this._grouped = undefined;
865865 this._groupingModeChanged();
866866 }
11291129 Main.xdndHandler.disconnect(this._dragBeginId);
11301130 Main.xdndHandler.disconnect(this._dragEndId);
11311131
1132 this._settings.disconnect(this._groupingModeChangedId);
1132 this._settings.run_dispose();
11331133
11341134 let windows = global.get_window_actors();
11351135 for (let i = 0; i < windows.length; i++)
00 project('gnome-shell-extensions',
1 version: '43.0',
1 version: '43.1',
22 meson_version: '>= 0.53.0',
33 license: 'GPL2+'
44 )
00 # Turkish translation for gnome-shell-extensions.
1 # Copyright (C) 2012-2019 gnome-shell-extensions's COPYRIGHT HOLDER
1 # Copyright (C) 2012-2022 gnome-shell-extensions's COPYRIGHT HOLDER
22 # This file is distributed under the same license as the gnome-shell-extensions package.
33 #
44 # Osman Karagöz <[email protected]>, 2012.
1313 "Project-Id-Version: gnome-shell-extensions master\n"
1414 "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
1515 "issues\n"
16 "POT-Creation-Date: 2021-11-06 14:08+0000\n"
16 "POT-Creation-Date: 2022-07-10 12:54+0000\n"
1717 "PO-Revision-Date: 2022-02-14 01:35+0300\n"
1818 "Last-Translator: Emin Tufan Çetin <[email protected]>\n"
1919 "Language-Team: Turkish <[email protected]>\n"
4141 msgid "GNOME Classic on Xorg"
4242 msgstr "Xorg üstünde GNOME Klasik"
4343
44 #: extensions/apps-menu/extension.js:112
44 #: extensions/apps-menu/extension.js:118
4545 msgid "Favorites"
4646 msgstr "Gözdeler"
4747
48 #: extensions/apps-menu/extension.js:366
48 #: extensions/apps-menu/extension.js:379
4949 msgid "Applications"
5050 msgstr "Uygulamalar"
5151
6161 "Her biri, bir uygulama kimliği (masaüstü dosya adı) ardından gelen iki nokta "
6262 "üst üste ve çalışma alanı numarasını içeren dizgeler listesi"
6363
64 #: extensions/auto-move-windows/prefs.js:34
64 #: extensions/auto-move-windows/prefs.js:152
6565 msgid "Workspace Rules"
6666 msgstr "Çalışma Alanı Kuralları"
6767
68 #: extensions/auto-move-windows/prefs.js:236
68 #: extensions/auto-move-windows/prefs.js:306
6969 msgid "Add Rule"
7070 msgstr "Kural Ekle"
7171
7272 #. TRANSLATORS: %s is the filesystem name
73 #: extensions/drive-menu/extension.js:133
74 #: extensions/places-menu/placeDisplay.js:233
73 #: extensions/drive-menu/extension.js:126
74 #: extensions/places-menu/placeDisplay.js:210
7575 #, javascript-format
7676 msgid "Ejecting drive “%s” failed:"
7777 msgstr "“%s” sürücüsü çıkarılamadı:"
7878
79 #: extensions/drive-menu/extension.js:149
79 #: extensions/drive-menu/extension.js:145
8080 msgid "Removable devices"
8181 msgstr "Çıkarılabilir aygıtlar"
8282
83 #: extensions/drive-menu/extension.js:171
83 #: extensions/drive-menu/extension.js:167
8484 msgid "Open Files"
8585 msgstr "Dosyaları Aç"
8686
9595 "This setting applies only with the natural placement strategy."
9696 msgstr ""
9797 "Ekran en-boy oranına uyarak ve sınır kutucuğunu küçültüp daha da "
98 "sıkılaştırarak, pencere küçük resimlerini yerleştirmek için ekranda daha "
99 "çok alan kullanmayı dene. Bu seçenek yalnızca doğal yerleştirme stratejisi "
100 "ile geçerlidir."
98 "sıkılaştırarak, pencere küçük resimlerini yerleştirmek için ekranda daha çok "
99 "alan kullanmayı dene. Bu seçenek yalnızca doğal yerleştirme stratejisi ile "
100 "geçerlidir."
101101
102102 #: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
103103 msgid "Place window captions on top"
114114 "Yapılan değişikliklerin etkili olması için kabuğun yeniden başlatılması "
115115 "gerekir."
116116
117 #: extensions/places-menu/extension.js:88
118 #: extensions/places-menu/extension.js:91
117 #: extensions/places-menu/extension.js:94
118 #: extensions/places-menu/extension.js:97
119119 msgid "Places"
120120 msgstr "Yerler"
121121
122 #: extensions/places-menu/placeDisplay.js:46
122 #: extensions/places-menu/placeDisplay.js:49
123123 #, javascript-format
124124 msgid "Failed to launch “%s”"
125125 msgstr "“%s” başlatılamadı"
126126
127 #: extensions/places-menu/placeDisplay.js:61
127 #: extensions/places-menu/placeDisplay.js:64
128128 #, javascript-format
129129 msgid "Failed to mount volume for “%s”"
130130 msgstr "“%s” için birim bağlanamadı"
131131
132 #: extensions/places-menu/placeDisplay.js:125
132133 #: extensions/places-menu/placeDisplay.js:148
133 #: extensions/places-menu/placeDisplay.js:171
134134 msgid "Computer"
135135 msgstr "Bilgisayar"
136136
137 #: extensions/places-menu/placeDisplay.js:359
137 #: extensions/places-menu/placeDisplay.js:336
138138 msgid "Home"
139139 msgstr "Ev"
140140
141 #: extensions/places-menu/placeDisplay.js:404
141 #: extensions/places-menu/placeDisplay.js:381
142142 msgid "Browse Network"
143143 msgstr "Ağa Gözat"
144144
178178 msgid "Maximize"
179179 msgstr "En büyük duruma getir"
180180
181 #: extensions/window-list/extension.js:434
181 #: extensions/window-list/extension.js:483
182182 msgid "Minimize all"
183183 msgstr "Tümünü simge durumuna küçült"
184184
185 #: extensions/window-list/extension.js:440
185 #: extensions/window-list/extension.js:489
186186 msgid "Unminimize all"
187187 msgstr "Tümünü önceki duruma getir"
188188
189 #: extensions/window-list/extension.js:446
189 #: extensions/window-list/extension.js:495
190190 msgid "Maximize all"
191191 msgstr "Tümünü en büyük duruma getir"
192192
193 #: extensions/window-list/extension.js:454
193 #: extensions/window-list/extension.js:503
194194 msgid "Unmaximize all"
195195 msgstr "Tümünü önceki duruma getir"
196196
197 #: extensions/window-list/extension.js:462
197 #: extensions/window-list/extension.js:511
198198 msgid "Close all"
199199 msgstr "Tümünü kapat"
200200
201 #: extensions/window-list/extension.js:741
201 #: extensions/window-list/extension.js:795
202202 msgid "Window List"
203203 msgstr "Pencere Listesi"
204204
216216 "“always” (her zaman)."
217217
218218 #: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
219 #: extensions/window-list/prefs.js:86
219 #: extensions/window-list/prefs.js:79
220220 msgid "Show windows from all workspaces"
221221 msgstr "Tüm çalışma alanlarındaki pencereleri göster"
222222
235235 "Whether to show the window list on all connected monitors or only on the "
236236 "primary one."
237237 msgstr ""
238 "Pencere listesinin tüm bağlı monitörlerde mi yoksa yalnızca birincil monitörde "
239 "mi gösterileceğini belirtir."
240
241 #: extensions/window-list/prefs.js:39
238 "Pencere listesinin tüm bağlı monitörlerde mi yoksa yalnızca birincil "
239 "monitörde mi gösterileceğini belirtir."
240
241 #: extensions/window-list/prefs.js:35
242242 msgid "Window Grouping"
243243 msgstr "Pencere Kümeleme"
244244
245 #: extensions/window-list/prefs.js:63
245 #: extensions/window-list/prefs.js:40
246246 msgid "Never group windows"
247247 msgstr "Pencereleri asla kümeleme"
248248
249 #: extensions/window-list/prefs.js:64
249 #: extensions/window-list/prefs.js:41
250250 msgid "Group windows when space is limited"
251251 msgstr "Yer kısıtlıyken pencereleri kümele"
252252
253 #: extensions/window-list/prefs.js:65
253 #: extensions/window-list/prefs.js:42
254254 msgid "Always group windows"
255255 msgstr "Pencereleri her zaman kümele"
256256
257 #: extensions/window-list/prefs.js:81
257 #: extensions/window-list/prefs.js:66
258258 msgid "Show on all monitors"
259259 msgstr "Tüm monitörlerde göster"
260260
261 #: extensions/window-list/workspaceIndicator.js:249
262 #: extensions/workspace-indicator/extension.js:254
261 #: extensions/window-list/workspaceIndicator.js:261
262 #: extensions/workspace-indicator/extension.js:266
263263 msgid "Workspace Indicator"
264264 msgstr "Çalışma Alanı Belirteci"
265265
266 #: extensions/workspace-indicator/prefs.js:33
266 #: extensions/workspace-indicator/prefs.js:62
267 #, javascript-format
268 msgid "Workspace %d"
269 msgstr "Çalışma Alanı %d"
270
271 #: extensions/workspace-indicator/prefs.js:129
267272 msgid "Workspace Names"
268273 msgstr "Çalışma Alanı Adları"
269274
270 #: extensions/workspace-indicator/prefs.js:66
271 #, javascript-format
272 msgid "Workspace %d"
273 msgstr "Çalışma Alanı %d"
274
275 #: extensions/workspace-indicator/prefs.js:207
275 #: extensions/workspace-indicator/prefs.js:255
276276 msgid "Add Workspace"
277277 msgstr "Çalışma Alanı Ekle"
278
279 #~ msgid "Application"
280 #~ msgstr "Uygulama"
281
282 #~ msgid "Create new matching rule"
283 #~ msgstr "Yeni bir eşleşme kuralı oluştur"
284
285 #~ msgid "Add"
286 #~ msgstr "Ekle"
287
288 #~ msgid "Name"
289 #~ msgstr "Ad"
290
291 #~ msgid "Attach modal dialog to the parent window"
292 #~ msgstr "Yardımcı iletişim penceresini ana pencereye iliştir"
293
294 #~ msgid ""
295 #~ "This key overrides the key in org.gnome.mutter when running GNOME Shell."
296 #~ msgstr ""
297 #~ "Bu anahtar, GNOME Shell çalışırken org.gnome.mutter içindeki anahtarı "
298 #~ "geçersiz kılar."
299
300 #~ msgid "Arrangement of buttons on the titlebar"
301 #~ msgstr "Başlık çubuğundaki düğmelerin düzeni"
302
303 #~ msgid ""
304 #~ "This key overrides the key in org.gnome.desktop.wm.preferences when "
305 #~ "running GNOME Shell."
306 #~ msgstr ""
307 #~ "Bu anahtar, GNOME Kabuğu çalışırken org.gnome.desktop.wm.preferences "
308 #~ "içindeki anahtarı geçersiz kılar."
309
310 #~ msgid "Enable edge tiling when dropping windows on screen edges"
311 #~ msgstr ""
312 #~ "Pencereler ekran kenarlarında bırakıldığında kenar döşemeyi etkinleştir"
313
314 #~ msgid "Workspaces only on primary monitor"
315 #~ msgstr "Çalışma alanları sadece birincil ekranda"
316
317 #~ msgid "Delay focus changes in mouse mode until the pointer stops moving"
318 #~ msgstr ""
319 #~ "Fare kipinde odak değişikliklerini işaretçi hareketi durana kadar beklet"
320
321 #~ msgid "Thumbnail only"
322 #~ msgstr "Yalnızca küçük resim"
323
324 #~ msgid "Application icon only"
325 #~ msgstr "Sadece uygulama simgesi"
326
327 #~ msgid "Thumbnail and application icon"
328 #~ msgstr "Küçük resim ve uygulama simgesi"
329
330 #~ msgid "Present windows as"
331 #~ msgstr "Pencereleri farklı sun"
332
333 #~ msgid "Activities Overview"
334 #~ msgstr "Etkinlikler Genel Görünümü"
335
336 #~ msgid "Hello, world!"
337 #~ msgstr "Merhaba dünya!"
338
339 #~ msgid "Alternative greeting text."
340 #~ msgstr "Alternatif karşılama metni."
341
342 #~ msgid ""
343 #~ "If not empty, it contains the text that will be shown when clicking on "
344 #~ "the panel."
345 #~ msgstr "Eğer boş değilse, panele tıklandığında gösterilecek metni içerir."
346
347 #~ msgid "Message"
348 #~ msgstr "İleti"
349
350 #~ msgid ""
351 #~ "Example aims to show how to build well behaved extensions for the Shell "
352 #~ "and as such it has little functionality on its own.\n"
353 #~ "Nevertheless it’s possible to customize the greeting message."
354 #~ msgstr ""
355 #~ "Bu örnek, Shell için uygun eklentilerin nasıl geliştirileceğini "
356 #~ "göstermeyi amaçlar; bu yüzden kendi başına çok az işleve sahiptir.\n"
357 #~ "Yine de karşılama iletisini özelleştirmek mümkündür."
358
359 #~ msgid "CPU"
360 #~ msgstr "İşlemci"
361
362 #~ msgid "Memory"
363 #~ msgstr "Bellek"