Commit graph

475 commits

Author SHA1 Message Date
Balázs Meskó
c7d89fd367 Update Hungarian translation 2021-12-23 08:33:22 +00:00
Rūdolfs Mazurs
3adf2903be Update Latvian translation 2021-11-11 19:20:29 +00:00
Asier Sarasua Garmendia
f59cf8b0e1 Update Basque translation 2021-10-30 09:38:08 +00:00
Bruno Lopes da Silva
e06125a240 Update Brazilian Portuguese translation
(cherry picked from commit 9b7889e4de)
2021-10-11 21:02:43 +00:00
Hugo Carvalho
a0570cbc75 Update Portuguese translation 2021-10-06 21:39:12 +00:00
Marco Ciampa
f656ef95a1 Updated Italian translation 2021-09-08 20:57:51 +02:00
Matej Urbančič
2ba8c2f8a4 Update Slovenian translation 2021-08-17 19:51:48 +00:00
Boyuan Yang
4f9f3297f9 Update Chinese (China) translation 2021-07-28 19:42:31 +00:00
Rodrigo Lledó
8b39b92acf Update Spanish translation 2021-05-25 06:21:12 +00:00
dimspingos
89e83ae5e4 Updated Greek translation 2021-05-07 16:26:49 +03:00
Jordi Mas
5115fd8db9 Update Catalan translation 2021-04-25 19:06:54 +02:00
Rodrigo Lledó
a0f89a9d4c Update Spanish translation 2021-04-22 08:31:44 +00:00
Anders Jonsson
5bb7f2c7d4 Update Swedish translation 2021-04-21 20:12:57 +00:00
Asier Sarasua Garmendia
33b267ba12 Update Basque translation 2021-04-21 20:02:16 +00:00
Yuri Chornoivan
997c12a304 Update Ukrainian translation 2021-04-21 09:59:28 +00:00
Jehan
b622f09e0b po-python: benchmark-foreground-extract.py was deleted. 2021-04-20 22:25:47 +02:00
Hannie Dumoleyn
d124e974b4 Update Dutch translation 2021-04-05 07:40:34 +00:00
Bruce Cowan
9b6d59f38a Update British English translation 2021-04-02 13:42:31 +00:00
Philipp Kiemle
ae96f4308c Update German translation 2021-03-30 18:31:26 +00:00
Matej Urbančič
4b4a578f6a Update Slovenian translation 2021-03-26 19:07:09 +00:00
Martin Srebotnjak
aff0c68234 Updated Slovenian translation 2021-03-03 17:27:19 +01:00
Marco Ciampa
87669c2a1c Updated Italian translation 2021-03-01 11:21:09 +01:00
Balázs Úr
97db69c300 Update Hungarian translation 2021-02-18 06:51:02 +00:00
Balázs Meskó
300ca2cb92 Update Hungarian translation 2021-02-18 06:46:02 +00:00
Милош Поповић
549864089d Update Serbian translation 2021-01-18 19:07:40 +00:00
Jordi Mas
16ddf3984e Update Catalan translation 2021-01-15 21:18:29 +01:00
Милош Поповић
dce0eef704 Update Serbian (Latin) translation 2021-01-15 01:33:34 +00:00
Милош Поповић
d9d8ae723a Update Serbian translation 2021-01-15 01:30:57 +00:00
Jordi Mas
d0d0c9f8df Update Catalan translation 2021-01-09 23:17:52 +01:00
dimspingos
4a48ea44dc Updated Greek translation 2020-12-30 00:19:29 +02:00
Jehan
164907384c po-python: remove py-slice from POTFILES.in.
This should fix the CI build.
2020-12-15 03:10:41 +01:00
Anders Jonsson
155daa337e Update Swedish translation 2020-12-14 17:02:48 +00:00
Jordi Mas
4187b840d0 Update Catalan translation 2020-12-09 21:26:32 +01:00
Jordi Mas
93756733ee Fixes Catalan translation 2020-11-09 22:40:01 +01:00
Cristian Secară
9c0ce5a051 Update Romanian translation 2020-11-02 01:24:26 +00:00
Cristian Secară
952441653a Update Romanian translation 2020-10-26 13:04:08 +00:00
Michael Natterer
fa37ca9aa0 po*: update POTFILES.skip with the new toplevel extensions/ folder 2020-10-25 19:14:35 +01:00
Piotr Drąg
df8d0bccba Update Polish translation
Fixes https://gitlab.gnome.org/Teams/Translation/pl/-/issues/9
2020-10-25 10:02:42 +01:00
Rodrigo Lledó
bd8f13a950 Update Spanish translation 2020-10-19 07:07:49 +00:00
Jehan
59292c1432 po-*: move the Python goat exercise to the gimp30-std-plug-ins domain.
Since commit ecbc38f9e9, the Python goat exercise was tracked by the
po-python/ Gettext files. This was an error as all its strings are
common to all other goat exercise plug-ins, so it makes no sense to
separate them (it only duplicates the work).

Actually separating the translation domains by plug-in language was a
bad idea from the start. Why do we care that a translatable string is
written in this or that language? All our plug-ins should just share a
common text domain. This way, we avoid useless duplication of common
strings.
2020-10-18 02:22:17 +02:00
Yuri Chornoivan
81aea1fd6c Update Ukrainian translation 2020-10-10 07:31:40 +00:00
Jehan
ecbc38f9e9 plug-ins, extension: goat-exercises becomes a GIMP extension.
This is an extension containing a few demo plug-ins. This is good to
demonstrate the extension format. It will also allow to disable these
plug-ins (if at some point, one doesn't want to show these demo
plug-ins anymore).

And finally it deals with the fact that our plug-in code is stupid, as
it just tries to find the first executable with the same name (minus
extension) as the plug-in folder. This doesn't go well on Windows, where
the permission system is non-existent. So our code just ends up trying
to run the first file with a similar name in a plug-in folder. As the C
goat-exercise contains both an exe and the C source (and the system
probably returns files in alphabetic order), GIMP under Windows tries to
run the C source instead of the executable (this obviously doesn't go
well).
We could try to do more complex logics, like not aborting if the first
file run fails and try the next one in the plug-in folder. Or maybe just
rename the C file to another name. But any of these is just in the end
the proof that our plug-in discovery right now is just bogus. The
extension system is explicit, not based on randomly trying out files.
Plug-ins entry points are explicitly listed in the metadata manifest.
2020-10-09 15:30:54 +02:00
Yuri Chornoivan
1ae180121b Update Ukrainian translation 2020-09-22 07:53:00 +00:00
Jehan
0ec5ee4394 plug-ins: get rid of pygimp!
It's done, all Python plug-ins have been either ported to the new API +
Python 3, or they have been discarded (and moved to gimp-data-extras for
whoever wants to salvage them).
Let's get rid of the outdated pygimp directory (whose code has not been
built in the master branch for years now anyway)! Woohoo!
2020-09-21 18:17:18 +02:00
Andika Triwidada
4375b44a6f Update Indonesian translation 2020-09-06 09:26:32 +00:00
Yacine Bouklif
97ace5e9a6 Add Kabyle translation 2020-08-29 16:39:24 +00:00
Asier Sarasua Garmendia
6d74c57be7 Update Basque translation 2020-06-12 06:34:20 +00:00
Marco Ciampa
ec782cadc8 Updated Italian translation 2020-06-01 11:10:11 +02:00
Cristian Secară
63647ee187 Update Romanian translation 2020-05-29 18:40:40 +00:00
Sabri Ünal
c45c7fdbe4 Update Turkish translation 2020-05-29 10:53:20 +00:00