Commit Graph

1635 Commits

Author SHA1 Message Date
Víttor Paulo Vieira da Costa 3c66f4a9fe Update Brazilian Portuguese translation 2023-09-12 17:15:50 +00:00
Sabri Ünal 5657feded8 Update Turkish translation 2023-08-31 18:44:03 +00:00
Ekaterine Papava 21061bfa31 Update Georgian translation 2023-08-27 14:07:27 +00:00
Martin 793ba32b5b Update Slovenian translation 2023-08-27 05:24:51 +00:00
Yuri Chornoivan 1fddc3b1c4 Update Ukrainian translation 2023-08-26 18:43:35 +00:00
Boyuan Yang e28f6fa617 Update Chinese (China) translation 2023-08-26 18:17:49 +00:00
Sabri Ünal f869a79812 data: add gimpsaveprocedure.c to the POTFILES.in
A leftover from my previous commit: b7ab467cde
2023-08-26 16:26:30 +03:00
Ekaterine Papava d2ea72e371 Update Georgian translation 2023-08-26 03:41:35 +00:00
Sabri Ünal b2979e0534 Update Turkish translation 2023-08-22 20:20:27 +00:00
Luming Zh 6bccd77e87 Update Chinese (China) translation 2023-08-12 19:52:52 +00:00
Martin 26cb91ddcf Update Slovenian translation 2023-08-11 23:16:41 +00:00
Sabri Ünal a460650f75 Update Turkish translation 2023-08-11 11:17:26 +00:00
Luming Zh eb6d1b485a Update Chinese (China) translation 2023-08-04 19:47:06 +00:00
Danial Behzadi 248cadcfd8 Update Persian translation 2023-07-29 00:36:28 +00:00
Balázs Úr 13dcc85daa Update Hungarian translation 2023-07-26 23:40:40 +00:00
Jordi Mas 54728e0fe1 Update Catalan translation 2023-07-25 10:53:09 +02:00
Anders Jonsson b9f2e157cb Update Swedish translation 2023-07-15 18:28:52 +00:00
Martin 7ec86cd448 Update Slovenian translation 2023-07-15 16:47:57 +00:00
Luming Zh b18894ccfd Update Chinese (China) translation 2023-07-07 12:09:41 +00:00
Jordi Mas 780cda6f72 Update Catalan translation 2023-07-02 07:40:17 +02:00
Marco Ciampa 53f929dc9c Updated Italian translation 2023-07-01 12:00:38 +02:00
Alexandre Prokoudine 0c453edc78 Update Russian translation 2023-06-27 19:21:14 +02:00
Anders Jonsson fa04370cd1 Update Swedish translation 2023-06-25 10:33:35 +00:00
Asier Sarasua Garmendia e3bf2c1f00 Update Basque translation 2023-06-04 07:35:44 +00:00
Michael Natterer 26dce72d2c Remove autotools 2023-05-27 00:03:52 +02:00
Alexander Shopov 8f9b8b3d58 Update Bulgarian translation 2023-05-15 09:32:36 +00:00
Alexander Shopov eff5230370 Update Bulgarian translation 2023-05-11 13:37:09 +00:00
Martin b333b54842 Update Slovenian translation 2023-04-24 20:14:40 +00:00
Yuri Chornoivan cd792f831f Update Ukrainian translation 2023-04-24 15:30:23 +00:00
Rodrigo Lledó 08cdf546fc Update Spanish translation 2023-04-24 14:26:56 +00:00
Sabri Ünal 940fe5e2a9 Update Turkish translation 2023-04-17 15:38:00 +00:00
Jehan f785f18892 po*: add menus folder to the POTFILES.skip of various gettext modules. 2023-04-15 14:56:01 +02:00
Asier Sarasua Garmendia 23e3621e3a Update Basque translation 2023-03-27 18:12:11 +00:00
Balázs Úr ea2b0a3818 Update Hungarian translation 2023-03-15 00:03:40 +00:00
Sveinn í Felli f852b8e572 Update Icelandic translation 2023-02-28 13:18:35 +00:00
Tim Sabsch 1fd4b270e2 Update German translation 2023-02-25 21:16:30 +00:00
dimspingos e0f070a649 Update Greek translation 2023-02-22 10:01:06 +02:00
Sabri Ünal 2f9d431271 Update Turkish translation 2023-02-14 21:22:04 +00:00
Piotr Drąg d19a397cf8 Update Polish translation 2023-02-12 13:17:44 +01:00
Sabri Ünal c72c2e5716 Update Turkish translation 2023-02-02 12:29:35 +00:00
Yuri Chornoivan e3ee010be1 Update Ukrainian translation 2023-01-27 14:40:18 +00:00
Hugo Carvalho cb45d4d5cc Update Portuguese translation 2023-01-25 12:10:24 +00:00
Rodrigo Lledó 3229a68e8a Update Spanish translation 2023-01-23 18:08:56 +00:00
Martin 41f838db8b Update Slovenian translation 2023-01-22 17:27:50 +00:00
Ekaterine Papava 6df84c25f1 Update Georgian translation 2023-01-21 15:53:46 +00:00
Rodrigo Lledó 37fc28c9f3 Update Spanish translation 2023-01-20 18:01:20 +00:00
lloyd konneker d59a7af38c libgimp: API refactor GUI for GimpResource
Simplifies chooser widgets (e.g. GimpBrushSelect) by eliminating attributes (e.g. opacity) of chosen resource.
See #8745, but this commit fixes that by first refactoring the code.

Refactors GUI widgets (e.g. GimpBrushSelectButton and GimpBrushSelect etc.)

Refactor by "Extract class" GimpResourceSelectButton from GimpBrushSelectButton etc.
This moves common code into an inherited class (formerly called GimpSelectButton)
but the subclasses still exist.
The subclasses mainly just do drawing now.

Refactor by "Extract module" GimpResourceSelect from GimpBrushSelect etc.
Moves common code into one file, generic at runtime on type of GimpResource,
that is, the new code dispatches on type i.e. switch statements.
In the future, when core is changed some of that can be deleted.
The files gimpbrushselect.[c,h] etc. are deleted.
The module adapts the API from core to the API of callbacks to libgimp.

Note that core is running the resource chooser (select) widgets remotely.
Core is still calling back over the wire via PDB with more attributes
than necessary.
The new design gets the attributes from the resource themselves,
instead of receiving them from core callback.
The libgimp side adapts by discarding unneeded attributes.
In the future, core (running choosers for plugins) can be simplified also.

Fix gimp_prop_chooser_brush_new same as other resources.

Finish changes, and clean style.

Annotations
2023-01-14 16:38:40 +00:00
Martin d30667f5fe Update Slovenian translation 2023-01-13 22:53:25 +00:00
Yuri Chornoivan a73b9f235e Update Ukrainian translation 2023-01-13 14:56:21 +00:00
Hugo Carvalho 2b85fdd439 Update Portuguese translation 2023-01-12 14:16:16 +00:00