Merge lp:~docky-core/plank/trunk-next into lp:plank

Proposed by Rico Tzschichholz
Status: Merged
Merged at revision: 1504
Proposed branch: lp:~docky-core/plank/trunk-next
Merge into: lp:plank
Diff against target: 5410 lines (+1159/-1362)
75 files modified
configure.ac (+7/-47)
data/ui/preferences.ui (+620/-596)
docklets/Trash/TrashDockItem.vala (+1/-4)
lib/DBus/Client.vala (+0/-9)
lib/DBusManager.vala (+0/-9)
lib/DockController.vala (+1/-4)
lib/DockRenderer.vala (+0/-12)
lib/Docklets/DockletManager.vala (+0/-4)
lib/Drawing/Renderer.vala (+0/-36)
lib/Drawing/SurfaceCache.vala (+0/-5)
lib/Drawing/Theme.vala (+0/-8)
lib/Factories/AbstractMain.vala (+43/-66)
lib/Items/ApplicationDockItem.vala (+0/-4)
lib/Items/FileDockItem.vala (+0/-16)
lib/Makefile.am (+2/-2)
lib/PositionManager.vala (+0/-10)
lib/Widgets/DockWindow.vala (+0/-4)
lib/Widgets/PreferencesWindow.vala (+48/-87)
lib/libplank.symbols (+0/-2)
lib/plank.deps (+1/-1)
lib/plank.pc.in (+1/-1)
po/am.po (+8/-8)
po/ar.po (+8/-8)
po/bg.po (+8/-8)
po/bs.po (+8/-8)
po/ca.po (+8/-8)
po/cs.po (+8/-8)
po/de.po (+9/-9)
po/el.po (+8/-8)
po/en_AU.po (+8/-8)
po/en_CA.po (+8/-8)
po/en_GB.po (+4/-4)
po/eo.po (+8/-8)
po/es.po (+8/-8)
po/et.po (+8/-8)
po/eu.po (+9/-9)
po/fi.po (+8/-8)
po/fr.po (+14/-14)
po/gd.po (+8/-8)
po/gl.po (+8/-8)
po/he.po (+8/-8)
po/hr.po (+11/-11)
po/hu.po (+8/-8)
po/id.po (+8/-8)
po/it.po (+8/-8)
po/ja.po (+8/-8)
po/ka.po (+8/-8)
po/ko.po (+3/-3)
po/lt.po (+9/-9)
po/lv.po (+8/-8)
po/ml.po (+8/-8)
po/nb.po (+8/-8)
po/nl.po (+9/-9)
po/nn.po (+8/-8)
po/pl.po (+9/-9)
po/pt.po (+8/-8)
po/pt_BR.po (+8/-8)
po/ro.po (+9/-9)
po/ru.po (+8/-8)
po/sk.po (+8/-8)
po/sl.po (+8/-8)
po/sma.po (+8/-8)
po/sq.po (+8/-8)
po/sr.po (+4/-4)
po/sr@latin.po (+8/-8)
po/sv.po (+8/-8)
po/ta.po (+9/-9)
po/te.po (+8/-8)
po/th.po (+8/-8)
po/tr.po (+8/-8)
po/uk.po (+8/-8)
po/uz.po (+8/-8)
po/vi.po (+8/-8)
po/zh_CN.po (+8/-8)
po/zh_TW.po (+8/-8)
To merge this branch: bzr merge lp:~docky-core/plank/trunk-next
Reviewer Review Type Date Requested Status
Docky Core Pending
Review via email: mp+286168@code.launchpad.net

Description of the change

FOR TESTING PURPOSES and will be occasionally rebased and eventually merged.

To post a comment you must log in.
lp:~docky-core/plank/trunk-next updated
1502. By Rico Tzschichholz

po: Update translations

1503. By Rico Tzschichholz

lib: Update symbols

1504. By Rico Tzschichholz

build: Only cairo >= 1.13 is required for HiDPI

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'configure.ac'
2--- configure.ac 2015-11-03 12:01:37 +0000
3+++ configure.ac 2016-02-16 14:34:53 +0000
4@@ -108,8 +108,8 @@
5 # -----------------------------------------------------------
6 # Dependencies
7 # -----------------------------------------------------------
8-GTK_MIN_VERSION=3.4.0
9-GLIB_MIN_VERSION=2.32.0
10+GTK_MIN_VERSION=3.10.0
11+GLIB_MIN_VERSION=2.40.0
12 GDK_PIXBUF_MIN_VERSION=2.26.0
13 BAMF_MIN_VERSION=0.2.92
14 CAIRO_MIN_VERSION=1.10
15@@ -124,6 +124,7 @@
16 gdk-x11-3.0 >= $GTK_MIN_VERSION \
17 gdk-pixbuf-2.0 >= $GDK_PIXBUF_MIN_VERSION \
18 cairo >= $CAIRO_MIN_VERSION \
19+ gee-0.8 \
20 libbamf3 >= $BAMF_MIN_VERSION \
21 libwnck-3.0 \
22 x11"
23@@ -135,6 +136,7 @@
24 --pkg gdk-x11-3.0 \
25 --pkg gdk-pixbuf-2.0 \
26 --pkg cairo \
27+ --pkg gee-0.8 \
28 --pkg libbamf3 \
29 --pkg libwnck-3.0 \
30 --pkg posix \
31@@ -168,41 +170,20 @@
32 # target-glib flag accoringly
33 # -----------------------------------------------------------
34
35-VALAFLAGS="--target-glib=2.32"
36-
37-PKG_CHECK_MODULES(GLIB_2_34,
38- [gobject-2.0 >= 2.34 glib-2.0 >= 2.34 gio-2.0 >= 2.34], [VALAFLAGS="--target-glib=2.34"], []
39-)
40-
41+VALAFLAGS="--target-glib=2.40"
42
43 # -----------------------------------------------------------
44 # Optional Dependencies
45 # -----------------------------------------------------------
46
47-# Check for HiDPI support of Gtk+ and Cairo
48-HIDPI_PKGS="gtk+-3.0 >= 3.10.0 cairo >= 1.13"
49+# Check for HiDPI support of Cairo
50+HIDPI_PKGS="cairo >= 1.13"
51 PKG_CHECK_MODULES(HIDPI, $HIDPI_PKGS, [enable_hidpi=yes], [enable_hidpi=no])
52 if test "x$enable_hidpi" = "xyes" ; then
53 VALAFLAGS="$VALAFLAGS --define HAVE_HIDPI"
54 fi
55 AM_CONDITIONAL([HAVE_HIDPI], [test "x$enable_hidpi" = "xyes"])
56
57-# Check for FrameClock support of Gtk+
58-GTK_PKGS="gtk+-3.0 >= 3.8"
59-PKG_CHECK_MODULES(FRAMECLOCK, $GTK_PKGS, [enable_gtk38=yes], [enable_gtk38=no])
60-if test "x$enable_gtk38" = "xyes" ; then
61- VALAFLAGS="$VALAFLAGS --define HAVE_GTK_3_8"
62-fi
63-AM_CONDITIONAL([HAVE_GTK_3_8], [test "x$enable_gtk38" = "xyes"])
64-
65-# Check for CSD support of Gtk+
66-GTK_PKGS="gtk+-3.0 >= 3.10.0"
67-PKG_CHECK_MODULES(GTK, $GTK_PKGS, [enable_gtk310=yes], [enable_gtk310=no])
68-if test "x$enable_gtk310" = "xyes" ; then
69- VALAFLAGS="$VALAFLAGS --define HAVE_GTK_3_10"
70-fi
71-AM_CONDITIONAL([HAVE_GTK_3_10], [test "x$enable_gtk310" = "xyes"])
72-
73 # Check for newer BAMF
74 BAMF_PKGS="libbamf3 >= 0.4.0"
75 PKG_CHECK_MODULES(BAMF, $BAMF_PKGS, [enable_bamf_0_4=yes], [enable_bamf_0_4=no])
76@@ -211,25 +192,6 @@
77 fi
78 AM_CONDITIONAL([HAVE_BAMF_0_4], [test "x$enable_bamf_0_4" = "xyes"])
79
80-# Check for gee-0.8 and prefer to use it, no automatic fallback to gee-1.0 (0.6)
81-AC_ARG_ENABLE([gee-0.8],
82- AS_HELP_STRING([--enable-gee-0.8],
83- [Enable use of gee-0.8 instead of gee-1.0]),
84- [enable_gee_0_8=$enableval],
85- [enable_gee_0_8=yes])
86-if test "x$enable_gee_0_8" = "xyes" ; then
87- GEE_DEPEND=gee-0.8
88- PLANK_CORE_PKGS="$PLANK_CORE_PKGS gee-0.8"
89- PLANK_CORE_VALA_PKGS="$PLANK_CORE_VALA_PKGS --pkg gee-0.8"
90- VALAFLAGS="$VALAFLAGS --define HAVE_GEE_0_8"
91-else
92- GEE_DEPEND=gee-1.0
93- PLANK_CORE_PKGS="$PLANK_CORE_PKGS gee-1.0"
94- PLANK_CORE_VALA_PKGS="$PLANK_CORE_VALA_PKGS --pkg gee-1.0"
95-fi
96-AM_CONDITIONAL([HAVE_GEE_0_8], [test "x$enable_gee_0_8" = "xyes"])
97-AC_SUBST(GEE_DEPEND)
98-
99 # Support barrier-supported unhiding using Xinput 2.3
100 XFIXES_MIN_VERSION=5.0
101 XINPUT_MIN_VERSION=1.6.99.1
102@@ -397,7 +359,6 @@
103 data/icons/Makefile
104 data/themes/Makefile
105 lib/Makefile
106-lib/plank.deps
107 lib/plank.pc
108 lib/Version.vala
109 src/Makefile
110@@ -423,7 +384,6 @@
111 Vala Flags..................: ${VALAFLAGS}
112 C Compiler Flags............: ${CFLAGS}
113
114- Use gee-0.8.................: ${enable_gee_0_8}
115 Dbusmenu support............: ${enable_dbusmenu}
116 HiDPI support...............: ${enable_hidpi}
117 XInput Barriers support.....: ${enable_barriers}
118
119=== modified file 'data/ui/preferences.ui'
120--- data/ui/preferences.ui 2016-01-14 13:33:33 +0000
121+++ data/ui/preferences.ui 2016-02-16 14:34:53 +0000
122@@ -1,7 +1,7 @@
123 <?xml version="1.0" encoding="UTF-8"?>
124 <!-- Generated with glade 3.19.0
125
126-Copyright (C) 2014 Rico Tzschichholz
127+Copyright (C) 2016 Rico Tzschichholz
128
129 This file is part of Plank.
130
131@@ -20,10 +20,10 @@
132
133 -->
134 <interface domain="plank">
135- <requires lib="gtk+" version="3.4"/>
136+ <requires lib="gtk+" version="3.10"/>
137 <!-- interface-license-type gplv3 -->
138 <!-- interface-name plank -->
139- <!-- interface-copyright 2014 Rico Tzschichholz -->
140+ <!-- interface-copyright 2016 Rico Tzschichholz -->
141 <object class="GtkAdjustment" id="adj_hide_delay">
142 <property name="upper">2500</property>
143 <property name="step_increment">50</property>
144@@ -49,597 +49,621 @@
145 <property name="step_increment">5</property>
146 <property name="page_increment">10</property>
147 </object>
148- <object class="GtkStack" id="dock_preferences">
149- <property name="visible">True</property>
150- <property name="can_focus">False</property>
151- <child>
152- <object class="GtkGrid" id="grid_appearance">
153- <property name="visible">True</property>
154- <property name="can_focus">False</property>
155- <property name="valign">start</property>
156- <property name="margin_left">16</property>
157- <property name="margin_right">16</property>
158- <property name="margin_top">16</property>
159- <property name="margin_bottom">16</property>
160- <property name="row_spacing">8</property>
161- <property name="column_spacing">12</property>
162- <property name="row_homogeneous">True</property>
163- <child>
164- <object class="GtkLabel" id="l_theme">
165- <property name="visible">True</property>
166- <property name="can_focus">False</property>
167- <property name="halign">end</property>
168- <property name="label" translatable="yes">Theme:</property>
169- <property name="justify">right</property>
170- </object>
171- <packing>
172- <property name="left_attach">0</property>
173- <property name="top_attach">0</property>
174- </packing>
175- </child>
176- <child>
177- <object class="GtkLabel" id="l_position">
178- <property name="visible">True</property>
179- <property name="can_focus">False</property>
180- <property name="halign">end</property>
181- <property name="label" translatable="yes">Position:</property>
182- <property name="justify">right</property>
183- </object>
184- <packing>
185- <property name="left_attach">0</property>
186- <property name="top_attach">1</property>
187- </packing>
188- </child>
189- <child>
190- <object class="GtkComboBoxText" id="cb_theme">
191- <property name="width_request">200</property>
192- <property name="visible">True</property>
193- <property name="can_focus">False</property>
194- <property name="hexpand">True</property>
195- </object>
196- <packing>
197- <property name="left_attach">1</property>
198- <property name="top_attach">0</property>
199- <property name="width">3</property>
200- </packing>
201- </child>
202- <child>
203- <object class="GtkComboBoxText" id="cb_position">
204- <property name="width_request">200</property>
205- <property name="visible">True</property>
206- <property name="can_focus">False</property>
207- <items>
208- <item id="0" translatable="yes">Left</item>
209- <item id="1" translatable="yes">Right</item>
210- <item id="2" translatable="yes">Top</item>
211- <item id="3" translatable="yes">Bottom</item>
212- </items>
213- </object>
214- <packing>
215- <property name="left_attach">1</property>
216- <property name="top_attach">1</property>
217- <property name="width">3</property>
218- </packing>
219- </child>
220- <child>
221- <object class="GtkLabel" id="l_alignment">
222- <property name="visible">True</property>
223- <property name="can_focus">False</property>
224- <property name="halign">end</property>
225- <property name="label" translatable="yes">Alignment:</property>
226- <property name="justify">right</property>
227- </object>
228- <packing>
229- <property name="left_attach">0</property>
230- <property name="top_attach">3</property>
231- </packing>
232- </child>
233- <child>
234- <object class="GtkComboBoxText" id="cb_alignment">
235- <property name="visible">True</property>
236- <property name="can_focus">False</property>
237- <items>
238- <item id="0" translatable="yes">Fill</item>
239- <item id="1" translatable="yes">Start</item>
240- <item id="2" translatable="yes">End</item>
241- <item id="3" translatable="yes">Center</item>
242- </items>
243- </object>
244- <packing>
245- <property name="left_attach">1</property>
246- <property name="top_attach">3</property>
247- </packing>
248- </child>
249- <child>
250- <object class="GtkLabel" id="l_primary_display">
251- <property name="visible">True</property>
252- <property name="can_focus">False</property>
253- <property name="halign">end</property>
254- <property name="label" translatable="yes">On Primary Display:</property>
255- </object>
256- <packing>
257- <property name="left_attach">0</property>
258- <property name="top_attach">2</property>
259- <property name="width">2</property>
260- </packing>
261- </child>
262- <child>
263- <object class="GtkSwitch" id="sw_primary_display">
264- <property name="visible">True</property>
265- <property name="can_focus">True</property>
266- <property name="halign">start</property>
267- <property name="valign">center</property>
268- </object>
269- <packing>
270- <property name="left_attach">2</property>
271- <property name="top_attach">2</property>
272- </packing>
273- </child>
274- <child>
275- <object class="GtkComboBoxText" id="cb_display_plug">
276- <property name="visible">True</property>
277- <property name="can_focus">False</property>
278- <property name="hexpand">True</property>
279- </object>
280- <packing>
281- <property name="left_attach">3</property>
282- <property name="top_attach">2</property>
283- </packing>
284- </child>
285- <child>
286- <object class="GtkScale" id="s_offset">
287- <property name="visible">True</property>
288- <property name="can_focus">True</property>
289- <property name="tooltip_text" translatable="yes">Offset in percent from the center of the screen-edge</property>
290- <property name="adjustment">adj_offset</property>
291- <property name="round_digits">0</property>
292- <property name="digits">0</property>
293- <property name="value_pos">right</property>
294- </object>
295- <packing>
296- <property name="left_attach">2</property>
297- <property name="top_attach">3</property>
298- <property name="width">2</property>
299- </packing>
300- </child>
301- <child>
302- <object class="GtkLabel" id="l_icon_alignment">
303- <property name="visible">True</property>
304- <property name="can_focus">False</property>
305- <property name="halign">end</property>
306- <property name="label" translatable="yes">Icon Alignment:</property>
307- <property name="justify">right</property>
308- </object>
309- <packing>
310- <property name="left_attach">0</property>
311- <property name="top_attach">4</property>
312- <property name="width">2</property>
313- </packing>
314- </child>
315- <child>
316- <object class="GtkComboBoxText" id="cb_items_alignment">
317- <property name="visible">True</property>
318- <property name="can_focus">False</property>
319- <items>
320- <item id="1" translatable="yes">Start</item>
321- <item id="2" translatable="yes">End</item>
322- <item id="3" translatable="yes">Center</item>
323- </items>
324- </object>
325- <packing>
326- <property name="left_attach">2</property>
327- <property name="top_attach">4</property>
328- <property name="width">2</property>
329- </packing>
330- </child>
331- <child>
332- <object class="GtkLabel" id="l_iconsize">
333- <property name="visible">True</property>
334- <property name="can_focus">False</property>
335- <property name="halign">end</property>
336- <property name="label" translatable="yes">Icon Size:</property>
337- <property name="justify">right</property>
338- </object>
339- <packing>
340- <property name="left_attach">0</property>
341- <property name="top_attach">5</property>
342- </packing>
343- </child>
344- <child>
345- <object class="GtkSpinButton" id="sp_iconsize">
346- <property name="visible">True</property>
347- <property name="can_focus">True</property>
348- <property name="invisible_char">•</property>
349- <property name="adjustment">adj_iconsize</property>
350- <property name="numeric">True</property>
351- </object>
352- <packing>
353- <property name="left_attach">1</property>
354- <property name="top_attach">5</property>
355- </packing>
356- </child>
357- <child>
358- <object class="GtkScale" id="s_iconsize">
359- <property name="visible">True</property>
360- <property name="can_focus">True</property>
361- <property name="adjustment">adj_iconsize</property>
362- <property name="digits">0</property>
363- <property name="draw_value">False</property>
364- <property name="value_pos">left</property>
365- </object>
366- <packing>
367- <property name="left_attach">2</property>
368- <property name="top_attach">5</property>
369- <property name="width">2</property>
370- </packing>
371- </child>
372- <child>
373- <object class="GtkScale" id="s_zoom_percent">
374- <property name="visible">True</property>
375- <property name="can_focus">True</property>
376- <property name="adjustment">adj_zoom_percent</property>
377- <property name="digits">0</property>
378- <property name="value_pos">right</property>
379- </object>
380- <packing>
381- <property name="left_attach">3</property>
382- <property name="top_attach">6</property>
383- </packing>
384- </child>
385- <child>
386- <object class="GtkSwitch" id="sw_zoom_enabled">
387- <property name="visible">True</property>
388- <property name="can_focus">True</property>
389- <property name="halign">start</property>
390- <property name="valign">center</property>
391- </object>
392- <packing>
393- <property name="left_attach">2</property>
394- <property name="top_attach">6</property>
395- </packing>
396- </child>
397- <child>
398- <object class="GtkLabel" id="l_iconzoom">
399- <property name="visible">True</property>
400- <property name="can_focus">False</property>
401- <property name="halign">end</property>
402- <property name="label" translatable="yes">Icon Zoom:</property>
403- <property name="justify">right</property>
404- </object>
405- <packing>
406- <property name="left_attach">0</property>
407- <property name="top_attach">6</property>
408- <property name="width">2</property>
409- </packing>
410- </child>
411- </object>
412- <packing>
413- <property name="name">grid_appearance</property>
414- <property name="title" translatable="yes">Appearance</property>
415- </packing>
416- </child>
417- <child>
418- <object class="GtkGrid" id="grid_behaviour">
419- <property name="visible">True</property>
420- <property name="can_focus">False</property>
421- <property name="valign">start</property>
422- <property name="margin_left">16</property>
423- <property name="margin_right">16</property>
424- <property name="margin_top">16</property>
425- <property name="margin_bottom">16</property>
426- <property name="row_spacing">8</property>
427- <property name="column_spacing">12</property>
428- <child>
429- <object class="GtkComboBoxText" id="cb_hidemode">
430- <property name="visible">True</property>
431- <property name="can_focus">False</property>
432- <property name="hexpand">True</property>
433- <items>
434- <item id="1" translatable="yes">Intellihide</item>
435- <item id="2" translatable="yes">Autohide</item>
436- <item id="3" translatable="yes">Dodge maximized window</item>
437- <item id="4" translatable="yes">Window Dodge</item>
438- <item id="5" translatable="yes">Dodge active window</item>
439- </items>
440- </object>
441- <packing>
442- <property name="left_attach">1</property>
443- <property name="top_attach">1</property>
444- <property name="width">2</property>
445- </packing>
446- </child>
447- <child>
448- <object class="GtkSwitch" id="sw_hide">
449- <property name="visible">True</property>
450- <property name="can_focus">True</property>
451- <property name="halign">end</property>
452- <property name="valign">center</property>
453- </object>
454- <packing>
455- <property name="left_attach">0</property>
456- <property name="top_attach">1</property>
457- </packing>
458- </child>
459- <child>
460- <object class="GtkLabel" id="l_hide_dock">
461- <property name="visible">True</property>
462- <property name="can_focus">False</property>
463- <property name="halign">start</property>
464- <property name="label" translatable="yes">Hide Dock</property>
465- <attributes>
466- <attribute name="weight" value="bold"/>
467- </attributes>
468- </object>
469- <packing>
470- <property name="left_attach">0</property>
471- <property name="top_attach">0</property>
472- <property name="width">4</property>
473- </packing>
474- </child>
475- <child>
476- <object class="GtkLabel" id="l_pressure1">
477- <property name="visible">True</property>
478- <property name="can_focus">False</property>
479- <property name="halign">end</property>
480- <property name="label" translatable="yes">Hide Delay:</property>
481- </object>
482- <packing>
483- <property name="left_attach">0</property>
484- <property name="top_attach">2</property>
485- </packing>
486- </child>
487- <child>
488- <object class="GtkSpinButton" id="sp_hide_delay">
489- <property name="visible">True</property>
490- <property name="can_focus">True</property>
491- <property name="tooltip_text" translatable="yes">Delay in ms before hiding the dock</property>
492- <property name="halign">start</property>
493- <property name="invisible_char">•</property>
494- <property name="adjustment">adj_hide_delay</property>
495- <property name="numeric">True</property>
496- </object>
497- <packing>
498- <property name="left_attach">1</property>
499- <property name="top_attach">2</property>
500- </packing>
501- </child>
502- <child>
503- <object class="GtkLabel" id="l_pressure2">
504- <property name="visible">True</property>
505- <property name="can_focus">False</property>
506- <property name="halign">end</property>
507- <property name="label" translatable="yes">Unhide Delay:</property>
508- </object>
509- <packing>
510- <property name="left_attach">2</property>
511- <property name="top_attach">2</property>
512- </packing>
513- </child>
514- <child>
515- <object class="GtkSpinButton" id="sp_unhide_delay">
516- <property name="visible">True</property>
517- <property name="can_focus">True</property>
518- <property name="tooltip_text" translatable="yes">Delay in ms before showing the dock</property>
519- <property name="halign">start</property>
520- <property name="invisible_char">•</property>
521- <property name="adjustment">adj_unhide_delay</property>
522- <property name="numeric">True</property>
523- </object>
524- <packing>
525- <property name="left_attach">3</property>
526- <property name="top_attach">2</property>
527- </packing>
528- </child>
529- <child>
530- <object class="GtkLabel" id="l_pressure">
531- <property name="visible">True</property>
532- <property name="can_focus">False</property>
533- <property name="halign">end</property>
534- <property name="label" translatable="yes">Pressure Reveal:</property>
535- </object>
536- <packing>
537- <property name="left_attach">2</property>
538- <property name="top_attach">3</property>
539- </packing>
540- </child>
541- <child>
542- <object class="GtkSwitch" id="sw_pressure_reveal">
543- <property name="visible">True</property>
544- <property name="can_focus">True</property>
545- <property name="halign">start</property>
546- <property name="valign">center</property>
547- </object>
548- <packing>
549- <property name="left_attach">3</property>
550- <property name="top_attach">3</property>
551- </packing>
552- </child>
553- <child>
554- <object class="GtkLabel" id="l_application_windows">
555- <property name="visible">True</property>
556- <property name="can_focus">False</property>
557- <property name="halign">start</property>
558- <property name="label" translatable="yes">Item Management</property>
559- <attributes>
560- <attribute name="weight" value="bold"/>
561- </attributes>
562- </object>
563- <packing>
564- <property name="left_attach">0</property>
565- <property name="top_attach">4</property>
566- <property name="width">4</property>
567- </packing>
568- </child>
569- <child>
570- <object class="GtkLabel" id="l_show_unpinned">
571- <property name="visible">True</property>
572- <property name="can_focus">False</property>
573- <property name="halign">end</property>
574- <property name="label" translatable="yes">Show Unpinned:</property>
575- </object>
576- <packing>
577- <property name="left_attach">0</property>
578- <property name="top_attach">5</property>
579- </packing>
580- </child>
581- <child>
582- <object class="GtkSwitch" id="sw_show_unpinned">
583- <property name="visible">True</property>
584- <property name="can_focus">True</property>
585- <property name="halign">start</property>
586- <property name="valign">center</property>
587- </object>
588- <packing>
589- <property name="left_attach">1</property>
590- <property name="top_attach">5</property>
591- </packing>
592- </child>
593- <child>
594- <object class="GtkLabel" id="l_workspace_only">
595- <property name="visible">True</property>
596- <property name="can_focus">False</property>
597- <property name="halign">end</property>
598- <property name="label" translatable="yes">Restrict to Workspace:</property>
599- <property name="justify">right</property>
600- </object>
601- <packing>
602- <property name="left_attach">0</property>
603- <property name="top_attach">6</property>
604- </packing>
605- </child>
606- <child>
607- <object class="GtkSwitch" id="sw_workspace_only">
608- <property name="visible">True</property>
609- <property name="can_focus">True</property>
610- <property name="halign">start</property>
611- <property name="valign">center</property>
612- </object>
613- <packing>
614- <property name="left_attach">1</property>
615- <property name="top_attach">6</property>
616- </packing>
617- </child>
618- <child>
619- <object class="GtkLabel" id="l_lock_items">
620- <property name="visible">True</property>
621- <property name="can_focus">False</property>
622- <property name="halign">end</property>
623- <property name="label" translatable="yes">Lock Icons:</property>
624- </object>
625- <packing>
626- <property name="left_attach">2</property>
627- <property name="top_attach">5</property>
628- </packing>
629- </child>
630- <child>
631- <object class="GtkLabel" id="l_auto_pinning">
632- <property name="visible">True</property>
633- <property name="can_focus">False</property>
634- <property name="halign">end</property>
635- <property name="label" translatable="yes">Automatic Pinning:</property>
636- <property name="justify">right</property>
637- </object>
638- <packing>
639- <property name="left_attach">2</property>
640- <property name="top_attach">6</property>
641- </packing>
642- </child>
643- <child>
644- <object class="GtkSwitch" id="sw_lock_items">
645- <property name="visible">True</property>
646- <property name="can_focus">True</property>
647- <property name="halign">start</property>
648- <property name="valign">center</property>
649- </object>
650- <packing>
651- <property name="left_attach">3</property>
652- <property name="top_attach">5</property>
653- </packing>
654- </child>
655- <child>
656- <object class="GtkSwitch" id="sw_auto_pinning">
657- <property name="visible">True</property>
658- <property name="can_focus">True</property>
659- <property name="halign">start</property>
660- <property name="valign">center</property>
661- </object>
662- <packing>
663- <property name="left_attach">3</property>
664- <property name="top_attach">6</property>
665- </packing>
666- </child>
667- <child>
668- <object class="GtkLabel" id="l_show_dock_item">
669- <property name="visible">True</property>
670- <property name="can_focus">False</property>
671- <property name="halign">end</property>
672- <property name="label" translatable="yes">Show Item for Dock:</property>
673- <property name="justify">right</property>
674- </object>
675- <packing>
676- <property name="left_attach">0</property>
677- <property name="top_attach">7</property>
678- </packing>
679- </child>
680- <child>
681- <object class="GtkSwitch" id="sw_show_dock_item">
682- <property name="visible">True</property>
683- <property name="can_focus">True</property>
684- <property name="halign">start</property>
685- <property name="valign">center</property>
686- </object>
687- <packing>
688- <property name="left_attach">1</property>
689- <property name="top_attach">7</property>
690- </packing>
691- </child>
692- <child>
693- <placeholder/>
694- </child>
695- <child>
696- <placeholder/>
697- </child>
698- <child>
699- <placeholder/>
700- </child>
701- <child>
702- <placeholder/>
703- </child>
704- <child>
705- <placeholder/>
706- </child>
707- </object>
708- <packing>
709- <property name="name">grid_behaviour</property>
710- <property name="title" translatable="yes">Behaviour</property>
711- <property name="position">1</property>
712- </packing>
713- </child>
714- <child>
715- <object class="GtkScrolledWindow" id="sw_docklets">
716- <property name="visible">True</property>
717- <property name="can_focus">True</property>
718- <property name="hscrollbar_policy">never</property>
719- <child>
720- <object class="GtkIconView" id="view_docklets">
721- <property name="visible">True</property>
722- <property name="can_focus">True</property>
723- <property name="margin">6</property>
724- <property name="columns">3</property>
725- </object>
726- </child>
727- </object>
728- <packing>
729- <property name="name">view_docklets</property>
730- <property name="title" translatable="yes">Docklets</property>
731- <property name="position">2</property>
732- </packing>
733- </child>
734- </object>
735- <object class="GtkStackSwitcher" id="dock_preferences_switcher">
736- <property name="visible">True</property>
737- <property name="can_focus">False</property>
738- <property name="halign">center</property>
739- <property name="stack">dock_preferences</property>
740- </object>
741+ <template class="PlankPreferencesWindow" parent="GtkWindow">
742+ <property name="can_focus">False</property>
743+ <property name="resizable">False</property>
744+ <property name="window_position">center</property>
745+ <property name="icon_name">plank</property>
746+ <property name="type_hint">dialog</property>
747+ <property name="skip_taskbar_hint">True</property>
748+ <property name="skip_pager_hint">True</property>
749+ <property name="gravity">center</property>
750+ <child>
751+ <object class="GtkStack" id="dock_preferences">
752+ <property name="visible">True</property>
753+ <property name="can_focus">False</property>
754+ <child>
755+ <object class="GtkGrid" id="grid_appearance">
756+ <property name="visible">True</property>
757+ <property name="can_focus">False</property>
758+ <property name="valign">start</property>
759+ <property name="margin_left">16</property>
760+ <property name="margin_right">16</property>
761+ <property name="margin_top">16</property>
762+ <property name="margin_bottom">16</property>
763+ <property name="row_spacing">8</property>
764+ <property name="column_spacing">12</property>
765+ <property name="row_homogeneous">True</property>
766+ <child>
767+ <object class="GtkLabel" id="l_theme">
768+ <property name="visible">True</property>
769+ <property name="can_focus">False</property>
770+ <property name="halign">end</property>
771+ <property name="label" translatable="yes">Theme:</property>
772+ <property name="justify">right</property>
773+ </object>
774+ <packing>
775+ <property name="left_attach">0</property>
776+ <property name="top_attach">0</property>
777+ </packing>
778+ </child>
779+ <child>
780+ <object class="GtkLabel" id="l_position">
781+ <property name="visible">True</property>
782+ <property name="can_focus">False</property>
783+ <property name="halign">end</property>
784+ <property name="label" translatable="yes">Position:</property>
785+ <property name="justify">right</property>
786+ </object>
787+ <packing>
788+ <property name="left_attach">0</property>
789+ <property name="top_attach">1</property>
790+ </packing>
791+ </child>
792+ <child>
793+ <object class="GtkComboBoxText" id="cb_theme">
794+ <property name="width_request">200</property>
795+ <property name="visible">True</property>
796+ <property name="can_focus">False</property>
797+ <property name="hexpand">True</property>
798+ </object>
799+ <packing>
800+ <property name="left_attach">1</property>
801+ <property name="top_attach">0</property>
802+ <property name="width">3</property>
803+ </packing>
804+ </child>
805+ <child>
806+ <object class="GtkComboBoxText" id="cb_position">
807+ <property name="width_request">200</property>
808+ <property name="visible">True</property>
809+ <property name="can_focus">False</property>
810+ <items>
811+ <item id="0" translatable="yes">Left</item>
812+ <item id="1" translatable="yes">Right</item>
813+ <item id="2" translatable="yes">Top</item>
814+ <item id="3" translatable="yes">Bottom</item>
815+ </items>
816+ </object>
817+ <packing>
818+ <property name="left_attach">1</property>
819+ <property name="top_attach">1</property>
820+ <property name="width">3</property>
821+ </packing>
822+ </child>
823+ <child>
824+ <object class="GtkLabel" id="l_alignment">
825+ <property name="visible">True</property>
826+ <property name="can_focus">False</property>
827+ <property name="halign">end</property>
828+ <property name="label" translatable="yes">Alignment:</property>
829+ <property name="justify">right</property>
830+ </object>
831+ <packing>
832+ <property name="left_attach">0</property>
833+ <property name="top_attach">3</property>
834+ </packing>
835+ </child>
836+ <child>
837+ <object class="GtkComboBoxText" id="cb_alignment">
838+ <property name="visible">True</property>
839+ <property name="can_focus">False</property>
840+ <items>
841+ <item id="0" translatable="yes">Fill</item>
842+ <item id="1" translatable="yes">Start</item>
843+ <item id="2" translatable="yes">End</item>
844+ <item id="3" translatable="yes">Center</item>
845+ </items>
846+ </object>
847+ <packing>
848+ <property name="left_attach">1</property>
849+ <property name="top_attach">3</property>
850+ </packing>
851+ </child>
852+ <child>
853+ <object class="GtkLabel" id="l_primary_display">
854+ <property name="visible">True</property>
855+ <property name="can_focus">False</property>
856+ <property name="halign">end</property>
857+ <property name="label" translatable="yes">On Primary Display:</property>
858+ </object>
859+ <packing>
860+ <property name="left_attach">0</property>
861+ <property name="top_attach">2</property>
862+ <property name="width">2</property>
863+ </packing>
864+ </child>
865+ <child>
866+ <object class="GtkComboBoxText" id="cb_display_plug">
867+ <property name="visible">True</property>
868+ <property name="can_focus">False</property>
869+ <property name="hexpand">True</property>
870+ </object>
871+ <packing>
872+ <property name="left_attach">3</property>
873+ <property name="top_attach">2</property>
874+ </packing>
875+ </child>
876+ <child>
877+ <object class="GtkScale" id="s_offset">
878+ <property name="visible">True</property>
879+ <property name="can_focus">True</property>
880+ <property name="tooltip_text" translatable="yes">Offset in percent from the center of the screen-edge</property>
881+ <property name="adjustment">adj_offset</property>
882+ <property name="round_digits">0</property>
883+ <property name="digits">0</property>
884+ <property name="value_pos">right</property>
885+ </object>
886+ <packing>
887+ <property name="left_attach">2</property>
888+ <property name="top_attach">3</property>
889+ <property name="width">2</property>
890+ </packing>
891+ </child>
892+ <child>
893+ <object class="GtkLabel" id="l_icon_alignment">
894+ <property name="visible">True</property>
895+ <property name="can_focus">False</property>
896+ <property name="halign">end</property>
897+ <property name="label" translatable="yes">Icon Alignment:</property>
898+ <property name="justify">right</property>
899+ </object>
900+ <packing>
901+ <property name="left_attach">0</property>
902+ <property name="top_attach">4</property>
903+ <property name="width">2</property>
904+ </packing>
905+ </child>
906+ <child>
907+ <object class="GtkComboBoxText" id="cb_items_alignment">
908+ <property name="visible">True</property>
909+ <property name="can_focus">False</property>
910+ <items>
911+ <item id="1" translatable="yes">Start</item>
912+ <item id="2" translatable="yes">End</item>
913+ <item id="3" translatable="yes">Center</item>
914+ </items>
915+ </object>
916+ <packing>
917+ <property name="left_attach">2</property>
918+ <property name="top_attach">4</property>
919+ <property name="width">2</property>
920+ </packing>
921+ </child>
922+ <child>
923+ <object class="GtkLabel" id="l_iconsize">
924+ <property name="visible">True</property>
925+ <property name="can_focus">False</property>
926+ <property name="halign">end</property>
927+ <property name="label" translatable="yes">Icon Size:</property>
928+ <property name="justify">right</property>
929+ </object>
930+ <packing>
931+ <property name="left_attach">0</property>
932+ <property name="top_attach">5</property>
933+ </packing>
934+ </child>
935+ <child>
936+ <object class="GtkSpinButton" id="sp_iconsize">
937+ <property name="visible">True</property>
938+ <property name="can_focus">True</property>
939+ <property name="invisible_char">•</property>
940+ <property name="adjustment">adj_iconsize</property>
941+ <property name="numeric">True</property>
942+ </object>
943+ <packing>
944+ <property name="left_attach">1</property>
945+ <property name="top_attach">5</property>
946+ </packing>
947+ </child>
948+ <child>
949+ <object class="GtkScale" id="s_iconsize">
950+ <property name="visible">True</property>
951+ <property name="can_focus">True</property>
952+ <property name="adjustment">adj_iconsize</property>
953+ <property name="digits">0</property>
954+ <property name="draw_value">False</property>
955+ <property name="value_pos">left</property>
956+ </object>
957+ <packing>
958+ <property name="left_attach">2</property>
959+ <property name="top_attach">5</property>
960+ <property name="width">2</property>
961+ </packing>
962+ </child>
963+ <child>
964+ <object class="GtkScale" id="s_zoom_percent">
965+ <property name="visible">True</property>
966+ <property name="can_focus">True</property>
967+ <property name="adjustment">adj_zoom_percent</property>
968+ <property name="digits">0</property>
969+ <property name="value_pos">right</property>
970+ </object>
971+ <packing>
972+ <property name="left_attach">3</property>
973+ <property name="top_attach">6</property>
974+ </packing>
975+ </child>
976+ <child>
977+ <object class="GtkSwitch" id="sw_zoom_enabled">
978+ <property name="visible">True</property>
979+ <property name="can_focus">True</property>
980+ <property name="halign">start</property>
981+ <property name="valign">center</property>
982+ </object>
983+ <packing>
984+ <property name="left_attach">2</property>
985+ <property name="top_attach">6</property>
986+ </packing>
987+ </child>
988+ <child>
989+ <object class="GtkLabel" id="l_iconzoom">
990+ <property name="visible">True</property>
991+ <property name="can_focus">False</property>
992+ <property name="halign">end</property>
993+ <property name="label" translatable="yes">Icon Zoom:</property>
994+ <property name="justify">right</property>
995+ </object>
996+ <packing>
997+ <property name="left_attach">0</property>
998+ <property name="top_attach">6</property>
999+ <property name="width">2</property>
1000+ </packing>
1001+ </child>
1002+ <child>
1003+ <object class="GtkSwitch" id="sw_primary_display">
1004+ <property name="visible">True</property>
1005+ <property name="can_focus">True</property>
1006+ <property name="halign">start</property>
1007+ <property name="valign">center</property>
1008+ </object>
1009+ <packing>
1010+ <property name="left_attach">2</property>
1011+ <property name="top_attach">2</property>
1012+ </packing>
1013+ </child>
1014+ </object>
1015+ <packing>
1016+ <property name="name">grid_appearance</property>
1017+ <property name="title" translatable="yes">Appearance</property>
1018+ </packing>
1019+ </child>
1020+ <child>
1021+ <object class="GtkGrid" id="grid_behaviour">
1022+ <property name="visible">True</property>
1023+ <property name="can_focus">False</property>
1024+ <property name="valign">start</property>
1025+ <property name="margin_left">16</property>
1026+ <property name="margin_right">16</property>
1027+ <property name="margin_top">16</property>
1028+ <property name="margin_bottom">16</property>
1029+ <property name="row_spacing">8</property>
1030+ <property name="column_spacing">12</property>
1031+ <child>
1032+ <object class="GtkComboBoxText" id="cb_hidemode">
1033+ <property name="visible">True</property>
1034+ <property name="can_focus">False</property>
1035+ <property name="hexpand">True</property>
1036+ <items>
1037+ <item id="1" translatable="yes">Intellihide</item>
1038+ <item id="2" translatable="yes">Autohide</item>
1039+ <item id="3" translatable="yes">Dodge maximized window</item>
1040+ <item id="4" translatable="yes">Window Dodge</item>
1041+ <item id="5" translatable="yes">Dodge active window</item>
1042+ </items>
1043+ </object>
1044+ <packing>
1045+ <property name="left_attach">1</property>
1046+ <property name="top_attach">1</property>
1047+ <property name="width">2</property>
1048+ </packing>
1049+ </child>
1050+ <child>
1051+ <object class="GtkSwitch" id="sw_hide">
1052+ <property name="visible">True</property>
1053+ <property name="can_focus">True</property>
1054+ <property name="halign">end</property>
1055+ <property name="valign">center</property>
1056+ </object>
1057+ <packing>
1058+ <property name="left_attach">0</property>
1059+ <property name="top_attach">1</property>
1060+ </packing>
1061+ </child>
1062+ <child>
1063+ <object class="GtkLabel" id="l_hide_dock">
1064+ <property name="visible">True</property>
1065+ <property name="can_focus">False</property>
1066+ <property name="halign">start</property>
1067+ <property name="label" translatable="yes">Hide Dock</property>
1068+ <attributes>
1069+ <attribute name="weight" value="bold"/>
1070+ </attributes>
1071+ </object>
1072+ <packing>
1073+ <property name="left_attach">0</property>
1074+ <property name="top_attach">0</property>
1075+ <property name="width">4</property>
1076+ </packing>
1077+ </child>
1078+ <child>
1079+ <object class="GtkLabel" id="l_pressure1">
1080+ <property name="visible">True</property>
1081+ <property name="can_focus">False</property>
1082+ <property name="halign">end</property>
1083+ <property name="label" translatable="yes">Hide Delay:</property>
1084+ </object>
1085+ <packing>
1086+ <property name="left_attach">0</property>
1087+ <property name="top_attach">2</property>
1088+ </packing>
1089+ </child>
1090+ <child>
1091+ <object class="GtkSpinButton" id="sp_hide_delay">
1092+ <property name="visible">True</property>
1093+ <property name="can_focus">True</property>
1094+ <property name="tooltip_text" translatable="yes">Delay in ms before hiding the dock</property>
1095+ <property name="halign">start</property>
1096+ <property name="invisible_char">•</property>
1097+ <property name="adjustment">adj_hide_delay</property>
1098+ <property name="numeric">True</property>
1099+ </object>
1100+ <packing>
1101+ <property name="left_attach">1</property>
1102+ <property name="top_attach">2</property>
1103+ </packing>
1104+ </child>
1105+ <child>
1106+ <object class="GtkLabel" id="l_pressure2">
1107+ <property name="visible">True</property>
1108+ <property name="can_focus">False</property>
1109+ <property name="halign">end</property>
1110+ <property name="label" translatable="yes">Unhide Delay:</property>
1111+ </object>
1112+ <packing>
1113+ <property name="left_attach">2</property>
1114+ <property name="top_attach">2</property>
1115+ </packing>
1116+ </child>
1117+ <child>
1118+ <object class="GtkSpinButton" id="sp_unhide_delay">
1119+ <property name="visible">True</property>
1120+ <property name="can_focus">True</property>
1121+ <property name="tooltip_text" translatable="yes">Delay in ms before showing the dock</property>
1122+ <property name="halign">start</property>
1123+ <property name="invisible_char">•</property>
1124+ <property name="adjustment">adj_unhide_delay</property>
1125+ <property name="numeric">True</property>
1126+ </object>
1127+ <packing>
1128+ <property name="left_attach">3</property>
1129+ <property name="top_attach">2</property>
1130+ </packing>
1131+ </child>
1132+ <child>
1133+ <object class="GtkLabel" id="l_pressure">
1134+ <property name="visible">True</property>
1135+ <property name="can_focus">False</property>
1136+ <property name="halign">end</property>
1137+ <property name="label" translatable="yes">Pressure Reveal:</property>
1138+ </object>
1139+ <packing>
1140+ <property name="left_attach">2</property>
1141+ <property name="top_attach">3</property>
1142+ </packing>
1143+ </child>
1144+ <child>
1145+ <object class="GtkSwitch" id="sw_pressure_reveal">
1146+ <property name="visible">True</property>
1147+ <property name="can_focus">True</property>
1148+ <property name="halign">start</property>
1149+ <property name="valign">center</property>
1150+ </object>
1151+ <packing>
1152+ <property name="left_attach">3</property>
1153+ <property name="top_attach">3</property>
1154+ </packing>
1155+ </child>
1156+ <child>
1157+ <object class="GtkLabel" id="l_application_windows">
1158+ <property name="visible">True</property>
1159+ <property name="can_focus">False</property>
1160+ <property name="halign">start</property>
1161+ <property name="label" translatable="yes">Item Management</property>
1162+ <attributes>
1163+ <attribute name="weight" value="bold"/>
1164+ </attributes>
1165+ </object>
1166+ <packing>
1167+ <property name="left_attach">0</property>
1168+ <property name="top_attach">4</property>
1169+ <property name="width">4</property>
1170+ </packing>
1171+ </child>
1172+ <child>
1173+ <object class="GtkLabel" id="l_show_unpinned">
1174+ <property name="visible">True</property>
1175+ <property name="can_focus">False</property>
1176+ <property name="halign">end</property>
1177+ <property name="label" translatable="yes">Show Unpinned:</property>
1178+ </object>
1179+ <packing>
1180+ <property name="left_attach">0</property>
1181+ <property name="top_attach">5</property>
1182+ </packing>
1183+ </child>
1184+ <child>
1185+ <object class="GtkSwitch" id="sw_show_unpinned">
1186+ <property name="visible">True</property>
1187+ <property name="can_focus">True</property>
1188+ <property name="halign">start</property>
1189+ <property name="valign">center</property>
1190+ </object>
1191+ <packing>
1192+ <property name="left_attach">1</property>
1193+ <property name="top_attach">5</property>
1194+ </packing>
1195+ </child>
1196+ <child>
1197+ <object class="GtkLabel" id="l_workspace_only">
1198+ <property name="visible">True</property>
1199+ <property name="can_focus">False</property>
1200+ <property name="halign">end</property>
1201+ <property name="label" translatable="yes">Restrict to Workspace:</property>
1202+ <property name="justify">right</property>
1203+ </object>
1204+ <packing>
1205+ <property name="left_attach">0</property>
1206+ <property name="top_attach">6</property>
1207+ </packing>
1208+ </child>
1209+ <child>
1210+ <object class="GtkSwitch" id="sw_workspace_only">
1211+ <property name="visible">True</property>
1212+ <property name="can_focus">True</property>
1213+ <property name="halign">start</property>
1214+ <property name="valign">center</property>
1215+ </object>
1216+ <packing>
1217+ <property name="left_attach">1</property>
1218+ <property name="top_attach">6</property>
1219+ </packing>
1220+ </child>
1221+ <child>
1222+ <object class="GtkLabel" id="l_lock_items">
1223+ <property name="visible">True</property>
1224+ <property name="can_focus">False</property>
1225+ <property name="halign">end</property>
1226+ <property name="label" translatable="yes">Lock Icons:</property>
1227+ </object>
1228+ <packing>
1229+ <property name="left_attach">2</property>
1230+ <property name="top_attach">5</property>
1231+ </packing>
1232+ </child>
1233+ <child>
1234+ <object class="GtkLabel" id="l_auto_pinning">
1235+ <property name="visible">True</property>
1236+ <property name="can_focus">False</property>
1237+ <property name="halign">end</property>
1238+ <property name="label" translatable="yes">Automatic Pinning:</property>
1239+ <property name="justify">right</property>
1240+ </object>
1241+ <packing>
1242+ <property name="left_attach">2</property>
1243+ <property name="top_attach">6</property>
1244+ </packing>
1245+ </child>
1246+ <child>
1247+ <object class="GtkSwitch" id="sw_lock_items">
1248+ <property name="visible">True</property>
1249+ <property name="can_focus">True</property>
1250+ <property name="halign">start</property>
1251+ <property name="valign">center</property>
1252+ </object>
1253+ <packing>
1254+ <property name="left_attach">3</property>
1255+ <property name="top_attach">5</property>
1256+ </packing>
1257+ </child>
1258+ <child>
1259+ <object class="GtkSwitch" id="sw_auto_pinning">
1260+ <property name="visible">True</property>
1261+ <property name="can_focus">True</property>
1262+ <property name="halign">start</property>
1263+ <property name="valign">center</property>
1264+ </object>
1265+ <packing>
1266+ <property name="left_attach">3</property>
1267+ <property name="top_attach">6</property>
1268+ </packing>
1269+ </child>
1270+ <child>
1271+ <object class="GtkLabel" id="l_show_dock_item">
1272+ <property name="visible">True</property>
1273+ <property name="can_focus">False</property>
1274+ <property name="halign">end</property>
1275+ <property name="label" translatable="yes">Show Item for Dock:</property>
1276+ <property name="justify">right</property>
1277+ </object>
1278+ <packing>
1279+ <property name="left_attach">0</property>
1280+ <property name="top_attach">7</property>
1281+ </packing>
1282+ </child>
1283+ <child>
1284+ <object class="GtkSwitch" id="sw_show_dock_item">
1285+ <property name="visible">True</property>
1286+ <property name="can_focus">True</property>
1287+ <property name="halign">start</property>
1288+ <property name="valign">center</property>
1289+ </object>
1290+ <packing>
1291+ <property name="left_attach">1</property>
1292+ <property name="top_attach">7</property>
1293+ </packing>
1294+ </child>
1295+ <child>
1296+ <placeholder/>
1297+ </child>
1298+ <child>
1299+ <placeholder/>
1300+ </child>
1301+ <child>
1302+ <placeholder/>
1303+ </child>
1304+ <child>
1305+ <placeholder/>
1306+ </child>
1307+ <child>
1308+ <placeholder/>
1309+ </child>
1310+ </object>
1311+ <packing>
1312+ <property name="name">grid_behaviour</property>
1313+ <property name="title" translatable="yes">Behaviour</property>
1314+ <property name="position">1</property>
1315+ </packing>
1316+ </child>
1317+ <child>
1318+ <object class="GtkScrolledWindow" id="sw_docklets">
1319+ <property name="visible">True</property>
1320+ <property name="can_focus">True</property>
1321+ <property name="hscrollbar_policy">never</property>
1322+ <child>
1323+ <object class="GtkIconView" id="view_docklets">
1324+ <property name="visible">True</property>
1325+ <property name="can_focus">True</property>
1326+ <property name="margin">6</property>
1327+ <property name="columns">3</property>
1328+ </object>
1329+ </child>
1330+ </object>
1331+ <packing>
1332+ <property name="name">view_docklets</property>
1333+ <property name="title" translatable="yes">Docklets</property>
1334+ <property name="position">2</property>
1335+ </packing>
1336+ </child>
1337+ </object>
1338+ </child>
1339+ <child type="titlebar">
1340+ <object class="GtkHeaderBar" id="headerbar">
1341+ <property name="visible">True</property>
1342+ <property name="can_focus">False</property>
1343+ <property name="show_close_button">True</property>
1344+ <child>
1345+ <placeholder/>
1346+ </child>
1347+ <child type="title">
1348+ <object class="GtkStackSwitcher" id="dock_preferences_switcher">
1349+ <property name="visible">True</property>
1350+ <property name="can_focus">False</property>
1351+ <property name="halign">center</property>
1352+ <property name="stack">dock_preferences</property>
1353+ </object>
1354+ </child>
1355+ </object>
1356+ </child>
1357+ </template>
1358 </interface>
1359
1360=== modified file 'docklets/Trash/TrashDockItem.vala'
1361--- docklets/Trash/TrashDockItem.vala 2015-12-09 09:30:43 +0000
1362+++ docklets/Trash/TrashDockItem.vala 2016-02-16 14:34:53 +0000
1363@@ -180,11 +180,8 @@
1364 if (files.size > 0)
1365 items.add (new TitledSeparatorMenuItem.no_line (_("Restore Files")));
1366
1367-#if HAVE_GEE_0_8
1368 files.sort ((CompareDataFunc) compare_files);
1369-#else
1370- files.sort ((CompareFunc) compare_files);
1371-#endif
1372+
1373 var count = 0;
1374 foreach (File _f in files) {
1375 var f = _f;
1376
1377=== modified file 'lib/DBus/Client.vala'
1378--- lib/DBus/Client.vala 2015-11-03 10:37:19 +0000
1379+++ lib/DBus/Client.vala 2016-02-16 14:34:53 +0000
1380@@ -80,17 +80,8 @@
1381 string? object_path = null;
1382
1383 if (application != null) {
1384-#if GLIB_2_34
1385 connection = application.get_dbus_connection ();
1386 object_path = application.get_dbus_object_path ();
1387-#else
1388- try {
1389- connection = Bus.get_sync (BusType.SESSION);
1390- } catch {
1391- connection = null;
1392- }
1393- object_path = "/%s".printf (application.get_application_id ().replace (".", "/").replace ("-", "_"));
1394-#endif
1395 }
1396
1397 if (connection == null || object_path == null) {
1398
1399=== modified file 'lib/DBusManager.vala'
1400--- lib/DBusManager.vala 2015-11-03 10:37:19 +0000
1401+++ lib/DBusManager.vala 2016-02-16 14:34:53 +0000
1402@@ -161,17 +161,8 @@
1403 unowned Application application = Application.get_default ();
1404 string? object_path;
1405
1406-#if GLIB_2_34
1407 connection = application.get_dbus_connection ();
1408 object_path = application.get_dbus_object_path ();
1409-#else
1410- try {
1411- connection = Bus.get_sync (BusType.SESSION);
1412- } catch {
1413- connection = null;
1414- }
1415- object_path = "/%s".printf (application.get_application_id ().replace (".", "/").replace ("-", "_"));
1416-#endif
1417
1418 if (connection == null || object_path == null) {
1419 critical ("Not able to register our interfaces");
1420
1421=== modified file 'lib/DockController.vala'
1422--- lib/DockController.vala 2016-01-30 12:08:11 +0000
1423+++ lib/DockController.vala 2016-02-16 14:34:53 +0000
1424@@ -263,11 +263,8 @@
1425
1426 void update_visible_items_recursive (DockContainer container, ref int current_position)
1427 {
1428-#if HAVE_GEE_0_8
1429 var iterator = container.VisibleElements.bidir_list_iterator ();
1430-#else
1431- var iterator = container.VisibleElements.list_iterator ();
1432-#endif
1433+
1434 // Reverse dock-item-order for RTL environments if dock is placed horizontally
1435 if (Gtk.Widget.get_default_direction () == Gtk.TextDirection.RTL && prefs.is_horizontal_dock ()) {
1436 iterator.last ();
1437
1438=== modified file 'lib/DockRenderer.vala'
1439--- lib/DockRenderer.vala 2016-01-14 13:28:13 +0000
1440+++ lib/DockRenderer.vala 2016-02-16 14:34:53 +0000
1441@@ -321,11 +321,7 @@
1442 transient_items.clear ();
1443 }
1444
1445-#if HAVE_GEE_0_8
1446 current_items.sort ((CompareDataFunc) compare_dock_item_position);
1447-#else
1448- current_items.sort ((CompareFunc) compare_dock_item_position);
1449-#endif
1450
1451 // Calculate positions for given ordered list of items
1452 position_manager.update_draw_values (current_items,
1453@@ -745,18 +741,10 @@
1454 if (x_offset == 0.0)
1455 return;
1456
1457-#if HAVE_GEE_0_8
1458 draw_values.map_iterator ().foreach ((i, val) => {
1459 val.move_right (position, x_offset);
1460 return true;
1461 });
1462-#else
1463- var draw_values_it = draw_values.map_iterator ();
1464- while (draw_values_it.next ()) {
1465- var val = draw_values_it.get_value ();
1466- val.move_right (position, x_offset);
1467- }
1468-#endif
1469 }
1470
1471 void draw_item (Cairo.Context cr, DockItem item, PositionManager.DockItemDrawValue draw_value, int64 frame_time)
1472
1473=== modified file 'lib/Docklets/DockletManager.vala'
1474--- lib/Docklets/DockletManager.vala 2016-01-14 13:28:13 +0000
1475+++ lib/Docklets/DockletManager.vala 2016-02-16 14:34:53 +0000
1476@@ -72,11 +72,7 @@
1477
1478 construct
1479 {
1480-#if HAVE_GEE_0_8
1481 docklets = new Gee.HashMap<string, Docklet> ();
1482-#else
1483- docklets = new Gee.HashMap<string, Docklet> (str_hash, str_equal);
1484-#endif
1485 }
1486
1487 /**
1488
1489=== modified file 'lib/Drawing/Renderer.vala'
1490--- lib/Drawing/Renderer.vala 2016-01-30 16:54:55 +0000
1491+++ lib/Drawing/Renderer.vala 2016-02-16 14:34:53 +0000
1492@@ -33,9 +33,7 @@
1493 uint timer_id = 0U;
1494 ulong widget_realize_handler_id = 0UL;
1495 ulong widget_draw_handler_id = 0UL;
1496-#if HAVE_GTK_3_8
1497 bool is_updating = false;
1498-#endif
1499
1500 /**
1501 * Creates a new animation renderer.
1502@@ -47,9 +45,7 @@
1503
1504 construct
1505 {
1506-#if HAVE_GTK_3_8
1507 timer_id = widget.add_tick_callback ((Gtk.TickCallback) draw_timeout);
1508-#endif
1509 widget_realize_handler_id = widget.realize.connect (on_widget_realize);
1510 widget_draw_handler_id = widget.draw.connect (on_widget_draw);
1511 }
1512@@ -57,11 +53,7 @@
1513 ~Renderer ()
1514 {
1515 if (timer_id > 0U) {
1516-#if HAVE_GTK_3_8
1517 widget.remove_tick_callback (timer_id);
1518-#else
1519- GLib.Source.remove (timer_id);
1520-#endif
1521 timer_id = 0U;
1522 }
1523
1524@@ -103,17 +95,13 @@
1525 */
1526 protected void force_frame_time_update ()
1527 {
1528-#if HAVE_GTK_3_8
1529 unowned Gdk.FrameClock? frame_clock = widget.get_frame_clock ();
1530 if (frame_clock != null) {
1531 frame_time = frame_clock.get_frame_time ();
1532 } else {
1533-#endif
1534 frame_time = GLib.get_monotonic_time ();
1535-#if HAVE_GTK_3_8
1536 critical ("FrameClock not available");
1537 }
1538-#endif
1539 }
1540
1541 /**
1542@@ -121,11 +109,7 @@
1543 */
1544 public void animated_draw ()
1545 {
1546-#if HAVE_GTK_3_8
1547 if (is_updating || !widget.get_realized ())
1548-#else
1549- if (timer_id > 0U)
1550-#endif
1551 return;
1552
1553 force_frame_time_update ();
1554@@ -134,50 +118,30 @@
1555 widget.queue_draw ();
1556
1557 if (animation_needed (frame_time)) {
1558-#if HAVE_GTK_3_8
1559 unowned Gdk.FrameClock? frame_clock = widget.get_frame_clock ();
1560 frame_clock.begin_updating ();
1561 is_updating = true;
1562-#else
1563- // This roughly means driving animations with 60 fps
1564- timer_id = Gdk.threads_add_timeout (16, (SourceFunc) draw_timeout);
1565-#endif
1566 }
1567 }
1568
1569-#if HAVE_GTK_3_8
1570 [CCode (instance_pos = -1)]
1571 bool draw_timeout (Gtk.Widget widget, Gdk.FrameClock frame_clock)
1572 {
1573 frame_time = frame_clock.get_frame_time ();
1574 initialize_frame (frame_time);
1575-#else
1576- bool draw_timeout ()
1577- {
1578- force_frame_time_update ();
1579-#endif
1580 widget.queue_draw ();
1581
1582 if (animation_needed (frame_time))
1583 return true;
1584
1585-#if HAVE_GTK_3_8
1586 frame_clock.end_updating ();
1587 is_updating = false;
1588 return true;
1589-#else
1590- timer_id = 0U;
1591- return false;
1592-#endif
1593 }
1594
1595 [CCode (instance_pos = -1)]
1596 bool on_widget_draw (Gtk.Widget widget, Cairo.Context cr)
1597 {
1598-#if !HAVE_GTK_3_8
1599- force_frame_time_update ();
1600- initialize_frame (frame_time);
1601-#endif
1602 draw (cr, frame_time);
1603
1604 return Gdk.EVENT_PROPAGATE;
1605
1606=== modified file 'lib/Drawing/SurfaceCache.vala'
1607--- lib/Drawing/SurfaceCache.vala 2015-11-03 10:40:13 +0000
1608+++ lib/Drawing/SurfaceCache.vala 2016-02-16 14:34:53 +0000
1609@@ -131,13 +131,8 @@
1610
1611 construct
1612 {
1613-#if HAVE_GEE_0_8
1614 infos = new Gee.TreeSet<unowned SurfaceInfo> ((CompareDataFunc) SurfaceInfo.compare);
1615 cache_map = new Gee.HashMap<SurfaceInfo, Surface> ((Gee.HashDataFunc<SurfaceInfo>) SurfaceInfo.hash);
1616-#else
1617- infos = new Gee.TreeSet<unowned SurfaceInfo> ((CompareFunc) SurfaceInfo.compare);
1618- cache_map = new Gee.HashMap<SurfaceInfo, Surface> ((HashFunc<SurfaceInfo>) SurfaceInfo.hash);
1619-#endif
1620 last_info = null;
1621
1622 //TODO Adaptive delay depending on the access rate
1623
1624=== modified file 'lib/Drawing/Theme.vala'
1625--- lib/Drawing/Theme.vala 2016-01-03 16:05:10 +0000
1626+++ lib/Drawing/Theme.vala 2016-02-16 14:34:53 +0000
1627@@ -376,11 +376,7 @@
1628 */
1629 public static string[] get_theme_list ()
1630 {
1631-#if HAVE_GEE_0_8
1632 var list = new Gee.HashSet<string> ();
1633-#else
1634- var list = new Gee.HashSet<string> (str_hash, str_equal);
1635-#endif
1636
1637 list.add (DEFAULT_NAME);
1638 list.add (GTK_THEME_NAME);
1639@@ -415,11 +411,7 @@
1640
1641 var result = new Gee.ArrayList<string> ();
1642 result.add_all (list);
1643-#if HAVE_GEE_0_8
1644 result.sort ();
1645-#else
1646- result.sort ((CompareFunc) strcmp);
1647-#endif
1648
1649 return result.to_array ();
1650 }
1651
1652=== modified file 'lib/Factories/AbstractMain.vala'
1653--- lib/Factories/AbstractMain.vala 2016-01-14 13:33:33 +0000
1654+++ lib/Factories/AbstractMain.vala 2016-02-16 14:34:53 +0000
1655@@ -29,20 +29,14 @@
1656 * The default command-line options for the dock.
1657 */
1658 const OptionEntry[] options = {
1659- { "debug", 'd', 0, OptionArg.NONE, ref DEBUG, "Enable debug logging", null },
1660- { "verbose", 'v', 0, OptionArg.NONE, ref VERBOSE, "Enable verbose logging", null },
1661- { "name", 'n', 0, OptionArg.STRING, ref NAME, "The name of this dock", null },
1662- { "preferences", 0, 0, OptionArg.NONE, ref PREFERENCES, "Show the application's preferences dialog", null },
1663- { "version", 'V', 0, OptionArg.NONE, ref VERSION, "Show the application's version", null },
1664+ { "debug", 'd', 0, OptionArg.NONE, null, "Enable debug logging", null },
1665+ { "verbose", 'v', 0, OptionArg.NONE, null, "Enable verbose logging", null },
1666+ { "name", 'n', 0, OptionArg.STRING, null, "The name of this dock", null },
1667+ { "preferences", 0, 0, OptionArg.NONE, null, "Show the application's preferences dialog", null },
1668+ { "version", 'V', 0, OptionArg.NONE, null, "Show the application's version", null },
1669 { null }
1670 };
1671
1672- static bool DEBUG = false;
1673- static bool VERBOSE = false;
1674- static bool PREFERENCES = false;
1675- static bool VERSION = false;
1676- static string NAME = "dock1";
1677-
1678 static void sig_handler (int sig)
1679 {
1680 warning ("Caught signal (%d), exiting", sig);
1681@@ -94,10 +88,6 @@
1682 */
1683 public string app_dbus { get; construct; }
1684 /**
1685- * The name of the path containing the dock's preferences.
1686- */
1687- public string dock_name { get; protected set; }
1688- /**
1689 * The name of this program's icon.
1690 */
1691 public string app_icon { get; construct; }
1692@@ -140,29 +130,15 @@
1693 */
1694 public Gtk.License about_license_type { get; construct set; default = Gtk.License.UNKNOWN; }
1695
1696+ string dock_name = "";
1697+
1698 Gtk.AboutDialog? about_dlg;
1699 PreferencesWindow? preferences_dlg;
1700 DockController? controller;
1701
1702 construct
1703 {
1704- flags = ApplicationFlags.FLAGS_NONE;
1705- }
1706-
1707- /**
1708- * {@inheritDoc}
1709- */
1710- public override void activate ()
1711- {
1712- //TODO Maybe let the dock hide/show for a visible feedback
1713- }
1714-
1715- /**
1716- * {@inheritDoc}
1717- */
1718- public override bool local_command_line (ref unowned string[] args, out int exit_status)
1719- {
1720- exit_status = 0;
1721+ flags = ApplicationFlags.HANDLES_COMMAND_LINE;
1722
1723 // set program name
1724 #if HAVE_SYS_PRCTL_H
1725@@ -175,46 +151,55 @@
1726 Intl.bindtextdomain (Build.GETTEXT_PACKAGE, Build.DATADIR + "/locale");
1727 Intl.bind_textdomain_codeset (Build.GETTEXT_PACKAGE, "UTF-8");
1728
1729- var context = new OptionContext (null);
1730- context.add_main_entries (options, exec_name);
1731- context.add_group (Gtk.get_option_group (false));
1732-
1733- try {
1734- unowned string[] args2 = args;
1735- context.parse (ref args2);
1736- } catch (OptionError e) {
1737- printerr ("%s\n", e.message);
1738- exit_status = 1;
1739- return true;
1740- }
1741-
1742- if (VERSION) {
1743+ add_main_option_entries (options);
1744+ }
1745+
1746+ /**
1747+ * {@inheritDoc}
1748+ */
1749+ public override void activate ()
1750+ {
1751+ //TODO Maybe let the dock hide/show for a visible feedback
1752+ }
1753+
1754+ /**
1755+ * {@inheritDoc}
1756+ */
1757+ public override int handle_local_options (VariantDict options)
1758+ {
1759+ if (options.contains ("version")) {
1760 print ("%s\n", build_version);
1761- return true;
1762+ return 0;
1763 }
1764
1765- if (VERBOSE)
1766+ Logger.initialize (program_name);
1767+
1768+ if (options.contains ("verbose"))
1769 Logger.DisplayLevel = LogLevel.VERBOSE;
1770- else if (DEBUG)
1771+ else if (options.contains ("debug"))
1772 Logger.DisplayLevel = LogLevel.DEBUG;
1773 else
1774 Logger.DisplayLevel = LogLevel.WARN;
1775
1776- dock_name = NAME;
1777+ if (!options.lookup ("name", "&s", out dock_name))
1778+ dock_name = "dock1";
1779
1780 application_id = "%s.%s".printf (app_dbus, dock_name);
1781
1782- try {
1783- register ();
1784- } catch {
1785- exit_status = 1;
1786- return true;
1787- }
1788+ return -1;
1789+ }
1790+
1791+ /**
1792+ * {@inheritDoc}
1793+ */
1794+ public override int command_line (ApplicationCommandLine command_line)
1795+ {
1796+ var options = command_line.get_options_dict ();
1797
1798- if (get_is_registered () && PREFERENCES)
1799+ if (options.contains ("preferences"))
1800 activate_action ("preferences", null);
1801
1802- return base.local_command_line (ref args, out exit_status);
1803+ return 0;
1804 }
1805
1806 /**
1807@@ -231,14 +216,12 @@
1808 assert (program_name != null);
1809 assert (exec_name != null);
1810 assert (app_dbus != null);
1811- assert (dock_name != null);
1812
1813 base.startup ();
1814
1815 if (!Thread.supported ())
1816 critical ("Problem initializing thread support.");
1817
1818- Logger.initialize (program_name);
1819 message ("%s version: %s", program_name, build_version);
1820 message ("Kernel version: %s", Posix.utsname ().release);
1821 message ("GLib version: %u.%u.%u (%u.%u.%u)",
1822@@ -250,12 +233,6 @@
1823 message ("Wnck version: %d.%d.%d", Wnck.Version.MAJOR_VERSION, Wnck.Version.MINOR_VERSION, Wnck.Version.MICRO_VERSION);
1824 message ("Cairo version: %s", Cairo.version_string ());
1825 message ("Pango version: %s", Pango.version_string ());
1826-#if HAVE_GTK_3_8
1827- message ("+ Gtk+ FrameClock usage enabled");
1828-#endif
1829-#if HAVE_GTK_3_10
1830- message ("+ Gtk+ CSD support enabled");
1831-#endif
1832 #if HAVE_HIDPI
1833 message ("+ Cairo/Gtk+ HiDPI support enabled");
1834 #endif
1835
1836=== modified file 'lib/Items/ApplicationDockItem.vala'
1837--- lib/Items/ApplicationDockItem.vala 2016-01-07 18:00:19 +0000
1838+++ lib/Items/ApplicationDockItem.vala 2016-02-16 14:34:53 +0000
1839@@ -128,11 +128,7 @@
1840 {
1841 supported_mime_types = new Gee.ArrayList<string> ();
1842 actions = new Gee.ArrayList<string> ();
1843-#if HAVE_GEE_0_8
1844 actions_map = new Gee.HashMap<string, string> ();
1845-#else
1846- actions_map = new Gee.HashMap<string, string> (str_hash, str_equal);
1847-#endif
1848
1849 load_from_launcher ();
1850 }
1851
1852=== modified file 'lib/Items/FileDockItem.vala'
1853--- lib/Items/FileDockItem.vala 2016-01-04 19:54:10 +0000
1854+++ lib/Items/FileDockItem.vala 2016-02-16 14:34:53 +0000
1855@@ -186,11 +186,7 @@
1856
1857 draw_icon_fast (surface);
1858
1859-#if HAVE_GEE_0_8
1860 var icons = new Gee.HashMap<string, string> ();
1861-#else
1862- var icons = new Gee.HashMap<string, string> (str_hash, str_equal);
1863-#endif
1864 var keys = new Gee.ArrayList<string> ();
1865
1866 foreach (var file in get_files ()) {
1867@@ -213,11 +209,7 @@
1868 var icon_height = (int) ((height - 80 * radius / 33.0) / 2.0);
1869 var offset = (int) ((width - 2 * icon_width) / 3.0);
1870
1871-#if HAVE_GEE_0_8
1872 keys.sort ();
1873-#else
1874- keys.sort ((CompareFunc) strcmp);
1875-#endif
1876 foreach (var s in keys) {
1877 var x = pos % 2;
1878 int y = pos / 2;
1879@@ -277,11 +269,7 @@
1880 {
1881 var items = new Gee.ArrayList<Gtk.MenuItem> ();
1882
1883-#if HAVE_GEE_0_8
1884 var menu_items = new Gee.HashMap<string, Gtk.MenuItem> ();
1885-#else
1886- var menu_items = new Gee.HashMap<string, Gtk.MenuItem> (str_hash, str_equal);
1887-#endif
1888 var keys = new Gee.ArrayList<string> ();
1889
1890 foreach (var file in get_files ()) {
1891@@ -313,11 +301,7 @@
1892 keys.add (key);
1893 }
1894
1895-#if HAVE_GEE_0_8
1896 keys.sort ();
1897-#else
1898- keys.sort ((CompareFunc) strcmp);
1899-#endif
1900 foreach (var s in keys)
1901 items.add (menu_items.get (s));
1902
1903
1904=== modified file 'lib/Makefile.am'
1905--- lib/Makefile.am 2016-01-30 12:08:11 +0000
1906+++ lib/Makefile.am 2016-02-16 14:34:53 +0000
1907@@ -134,6 +134,7 @@
1908 --library plank \
1909 --symbols build-abi \
1910 --vapi plank.vapi \
1911+ --gresources $(top_srcdir)/data/plank.gresource.xml \
1912 $(filter %.vala %.c,$^)
1913 $(AM_V_at)touch $@
1914
1915@@ -196,7 +197,6 @@
1916 $(nodist_libplank_la_SOURCES) \
1917 $(nodist_libplank_internal_la_SOURCES) \
1918 build-abi \
1919- plank.deps \
1920 plank.pc \
1921 plank.vapi \
1922 plank.h \
1923@@ -210,7 +210,7 @@
1924 $(libplank_internal_la_VALASOURCES) \
1925 abicheck.sh \
1926 libplank.symbols \
1927- plank.deps.in \
1928+ plank.deps \
1929 plank.pc.in \
1930 Version.vala.in \
1931 $(NULL)
1932
1933=== modified file 'lib/PositionManager.vala'
1934--- lib/PositionManager.vala 2016-01-09 09:20:19 +0000
1935+++ lib/PositionManager.vala 2016-02-16 14:34:53 +0000
1936@@ -1003,22 +1003,12 @@
1937 update_background_region (draw_values[items.first ()], draw_values[items.last ()]);
1938
1939 // precalculate and cache regions (for the current frame)
1940-#if HAVE_GEE_0_8
1941 draw_values.map_iterator ().foreach ((i, val) => {
1942 val.draw_region = get_item_draw_region (val);
1943 val.hover_region = get_item_hover_region (val);
1944 val.background_region = get_item_background_region (val);
1945 return true;
1946 });
1947-#else
1948- var draw_values_it = draw_values.map_iterator ();
1949- while (draw_values_it.next ()) {
1950- var val = draw_values_it.get_value ();
1951- val.draw_region = get_item_draw_region (val);
1952- val.hover_region = get_item_hover_region (val);
1953- val.background_region = get_item_background_region (val);
1954- }
1955-#endif
1956 }
1957 /**
1958 * The region for drawing a dock item.
1959
1960=== modified file 'lib/Widgets/DockWindow.vala'
1961--- lib/Widgets/DockWindow.vala 2015-12-09 09:30:43 +0000
1962+++ lib/Widgets/DockWindow.vala 2016-02-16 14:34:53 +0000
1963@@ -619,11 +619,7 @@
1964 menu.show.connect (on_menu_show);
1965 menu.hide.connect (on_menu_hide);
1966
1967-#if HAVE_GEE_0_8
1968 var iterator = menu_items.bidir_list_iterator ();
1969-#else
1970- var iterator = menu_items.list_iterator ();
1971-#endif
1972 if (controller.prefs.Position == Gtk.PositionType.TOP) {
1973 iterator.last ();
1974 do {
1975
1976=== modified file 'lib/Widgets/PreferencesWindow.vala'
1977--- lib/Widgets/PreferencesWindow.vala 2016-01-26 14:18:35 +0000
1978+++ lib/Widgets/PreferencesWindow.vala 2016-02-16 14:34:53 +0000
1979@@ -19,6 +19,7 @@
1980
1981 namespace Plank
1982 {
1983+ [GtkTemplate (ui = "/net/launchpad/plank/ui/preferences.ui")]
1984 public class PreferencesWindow : Gtk.Window
1985 {
1986 /**
1987@@ -28,114 +29,75 @@
1988
1989 DockPreferences prefs;
1990
1991- Gtk.Builder? builder;
1992-
1993+ [GtkChild]
1994 Gtk.ComboBoxText cb_theme;
1995+ [GtkChild]
1996 Gtk.ComboBoxText cb_hidemode;
1997+ [GtkChild]
1998 Gtk.ComboBoxText cb_display_plug;
1999+ [GtkChild]
2000 Gtk.ComboBoxText cb_position;
2001+ [GtkChild]
2002 Gtk.ComboBoxText cb_alignment;
2003+ [GtkChild]
2004 Gtk.ComboBoxText cb_items_alignment;
2005
2006+ [GtkChild]
2007 Gtk.SpinButton sp_hide_delay;
2008+ [GtkChild]
2009 Gtk.SpinButton sp_unhide_delay;
2010+ [GtkChild]
2011 Gtk.Scale s_offset;
2012+ [GtkChild]
2013 Gtk.Scale s_zoom_percent;
2014
2015+ [GtkChild]
2016 Gtk.Adjustment adj_hide_delay;
2017+ [GtkChild]
2018 Gtk.Adjustment adj_unhide_delay;
2019+ [GtkChild]
2020 Gtk.Adjustment adj_iconsize;
2021+ [GtkChild]
2022 Gtk.Adjustment adj_offset;
2023+ [GtkChild]
2024 Gtk.Adjustment adj_zoom_percent;
2025
2026+ [GtkChild]
2027 Gtk.Switch sw_hide;
2028+ [GtkChild]
2029 Gtk.Switch sw_primary_display;
2030+ [GtkChild]
2031 Gtk.Switch sw_workspace_only;
2032+ [GtkChild]
2033 Gtk.Switch sw_show_unpinned;
2034+ [GtkChild]
2035 Gtk.Switch sw_lock_items;
2036+ [GtkChild]
2037 Gtk.Switch sw_auto_pinning;
2038+ [GtkChild]
2039 Gtk.Switch sw_pressure_reveal;
2040+ [GtkChild]
2041 Gtk.Switch sw_show_dock_item;
2042+ [GtkChild]
2043 Gtk.Switch sw_zoom_enabled;
2044
2045+ [GtkChild]
2046+ Gtk.IconView view_docklets;
2047+
2048 public PreferencesWindow (DockController controller)
2049 {
2050- Object (controller: controller, type: Gtk.WindowType.TOPLEVEL, type_hint: Gdk.WindowTypeHint.DIALOG);
2051+ Object (controller: controller);
2052 }
2053
2054 construct
2055 {
2056 prefs = controller.prefs;
2057
2058- skip_pager_hint = true;
2059- skip_taskbar_hint = true;
2060- title = _("Preferences");
2061- resizable = false;
2062- deletable = true;
2063- window_position = Gtk.WindowPosition.CENTER;
2064- gravity = Gdk.Gravity.CENTER;
2065- icon_name = "plank";
2066+ init_dock_tab ();
2067+ init_docklets_tab ();
2068+ connect_signals ();
2069
2070- try {
2071- builder = new Gtk.Builder ();
2072-#if HAVE_GTK_3_10
2073- builder.add_from_resource ("%s/ui/preferences.ui".printf (Plank.G_RESOURCE_PATH));
2074-
2075- var headerbar = new Gtk.HeaderBar ();
2076- headerbar.show_close_button = true;
2077- headerbar.set_custom_title ((Gtk.Widget) builder.get_object ("dock_preferences_switcher"));
2078- headerbar.show ();
2079- set_titlebar (headerbar);
2080-
2081- var stack = (Gtk.Stack) builder.get_object ("dock_preferences");
2082- add (stack);
2083-#else
2084- const string[] ids = { "grid_appearance", "grid_behaviour", "view_docklets",
2085- "adj_hide_delay", "adj_iconsize", "adj_offset", "adj_unhide_delay" };
2086- builder.add_objects_from_resource ("%s/ui/preferences.ui".printf (Plank.G_RESOURCE_PATH), ids);
2087-
2088- var notebook = new Gtk.Notebook ();
2089- notebook.append_page ((Gtk.Widget) builder.get_object ("grid_appearance"), new Gtk.Label (_("Appearance")));
2090- notebook.append_page ((Gtk.Widget) builder.get_object ("grid_behaviour"), new Gtk.Label (_("Behaviour")));
2091- notebook.append_page ((Gtk.Widget) builder.get_object ("view_docklets"), new Gtk.Label (_("Docklets")));
2092- notebook.show ();
2093- add (notebook);
2094-#endif
2095-
2096- cb_theme = builder.get_object ("cb_theme") as Gtk.ComboBoxText;
2097- cb_hidemode = builder.get_object ("cb_hidemode") as Gtk.ComboBoxText;
2098- cb_display_plug = builder.get_object ("cb_display_plug") as Gtk.ComboBoxText;
2099- cb_position = builder.get_object ("cb_position") as Gtk.ComboBoxText;
2100- sp_hide_delay = builder.get_object ("sp_hide_delay") as Gtk.SpinButton;
2101- sp_unhide_delay = builder.get_object ("sp_unhide_delay") as Gtk.SpinButton;
2102- adj_hide_delay = builder.get_object ("adj_hide_delay") as Gtk.Adjustment;
2103- adj_unhide_delay = builder.get_object ("adj_unhide_delay") as Gtk.Adjustment;
2104- adj_iconsize = builder.get_object ("adj_iconsize") as Gtk.Adjustment;
2105- adj_offset = builder.get_object ("adj_offset") as Gtk.Adjustment;
2106- adj_zoom_percent = builder.get_object ("adj_zoom_percent") as Gtk.Adjustment;
2107- s_offset = builder.get_object ("s_offset") as Gtk.Scale;
2108- s_zoom_percent = builder.get_object ("s_zoom_percent") as Gtk.Scale;
2109- sw_hide = builder.get_object ("sw_hide") as Gtk.Switch;
2110- sw_primary_display = builder.get_object ("sw_primary_display") as Gtk.Switch;
2111- sw_workspace_only = builder.get_object ("sw_workspace_only") as Gtk.Switch;
2112- sw_show_unpinned = builder.get_object ("sw_show_unpinned") as Gtk.Switch;
2113- sw_lock_items = builder.get_object ("sw_lock_items") as Gtk.Switch;
2114- sw_auto_pinning = builder.get_object ("sw_auto_pinning") as Gtk.Switch;
2115- sw_pressure_reveal = builder.get_object ("sw_pressure_reveal") as Gtk.Switch;
2116- sw_show_dock_item = builder.get_object ("sw_show_dock_item") as Gtk.Switch;
2117- sw_zoom_enabled = builder.get_object ("sw_zoom_enabled") as Gtk.Switch;
2118- cb_alignment = builder.get_object ("cb_alignment") as Gtk.ComboBoxText;
2119- cb_items_alignment = builder.get_object ("cb_items_alignment") as Gtk.ComboBoxText;
2120-
2121- init_dock_tab ();
2122- init_docklets_tab ();
2123- connect_signals ();
2124-
2125- notify["controller"].connect (controller_changed);
2126- } catch (Error e) {
2127- builder = null;
2128- critical (e.message);
2129- }
2130+ notify["controller"].connect (controller_changed);
2131 }
2132
2133 void controller_changed ()
2134@@ -236,29 +198,29 @@
2135
2136 }
2137
2138- void cb_theme_changed (Gtk.ComboBox widget)
2139+ void theme_changed (Gtk.ComboBox widget)
2140 {
2141 prefs.Theme = ((Gtk.ComboBoxText) widget).get_active_text ();
2142 }
2143
2144- void cb_hidemode_changed (Gtk.ComboBox widget)
2145+ void hidemode_changed (Gtk.ComboBox widget)
2146 {
2147 prefs.HideMode = (HideType) int.parse (widget.get_active_id ());
2148 }
2149
2150- void cb_position_changed (Gtk.ComboBox widget)
2151+ void position_changed (Gtk.ComboBox widget)
2152 {
2153 prefs.Position = (Gtk.PositionType) int.parse (widget.get_active_id ());
2154 }
2155
2156- void cb_alignment_changed (Gtk.ComboBox widget)
2157+ void alignment_changed (Gtk.ComboBox widget)
2158 {
2159 prefs.Alignment = (Gtk.Align) int.parse (widget.get_active_id ());
2160 cb_items_alignment.sensitive = (prefs.Alignment == Gtk.Align.FILL);
2161 s_offset.sensitive = (prefs.Alignment == Gtk.Align.CENTER);
2162 }
2163
2164- void cb_items_alignment_changed (Gtk.ComboBox widget)
2165+ void items_alignment_changed (Gtk.ComboBox widget)
2166 {
2167 prefs.ItemsAlignment = (Gtk.Align) int.parse (widget.get_active_id ());
2168 }
2169@@ -366,9 +328,9 @@
2170 {
2171 prefs.notify.connect (prefs_changed);
2172
2173- cb_theme.changed.connect (cb_theme_changed);
2174- cb_hidemode.changed.connect (cb_hidemode_changed);
2175- cb_position.changed.connect (cb_position_changed);
2176+ cb_theme.changed.connect (theme_changed);
2177+ cb_hidemode.changed.connect (hidemode_changed);
2178+ cb_position.changed.connect (position_changed);
2179 adj_hide_delay.value_changed.connect (hide_delay_changed);
2180 adj_unhide_delay.value_changed.connect (unhide_delay_changed);
2181 cb_display_plug.changed.connect (monitor_changed);
2182@@ -384,17 +346,17 @@
2183 sw_pressure_reveal.notify["active"].connect (pressure_reveal_toggled);
2184 sw_show_dock_item.notify["active"].connect (show_dock_item_toggled);
2185 sw_zoom_enabled.notify["active"].connect (zoom_enabled_toggled);
2186- cb_alignment.changed.connect (cb_alignment_changed);
2187- cb_items_alignment.changed.connect (cb_items_alignment_changed);
2188+ cb_alignment.changed.connect (alignment_changed);
2189+ cb_items_alignment.changed.connect (items_alignment_changed);
2190 }
2191
2192 void disconnect_signals ()
2193 {
2194 prefs.notify.disconnect (prefs_changed);
2195
2196- cb_theme.changed.disconnect (cb_theme_changed);
2197- cb_hidemode.changed.disconnect (cb_hidemode_changed);
2198- cb_position.changed.disconnect (cb_position_changed);
2199+ cb_theme.changed.disconnect (theme_changed);
2200+ cb_hidemode.changed.disconnect (hidemode_changed);
2201+ cb_position.changed.disconnect (position_changed);
2202 adj_hide_delay.value_changed.disconnect (hide_delay_changed);
2203 adj_unhide_delay.value_changed.disconnect (unhide_delay_changed);
2204 cb_display_plug.changed.disconnect (monitor_changed);
2205@@ -410,8 +372,8 @@
2206 sw_pressure_reveal.notify["active"].disconnect (pressure_reveal_toggled);
2207 sw_show_dock_item.notify["active"].disconnect (show_dock_item_toggled);
2208 sw_zoom_enabled.notify["active"].disconnect (zoom_enabled_toggled);
2209- cb_alignment.changed.disconnect (cb_alignment_changed);
2210- cb_items_alignment.changed.disconnect (cb_items_alignment_changed);
2211+ cb_alignment.changed.disconnect (alignment_changed);
2212+ cb_items_alignment.changed.disconnect (items_alignment_changed);
2213 }
2214
2215 void init_dock_tab ()
2216@@ -469,7 +431,6 @@
2217 {
2218 var model_docklets = new DockletViewModel ();
2219 var sorted_docklets = new Gtk.TreeModelSort.with_model (model_docklets);
2220- var view_docklets = (Gtk.IconView) builder.get_object ("view_docklets");
2221
2222 Gtk.TargetEntry te = { "text/plank-uri-list", Gtk.TargetFlags.SAME_APP, 0};
2223 view_docklets.enable_model_drag_source (Gdk.ModifierType.BUTTON1_MASK, { te }, Gdk.DragAction.PRIVATE);
2224
2225=== modified file 'lib/libplank.symbols'
2226--- lib/libplank.symbols 2016-01-30 12:08:11 +0000
2227+++ lib/libplank.symbols 2016-02-16 14:34:53 +0000
2228@@ -15,7 +15,6 @@
2229 plank_abstract_main_get_build_release_name
2230 plank_abstract_main_get_build_version
2231 plank_abstract_main_get_build_version_info
2232-plank_abstract_main_get_dock_name
2233 plank_abstract_main_get_exec_name
2234 plank_abstract_main_get_help_url
2235 plank_abstract_main_get_main_url
2236@@ -29,7 +28,6 @@
2237 plank_abstract_main_set_about_documenters
2238 plank_abstract_main_set_about_license_type
2239 plank_abstract_main_set_about_translators
2240-plank_abstract_main_set_dock_name
2241 plank_abstract_main_set_help_url
2242 plank_abstract_main_set_main_url
2243 plank_abstract_main_set_translate_url
2244
2245=== renamed file 'lib/plank.deps.in' => 'lib/plank.deps'
2246--- lib/plank.deps.in 2013-04-20 10:55:48 +0000
2247+++ lib/plank.deps 2016-02-16 14:34:53 +0000
2248@@ -1,7 +1,7 @@
2249 cairo
2250 gdk-pixbuf-2.0
2251 gdk-3.0
2252-@GEE_DEPEND@
2253+gee-0.8
2254 gio-2.0
2255 glib-2.0
2256 gobject-2.0
2257
2258=== modified file 'lib/plank.pc.in'
2259--- lib/plank.pc.in 2015-05-30 07:01:01 +0000
2260+++ lib/plank.pc.in 2016-02-16 14:34:53 +0000
2261@@ -7,6 +7,6 @@
2262 Name: Plank
2263 Description: Generic dock library of Plank
2264 Version: @PACKAGE_VERSION@
2265-Requires: cairo @GEE_DEPEND@ glib-2.0 gio-2.0 gobject-2.0 gthread-2.0 gdk-3.0 gdk-pixbuf-2.0 gtk+-3.0 libbamf3
2266+Requires: cairo gee-0.8 glib-2.0 gio-2.0 gobject-2.0 gthread-2.0 gdk-3.0 gdk-pixbuf-2.0 gtk+-3.0 libbamf3
2267 Libs: -L${libdir} -lplank
2268 Cflags: -I${includedir}/plank
2269
2270=== modified file 'po/am.po'
2271--- po/am.po 2016-01-05 09:09:38 +0000
2272+++ po/am.po 2016-02-16 14:34:53 +0000
2273@@ -7,15 +7,15 @@
2274 msgstr ""
2275 "Project-Id-Version: plank\n"
2276 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2277-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2278+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2279 "PO-Revision-Date: 2015-12-11 19:08+0000\n"
2280 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2281 "Language-Team: Amharic <am@li.org>\n"
2282 "MIME-Version: 1.0\n"
2283 "Content-Type: text/plain; charset=UTF-8\n"
2284 "Content-Transfer-Encoding: 8bit\n"
2285-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2286-"X-Generator: Launchpad (build 17876)\n"
2287+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2288+"X-Generator: Launchpad (build 17925)\n"
2289
2290 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2291 msgid "Stupidly simple."
2292@@ -100,7 +100,7 @@
2293 msgid "Icon Zoom:"
2294 msgstr ""
2295
2296-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2297+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2298 msgid "Appearance"
2299 msgstr "አቀራረብ"
2300
2301@@ -172,15 +172,15 @@
2302 msgid "Show Item for Dock:"
2303 msgstr ""
2304
2305-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2306+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2307 msgid "Behaviour"
2308 msgstr "ባህሪው"
2309
2310-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2311+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2312 msgid "Docklets"
2313 msgstr ""
2314
2315-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2316+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2317 msgid "Drop to add to dock"
2318 msgstr ""
2319
2320@@ -233,6 +233,6 @@
2321 msgid "_Translate This Application..."
2322 msgstr ""
2323
2324-#: ../lib/Widgets/PreferencesWindow.vala:65
2325+#: ../lib/Widgets/PreferencesWindow.vala:72
2326 msgid "Preferences"
2327 msgstr "ምርጫዎች"
2328
2329=== modified file 'po/ar.po'
2330--- po/ar.po 2016-01-05 09:09:38 +0000
2331+++ po/ar.po 2016-02-16 14:34:53 +0000
2332@@ -7,15 +7,15 @@
2333 msgstr ""
2334 "Project-Id-Version: plank\n"
2335 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2336-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2337+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2338 "PO-Revision-Date: 2015-12-23 00:42+0000\n"
2339 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2340 "Language-Team: Arabic <ar@li.org>\n"
2341 "MIME-Version: 1.0\n"
2342 "Content-Type: text/plain; charset=UTF-8\n"
2343 "Content-Transfer-Encoding: 8bit\n"
2344-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2345-"X-Generator: Launchpad (build 17876)\n"
2346+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2347+"X-Generator: Launchpad (build 17925)\n"
2348
2349 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2350 msgid "Stupidly simple."
2351@@ -102,7 +102,7 @@
2352 msgid "Icon Zoom:"
2353 msgstr ""
2354
2355-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2356+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2357 msgid "Appearance"
2358 msgstr "المظهر"
2359
2360@@ -174,15 +174,15 @@
2361 msgid "Show Item for Dock:"
2362 msgstr ""
2363
2364-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2365+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2366 msgid "Behaviour"
2367 msgstr "سلوك"
2368
2369-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2370+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2371 msgid "Docklets"
2372 msgstr ""
2373
2374-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2375+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2376 msgid "Drop to add to dock"
2377 msgstr ""
2378
2379@@ -239,6 +239,6 @@
2380 msgid "_Translate This Application..."
2381 msgstr "ترجم هذا الت_طبيق"
2382
2383-#: ../lib/Widgets/PreferencesWindow.vala:65
2384+#: ../lib/Widgets/PreferencesWindow.vala:72
2385 msgid "Preferences"
2386 msgstr "التفضيلات"
2387
2388=== modified file 'po/bg.po'
2389--- po/bg.po 2016-01-05 09:09:38 +0000
2390+++ po/bg.po 2016-02-16 14:34:53 +0000
2391@@ -7,15 +7,15 @@
2392 msgstr ""
2393 "Project-Id-Version: plank\n"
2394 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2395-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2396+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2397 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
2398 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2399 "Language-Team: Bulgarian <bg@li.org>\n"
2400 "MIME-Version: 1.0\n"
2401 "Content-Type: text/plain; charset=UTF-8\n"
2402 "Content-Transfer-Encoding: 8bit\n"
2403-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2404-"X-Generator: Launchpad (build 17876)\n"
2405+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2406+"X-Generator: Launchpad (build 17925)\n"
2407
2408 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2409 msgid "Stupidly simple."
2410@@ -106,7 +106,7 @@
2411 msgid "Icon Zoom:"
2412 msgstr ""
2413
2414-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2415+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2416 msgid "Appearance"
2417 msgstr "Външен вид"
2418
2419@@ -178,15 +178,15 @@
2420 msgid "Show Item for Dock:"
2421 msgstr ""
2422
2423-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2424+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2425 msgid "Behaviour"
2426 msgstr "Поведение"
2427
2428-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2429+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2430 msgid "Docklets"
2431 msgstr "Доклети"
2432
2433-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2434+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2435 msgid "Drop to add to dock"
2436 msgstr "Отпуснете за да добавите към док"
2437
2438@@ -242,6 +242,6 @@
2439 msgid "_Translate This Application..."
2440 msgstr "_Превеждане на това приложение..."
2441
2442-#: ../lib/Widgets/PreferencesWindow.vala:65
2443+#: ../lib/Widgets/PreferencesWindow.vala:72
2444 msgid "Preferences"
2445 msgstr "Предпочитания"
2446
2447=== modified file 'po/bs.po'
2448--- po/bs.po 2016-01-05 09:09:38 +0000
2449+++ po/bs.po 2016-02-16 14:34:53 +0000
2450@@ -7,15 +7,15 @@
2451 msgstr ""
2452 "Project-Id-Version: plank\n"
2453 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2454-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2455+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2456 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
2457 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2458 "Language-Team: Bosnian <bs@li.org>\n"
2459 "MIME-Version: 1.0\n"
2460 "Content-Type: text/plain; charset=UTF-8\n"
2461 "Content-Transfer-Encoding: 8bit\n"
2462-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2463-"X-Generator: Launchpad (build 17876)\n"
2464+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2465+"X-Generator: Launchpad (build 17925)\n"
2466
2467 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2468 msgid "Stupidly simple."
2469@@ -100,7 +100,7 @@
2470 msgid "Icon Zoom:"
2471 msgstr ""
2472
2473-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2474+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2475 msgid "Appearance"
2476 msgstr ""
2477
2478@@ -172,15 +172,15 @@
2479 msgid "Show Item for Dock:"
2480 msgstr ""
2481
2482-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2483+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2484 msgid "Behaviour"
2485 msgstr ""
2486
2487-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2488+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2489 msgid "Docklets"
2490 msgstr ""
2491
2492-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2493+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2494 msgid "Drop to add to dock"
2495 msgstr ""
2496
2497@@ -234,6 +234,6 @@
2498 msgid "_Translate This Application..."
2499 msgstr "Prevedi ovu aplikaciju..."
2500
2501-#: ../lib/Widgets/PreferencesWindow.vala:65
2502+#: ../lib/Widgets/PreferencesWindow.vala:72
2503 msgid "Preferences"
2504 msgstr "Postavke"
2505
2506=== modified file 'po/ca.po'
2507--- po/ca.po 2016-01-05 09:09:38 +0000
2508+++ po/ca.po 2016-02-16 14:34:53 +0000
2509@@ -7,15 +7,15 @@
2510 msgstr ""
2511 "Project-Id-Version: plank\n"
2512 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2513-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2514+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2515 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
2516 "Last-Translator: José Alfredo Múrcia Andrés <joamuran@gmail.com>\n"
2517 "Language-Team: Catalan <ca@li.org>\n"
2518 "MIME-Version: 1.0\n"
2519 "Content-Type: text/plain; charset=UTF-8\n"
2520 "Content-Transfer-Encoding: 8bit\n"
2521-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2522-"X-Generator: Launchpad (build 17876)\n"
2523+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2524+"X-Generator: Launchpad (build 17925)\n"
2525
2526 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2527 msgid "Stupidly simple."
2528@@ -108,7 +108,7 @@
2529 msgid "Icon Zoom:"
2530 msgstr "Escala de les icones:"
2531
2532-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2533+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2534 msgid "Appearance"
2535 msgstr "Aparença"
2536
2537@@ -180,15 +180,15 @@
2538 msgid "Show Item for Dock:"
2539 msgstr "Mostra l'element del Dock:"
2540
2541-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2542+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2543 msgid "Behaviour"
2544 msgstr "Comportament"
2545
2546-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2547+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2548 msgid "Docklets"
2549 msgstr "Miniaplicacions"
2550
2551-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2552+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2553 msgid "Drop to add to dock"
2554 msgstr "Deixa anar per afegir al dock"
2555
2556@@ -243,6 +243,6 @@
2557 msgid "_Translate This Application..."
2558 msgstr "_Traduïu aquesta aplicació…"
2559
2560-#: ../lib/Widgets/PreferencesWindow.vala:65
2561+#: ../lib/Widgets/PreferencesWindow.vala:72
2562 msgid "Preferences"
2563 msgstr "Preferències"
2564
2565=== modified file 'po/cs.po'
2566--- po/cs.po 2016-01-05 09:09:38 +0000
2567+++ po/cs.po 2016-02-16 14:34:53 +0000
2568@@ -7,15 +7,15 @@
2569 msgstr ""
2570 "Project-Id-Version: plank\n"
2571 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2572-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2573+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2574 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
2575 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2576 "Language-Team: Czech <cs@li.org>\n"
2577 "MIME-Version: 1.0\n"
2578 "Content-Type: text/plain; charset=UTF-8\n"
2579 "Content-Transfer-Encoding: 8bit\n"
2580-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2581-"X-Generator: Launchpad (build 17876)\n"
2582+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2583+"X-Generator: Launchpad (build 17925)\n"
2584
2585 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2586 msgid "Stupidly simple."
2587@@ -102,7 +102,7 @@
2588 msgid "Icon Zoom:"
2589 msgstr ""
2590
2591-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2592+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2593 msgid "Appearance"
2594 msgstr "Vzhled"
2595
2596@@ -174,15 +174,15 @@
2597 msgid "Show Item for Dock:"
2598 msgstr ""
2599
2600-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2601+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2602 msgid "Behaviour"
2603 msgstr "Chování"
2604
2605-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2606+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2607 msgid "Docklets"
2608 msgstr "Doplňky"
2609
2610-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2611+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2612 msgid "Drop to add to dock"
2613 msgstr "Upustit pro přidání do panelu"
2614
2615@@ -239,6 +239,6 @@
2616 msgid "_Translate This Application..."
2617 msgstr "_Přeložit tuto aplikaci..."
2618
2619-#: ../lib/Widgets/PreferencesWindow.vala:65
2620+#: ../lib/Widgets/PreferencesWindow.vala:72
2621 msgid "Preferences"
2622 msgstr "Předvolby"
2623
2624=== modified file 'po/de.po'
2625--- po/de.po 2016-01-05 09:09:38 +0000
2626+++ po/de.po 2016-02-16 14:34:53 +0000
2627@@ -7,15 +7,15 @@
2628 msgstr ""
2629 "Project-Id-Version: plank\n"
2630 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2631-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2632-"PO-Revision-Date: 2015-12-23 00:39+0000\n"
2633+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2634+"PO-Revision-Date: 2016-01-05 17:58+0000\n"
2635 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2636 "Language-Team: German <de@li.org>\n"
2637 "MIME-Version: 1.0\n"
2638 "Content-Type: text/plain; charset=UTF-8\n"
2639 "Content-Transfer-Encoding: 8bit\n"
2640-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2641-"X-Generator: Launchpad (build 17876)\n"
2642+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2643+"X-Generator: Launchpad (build 17925)\n"
2644
2645 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2646 msgid "Stupidly simple."
2647@@ -107,7 +107,7 @@
2648 msgid "Icon Zoom:"
2649 msgstr "Symbolvergrößerung:"
2650
2651-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2652+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2653 msgid "Appearance"
2654 msgstr "Erscheinungsbild"
2655
2656@@ -179,15 +179,15 @@
2657 msgid "Show Item for Dock:"
2658 msgstr "Symbol für Dock anzeigen:"
2659
2660-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2661+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2662 msgid "Behaviour"
2663 msgstr "Verhalten"
2664
2665-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2666+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2667 msgid "Docklets"
2668 msgstr "Docklets"
2669
2670-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2671+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2672 msgid "Drop to add to dock"
2673 msgstr "Loslassen, um es zum Dock hinzuzufügen"
2674
2675@@ -248,6 +248,6 @@
2676 msgid "_Translate This Application..."
2677 msgstr "_Diese Anwendung übersetzen …"
2678
2679-#: ../lib/Widgets/PreferencesWindow.vala:65
2680+#: ../lib/Widgets/PreferencesWindow.vala:72
2681 msgid "Preferences"
2682 msgstr "Einstellungen"
2683
2684=== modified file 'po/el.po'
2685--- po/el.po 2016-01-05 09:09:38 +0000
2686+++ po/el.po 2016-02-16 14:34:53 +0000
2687@@ -7,15 +7,15 @@
2688 msgstr ""
2689 "Project-Id-Version: plank\n"
2690 "Report-Msgid-Bugs-To: Kostas Milonas <milonas.ko@gmail.com>\n"
2691-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2692+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2693 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
2694 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2695 "Language-Team: Greek <el@li.org>\n"
2696 "MIME-Version: 1.0\n"
2697 "Content-Type: text/plain; charset=UTF-8\n"
2698 "Content-Transfer-Encoding: 8bit\n"
2699-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2700-"X-Generator: Launchpad (build 17876)\n"
2701+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2702+"X-Generator: Launchpad (build 17925)\n"
2703
2704 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2705 msgid "Stupidly simple."
2706@@ -109,7 +109,7 @@
2707 msgid "Icon Zoom:"
2708 msgstr "Μεγέθυνση εικονιδίων:"
2709
2710-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2711+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2712 msgid "Appearance"
2713 msgstr "Εμφάνιση"
2714
2715@@ -181,15 +181,15 @@
2716 msgid "Show Item for Dock:"
2717 msgstr "Εμφάνιση Αντικειμένου για Υποδοχή:"
2718
2719-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2720+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2721 msgid "Behaviour"
2722 msgstr "Συμπεριφορά"
2723
2724-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2725+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2726 msgid "Docklets"
2727 msgstr "Εφαρμογίδια"
2728
2729-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2730+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2731 msgid "Drop to add to dock"
2732 msgstr ""
2733
2734@@ -245,6 +245,6 @@
2735 msgid "_Translate This Application..."
2736 msgstr "Με_ταφράστε αυτήν την εφαρμογή..."
2737
2738-#: ../lib/Widgets/PreferencesWindow.vala:65
2739+#: ../lib/Widgets/PreferencesWindow.vala:72
2740 msgid "Preferences"
2741 msgstr "Προτιμήσεις"
2742
2743=== modified file 'po/en_AU.po'
2744--- po/en_AU.po 2016-01-05 09:09:38 +0000
2745+++ po/en_AU.po 2016-02-16 14:34:53 +0000
2746@@ -7,15 +7,15 @@
2747 msgstr ""
2748 "Project-Id-Version: plank\n"
2749 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2750-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2751+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2752 "PO-Revision-Date: 2015-12-23 00:42+0000\n"
2753 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2754 "Language-Team: English (Australia) <en_AU@li.org>\n"
2755 "MIME-Version: 1.0\n"
2756 "Content-Type: text/plain; charset=UTF-8\n"
2757 "Content-Transfer-Encoding: 8bit\n"
2758-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2759-"X-Generator: Launchpad (build 17876)\n"
2760+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2761+"X-Generator: Launchpad (build 17925)\n"
2762
2763 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2764 msgid "Stupidly simple."
2765@@ -100,7 +100,7 @@
2766 msgid "Icon Zoom:"
2767 msgstr ""
2768
2769-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2770+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2771 msgid "Appearance"
2772 msgstr ""
2773
2774@@ -172,15 +172,15 @@
2775 msgid "Show Item for Dock:"
2776 msgstr ""
2777
2778-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2779+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2780 msgid "Behaviour"
2781 msgstr ""
2782
2783-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2784+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2785 msgid "Docklets"
2786 msgstr ""
2787
2788-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2789+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2790 msgid "Drop to add to dock"
2791 msgstr "Drop to add to dock"
2792
2793@@ -233,6 +233,6 @@
2794 msgid "_Translate This Application..."
2795 msgstr "_Translate This Application..."
2796
2797-#: ../lib/Widgets/PreferencesWindow.vala:65
2798+#: ../lib/Widgets/PreferencesWindow.vala:72
2799 msgid "Preferences"
2800 msgstr "Preferences"
2801
2802=== modified file 'po/en_CA.po'
2803--- po/en_CA.po 2016-01-05 09:09:38 +0000
2804+++ po/en_CA.po 2016-02-16 14:34:53 +0000
2805@@ -7,15 +7,15 @@
2806 msgstr ""
2807 "Project-Id-Version: plank\n"
2808 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2809-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2810+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2811 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
2812 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2813 "Language-Team: English (Canada) <en_CA@li.org>\n"
2814 "MIME-Version: 1.0\n"
2815 "Content-Type: text/plain; charset=UTF-8\n"
2816 "Content-Transfer-Encoding: 8bit\n"
2817-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2818-"X-Generator: Launchpad (build 17876)\n"
2819+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2820+"X-Generator: Launchpad (build 17925)\n"
2821
2822 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2823 msgid "Stupidly simple."
2824@@ -100,7 +100,7 @@
2825 msgid "Icon Zoom:"
2826 msgstr ""
2827
2828-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2829+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2830 msgid "Appearance"
2831 msgstr ""
2832
2833@@ -172,15 +172,15 @@
2834 msgid "Show Item for Dock:"
2835 msgstr ""
2836
2837-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2838+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2839 msgid "Behaviour"
2840 msgstr ""
2841
2842-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2843+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2844 msgid "Docklets"
2845 msgstr ""
2846
2847-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2848+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2849 msgid "Drop to add to dock"
2850 msgstr ""
2851
2852@@ -233,6 +233,6 @@
2853 msgid "_Translate This Application..."
2854 msgstr "_Translate This Application..."
2855
2856-#: ../lib/Widgets/PreferencesWindow.vala:65
2857+#: ../lib/Widgets/PreferencesWindow.vala:72
2858 msgid "Preferences"
2859 msgstr ""
2860
2861=== modified file 'po/en_GB.po'
2862--- po/en_GB.po 2016-01-30 12:44:39 +0000
2863+++ po/en_GB.po 2016-02-16 14:34:53 +0000
2864@@ -7,15 +7,15 @@
2865 msgstr ""
2866 "Project-Id-Version: plank\n"
2867 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2868-"POT-Creation-Date: 2016-01-26 14:33+0000\n"
2869+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2870 "PO-Revision-Date: 2016-01-12 10:38+0000\n"
2871 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2872 "Language-Team: English (United Kingdom) <en_GB@li.org>\n"
2873 "MIME-Version: 1.0\n"
2874 "Content-Type: text/plain; charset=UTF-8\n"
2875 "Content-Transfer-Encoding: 8bit\n"
2876-"X-Launchpad-Export-Date: 2016-01-27 05:18+0000\n"
2877-"X-Generator: Launchpad (build 17902)\n"
2878+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2879+"X-Generator: Launchpad (build 17925)\n"
2880
2881 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2882 msgid "Stupidly simple."
2883@@ -197,7 +197,7 @@
2884 "Launchpad Contributions:\n"
2885 " Alfredo Hernández https://launchpad.net/~aldomann\n"
2886 " Anthony Harrington https://launchpad.net/~untaintableangel\n"
2887-" ChrisofBristol https://launchpad.net/~chrisofbristol\n"
2888+" Deleted https://launchpad.net/~old.name\n"
2889 " Dinçer Kavraal https://launchpad.net/~dkavraal\n"
2890 " James Tait https://launchpad.net/~jamestait\n"
2891 " Rico Tzschichholz https://launchpad.net/~ricotz"
2892
2893=== modified file 'po/eo.po'
2894--- po/eo.po 2016-01-05 09:09:38 +0000
2895+++ po/eo.po 2016-02-16 14:34:53 +0000
2896@@ -7,15 +7,15 @@
2897 msgstr ""
2898 "Project-Id-Version: plank\n"
2899 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2900-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2901+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2902 "PO-Revision-Date: 2015-12-23 00:39+0000\n"
2903 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2904 "Language-Team: Esperanto <eo@li.org>\n"
2905 "MIME-Version: 1.0\n"
2906 "Content-Type: text/plain; charset=UTF-8\n"
2907 "Content-Transfer-Encoding: 8bit\n"
2908-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2909-"X-Generator: Launchpad (build 17876)\n"
2910+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2911+"X-Generator: Launchpad (build 17925)\n"
2912
2913 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2914 msgid "Stupidly simple."
2915@@ -100,7 +100,7 @@
2916 msgid "Icon Zoom:"
2917 msgstr ""
2918
2919-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2920+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2921 msgid "Appearance"
2922 msgstr "Aspekto"
2923
2924@@ -172,15 +172,15 @@
2925 msgid "Show Item for Dock:"
2926 msgstr ""
2927
2928-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2929+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2930 msgid "Behaviour"
2931 msgstr ""
2932
2933-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2934+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2935 msgid "Docklets"
2936 msgstr ""
2937
2938-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2939+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2940 msgid "Drop to add to dock"
2941 msgstr ""
2942
2943@@ -236,6 +236,6 @@
2944 msgid "_Translate This Application..."
2945 msgstr "_Traduki ĉi tiun aplikaĵon..."
2946
2947-#: ../lib/Widgets/PreferencesWindow.vala:65
2948+#: ../lib/Widgets/PreferencesWindow.vala:72
2949 msgid "Preferences"
2950 msgstr "Agordoj"
2951
2952=== modified file 'po/es.po'
2953--- po/es.po 2016-01-05 09:09:38 +0000
2954+++ po/es.po 2016-02-16 14:34:53 +0000
2955@@ -7,15 +7,15 @@
2956 msgstr ""
2957 "Project-Id-Version: plank\n"
2958 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2959-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
2960+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
2961 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
2962 "Last-Translator: Rico Tzschichholz <Unknown>\n"
2963 "Language-Team: Spanish <es@li.org>\n"
2964 "MIME-Version: 1.0\n"
2965 "Content-Type: text/plain; charset=UTF-8\n"
2966 "Content-Transfer-Encoding: 8bit\n"
2967-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
2968-"X-Generator: Launchpad (build 17876)\n"
2969+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
2970+"X-Generator: Launchpad (build 17925)\n"
2971
2972 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
2973 msgid "Stupidly simple."
2974@@ -107,7 +107,7 @@
2975 msgid "Icon Zoom:"
2976 msgstr "Escala de iconos:"
2977
2978-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
2979+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
2980 msgid "Appearance"
2981 msgstr "Apariencia"
2982
2983@@ -179,15 +179,15 @@
2984 msgid "Show Item for Dock:"
2985 msgstr "Mostrar elemento del dock:"
2986
2987-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
2988+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
2989 msgid "Behaviour"
2990 msgstr "Comportamiento"
2991
2992-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
2993+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
2994 msgid "Docklets"
2995 msgstr "Agregados"
2996
2997-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
2998+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
2999 msgid "Drop to add to dock"
3000 msgstr "Soltar para añadir al dock"
3001
3002@@ -259,6 +259,6 @@
3003 msgid "_Translate This Application..."
3004 msgstr "_Traducir esta aplicación…"
3005
3006-#: ../lib/Widgets/PreferencesWindow.vala:65
3007+#: ../lib/Widgets/PreferencesWindow.vala:72
3008 msgid "Preferences"
3009 msgstr "Preferencias"
3010
3011=== modified file 'po/et.po'
3012--- po/et.po 2016-01-05 09:09:38 +0000
3013+++ po/et.po 2016-02-16 14:34:53 +0000
3014@@ -7,15 +7,15 @@
3015 msgstr ""
3016 "Project-Id-Version: plank\n"
3017 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3018-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3019+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3020 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
3021 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3022 "Language-Team: Estonian <et@li.org>\n"
3023 "MIME-Version: 1.0\n"
3024 "Content-Type: text/plain; charset=UTF-8\n"
3025 "Content-Transfer-Encoding: 8bit\n"
3026-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3027-"X-Generator: Launchpad (build 17876)\n"
3028+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3029+"X-Generator: Launchpad (build 17925)\n"
3030
3031 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3032 msgid "Stupidly simple."
3033@@ -106,7 +106,7 @@
3034 msgid "Icon Zoom:"
3035 msgstr "Ikoonide suurendamine:"
3036
3037-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3038+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3039 msgid "Appearance"
3040 msgstr "Välimus"
3041
3042@@ -178,15 +178,15 @@
3043 msgid "Show Item for Dock:"
3044 msgstr "Doki ikooni näitamine:"
3045
3046-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3047+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3048 msgid "Behaviour"
3049 msgstr "Käitumine"
3050
3051-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3052+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3053 msgid "Docklets"
3054 msgstr "Lisad"
3055
3056-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3057+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3058 msgid "Drop to add to dock"
3059 msgstr "Lohista lisamiseks dokile"
3060
3061@@ -241,6 +241,6 @@
3062 msgid "_Translate This Application..."
3063 msgstr "_Aita tõlkida..."
3064
3065-#: ../lib/Widgets/PreferencesWindow.vala:65
3066+#: ../lib/Widgets/PreferencesWindow.vala:72
3067 msgid "Preferences"
3068 msgstr "Eelistused"
3069
3070=== modified file 'po/eu.po'
3071--- po/eu.po 2016-01-05 09:09:38 +0000
3072+++ po/eu.po 2016-02-16 14:34:53 +0000
3073@@ -7,15 +7,15 @@
3074 msgstr ""
3075 "Project-Id-Version: plank\n"
3076 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3077-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3078-"PO-Revision-Date: 2016-01-04 14:54+0000\n"
3079+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3080+"PO-Revision-Date: 2016-01-05 18:02+0000\n"
3081 "Last-Translator: Félix Brezo <felixbrezo@gmail.com>\n"
3082 "Language-Team: Basque <eu@li.org>\n"
3083 "MIME-Version: 1.0\n"
3084 "Content-Type: text/plain; charset=UTF-8\n"
3085 "Content-Transfer-Encoding: 8bit\n"
3086-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3087-"X-Generator: Launchpad (build 17876)\n"
3088+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3089+"X-Generator: Launchpad (build 17925)\n"
3090
3091 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3092 msgid "Stupidly simple."
3093@@ -102,7 +102,7 @@
3094 msgid "Icon Zoom:"
3095 msgstr "Ikonoen zooma:"
3096
3097-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3098+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3099 msgid "Appearance"
3100 msgstr "Itxura"
3101
3102@@ -174,15 +174,15 @@
3103 msgid "Show Item for Dock:"
3104 msgstr ""
3105
3106-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3107+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3108 msgid "Behaviour"
3109 msgstr ""
3110
3111-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3112+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3113 msgid "Docklets"
3114 msgstr ""
3115
3116-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3117+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3118 msgid "Drop to add to dock"
3119 msgstr "Jaregin atrakera itsasteko"
3120
3121@@ -237,6 +237,6 @@
3122 msgid "_Translate This Application..."
3123 msgstr "It_zuli aplikazio hau..."
3124
3125-#: ../lib/Widgets/PreferencesWindow.vala:65
3126+#: ../lib/Widgets/PreferencesWindow.vala:72
3127 msgid "Preferences"
3128 msgstr "Hobespenak"
3129
3130=== modified file 'po/fi.po'
3131--- po/fi.po 2016-01-05 09:09:38 +0000
3132+++ po/fi.po 2016-02-16 14:34:53 +0000
3133@@ -7,15 +7,15 @@
3134 msgstr ""
3135 "Project-Id-Version: plank\n"
3136 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3137-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3138+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3139 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3140 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3141 "Language-Team: Finnish <fi@li.org>\n"
3142 "MIME-Version: 1.0\n"
3143 "Content-Type: text/plain; charset=UTF-8\n"
3144 "Content-Transfer-Encoding: 8bit\n"
3145-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3146-"X-Generator: Launchpad (build 17876)\n"
3147+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3148+"X-Generator: Launchpad (build 17925)\n"
3149
3150 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3151 msgid "Stupidly simple."
3152@@ -106,7 +106,7 @@
3153 msgid "Icon Zoom:"
3154 msgstr "Kuvakesuurennus:"
3155
3156-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3157+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3158 msgid "Appearance"
3159 msgstr "Ulkoasu"
3160
3161@@ -178,15 +178,15 @@
3162 msgid "Show Item for Dock:"
3163 msgstr "Näytettävä kohde telakalle:"
3164
3165-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3166+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3167 msgid "Behaviour"
3168 msgstr "Toiminta"
3169
3170-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3171+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3172 msgid "Docklets"
3173 msgstr "Telakkasovelmat"
3174
3175-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3176+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3177 msgid "Drop to add to dock"
3178 msgstr "Tiputa lisätäksesi telakkaan"
3179
3180@@ -239,6 +239,6 @@
3181 msgid "_Translate This Application..."
3182 msgstr "Kää_nnä tämä ohjelma..."
3183
3184-#: ../lib/Widgets/PreferencesWindow.vala:65
3185+#: ../lib/Widgets/PreferencesWindow.vala:72
3186 msgid "Preferences"
3187 msgstr "Asetukset"
3188
3189=== modified file 'po/fr.po'
3190--- po/fr.po 2016-01-05 09:09:38 +0000
3191+++ po/fr.po 2016-02-16 14:34:53 +0000
3192@@ -7,15 +7,15 @@
3193 msgstr ""
3194 "Project-Id-Version: plank\n"
3195 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3196-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3197-"PO-Revision-Date: 2015-12-23 15:40+0000\n"
3198-"Last-Translator: Rico Tzschichholz <Unknown>\n"
3199+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3200+"PO-Revision-Date: 2016-02-13 15:33+0000\n"
3201+"Last-Translator: Charles Monzat <superboa@hotmail.fr>\n"
3202 "Language-Team: French <fr@li.org>\n"
3203 "MIME-Version: 1.0\n"
3204 "Content-Type: text/plain; charset=UTF-8\n"
3205 "Content-Transfer-Encoding: 8bit\n"
3206-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3207-"X-Generator: Launchpad (build 17876)\n"
3208+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3209+"X-Generator: Launchpad (build 17925)\n"
3210
3211 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3212 msgid "Stupidly simple."
3213@@ -108,7 +108,7 @@
3214 msgid "Icon Zoom:"
3215 msgstr "Zoom sur icône :"
3216
3217-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3218+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3219 msgid "Appearance"
3220 msgstr "Apparence"
3221
3222@@ -180,17 +180,17 @@
3223 msgid "Show Item for Dock:"
3224 msgstr "Afficher l'icône du dock :"
3225
3226-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3227+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3228 msgid "Behaviour"
3229 msgstr "Comportement"
3230
3231-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3232+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3233 msgid "Docklets"
3234 msgstr "Docklets"
3235
3236-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3237+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3238 msgid "Drop to add to dock"
3239-msgstr "Relâchez pour ajouter au dock"
3240+msgstr "Relâcher pour ajouter au dock"
3241
3242 #: ../lib/Factories/AbstractMain.vala:388 ../src/Main.vala:75
3243 msgid "translator-credits"
3244@@ -236,7 +236,7 @@
3245
3246 #: ../lib/Items/FileDockItem.vala:336
3247 msgid "_Open in File Browser"
3248-msgstr "_Ouvrir dans le Gestionnaire de Fichiers"
3249+msgstr "_Ouvrir dans le Gestionnaire de fichiers"
3250
3251 #: ../lib/Items/FileDockItem.vala:358
3252 msgid "_Open"
3253@@ -244,11 +244,11 @@
3254
3255 #: ../lib/Items/FileDockItem.vala:362
3256 msgid "Open Containing _Folder"
3257-msgstr "Ouvrir le _dossier contenant"
3258+msgstr "Ouvrir le _dossier parent"
3259
3260 #: ../lib/Items/PlaceholderDockItem.vala:37
3261 msgid "Drop applications or files here"
3262-msgstr "Déposez ici des applications ou des fichiers"
3263+msgstr "Déposer ici des applications ou des fichiers"
3264
3265 #: ../lib/Items/PlankDockItem.vala:73
3266 msgid "Get _Help Online..."
3267@@ -258,6 +258,6 @@
3268 msgid "_Translate This Application..."
3269 msgstr "_Traduire cette application..."
3270
3271-#: ../lib/Widgets/PreferencesWindow.vala:65
3272+#: ../lib/Widgets/PreferencesWindow.vala:72
3273 msgid "Preferences"
3274 msgstr "Préférences"
3275
3276=== modified file 'po/gd.po'
3277--- po/gd.po 2016-01-05 09:09:38 +0000
3278+++ po/gd.po 2016-02-16 14:34:53 +0000
3279@@ -7,15 +7,15 @@
3280 msgstr ""
3281 "Project-Id-Version: plank\n"
3282 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3283-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3284+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3285 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
3286 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3287 "Language-Team: Fòram na Gàidhlig\n"
3288 "MIME-Version: 1.0\n"
3289 "Content-Type: text/plain; charset=UTF-8\n"
3290 "Content-Transfer-Encoding: 8bit\n"
3291-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3292-"X-Generator: Launchpad (build 17876)\n"
3293+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3294+"X-Generator: Launchpad (build 17925)\n"
3295 "Language: gd\n"
3296
3297 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3298@@ -110,7 +110,7 @@
3299 msgid "Icon Zoom:"
3300 msgstr ""
3301
3302-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3303+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3304 msgid "Appearance"
3305 msgstr "Coltas"
3306
3307@@ -182,15 +182,15 @@
3308 msgid "Show Item for Dock:"
3309 msgstr "Seall nì airson an doca:"
3310
3311-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3312+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3313 msgid "Behaviour"
3314 msgstr "Giùlan"
3315
3316-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3317+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3318 msgid "Docklets"
3319 msgstr ""
3320
3321-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3322+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3323 msgid "Drop to add to dock"
3324 msgstr ""
3325
3326@@ -243,6 +243,6 @@
3327 msgid "_Translate This Application..."
3328 msgstr "Eadar-_theangaich an aplacaid seo..."
3329
3330-#: ../lib/Widgets/PreferencesWindow.vala:65
3331+#: ../lib/Widgets/PreferencesWindow.vala:72
3332 msgid "Preferences"
3333 msgstr "Roghainnean"
3334
3335=== modified file 'po/gl.po'
3336--- po/gl.po 2016-01-05 09:09:38 +0000
3337+++ po/gl.po 2016-02-16 14:34:53 +0000
3338@@ -7,15 +7,15 @@
3339 msgstr ""
3340 "Project-Id-Version: plank\n"
3341 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3342-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3343+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3344 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
3345 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3346 "Language-Team: Galician <gl@li.org>\n"
3347 "MIME-Version: 1.0\n"
3348 "Content-Type: text/plain; charset=UTF-8\n"
3349 "Content-Transfer-Encoding: 8bit\n"
3350-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3351-"X-Generator: Launchpad (build 17876)\n"
3352+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3353+"X-Generator: Launchpad (build 17925)\n"
3354
3355 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3356 msgid "Stupidly simple."
3357@@ -108,7 +108,7 @@
3358 msgid "Icon Zoom:"
3359 msgstr "Ampliación das iconas:"
3360
3361-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3362+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3363 msgid "Appearance"
3364 msgstr "Aparencia"
3365
3366@@ -180,15 +180,15 @@
3367 msgid "Show Item for Dock:"
3368 msgstr "Mostar elemento de doca:"
3369
3370-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3371+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3372 msgid "Behaviour"
3373 msgstr "Comportamento"
3374
3375-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3376+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3377 msgid "Docklets"
3378 msgstr "Engadidos de doca"
3379
3380-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3381+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3382 msgid "Drop to add to dock"
3383 msgstr "Soltar para engadir á doca"
3384
3385@@ -244,6 +244,6 @@
3386 msgid "_Translate This Application..."
3387 msgstr "_Traducir este aplicativo..."
3388
3389-#: ../lib/Widgets/PreferencesWindow.vala:65
3390+#: ../lib/Widgets/PreferencesWindow.vala:72
3391 msgid "Preferences"
3392 msgstr "Preferencias"
3393
3394=== modified file 'po/he.po'
3395--- po/he.po 2016-01-05 09:09:38 +0000
3396+++ po/he.po 2016-02-16 14:34:53 +0000
3397@@ -7,15 +7,15 @@
3398 msgstr ""
3399 "Project-Id-Version: plank\n"
3400 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3401-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3402+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3403 "PO-Revision-Date: 2015-12-23 16:04+0000\n"
3404 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3405 "Language-Team: Hebrew <he@li.org>\n"
3406 "MIME-Version: 1.0\n"
3407 "Content-Type: text/plain; charset=UTF-8\n"
3408 "Content-Transfer-Encoding: 8bit\n"
3409-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3410-"X-Generator: Launchpad (build 17876)\n"
3411+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3412+"X-Generator: Launchpad (build 17925)\n"
3413
3414 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3415 msgid "Stupidly simple."
3416@@ -106,7 +106,7 @@
3417 msgid "Icon Zoom:"
3418 msgstr "הגדלת אייקונים"
3419
3420-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3421+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3422 msgid "Appearance"
3423 msgstr "מראה"
3424
3425@@ -178,15 +178,15 @@
3426 msgid "Show Item for Dock:"
3427 msgstr "הראה אייקון עבור הסרגל:"
3428
3429-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3430+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3431 msgid "Behaviour"
3432 msgstr "התנהגות"
3433
3434-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3435+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3436 msgid "Docklets"
3437 msgstr "גאדג'טים"
3438
3439-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3440+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3441 msgid "Drop to add to dock"
3442 msgstr "שחרר בכדי להוסיף לסרגל הדוק"
3443
3444@@ -243,6 +243,6 @@
3445 msgid "_Translate This Application..."
3446 msgstr "_תרגום יישום זה..."
3447
3448-#: ../lib/Widgets/PreferencesWindow.vala:65
3449+#: ../lib/Widgets/PreferencesWindow.vala:72
3450 msgid "Preferences"
3451 msgstr "העדפות"
3452
3453=== modified file 'po/hr.po'
3454--- po/hr.po 2016-01-05 09:09:38 +0000
3455+++ po/hr.po 2016-02-16 14:34:53 +0000
3456@@ -7,15 +7,15 @@
3457 msgstr ""
3458 "Project-Id-Version: plank\n"
3459 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3460-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3461-"PO-Revision-Date: 2015-12-23 00:40+0000\n"
3462-"Last-Translator: Rico Tzschichholz <Unknown>\n"
3463+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3464+"PO-Revision-Date: 2016-02-09 17:42+0000\n"
3465+"Last-Translator: gogo <trebelnik2@gmail.com>\n"
3466 "Language-Team: Croatian <hr@li.org>\n"
3467 "MIME-Version: 1.0\n"
3468 "Content-Type: text/plain; charset=UTF-8\n"
3469 "Content-Transfer-Encoding: 8bit\n"
3470-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3471-"X-Generator: Launchpad (build 17876)\n"
3472+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3473+"X-Generator: Launchpad (build 17925)\n"
3474
3475 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3476 msgid "Stupidly simple."
3477@@ -100,7 +100,7 @@
3478 msgid "Icon Zoom:"
3479 msgstr ""
3480
3481-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3482+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3483 msgid "Appearance"
3484 msgstr "Izgled"
3485
3486@@ -172,15 +172,15 @@
3487 msgid "Show Item for Dock:"
3488 msgstr ""
3489
3490-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3491+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3492 msgid "Behaviour"
3493 msgstr ""
3494
3495-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3496+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3497 msgid "Docklets"
3498 msgstr ""
3499
3500-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3501+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3502 msgid "Drop to add to dock"
3503 msgstr "Ispustite da biste dodali na dok"
3504
3505@@ -221,7 +221,7 @@
3506
3507 #: ../lib/Items/FileDockItem.vala:362
3508 msgid "Open Containing _Folder"
3509-msgstr "Otvori Sadržajnu _mapu"
3510+msgstr "Otvori sadržajnu _mapu"
3511
3512 #: ../lib/Items/PlaceholderDockItem.vala:37
3513 msgid "Drop applications or files here"
3514@@ -235,6 +235,6 @@
3515 msgid "_Translate This Application..."
3516 msgstr "_Prevedi ovu aplikaciju..."
3517
3518-#: ../lib/Widgets/PreferencesWindow.vala:65
3519+#: ../lib/Widgets/PreferencesWindow.vala:72
3520 msgid "Preferences"
3521 msgstr "Postavke"
3522
3523=== modified file 'po/hu.po'
3524--- po/hu.po 2016-01-05 09:09:38 +0000
3525+++ po/hu.po 2016-02-16 14:34:53 +0000
3526@@ -7,15 +7,15 @@
3527 msgstr ""
3528 "Project-Id-Version: plank\n"
3529 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3530-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3531+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3532 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3533 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3534 "Language-Team: Hungarian <hu@li.org>\n"
3535 "MIME-Version: 1.0\n"
3536 "Content-Type: text/plain; charset=UTF-8\n"
3537 "Content-Transfer-Encoding: 8bit\n"
3538-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3539-"X-Generator: Launchpad (build 17876)\n"
3540+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3541+"X-Generator: Launchpad (build 17925)\n"
3542
3543 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3544 msgid "Stupidly simple."
3545@@ -108,7 +108,7 @@
3546 msgid "Icon Zoom:"
3547 msgstr "Ikon nagyítása:"
3548
3549-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3550+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3551 msgid "Appearance"
3552 msgstr "Megjelenés"
3553
3554@@ -181,15 +181,15 @@
3555 msgid "Show Item for Dock:"
3556 msgstr "Dokk ikon megjelenítése:"
3557
3558-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3559+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3560 msgid "Behaviour"
3561 msgstr "Viselkedés"
3562
3563-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3564+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3565 msgid "Docklets"
3566 msgstr "Dockletek"
3567
3568-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3569+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3570 msgid "Drop to add to dock"
3571 msgstr "Ragadja meg a dokkon való elhelyezéshez"
3572
3573@@ -245,6 +245,6 @@
3574 msgid "_Translate This Application..."
3575 msgstr "Ezen alkalmazás _fordítása..."
3576
3577-#: ../lib/Widgets/PreferencesWindow.vala:65
3578+#: ../lib/Widgets/PreferencesWindow.vala:72
3579 msgid "Preferences"
3580 msgstr "Beállítások"
3581
3582=== modified file 'po/id.po'
3583--- po/id.po 2016-01-05 09:09:38 +0000
3584+++ po/id.po 2016-02-16 14:34:53 +0000
3585@@ -7,15 +7,15 @@
3586 msgstr ""
3587 "Project-Id-Version: plank\n"
3588 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3589-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3590+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3591 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3592 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3593 "Language-Team: Indonesian <id@li.org>\n"
3594 "MIME-Version: 1.0\n"
3595 "Content-Type: text/plain; charset=UTF-8\n"
3596 "Content-Transfer-Encoding: 8bit\n"
3597-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3598-"X-Generator: Launchpad (build 17876)\n"
3599+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3600+"X-Generator: Launchpad (build 17925)\n"
3601
3602 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3603 msgid "Stupidly simple."
3604@@ -107,7 +107,7 @@
3605 msgid "Icon Zoom:"
3606 msgstr ""
3607
3608-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3609+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3610 msgid "Appearance"
3611 msgstr "Tampilan"
3612
3613@@ -179,15 +179,15 @@
3614 msgid "Show Item for Dock:"
3615 msgstr ""
3616
3617-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3618+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3619 msgid "Behaviour"
3620 msgstr ""
3621
3622-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3623+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3624 msgid "Docklets"
3625 msgstr ""
3626
3627-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3628+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3629 msgid "Drop to add to dock"
3630 msgstr "Jatuhkan untuk menambah dok"
3631
3632@@ -245,6 +245,6 @@
3633 msgid "_Translate This Application..."
3634 msgstr "_Terjemahkan Aplikasi ini..."
3635
3636-#: ../lib/Widgets/PreferencesWindow.vala:65
3637+#: ../lib/Widgets/PreferencesWindow.vala:72
3638 msgid "Preferences"
3639 msgstr "Preferensi"
3640
3641=== modified file 'po/it.po'
3642--- po/it.po 2016-01-05 09:09:38 +0000
3643+++ po/it.po 2016-02-16 14:34:53 +0000
3644@@ -7,15 +7,15 @@
3645 msgstr ""
3646 "Project-Id-Version: plank\n"
3647 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3648-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3649+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3650 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3651 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3652 "Language-Team: Italian <it@li.org>\n"
3653 "MIME-Version: 1.0\n"
3654 "Content-Type: text/plain; charset=UTF-8\n"
3655 "Content-Transfer-Encoding: 8bit\n"
3656-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3657-"X-Generator: Launchpad (build 17876)\n"
3658+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3659+"X-Generator: Launchpad (build 17925)\n"
3660
3661 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3662 msgid "Stupidly simple."
3663@@ -108,7 +108,7 @@
3664 msgid "Icon Zoom:"
3665 msgstr "Ingrandimento icone:"
3666
3667-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3668+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3669 msgid "Appearance"
3670 msgstr "Aspetto"
3671
3672@@ -180,15 +180,15 @@
3673 msgid "Show Item for Dock:"
3674 msgstr "Mostra elemento per la Dock:"
3675
3676-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3677+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3678 msgid "Behaviour"
3679 msgstr "Comportamento"
3680
3681-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3682+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3683 msgid "Docklets"
3684 msgstr "Docklets"
3685
3686-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3687+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3688 msgid "Drop to add to dock"
3689 msgstr "Rilascia per aggiungere alla dock"
3690
3691@@ -253,6 +253,6 @@
3692 msgid "_Translate This Application..."
3693 msgstr "_Traduci questa applicazione"
3694
3695-#: ../lib/Widgets/PreferencesWindow.vala:65
3696+#: ../lib/Widgets/PreferencesWindow.vala:72
3697 msgid "Preferences"
3698 msgstr "Preferenze"
3699
3700=== modified file 'po/ja.po'
3701--- po/ja.po 2016-01-05 09:09:38 +0000
3702+++ po/ja.po 2016-02-16 14:34:53 +0000
3703@@ -7,15 +7,15 @@
3704 msgstr ""
3705 "Project-Id-Version: plank\n"
3706 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3707-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3708+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3709 "PO-Revision-Date: 2015-12-23 16:13+0000\n"
3710 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3711 "Language-Team: Japanese <ja@li.org>\n"
3712 "MIME-Version: 1.0\n"
3713 "Content-Type: text/plain; charset=UTF-8\n"
3714 "Content-Transfer-Encoding: 8bit\n"
3715-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3716-"X-Generator: Launchpad (build 17876)\n"
3717+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3718+"X-Generator: Launchpad (build 17925)\n"
3719
3720 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3721 msgid "Stupidly simple."
3722@@ -100,7 +100,7 @@
3723 msgid "Icon Zoom:"
3724 msgstr ""
3725
3726-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3727+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3728 msgid "Appearance"
3729 msgstr "外観"
3730
3731@@ -172,15 +172,15 @@
3732 msgid "Show Item for Dock:"
3733 msgstr "ドックにアイテムを表示"
3734
3735-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3736+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3737 msgid "Behaviour"
3738 msgstr ""
3739
3740-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3741+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3742 msgid "Docklets"
3743 msgstr ""
3744
3745-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3746+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3747 msgid "Drop to add to dock"
3748 msgstr "ドロップしてドックに追加"
3749
3750@@ -236,6 +236,6 @@
3751 msgid "_Translate This Application..."
3752 msgstr ""
3753
3754-#: ../lib/Widgets/PreferencesWindow.vala:65
3755+#: ../lib/Widgets/PreferencesWindow.vala:72
3756 msgid "Preferences"
3757 msgstr "設定"
3758
3759=== modified file 'po/ka.po'
3760--- po/ka.po 2016-01-05 09:09:38 +0000
3761+++ po/ka.po 2016-02-16 14:34:53 +0000
3762@@ -7,15 +7,15 @@
3763 msgstr ""
3764 "Project-Id-Version: plank\n"
3765 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3766-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3767+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3768 "PO-Revision-Date: 2015-12-23 15:53+0000\n"
3769 "Last-Translator: guja <guja1995@gmail.com>\n"
3770 "Language-Team: Georgian <ka@li.org>\n"
3771 "MIME-Version: 1.0\n"
3772 "Content-Type: text/plain; charset=UTF-8\n"
3773 "Content-Transfer-Encoding: 8bit\n"
3774-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3775-"X-Generator: Launchpad (build 17876)\n"
3776+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3777+"X-Generator: Launchpad (build 17925)\n"
3778
3779 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3780 msgid "Stupidly simple."
3781@@ -102,7 +102,7 @@
3782 msgid "Icon Zoom:"
3783 msgstr "ხატულის გაზრდა:"
3784
3785-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3786+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3787 msgid "Appearance"
3788 msgstr "ინტერფეისი"
3789
3790@@ -174,15 +174,15 @@
3791 msgid "Show Item for Dock:"
3792 msgstr ""
3793
3794-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3795+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3796 msgid "Behaviour"
3797 msgstr ""
3798
3799-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3800+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3801 msgid "Docklets"
3802 msgstr ""
3803
3804-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3805+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3806 msgid "Drop to add to dock"
3807 msgstr ""
3808
3809@@ -235,6 +235,6 @@
3810 msgid "_Translate This Application..."
3811 msgstr ""
3812
3813-#: ../lib/Widgets/PreferencesWindow.vala:65
3814+#: ../lib/Widgets/PreferencesWindow.vala:72
3815 msgid "Preferences"
3816 msgstr "პარამეტრები"
3817
3818=== modified file 'po/ko.po'
3819--- po/ko.po 2016-01-30 12:44:39 +0000
3820+++ po/ko.po 2016-02-16 14:34:53 +0000
3821@@ -7,15 +7,15 @@
3822 msgstr ""
3823 "Project-Id-Version: plank\n"
3824 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3825-"POT-Creation-Date: 2016-01-26 14:33+0000\n"
3826+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3827 "PO-Revision-Date: 2016-01-25 14:40+0000\n"
3828 "Last-Translator: Jung-Kyu Park <bagjunggyu@gmail.com>\n"
3829 "Language-Team: Korean <ko@li.org>\n"
3830 "MIME-Version: 1.0\n"
3831 "Content-Type: text/plain; charset=UTF-8\n"
3832 "Content-Transfer-Encoding: 8bit\n"
3833-"X-Launchpad-Export-Date: 2016-01-27 05:18+0000\n"
3834-"X-Generator: Launchpad (build 17902)\n"
3835+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3836+"X-Generator: Launchpad (build 17925)\n"
3837
3838 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3839 msgid "Stupidly simple."
3840
3841=== modified file 'po/lt.po'
3842--- po/lt.po 2016-01-05 09:09:38 +0000
3843+++ po/lt.po 2016-02-16 14:34:53 +0000
3844@@ -7,15 +7,15 @@
3845 msgstr ""
3846 "Project-Id-Version: plank\n"
3847 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3848-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3849-"PO-Revision-Date: 2015-12-23 00:42+0000\n"
3850+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3851+"PO-Revision-Date: 2016-01-05 18:03+0000\n"
3852 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3853 "Language-Team: Lithuanian <lt@li.org>\n"
3854 "MIME-Version: 1.0\n"
3855 "Content-Type: text/plain; charset=UTF-8\n"
3856 "Content-Transfer-Encoding: 8bit\n"
3857-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3858-"X-Generator: Launchpad (build 17876)\n"
3859+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3860+"X-Generator: Launchpad (build 17925)\n"
3861
3862 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3863 msgid "Stupidly simple."
3864@@ -100,7 +100,7 @@
3865 msgid "Icon Zoom:"
3866 msgstr ""
3867
3868-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3869+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3870 msgid "Appearance"
3871 msgstr ""
3872
3873@@ -172,15 +172,15 @@
3874 msgid "Show Item for Dock:"
3875 msgstr ""
3876
3877-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3878+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3879 msgid "Behaviour"
3880 msgstr ""
3881
3882-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3883+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3884 msgid "Docklets"
3885 msgstr ""
3886
3887-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3888+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3889 msgid "Drop to add to dock"
3890 msgstr "Paleiskie, kad įdėti į skydelį"
3891
3892@@ -234,6 +234,6 @@
3893 msgid "_Translate This Application..."
3894 msgstr "_Versti šią programą..."
3895
3896-#: ../lib/Widgets/PreferencesWindow.vala:65
3897+#: ../lib/Widgets/PreferencesWindow.vala:72
3898 msgid "Preferences"
3899 msgstr "Nustatymai"
3900
3901=== modified file 'po/lv.po'
3902--- po/lv.po 2016-01-05 09:09:38 +0000
3903+++ po/lv.po 2016-02-16 14:34:53 +0000
3904@@ -7,15 +7,15 @@
3905 msgstr ""
3906 "Project-Id-Version: plank\n"
3907 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3908-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3909+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3910 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3911 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3912 "Language-Team: Latvian <lv@li.org>\n"
3913 "MIME-Version: 1.0\n"
3914 "Content-Type: text/plain; charset=UTF-8\n"
3915 "Content-Transfer-Encoding: 8bit\n"
3916-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3917-"X-Generator: Launchpad (build 17876)\n"
3918+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3919+"X-Generator: Launchpad (build 17925)\n"
3920
3921 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3922 msgid "Stupidly simple."
3923@@ -100,7 +100,7 @@
3924 msgid "Icon Zoom:"
3925 msgstr ""
3926
3927-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3928+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3929 msgid "Appearance"
3930 msgstr ""
3931
3932@@ -172,15 +172,15 @@
3933 msgid "Show Item for Dock:"
3934 msgstr ""
3935
3936-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3937+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3938 msgid "Behaviour"
3939 msgstr ""
3940
3941-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
3942+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
3943 msgid "Docklets"
3944 msgstr ""
3945
3946-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
3947+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
3948 msgid "Drop to add to dock"
3949 msgstr ""
3950
3951@@ -234,6 +234,6 @@
3952 msgid "_Translate This Application..."
3953 msgstr "_Tulkot šo lietotni..."
3954
3955-#: ../lib/Widgets/PreferencesWindow.vala:65
3956+#: ../lib/Widgets/PreferencesWindow.vala:72
3957 msgid "Preferences"
3958 msgstr "Iestatījumi"
3959
3960=== modified file 'po/ml.po'
3961--- po/ml.po 2016-01-05 09:09:38 +0000
3962+++ po/ml.po 2016-02-16 14:34:53 +0000
3963@@ -7,15 +7,15 @@
3964 msgstr ""
3965 "Project-Id-Version: plank\n"
3966 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3967-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
3968+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
3969 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
3970 "Last-Translator: Rico Tzschichholz <Unknown>\n"
3971 "Language-Team: Malayalam <ml@li.org>\n"
3972 "MIME-Version: 1.0\n"
3973 "Content-Type: text/plain; charset=UTF-8\n"
3974 "Content-Transfer-Encoding: 8bit\n"
3975-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
3976-"X-Generator: Launchpad (build 17876)\n"
3977+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
3978+"X-Generator: Launchpad (build 17925)\n"
3979
3980 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
3981 msgid "Stupidly simple."
3982@@ -107,7 +107,7 @@
3983 msgid "Icon Zoom:"
3984 msgstr ""
3985
3986-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
3987+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
3988 msgid "Appearance"
3989 msgstr ""
3990
3991@@ -179,15 +179,15 @@
3992 msgid "Show Item for Dock:"
3993 msgstr ""
3994
3995-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
3996+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
3997 msgid "Behaviour"
3998 msgstr ""
3999
4000-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4001+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4002 msgid "Docklets"
4003 msgstr ""
4004
4005-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4006+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4007 msgid "Drop to add to dock"
4008 msgstr ""
4009
4010@@ -242,6 +242,6 @@
4011 msgid "_Translate This Application..."
4012 msgstr "‌_ഈ പ്രയോഗം പരിഭാഷപ്പെടുത്തുക"
4013
4014-#: ../lib/Widgets/PreferencesWindow.vala:65
4015+#: ../lib/Widgets/PreferencesWindow.vala:72
4016 msgid "Preferences"
4017 msgstr ""
4018
4019=== modified file 'po/nb.po'
4020--- po/nb.po 2016-01-05 09:09:38 +0000
4021+++ po/nb.po 2016-02-16 14:34:53 +0000
4022@@ -7,15 +7,15 @@
4023 msgstr ""
4024 "Project-Id-Version: plank\n"
4025 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4026-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4027+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4028 "PO-Revision-Date: 2015-12-23 00:39+0000\n"
4029 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4030 "Language-Team: Norwegian Bokmal <nb@li.org>\n"
4031 "MIME-Version: 1.0\n"
4032 "Content-Type: text/plain; charset=UTF-8\n"
4033 "Content-Transfer-Encoding: 8bit\n"
4034-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4035-"X-Generator: Launchpad (build 17876)\n"
4036+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4037+"X-Generator: Launchpad (build 17925)\n"
4038
4039 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4040 msgid "Stupidly simple."
4041@@ -107,7 +107,7 @@
4042 msgid "Icon Zoom:"
4043 msgstr "Ikon zoom:"
4044
4045-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4046+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4047 msgid "Appearance"
4048 msgstr "Utseende"
4049
4050@@ -179,15 +179,15 @@
4051 msgid "Show Item for Dock:"
4052 msgstr "Vis element for dokken:"
4053
4054-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4055+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4056 msgid "Behaviour"
4057 msgstr "Oppførsel"
4058
4059-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4060+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4061 msgid "Docklets"
4062 msgstr "Dokkprogrammer"
4063
4064-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4065+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4066 msgid "Drop to add to dock"
4067 msgstr "Slipp for å legge til en dokk"
4068
4069@@ -245,6 +245,6 @@
4070 msgid "_Translate This Application..."
4071 msgstr "_Oversett denne applikasjonen...."
4072
4073-#: ../lib/Widgets/PreferencesWindow.vala:65
4074+#: ../lib/Widgets/PreferencesWindow.vala:72
4075 msgid "Preferences"
4076 msgstr "Innstillinger"
4077
4078=== modified file 'po/nl.po'
4079--- po/nl.po 2016-01-05 09:09:38 +0000
4080+++ po/nl.po 2016-02-16 14:34:53 +0000
4081@@ -7,15 +7,15 @@
4082 msgstr ""
4083 "Project-Id-Version: plank\n"
4084 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4085-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4086+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4087 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4088 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4089 "Language-Team: Dutch <nl@li.org>\n"
4090 "MIME-Version: 1.0\n"
4091 "Content-Type: text/plain; charset=UTF-8\n"
4092 "Content-Transfer-Encoding: 8bit\n"
4093-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4094-"X-Generator: Launchpad (build 17876)\n"
4095+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4096+"X-Generator: Launchpad (build 17925)\n"
4097
4098 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4099 msgid "Stupidly simple."
4100@@ -108,7 +108,7 @@
4101 msgid "Icon Zoom:"
4102 msgstr "Pictogram vergroten:"
4103
4104-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4105+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4106 msgid "Appearance"
4107 msgstr "Weergave"
4108
4109@@ -180,15 +180,15 @@
4110 msgid "Show Item for Dock:"
4111 msgstr "Icoon voor dock tonen:"
4112
4113-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4114+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4115 msgid "Behaviour"
4116 msgstr "Gedrag"
4117
4118-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4119+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4120 msgid "Docklets"
4121 msgstr "Docklets"
4122
4123-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4124+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4125 msgid "Drop to add to dock"
4126 msgstr "Laat de muis los om aan het dock toe te voegen"
4127
4128@@ -196,7 +196,7 @@
4129 msgid "translator-credits"
4130 msgstr ""
4131 "Launchpad Contributions:\n"
4132-" ChrisofBristol https://launchpad.net/~chrisofbristol\n"
4133+" Deleted https://launchpad.net/~old.name\n"
4134 " Levi Voorintholt https://launchpad.net/~piratelv\n"
4135 " McVries https://launchpad.net/~mcvries\n"
4136 " Mitch Dries https://launchpad.net/~mitch-dries\n"
4137@@ -250,6 +250,6 @@
4138 msgid "_Translate This Application..."
4139 msgstr "Deze toepassing ver_talen…"
4140
4141-#: ../lib/Widgets/PreferencesWindow.vala:65
4142+#: ../lib/Widgets/PreferencesWindow.vala:72
4143 msgid "Preferences"
4144 msgstr "Voorkeuren"
4145
4146=== modified file 'po/nn.po'
4147--- po/nn.po 2016-01-05 09:09:38 +0000
4148+++ po/nn.po 2016-02-16 14:34:53 +0000
4149@@ -7,15 +7,15 @@
4150 msgstr ""
4151 "Project-Id-Version: plank\n"
4152 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4153-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4154+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4155 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4156 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4157 "Language-Team: Norwegian Nynorsk <nn@li.org>\n"
4158 "MIME-Version: 1.0\n"
4159 "Content-Type: text/plain; charset=UTF-8\n"
4160 "Content-Transfer-Encoding: 8bit\n"
4161-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4162-"X-Generator: Launchpad (build 17876)\n"
4163+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4164+"X-Generator: Launchpad (build 17925)\n"
4165
4166 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4167 msgid "Stupidly simple."
4168@@ -100,7 +100,7 @@
4169 msgid "Icon Zoom:"
4170 msgstr ""
4171
4172-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4173+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4174 msgid "Appearance"
4175 msgstr ""
4176
4177@@ -172,15 +172,15 @@
4178 msgid "Show Item for Dock:"
4179 msgstr ""
4180
4181-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4182+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4183 msgid "Behaviour"
4184 msgstr ""
4185
4186-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4187+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4188 msgid "Docklets"
4189 msgstr ""
4190
4191-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4192+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4193 msgid "Drop to add to dock"
4194 msgstr "Slepp for å leggja til ei dokk"
4195
4196@@ -233,6 +233,6 @@
4197 msgid "_Translate This Application..."
4198 msgstr ""
4199
4200-#: ../lib/Widgets/PreferencesWindow.vala:65
4201+#: ../lib/Widgets/PreferencesWindow.vala:72
4202 msgid "Preferences"
4203 msgstr "Innstillingar"
4204
4205=== modified file 'po/pl.po'
4206--- po/pl.po 2016-01-05 09:09:38 +0000
4207+++ po/pl.po 2016-02-16 14:34:53 +0000
4208@@ -7,15 +7,15 @@
4209 msgstr ""
4210 "Project-Id-Version: plank 0.1.0\n"
4211 "Report-Msgid-Bugs-To: \n"
4212-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4213-"PO-Revision-Date: 2015-12-23 00:39+0000\n"
4214+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4215+"PO-Revision-Date: 2016-01-05 17:58+0000\n"
4216 "Last-Translator: Piotr Strębski <strebski@o2.pl>\n"
4217 "Language-Team: Polish <>\n"
4218 "MIME-Version: 1.0\n"
4219 "Content-Type: text/plain; charset=utf-8\n"
4220 "Content-Transfer-Encoding: 8bit\n"
4221-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4222-"X-Generator: Launchpad (build 17876)\n"
4223+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4224+"X-Generator: Launchpad (build 17925)\n"
4225 "Language: \n"
4226
4227 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4228@@ -108,7 +108,7 @@
4229 msgid "Icon Zoom:"
4230 msgstr "Powiększanie ikon:"
4231
4232-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4233+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4234 msgid "Appearance"
4235 msgstr "Wygląd"
4236
4237@@ -180,15 +180,15 @@
4238 msgid "Show Item for Dock:"
4239 msgstr "Pokaż element dla doku:"
4240
4241-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4242+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4243 msgid "Behaviour"
4244 msgstr "Zachowanie"
4245
4246-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4247+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4248 msgid "Docklets"
4249 msgstr "Docklety"
4250
4251-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4252+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4253 msgid "Drop to add to dock"
4254 msgstr "Upuść, aby dodać do doku"
4255
4256@@ -245,6 +245,6 @@
4257 msgid "_Translate This Application..."
4258 msgstr "_Przetłumacz ten program..."
4259
4260-#: ../lib/Widgets/PreferencesWindow.vala:65
4261+#: ../lib/Widgets/PreferencesWindow.vala:72
4262 msgid "Preferences"
4263 msgstr "Preferencje"
4264
4265=== modified file 'po/pt.po'
4266--- po/pt.po 2016-01-05 09:09:38 +0000
4267+++ po/pt.po 2016-02-16 14:34:53 +0000
4268@@ -7,15 +7,15 @@
4269 msgstr ""
4270 "Project-Id-Version: plank\n"
4271 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4272-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4273+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4274 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4275 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4276 "Language-Team: Portuguese <pt@li.org>\n"
4277 "MIME-Version: 1.0\n"
4278 "Content-Type: text/plain; charset=UTF-8\n"
4279 "Content-Transfer-Encoding: 8bit\n"
4280-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4281-"X-Generator: Launchpad (build 17876)\n"
4282+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4283+"X-Generator: Launchpad (build 17925)\n"
4284
4285 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4286 msgid "Stupidly simple."
4287@@ -107,7 +107,7 @@
4288 msgid "Icon Zoom:"
4289 msgstr "Zoom de ícone:"
4290
4291-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4292+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4293 msgid "Appearance"
4294 msgstr "Aparência"
4295
4296@@ -179,15 +179,15 @@
4297 msgid "Show Item for Dock:"
4298 msgstr "Mostrar item da barra:"
4299
4300-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4301+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4302 msgid "Behaviour"
4303 msgstr "Comportamento"
4304
4305-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4306+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4307 msgid "Docklets"
4308 msgstr ""
4309
4310-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4311+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4312 msgid "Drop to add to dock"
4313 msgstr "Largue para adicionar à doca"
4314
4315@@ -246,6 +246,6 @@
4316 msgid "_Translate This Application..."
4317 msgstr "_Traduzir esta aplicação..."
4318
4319-#: ../lib/Widgets/PreferencesWindow.vala:65
4320+#: ../lib/Widgets/PreferencesWindow.vala:72
4321 msgid "Preferences"
4322 msgstr "Preferências"
4323
4324=== modified file 'po/pt_BR.po'
4325--- po/pt_BR.po 2016-01-05 09:09:38 +0000
4326+++ po/pt_BR.po 2016-02-16 14:34:53 +0000
4327@@ -7,15 +7,15 @@
4328 msgstr ""
4329 "Project-Id-Version: plank\n"
4330 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4331-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4332+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4333 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4334 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4335 "Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
4336 "MIME-Version: 1.0\n"
4337 "Content-Type: text/plain; charset=UTF-8\n"
4338 "Content-Transfer-Encoding: 8bit\n"
4339-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4340-"X-Generator: Launchpad (build 17876)\n"
4341+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4342+"X-Generator: Launchpad (build 17925)\n"
4343
4344 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4345 msgid "Stupidly simple."
4346@@ -107,7 +107,7 @@
4347 msgid "Icon Zoom:"
4348 msgstr "Zoom do ícone:"
4349
4350-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4351+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4352 msgid "Appearance"
4353 msgstr "Aparência"
4354
4355@@ -179,15 +179,15 @@
4356 msgid "Show Item for Dock:"
4357 msgstr "Mostrar esse item na barra:"
4358
4359-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4360+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4361 msgid "Behaviour"
4362 msgstr "Comportamento"
4363
4364-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4365+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4366 msgid "Docklets"
4367 msgstr ""
4368
4369-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4370+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4371 msgid "Drop to add to dock"
4372 msgstr "Solte para adicionar ao dock"
4373
4374@@ -254,6 +254,6 @@
4375 msgid "_Translate This Application..."
4376 msgstr "_Traduzir este aplicativo..."
4377
4378-#: ../lib/Widgets/PreferencesWindow.vala:65
4379+#: ../lib/Widgets/PreferencesWindow.vala:72
4380 msgid "Preferences"
4381 msgstr "Preferências"
4382
4383=== modified file 'po/ro.po'
4384--- po/ro.po 2016-01-05 09:09:38 +0000
4385+++ po/ro.po 2016-02-16 14:34:53 +0000
4386@@ -7,15 +7,15 @@
4387 msgstr ""
4388 "Project-Id-Version: plank\n"
4389 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4390-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4391-"PO-Revision-Date: 2015-12-23 00:41+0000\n"
4392+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4393+"PO-Revision-Date: 2016-01-05 18:02+0000\n"
4394 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4395 "Language-Team: Romanian <ro@li.org>\n"
4396 "MIME-Version: 1.0\n"
4397 "Content-Type: text/plain; charset=UTF-8\n"
4398 "Content-Transfer-Encoding: 8bit\n"
4399-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4400-"X-Generator: Launchpad (build 17876)\n"
4401+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4402+"X-Generator: Launchpad (build 17925)\n"
4403
4404 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4405 msgid "Stupidly simple."
4406@@ -100,7 +100,7 @@
4407 msgid "Icon Zoom:"
4408 msgstr ""
4409
4410-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4411+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4412 msgid "Appearance"
4413 msgstr ""
4414
4415@@ -172,15 +172,15 @@
4416 msgid "Show Item for Dock:"
4417 msgstr ""
4418
4419-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4420+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4421 msgid "Behaviour"
4422 msgstr ""
4423
4424-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4425+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4426 msgid "Docklets"
4427 msgstr ""
4428
4429-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4430+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4431 msgid "Drop to add to dock"
4432 msgstr "Aruncă pentru a adăuga la dock"
4433
4434@@ -234,6 +234,6 @@
4435 msgid "_Translate This Application..."
4436 msgstr "_Traduceți această aplicație..."
4437
4438-#: ../lib/Widgets/PreferencesWindow.vala:65
4439+#: ../lib/Widgets/PreferencesWindow.vala:72
4440 msgid "Preferences"
4441 msgstr "Preferințe"
4442
4443=== modified file 'po/ru.po'
4444--- po/ru.po 2016-01-05 09:09:38 +0000
4445+++ po/ru.po 2016-02-16 14:34:53 +0000
4446@@ -7,15 +7,15 @@
4447 msgstr ""
4448 "Project-Id-Version: plank\n"
4449 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4450-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4451+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4452 "PO-Revision-Date: 2015-12-23 00:42+0000\n"
4453 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4454 "Language-Team: Russian <ru@li.org>\n"
4455 "MIME-Version: 1.0\n"
4456 "Content-Type: text/plain; charset=UTF-8\n"
4457 "Content-Transfer-Encoding: 8bit\n"
4458-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4459-"X-Generator: Launchpad (build 17876)\n"
4460+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4461+"X-Generator: Launchpad (build 17925)\n"
4462
4463 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4464 msgid "Stupidly simple."
4465@@ -108,7 +108,7 @@
4466 msgid "Icon Zoom:"
4467 msgstr "Увеличение иконок:"
4468
4469-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4470+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4471 msgid "Appearance"
4472 msgstr "Оформление"
4473
4474@@ -180,15 +180,15 @@
4475 msgid "Show Item for Dock:"
4476 msgstr "Показать значок для панели:"
4477
4478-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4479+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4480 msgid "Behaviour"
4481 msgstr "Поведение"
4482
4483-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4484+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4485 msgid "Docklets"
4486 msgstr "Доклеты"
4487
4488-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4489+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4490 msgid "Drop to add to dock"
4491 msgstr "Перетащите, чтобы добавить на панель"
4492
4493@@ -248,6 +248,6 @@
4494 msgid "_Translate This Application..."
4495 msgstr "_Перевести это приложение..."
4496
4497-#: ../lib/Widgets/PreferencesWindow.vala:65
4498+#: ../lib/Widgets/PreferencesWindow.vala:72
4499 msgid "Preferences"
4500 msgstr "Параметры"
4501
4502=== modified file 'po/sk.po'
4503--- po/sk.po 2016-01-05 09:09:38 +0000
4504+++ po/sk.po 2016-02-16 14:34:53 +0000
4505@@ -7,15 +7,15 @@
4506 msgstr ""
4507 "Project-Id-Version: plank\n"
4508 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4509-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4510+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4511 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
4512 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4513 "Language-Team: Slovak <sk@li.org>\n"
4514 "MIME-Version: 1.0\n"
4515 "Content-Type: text/plain; charset=UTF-8\n"
4516 "Content-Transfer-Encoding: 8bit\n"
4517-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4518-"X-Generator: Launchpad (build 17876)\n"
4519+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4520+"X-Generator: Launchpad (build 17925)\n"
4521
4522 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4523 msgid "Stupidly simple."
4524@@ -106,7 +106,7 @@
4525 msgid "Icon Zoom:"
4526 msgstr ""
4527
4528-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4529+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4530 msgid "Appearance"
4531 msgstr "Vzhľad"
4532
4533@@ -178,15 +178,15 @@
4534 msgid "Show Item for Dock:"
4535 msgstr ""
4536
4537-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4538+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4539 msgid "Behaviour"
4540 msgstr "Správanie"
4541
4542-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4543+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4544 msgid "Docklets"
4545 msgstr "Docklety"
4546
4547-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4548+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4549 msgid "Drop to add to dock"
4550 msgstr "Pusti pre pridanie do docku"
4551
4552@@ -241,6 +241,6 @@
4553 msgid "_Translate This Application..."
4554 msgstr "_Preložiť túto aplikáciu..."
4555
4556-#: ../lib/Widgets/PreferencesWindow.vala:65
4557+#: ../lib/Widgets/PreferencesWindow.vala:72
4558 msgid "Preferences"
4559 msgstr "Nastavenia"
4560
4561=== modified file 'po/sl.po'
4562--- po/sl.po 2016-01-05 09:09:38 +0000
4563+++ po/sl.po 2016-02-16 14:34:53 +0000
4564@@ -7,15 +7,15 @@
4565 msgstr ""
4566 "Project-Id-Version: plank\n"
4567 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4568-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4569+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4570 "PO-Revision-Date: 2015-12-23 00:42+0000\n"
4571 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4572 "Language-Team: Slovenian <sl@li.org>\n"
4573 "MIME-Version: 1.0\n"
4574 "Content-Type: text/plain; charset=UTF-8\n"
4575 "Content-Transfer-Encoding: 8bit\n"
4576-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4577-"X-Generator: Launchpad (build 17876)\n"
4578+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4579+"X-Generator: Launchpad (build 17925)\n"
4580
4581 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4582 msgid "Stupidly simple."
4583@@ -100,7 +100,7 @@
4584 msgid "Icon Zoom:"
4585 msgstr ""
4586
4587-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4588+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4589 msgid "Appearance"
4590 msgstr "Videz"
4591
4592@@ -172,15 +172,15 @@
4593 msgid "Show Item for Dock:"
4594 msgstr ""
4595
4596-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4597+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4598 msgid "Behaviour"
4599 msgstr "Obnašanje"
4600
4601-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4602+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4603 msgid "Docklets"
4604 msgstr ""
4605
4606-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4607+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4608 msgid "Drop to add to dock"
4609 msgstr "Spustite za dodajanje na sidrišče"
4610
4611@@ -234,6 +234,6 @@
4612 msgid "_Translate This Application..."
4613 msgstr "Pr_evedi to aplikacijo"
4614
4615-#: ../lib/Widgets/PreferencesWindow.vala:65
4616+#: ../lib/Widgets/PreferencesWindow.vala:72
4617 msgid "Preferences"
4618 msgstr "Možnosti"
4619
4620=== modified file 'po/sma.po'
4621--- po/sma.po 2016-01-05 09:09:38 +0000
4622+++ po/sma.po 2016-02-16 14:34:53 +0000
4623@@ -7,15 +7,15 @@
4624 msgstr ""
4625 "Project-Id-Version: plank\n"
4626 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4627-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4628+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4629 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4630 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4631 "Language-Team: Southern Sami <sma@li.org>\n"
4632 "MIME-Version: 1.0\n"
4633 "Content-Type: text/plain; charset=UTF-8\n"
4634 "Content-Transfer-Encoding: 8bit\n"
4635-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4636-"X-Generator: Launchpad (build 17876)\n"
4637+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4638+"X-Generator: Launchpad (build 17925)\n"
4639
4640 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4641 msgid "Stupidly simple."
4642@@ -100,7 +100,7 @@
4643 msgid "Icon Zoom:"
4644 msgstr ""
4645
4646-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4647+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4648 msgid "Appearance"
4649 msgstr ""
4650
4651@@ -172,15 +172,15 @@
4652 msgid "Show Item for Dock:"
4653 msgstr ""
4654
4655-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4656+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4657 msgid "Behaviour"
4658 msgstr ""
4659
4660-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4661+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4662 msgid "Docklets"
4663 msgstr ""
4664
4665-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4666+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4667 msgid "Drop to add to dock"
4668 msgstr ""
4669
4670@@ -233,6 +233,6 @@
4671 msgid "_Translate This Application..."
4672 msgstr "_jarkoestehtedh dihte applikasjovne..."
4673
4674-#: ../lib/Widgets/PreferencesWindow.vala:65
4675+#: ../lib/Widgets/PreferencesWindow.vala:72
4676 msgid "Preferences"
4677 msgstr ""
4678
4679=== modified file 'po/sq.po'
4680--- po/sq.po 2016-01-05 09:09:38 +0000
4681+++ po/sq.po 2016-02-16 14:34:53 +0000
4682@@ -7,15 +7,15 @@
4683 msgstr ""
4684 "Project-Id-Version: plank\n"
4685 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4686-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4687+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4688 "PO-Revision-Date: 2015-12-11 19:07+0000\n"
4689 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4690 "Language-Team: Albanian <sq@li.org>\n"
4691 "MIME-Version: 1.0\n"
4692 "Content-Type: text/plain; charset=UTF-8\n"
4693 "Content-Transfer-Encoding: 8bit\n"
4694-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4695-"X-Generator: Launchpad (build 17876)\n"
4696+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4697+"X-Generator: Launchpad (build 17925)\n"
4698
4699 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4700 msgid "Stupidly simple."
4701@@ -100,7 +100,7 @@
4702 msgid "Icon Zoom:"
4703 msgstr ""
4704
4705-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4706+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4707 msgid "Appearance"
4708 msgstr "Paraqitja"
4709
4710@@ -172,15 +172,15 @@
4711 msgid "Show Item for Dock:"
4712 msgstr ""
4713
4714-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4715+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4716 msgid "Behaviour"
4717 msgstr "Sjellja"
4718
4719-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4720+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4721 msgid "Docklets"
4722 msgstr ""
4723
4724-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4725+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4726 msgid "Drop to add to dock"
4727 msgstr ""
4728
4729@@ -233,6 +233,6 @@
4730 msgid "_Translate This Application..."
4731 msgstr "_Përkthe këtë program..."
4732
4733-#: ../lib/Widgets/PreferencesWindow.vala:65
4734+#: ../lib/Widgets/PreferencesWindow.vala:72
4735 msgid "Preferences"
4736 msgstr "Preferimet"
4737
4738=== modified file 'po/sr.po'
4739--- po/sr.po 2016-02-07 08:33:00 +0000
4740+++ po/sr.po 2016-02-16 14:34:53 +0000
4741@@ -6,15 +6,15 @@
4742 msgstr ""
4743 "Project-Id-Version: plank\n"
4744 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4745-"POT-Creation-Date: 2016-02-01 06:37+0000\n"
4746-"PO-Revision-Date: 2016-01-31 15:45+0000\n"
4747+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4748+"PO-Revision-Date: 2016-02-07 18:36+0000\n"
4749 "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
4750 "Language-Team: Serbian <gnom@prevod.org>\n"
4751 "MIME-Version: 1.0\n"
4752 "Content-Type: text/plain; charset=UTF-8\n"
4753 "Content-Transfer-Encoding: 8bit\n"
4754-"X-Launchpad-Export-Date: 2016-02-02 05:28+0000\n"
4755-"X-Generator: Launchpad (build 17908)\n"
4756+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4757+"X-Generator: Launchpad (build 17925)\n"
4758 "Language: sr\n"
4759
4760 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4761
4762=== modified file 'po/sr@latin.po'
4763--- po/sr@latin.po 2016-01-05 09:09:38 +0000
4764+++ po/sr@latin.po 2016-02-16 14:34:53 +0000
4765@@ -7,15 +7,15 @@
4766 msgstr ""
4767 "Project-Id-Version: plank\n"
4768 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4769-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4770+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4771 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
4772 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4773 "Language-Team: Serbian Latin <sr@latin@li.org>\n"
4774 "MIME-Version: 1.0\n"
4775 "Content-Type: text/plain; charset=UTF-8\n"
4776 "Content-Transfer-Encoding: 8bit\n"
4777-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4778-"X-Generator: Launchpad (build 17876)\n"
4779+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4780+"X-Generator: Launchpad (build 17925)\n"
4781
4782 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4783 msgid "Stupidly simple."
4784@@ -100,7 +100,7 @@
4785 msgid "Icon Zoom:"
4786 msgstr ""
4787
4788-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4789+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4790 msgid "Appearance"
4791 msgstr ""
4792
4793@@ -172,15 +172,15 @@
4794 msgid "Show Item for Dock:"
4795 msgstr ""
4796
4797-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4798+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4799 msgid "Behaviour"
4800 msgstr ""
4801
4802-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4803+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4804 msgid "Docklets"
4805 msgstr ""
4806
4807-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4808+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4809 msgid "Drop to add to dock"
4810 msgstr ""
4811
4812@@ -233,6 +233,6 @@
4813 msgid "_Translate This Application..."
4814 msgstr "_Prevedi ovu Aplikaciju..."
4815
4816-#: ../lib/Widgets/PreferencesWindow.vala:65
4817+#: ../lib/Widgets/PreferencesWindow.vala:72
4818 msgid "Preferences"
4819 msgstr "Postavke"
4820
4821=== modified file 'po/sv.po'
4822--- po/sv.po 2016-01-05 09:09:38 +0000
4823+++ po/sv.po 2016-02-16 14:34:53 +0000
4824@@ -7,15 +7,15 @@
4825 msgstr ""
4826 "Project-Id-Version: plank\n"
4827 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4828-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4829+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4830 "PO-Revision-Date: 2015-12-23 00:40+0000\n"
4831 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4832 "Language-Team: Swedish <sv@li.org>\n"
4833 "MIME-Version: 1.0\n"
4834 "Content-Type: text/plain; charset=UTF-8\n"
4835 "Content-Transfer-Encoding: 8bit\n"
4836-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4837-"X-Generator: Launchpad (build 17876)\n"
4838+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4839+"X-Generator: Launchpad (build 17925)\n"
4840
4841 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4842 msgid "Stupidly simple."
4843@@ -102,7 +102,7 @@
4844 msgid "Icon Zoom:"
4845 msgstr ""
4846
4847-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4848+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4849 msgid "Appearance"
4850 msgstr "Utseende"
4851
4852@@ -174,15 +174,15 @@
4853 msgid "Show Item for Dock:"
4854 msgstr ""
4855
4856-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4857+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4858 msgid "Behaviour"
4859 msgstr "Beteende"
4860
4861-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4862+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4863 msgid "Docklets"
4864 msgstr ""
4865
4866-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4867+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4868 msgid "Drop to add to dock"
4869 msgstr "Släpp för att lägga till i dockan"
4870
4871@@ -239,6 +239,6 @@
4872 msgid "_Translate This Application..."
4873 msgstr "_Översätt det här programmet..."
4874
4875-#: ../lib/Widgets/PreferencesWindow.vala:65
4876+#: ../lib/Widgets/PreferencesWindow.vala:72
4877 msgid "Preferences"
4878 msgstr "Inställningar"
4879
4880=== modified file 'po/ta.po'
4881--- po/ta.po 2016-01-05 09:09:38 +0000
4882+++ po/ta.po 2016-02-16 14:34:53 +0000
4883@@ -7,15 +7,15 @@
4884 msgstr ""
4885 "Project-Id-Version: plank\n"
4886 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4887-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4888-"PO-Revision-Date: 2016-01-04 14:55+0000\n"
4889+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4890+"PO-Revision-Date: 2016-01-05 17:59+0000\n"
4891 "Last-Translator: Lakshmi Narayanan Sreethar <slnarayanan.tvl@gmail.com>\n"
4892 "Language-Team: Tamil <ta@li.org>\n"
4893 "MIME-Version: 1.0\n"
4894 "Content-Type: text/plain; charset=UTF-8\n"
4895 "Content-Transfer-Encoding: 8bit\n"
4896-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4897-"X-Generator: Launchpad (build 17876)\n"
4898+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4899+"X-Generator: Launchpad (build 17925)\n"
4900
4901 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4902 msgid "Stupidly simple."
4903@@ -100,7 +100,7 @@
4904 msgid "Icon Zoom:"
4905 msgstr ""
4906
4907-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4908+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4909 msgid "Appearance"
4910 msgstr ""
4911
4912@@ -172,15 +172,15 @@
4913 msgid "Show Item for Dock:"
4914 msgstr ""
4915
4916-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4917+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4918 msgid "Behaviour"
4919 msgstr ""
4920
4921-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4922+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4923 msgid "Docklets"
4924 msgstr ""
4925
4926-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4927+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4928 msgid "Drop to add to dock"
4929 msgstr ""
4930
4931@@ -235,6 +235,6 @@
4932 msgid "_Translate This Application..."
4933 msgstr "இதை மொழிபெயர்க்கவும்"
4934
4935-#: ../lib/Widgets/PreferencesWindow.vala:65
4936+#: ../lib/Widgets/PreferencesWindow.vala:72
4937 msgid "Preferences"
4938 msgstr "முன்னுரிமைகள்"
4939
4940=== modified file 'po/te.po'
4941--- po/te.po 2016-01-05 09:09:38 +0000
4942+++ po/te.po 2016-02-16 14:34:53 +0000
4943@@ -7,15 +7,15 @@
4944 msgstr ""
4945 "Project-Id-Version: plank\n"
4946 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4947-"POT-Creation-Date: 2016-01-04 19:57+0000\n"
4948+"POT-Creation-Date: 2016-02-13 07:52+0000\n"
4949 "PO-Revision-Date: 2015-12-23 00:41+0000\n"
4950 "Last-Translator: Rico Tzschichholz <Unknown>\n"
4951 "Language-Team: Telugu <te@li.org>\n"
4952 "MIME-Version: 1.0\n"
4953 "Content-Type: text/plain; charset=UTF-8\n"
4954 "Content-Transfer-Encoding: 8bit\n"
4955-"X-Launchpad-Export-Date: 2016-01-05 05:15+0000\n"
4956-"X-Generator: Launchpad (build 17876)\n"
4957+"X-Launchpad-Export-Date: 2016-02-14 05:57+0000\n"
4958+"X-Generator: Launchpad (build 17925)\n"
4959
4960 #: ../data/plank.appdata.xml.in.h:1 ../data/plank.desktop.in.h:1
4961 msgid "Stupidly simple."
4962@@ -103,7 +103,7 @@
4963 msgid "Icon Zoom:"
4964 msgstr ""
4965
4966-#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:91
4967+#: ../data/ui/preferences.ui.h:17 ../lib/Widgets/PreferencesWindow.vala:98
4968 msgid "Appearance"
4969 msgstr "కనిపించు విధానం"
4970
4971@@ -175,15 +175,15 @@
4972 msgid "Show Item for Dock:"
4973 msgstr ""
4974
4975-#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:92
4976+#: ../data/ui/preferences.ui.h:35 ../lib/Widgets/PreferencesWindow.vala:99
4977 msgid "Behaviour"
4978 msgstr "ప్రవర్తన"
4979
4980-#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:93
4981+#: ../data/ui/preferences.ui.h:36 ../lib/Widgets/PreferencesWindow.vala:100
4982 msgid "Docklets"
4983 msgstr ""
4984
4985-#: ../lib/DragManager.vala:470 ../lib/Items/PlaceholderDockItem.vala:51
4986+#: ../lib/DragManager.vala:477 ../lib/Items/PlaceholderDockItem.vala:51
4987 msgid "Drop to add to dock"
4988 msgstr ""
4989
4990@@ -236,6 +236,6 @@
4991 msgid "_Translate This Application..."
4992 msgstr "ఈ అప్లికేషన్ ను తర్జూమా చేయి"
4993
4994-#: ../lib/Widgets/PreferencesWindow.vala:65
4995+#: ../lib/Widgets/PreferencesWindow.vala:72
4996 msgid "Preferences"
4997 msgstr "ప్రాధాన్యతలు"
4998
4999=== modified file 'po/th.po'
5000--- po/th.po 2016-01-05 09:09:38 +0000
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to status/vote changes: