Skip to content

Commit 653cd0b

Browse files
committed
update po + fr
1 parent 47933c9 commit 653cd0b

31 files changed

+344
-126
lines changed

NEWS.rst

+67-20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,53 @@
22
Guake
33
=====
44

5+
(unreleased yet)
6+
================
7+
8+
Release Summary
9+
---------------
10+
11+
This major release provides one of the most awaited feature to every Guake adicts: Split terminal. Split easily vertically and horizontally each terminal and have more than one terminal per tab.
12+
There have been several shortcut changes to help navigate easily on your screen: Ctrl+Shift+Up/Down/Left/Right to switch from terminal to terminal.
13+
Thanks for you hard work, @aichingm !
14+
15+
New Features
16+
------------
17+
18+
- Split and resize terminals via mouse or keyboard shortcuts.
19+
20+
Bug Fixes
21+
---------
22+
23+
- Fix multiline selection right click (#1413)
24+
25+
- Fix tab name (#1017)
26+
27+
- fixes jumping preference window (#1149)
28+
29+
- fix no focus after closing a split terminal (#1421)
30+
31+
- Add note about shell that does not support --login parameter (#469)
32+
33+
Translation Updates
34+
-------------------
35+
36+
- pl (Piotr Drąg on weblate)
37+
38+
- nl (Heimen Stoffels on weblate)
39+
40+
- nb (Allan Nordhøy on weblate)
41+
42+
- ru (Igor on weblate)
43+
44+
- zh_CN (庄秋彬 on weblate)
45+
46+
- cs (Pavel Borecki on weblate)
47+
48+
- de (Robin Bauknecht on weblate)
49+
50+
- fr (Gaetan Semet)
51+
552
3.3.3
653
=====
754

@@ -125,7 +172,7 @@ Bug Fixes
125172

126173
- Wayland is a bit more well supported. The X11 backend is now used by default for
127174
GDK and it seems to make the shortcut works under most situation.
128-
175+
129176
A more cleaner solution would be to develop a GAction
130177
(`vote for this feature here <https://feathub.com/Guake/guake/+29>`_])
131178

@@ -192,10 +239,10 @@ Bug Fixes
192239
This may causes some issues with log and so that use parenthesis *around* hyperlinks,
193240
but since parenthesis and quotes are valid characters inside a URL, like for instance
194241
URL created by Kibana, they deserve the right to be shown as proper url in Guake.
195-
242+
196243
User can still select the URL in the terminal if he wishes to capture the exact url, before
197244
doing a Ctrl+click or a right click.
198-
245+
199246
For developers, it is advised to end the URL with a character that cannot be used in URL, such
200247
as space, tab, new line. Ending with a dot (``.``) or a comma (``,``) will not be seen as part
201248
of the URL by Guake, so most logs and traces that adds a dot or a comma at the end of the URL
@@ -271,7 +318,7 @@ New Features
271318

272319
- Add great color palettes from
273320
`Guake Color Scheme <https://github.com/ziyenano/Guake-Color-Schemes>`_, thanks for @ziyenano :
274-
321+
275322
- `Aci`,
276323
- `aco`,
277324
- `Azu`,
@@ -314,17 +361,17 @@ Bug Fixes
314361
- change scope of ``which_align`` variable in ``pref.py`` (#1225)
315362

316363
- Fix several issues on Quick Edit:
317-
364+
318365
- quick open freezes guake
319366
- support for systems with PCRE2 (regular expression in terminal) disabled for VTE, like
320367
Ubuntu 17.10 and +.
321-
368+
322369
This might disable quick open and open url on direct Ctrl+click.
323370
User can still select the wanted url or text and Cltr+click or use contextual menu.
324-
371+
325372
See this `discussion on Tilix <https://github.com/gnunn1/tilix/issues/916>`_, another
326373
Terminal emulator that suffurs the same issue.
327-
374+
328375
- quick open now appears in contextual menu (#1157)
329376
- bad translation update on the contextual menu. This causes new strings that was hidden to
330377
appear for translators.
@@ -356,28 +403,28 @@ Notes for Package Maintainers
356403
- The setup mecanism has changed a little bit. Some maintainers used to patch the source code
357404
of Guake to change the pixmap, Gtk schema or locale paths directly in the ``guake/globals.py``
358405
file. This was due to a lack of flexibility of the installation target of the ``Makefile``.
359-
406+
360407
The ``make install`` target looks now a little bit more familiar, allowing distribution
361408
packager to set the various paths directly with make flags.
362-
409+
363410
For example:
364-
411+
365412
.. code-block:: bash
366-
413+
367414
sudo make install \
368415
prefix=/usr \
369416
DESTDIR=/path/for/packager \
370417
PYTHON_SITE_PACKAGE_NAME=site-package \
371418
localedir=/usr/share/locale
372-
419+
373420
The main overrides are:
374-
421+
375422
- ``IMAGE_DIR``: where the pixmap should be installed. Default: ``/usr/local/share/guake/pixmaps``
376423
- ``localedir``: where locales should be installed. Default: ``/usr/local/share/locale``
377424
- ``GLADE_DIR``: where the Glade files should be installed. Default: ``/usr/local/share/guake``
378425
- ``gsettingsschemadir``: where gsettings/dconf schema should be installed.
379426
Default: ``/usr/local/share/glib-2.0/schemas/``
380-
427+
381428
I invite package maintainers to open tickets on Github about any other difficulties
382429
encountered when packaging Guake.
383430

@@ -419,10 +466,10 @@ New Features
419466
to virtually open any file path in your terminal (if they are on your local machine), but
420467
requires the user to select the file path first, compared to the Quick Open feature that
421468
finds file names using regular expression.
422-
469+
423470
Also notes that is it able to look in the current folder if the selected file name exists,
424471
allowing Ctrl+click on relative paths as well.
425-
472+
426473
Line number syntax is also supported: ``filename.txt:5`` will directly on the 5th line if
427474
your Quick Open is set for.
428475

@@ -573,7 +620,7 @@ New Features
573620
------------
574621

575622
- Ported to GTK3:
576-
623+
577624
- cli arguments
578625
- D-Bus
579626
- context menu of the terminal, the tab bar and the tray icon
@@ -591,7 +638,7 @@ New Features
591638
- ``Guake.accel*`` methods
592639

593640
- Guake now use a brand new build system:
594-
641+
595642
- ``pipenv`` to manage dependencies in `Pipfile`
596643
- enforced code styling and checks using Pylint, Flake8, Yapf, ISort.
597644
- simpler release management thanks to PBR
@@ -602,7 +649,7 @@ New Features
602649
note directly from their Pull Request.
603650

604651
- Update Guake window title when:
605-
652+
606653
- the active tab changes
607654
- the active tab is renamed
608655
- the vte title changes

po/ca.po

+6
Original file line numberDiff line numberDiff line change
@@ -1252,6 +1252,12 @@ msgstr ""
12521252
msgid "Save content..."
12531253
msgstr ""
12541254

1255+
#: data/prefs.glade:1182
1256+
msgid ""
1257+
"This might not work on all shells, make sure that your shell supports the --"
1258+
"login option"
1259+
msgstr ""
1260+
12551261
#~ msgid "key binding error"
12561262
#~ msgstr "S'ha produït un error en definir la drecera de teclat"
12571263

po/cs.po

+6
Original file line numberDiff line numberDiff line change
@@ -1270,6 +1270,12 @@ msgstr "Rozdělit |"
12701270
msgid "Save content..."
12711271
msgstr "Uložit obsah…"
12721272

1273+
#: data/prefs.glade:1182
1274+
msgid ""
1275+
"This might not work on all shells, make sure that your shell supports the --"
1276+
"login option"
1277+
msgstr ""
1278+
12731279
#~ msgid "key binding error"
12741280
#~ msgstr "chyba klávesových zkratek"
12751281

po/de.po

+6
Original file line numberDiff line numberDiff line change
@@ -1026,3 +1026,9 @@ msgstr ""
10261026
#: guake/menus.py:72
10271027
msgid "Save content..."
10281028
msgstr "Inhalt speichern..."
1029+
1030+
#: data/prefs.glade:1182
1031+
msgid ""
1032+
"This might not work on all shells, make sure that your shell supports the --"
1033+
"login option"
1034+
msgstr ""

po/el.po

+6
Original file line numberDiff line numberDiff line change
@@ -1249,6 +1249,12 @@ msgstr ""
12491249
msgid "Save content..."
12501250
msgstr ""
12511251

1252+
#: data/prefs.glade:1182
1253+
msgid ""
1254+
"This might not work on all shells, make sure that your shell supports the --"
1255+
"login option"
1256+
msgstr ""
1257+
12521258
#~ msgid "key binding error"
12531259
#~ msgstr "σφάλμα συντόμευσης πληκτρολογίου"
12541260

po/es.po

+6
Original file line numberDiff line numberDiff line change
@@ -1280,6 +1280,12 @@ msgstr ""
12801280
msgid "Save content..."
12811281
msgstr ""
12821282

1283+
#: data/prefs.glade:1182
1284+
msgid ""
1285+
"This might not work on all shells, make sure that your shell supports the --"
1286+
"login option"
1287+
msgstr ""
1288+
12831289
#~ msgid "key binding error"
12841290
#~ msgstr "Error al asignar tecla"
12851291

po/fa.po

+6
Original file line numberDiff line numberDiff line change
@@ -1246,6 +1246,12 @@ msgstr ""
12461246
msgid "Save content..."
12471247
msgstr ""
12481248

1249+
#: data/prefs.glade:1182
1250+
msgid ""
1251+
"This might not work on all shells, make sure that your shell supports the --"
1252+
"login option"
1253+
msgstr ""
1254+
12491255
#~ msgid "key binding error"
12501256
#~ msgstr "خطا در باگزاری کلید"
12511257

0 commit comments

Comments
 (0)