This is straightforward.

I don't think ghostscript update should be a blocker,
commenting out the future API seems just fine.

Index: Makefile
===================================================================
RCS file: /cvs/ports/graphics/gimp/stable/Makefile,v
retrieving revision 1.147
diff -u -p -r1.147 Makefile
--- Makefile    31 Aug 2021 07:30:29 -0000      1.147
+++ Makefile    4 Oct 2021 09:46:50 -0000
@@ -2,12 +2,11 @@
 
 COMMENT=       GNU Image Manipulation Program
 
-DISTNAME =     gimp-2.10.24
-REVISION =     2
+DISTNAME =     gimp-2.10.28
 
 .for i in gimp gimpbase gimpcolor gimpconfig gimpmath gimpmodule \
        gimpthumb gimpui gimpwidgets
-SHARED_LIBS +=  $i-2.0 273.0
+SHARED_LIBS +=  $i-2.0 274.0
 .endfor
 
 CATEGORIES=    graphics
@@ -103,6 +102,8 @@ CONFIGURE_ARGS+= \
                --with-pdbgen \
                --without-alsa \
                --without-webkit
+
+UPDATE_PLIST_ARGS +=   -i MODPY_PY_PREFIX -i MODPY_BIN_SUFFIX
 
 post-install:
        ${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
Index: distinfo
===================================================================
RCS file: /cvs/ports/graphics/gimp/stable/distinfo,v
retrieving revision 1.45
diff -u -p -r1.45 distinfo
--- distinfo    31 Mar 2021 20:52:47 -0000      1.45
+++ distinfo    4 Oct 2021 09:46:50 -0000
@@ -1,2 +1,2 @@
-SHA256 (gimp-2.10.24.tar.bz2) = vRu3YjaMDdMXXPBQBoEt1naUnDcH4h9OaFdDXLQ1mJ4=
-SIZE (gimp-2.10.24.tar.bz2) = 31546295
+SHA256 (gimp-2.10.28.tar.bz2) = T03CLP8atfAm/qoqtV4Fd1s6EeGYGGtHvat5y/oHiCY=
+SIZE (gimp-2.10.28.tar.bz2) = 31675862
Index: patches/patch-app_widgets_gimpdashboard_c
===================================================================
RCS file: patches/patch-app_widgets_gimpdashboard_c
diff -N patches/patch-app_widgets_gimpdashboard_c
--- patches/patch-app_widgets_gimpdashboard_c   9 May 2021 14:18:37 -0000       
1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,52 +0,0 @@
-$OpenBSD: patch-app_widgets_gimpdashboard_c,v 1.1 2021/05/09 14:18:37 espie 
Exp $
-
-Index: app/widgets/gimpdashboard.c
---- app/widgets/gimpdashboard.c.orig
-+++ app/widgets/gimpdashboard.c
-@@ -2512,6 +2512,46 @@ gimp_dashboard_sample_memory_available (GimpDashboard 
-   variable_data->value.size = ms.ullAvailPhys;
- }
- 
-+#elif defined(__OpenBSD__)
-+#include <sys/resource.h>
-+#include <sys/types.h>
-+#include <sys/sysctl.h>
-+
-+static void
-+gimp_dashboard_sample_memory_used (GimpDashboard *dashboard,
-+                                   Variable       variable)
-+{
-+  GimpDashboardPrivate *priv          = dashboard->priv;
-+  VariableData         *variable_data = &priv->variables[variable];
-+  struct rusage rusage;
-+
-+  variable_data->available = FALSE;
-+
-+  if (getrusage(RUSAGE_SELF, &rusage) == -1)
-+      return;
-+  variable_data->available  = TRUE;
-+  variable_data->value.size = (guint64)(rusage.ru_maxrss * 1024);
-+}
-+
-+static void
-+gimp_dashboard_sample_memory_available (GimpDashboard *dashboard,
-+                                        Variable       variable)
-+{
-+  GimpDashboardPrivate *priv            = dashboard->priv;
-+  VariableData         *variable_data   = &priv->variables[variable];
-+  int mib[] = {CTL_HW, HW_PHYSMEM64};
-+  int64_t result;
-+  size_t sz = sizeof(int64_t);
-+
-+
-+  variable_data->available = FALSE;
-+
-+  if (sysctl(mib, 2, &result, &sz, NULL, 0) == -1)
-+      return;
-+  variable_data->available  = TRUE;
-+  variable_data->value.size = (guint64)result;
-+}
-+
- #else /* ! G_OS_WIN32 && ! PLATFORM_OSX */
- static void
- gimp_dashboard_sample_memory_used (GimpDashboard *dashboard,
Index: patches/patch-etc_Makefile_in
===================================================================
RCS file: /cvs/ports/graphics/gimp/stable/patches/patch-etc_Makefile_in,v
retrieving revision 1.20
diff -u -p -r1.20 patch-etc_Makefile_in
--- patches/patch-etc_Makefile_in       31 Mar 2021 20:52:47 -0000      1.20
+++ patches/patch-etc_Makefile_in       4 Oct 2021 09:46:50 -0000
@@ -3,7 +3,7 @@ $OpenBSD: patch-etc_Makefile_in,v 1.20 2
 Index: etc/Makefile.in
 --- etc/Makefile.in.orig
 +++ etc/Makefile.in
-@@ -530,7 +530,7 @@ gimpdatadir = @gimpdatadir@
+@@ -533,7 +533,7 @@ gimpdatadir = @gimpdatadir@
  gimpdir = @gimpdir@
  gimplocaledir = @gimplocaledir@
  gimpplugindir = @gimpplugindir@
Index: patches/patch-plug-ins_common_file-ps_c
===================================================================
RCS file: patches/patch-plug-ins_common_file-ps_c
diff -N patches/patch-plug-ins_common_file-ps_c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-plug-ins_common_file-ps_c     4 Oct 2021 09:46:50 -0000
@@ -0,0 +1,16 @@
+$OpenBSD$
+see comment, remove when ghostscript gets updated
+
+Index: plug-ins/common/file-ps.c
+--- plug-ins/common/file-ps.c.orig
++++ plug-ins/common/file-ps.c
+@@ -1765,7 +1765,8 @@ ps_open (const gchar      *filename,
+ 
+   code = gsapi_new_instance (&instance, NULL);
+   if (code == 0) {
+-    code = gsapi_set_arg_encoding(instance, GS_ARG_ENCODING_UTF8);
++    //requires a ghostscript update !
++    //code = gsapi_set_arg_encoding(instance, GS_ARG_ENCODING_UTF8);
+     code = gsapi_init_with_args (instance, cmdA->len - 1, pcmdA);
+     code = gsapi_exit (instance);
+     gsapi_delete_instance (instance);
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/graphics/gimp/stable/pkg/PLIST,v
retrieving revision 1.50
diff -u -p -r1.50 PLIST
--- pkg/PLIST   31 Mar 2021 20:52:47 -0000      1.50
+++ pkg/PLIST   4 Oct 2021 09:46:50 -0000
@@ -4434,6 +4434,7 @@ share/gimp/2.0/themes/Dark/ui/gimp-arrow
 share/gimp/2.0/themes/Dark/ui/gimp-button-default.png
 share/gimp/2.0/themes/Dark/ui/gimp-button-insensitive.png
 share/gimp/2.0/themes/Dark/ui/gimp-button-normal.png
+share/gimp/2.0/themes/Dark/ui/gimp-button-prelight-white-border.png
 share/gimp/2.0/themes/Dark/ui/gimp-button-prelight.png
 share/gimp/2.0/themes/Dark/ui/gimp-button-pressed.png
 share/gimp/2.0/themes/Dark/ui/gimp-handle-h.png
@@ -5418,7 +5419,6 @@ share/locale/ar/LC_MESSAGES/gimp20-libgi
 share/locale/ar/LC_MESSAGES/gimp20-python.mo
 share/locale/ar/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ar/LC_MESSAGES/gimp20-tips.mo
 share/locale/ar/LC_MESSAGES/gimp20.mo
 share/locale/ast/LC_MESSAGES/gimp20.mo
 share/locale/az/LC_MESSAGES/gimp20-libgimp.mo
@@ -5429,122 +5429,102 @@ share/locale/be/LC_MESSAGES/gimp20-libgi
 share/locale/be/LC_MESSAGES/gimp20-python.mo
 share/locale/be/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/be/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/be/LC_MESSAGES/gimp20-tips.mo
 share/locale/be/LC_MESSAGES/gimp20.mo
 share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/bg/LC_MESSAGES/gimp20-python.mo
 share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/bg/LC_MESSAGES/gimp20-tips.mo
 share/locale/bg/LC_MESSAGES/gimp20.mo
 share/locale/br/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/br/LC_MESSAGES/gimp20-python.mo
 share/locale/br/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/br/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/br/LC_MESSAGES/gimp20-tips.mo
 share/locale/br/LC_MESSAGES/gimp20.mo
 share/locale/bs/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/bs/LC_MESSAGES/gimp20-python.mo
 share/locale/bs/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/bs/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/bs/LC_MESSAGES/gimp20-tips.mo
 share/locale/bs/LC_MESSAGES/gimp20.mo
 share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ca/LC_MESSAGES/gimp20-python.mo
 share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ca/LC_MESSAGES/gimp20-tips.mo
 share/locale/ca/LC_MESSAGES/gimp20.mo
 share/locale/ca@valencia/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ca@valencia/LC_MESSAGES/gimp20-python.mo
 share/locale/ca@valencia/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ca@valencia/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ca@valencia/LC_MESSAGES/gimp20-tips.mo
 share/locale/ca@valencia/LC_MESSAGES/gimp20.mo
 share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/cs/LC_MESSAGES/gimp20-python.mo
 share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/cs/LC_MESSAGES/gimp20-tips.mo
 share/locale/cs/LC_MESSAGES/gimp20.mo
 share/locale/csb/LC_MESSAGES/gimp20.mo
 share/locale/da/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/da/LC_MESSAGES/gimp20-python.mo
 share/locale/da/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/da/LC_MESSAGES/gimp20-tips.mo
 share/locale/da/LC_MESSAGES/gimp20.mo
 share/locale/de/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/de/LC_MESSAGES/gimp20-python.mo
 share/locale/de/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/de/LC_MESSAGES/gimp20-tips.mo
 share/locale/de/LC_MESSAGES/gimp20.mo
 share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/dz/LC_MESSAGES/gimp20-python.mo
 share/locale/dz/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/dz/LC_MESSAGES/gimp20-tips.mo
 share/locale/dz/LC_MESSAGES/gimp20.mo
 share/locale/el/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/el/LC_MESSAGES/gimp20-python.mo
 share/locale/el/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/el/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/el/LC_MESSAGES/gimp20-tips.mo
 share/locale/el/LC_MESSAGES/gimp20.mo
 share/locale/en_CA/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/en_CA/LC_MESSAGES/gimp20-python.mo
 share/locale/en_CA/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/en_CA/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/en_CA/LC_MESSAGES/gimp20-tips.mo
 share/locale/en_CA/LC_MESSAGES/gimp20.mo
 share/locale/en_GB/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/en_GB/LC_MESSAGES/gimp20-python.mo
 share/locale/en_GB/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/en_GB/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/en_GB/LC_MESSAGES/gimp20-tips.mo
 share/locale/en_GB/LC_MESSAGES/gimp20.mo
 share/locale/eo/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/eo/LC_MESSAGES/gimp20-python.mo
 share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/eo/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/eo/LC_MESSAGES/gimp20-tips.mo
 share/locale/eo/LC_MESSAGES/gimp20.mo
 share/locale/es/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/es/LC_MESSAGES/gimp20-python.mo
 share/locale/es/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/es/LC_MESSAGES/gimp20-tips.mo
 share/locale/es/LC_MESSAGES/gimp20.mo
 share/locale/et/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/et/LC_MESSAGES/gimp20-python.mo
 share/locale/et/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/et/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/et/LC_MESSAGES/gimp20-tips.mo
 share/locale/et/LC_MESSAGES/gimp20.mo
 share/locale/eu/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/eu/LC_MESSAGES/gimp20-python.mo
 share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/eu/LC_MESSAGES/gimp20-tips.mo
 share/locale/eu/LC_MESSAGES/gimp20.mo
 share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/fa/LC_MESSAGES/gimp20-python.mo
 share/locale/fa/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/fa/LC_MESSAGES/gimp20-tips.mo
 share/locale/fa/LC_MESSAGES/gimp20.mo
 share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/fi/LC_MESSAGES/gimp20-python.mo
 share/locale/fi/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/fi/LC_MESSAGES/gimp20-tips.mo
 share/locale/fi/LC_MESSAGES/gimp20.mo
 share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/fr/LC_MESSAGES/gimp20-python.mo
 share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/fr/LC_MESSAGES/gimp20-tips.mo
 share/locale/fr/LC_MESSAGES/gimp20.mo
 share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ga/LC_MESSAGES/gimp20-python.mo
@@ -5556,55 +5536,46 @@ share/locale/gl/LC_MESSAGES/gimp20-libgi
 share/locale/gl/LC_MESSAGES/gimp20-python.mo
 share/locale/gl/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/gl/LC_MESSAGES/gimp20-tips.mo
 share/locale/gl/LC_MESSAGES/gimp20.mo
 share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/gu/LC_MESSAGES/gimp20-python.mo
 share/locale/gu/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/gu/LC_MESSAGES/gimp20-tips.mo
 share/locale/gu/LC_MESSAGES/gimp20.mo
 share/locale/he/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/he/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/he/LC_MESSAGES/gimp20-tips.mo
 share/locale/he/LC_MESSAGES/gimp20.mo
 share/locale/hi/LC_MESSAGES/gimp20.mo
 share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/hr/LC_MESSAGES/gimp20-python.mo
 share/locale/hr/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/hr/LC_MESSAGES/gimp20-tips.mo
 share/locale/hr/LC_MESSAGES/gimp20.mo
 share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/hu/LC_MESSAGES/gimp20-python.mo
 share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/hu/LC_MESSAGES/gimp20-tips.mo
 share/locale/hu/LC_MESSAGES/gimp20.mo
 share/locale/id/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/id/LC_MESSAGES/gimp20-python.mo
 share/locale/id/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/id/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/id/LC_MESSAGES/gimp20-tips.mo
 share/locale/id/LC_MESSAGES/gimp20.mo
 share/locale/is/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/is/LC_MESSAGES/gimp20-python.mo
 share/locale/is/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/is/LC_MESSAGES/gimp20-tips.mo
 share/locale/is/LC_MESSAGES/gimp20.mo
 share/locale/it/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/it/LC_MESSAGES/gimp20-python.mo
 share/locale/it/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/it/LC_MESSAGES/gimp20-tips.mo
 share/locale/it/LC_MESSAGES/gimp20.mo
 share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ja/LC_MESSAGES/gimp20-python.mo
 share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ja/LC_MESSAGES/gimp20-tips.mo
 share/locale/ja/LC_MESSAGES/gimp20.mo
 share/locale/ka/LC_MESSAGES/gimp20.mo
 share/locale/kab/LC_MESSAGES/gimp20-python.mo
@@ -5615,7 +5586,6 @@ share/locale/km/LC_MESSAGES/gimp20-libgi
 share/locale/km/LC_MESSAGES/gimp20-python.mo
 share/locale/km/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/km/LC_MESSAGES/gimp20-tips.mo
 share/locale/km/LC_MESSAGES/gimp20.mo
 share/locale/kn/LC_MESSAGES/gimp20-std-plug-ins.mo
 share/locale/kn/LC_MESSAGES/gimp20.mo
@@ -5623,154 +5593,129 @@ share/locale/ko/LC_MESSAGES/gimp20-libgi
 share/locale/ko/LC_MESSAGES/gimp20-python.mo
 share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ko/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ko/LC_MESSAGES/gimp20-tips.mo
 share/locale/ko/LC_MESSAGES/gimp20.mo
 share/locale/ky/LC_MESSAGES/gimp20.mo
 share/locale/lt/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/lt/LC_MESSAGES/gimp20-python.mo
 share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/lt/LC_MESSAGES/gimp20-tips.mo
 share/locale/lt/LC_MESSAGES/gimp20.mo
 share/locale/lv/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/lv/LC_MESSAGES/gimp20-python.mo
 share/locale/lv/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/lv/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/lv/LC_MESSAGES/gimp20-tips.mo
 share/locale/lv/LC_MESSAGES/gimp20.mo
 share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/mk/LC_MESSAGES/gimp20-python.mo
 share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/mk/LC_MESSAGES/gimp20-tips.mo
 share/locale/mk/LC_MESSAGES/gimp20.mo
 share/locale/ml/LC_MESSAGES/gimp20.mo
 share/locale/mr/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/mr/LC_MESSAGES/gimp20-python.mo
 share/locale/mr/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/mr/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/mr/LC_MESSAGES/gimp20-tips.mo
 share/locale/mr/LC_MESSAGES/gimp20.mo
 share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ms/LC_MESSAGES/gimp20-python.mo
 share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ms/LC_MESSAGES/gimp20-tips.mo
 share/locale/ms/LC_MESSAGES/gimp20.mo
 share/locale/my/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/my/LC_MESSAGES/gimp20-python.mo
 share/locale/my/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/my/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/my/LC_MESSAGES/gimp20-tips.mo
 share/locale/my/LC_MESSAGES/gimp20.mo
 share/locale/nb/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/nb/LC_MESSAGES/gimp20-python.mo
 share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/nb/LC_MESSAGES/gimp20-tips.mo
 share/locale/nb/LC_MESSAGES/gimp20.mo
 share/locale/nds/LC_MESSAGES/gimp20.mo
 share/locale/ne/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ne/LC_MESSAGES/gimp20-python.mo
 share/locale/ne/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ne/LC_MESSAGES/gimp20-tips.mo
 share/locale/ne/LC_MESSAGES/gimp20.mo
 share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/nl/LC_MESSAGES/gimp20-python.mo
 share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/nl/LC_MESSAGES/gimp20-tips.mo
 share/locale/nl/LC_MESSAGES/gimp20.mo
 share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/nn/LC_MESSAGES/gimp20-python.mo
 share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/nn/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/nn/LC_MESSAGES/gimp20-tips.mo
 share/locale/nn/LC_MESSAGES/gimp20.mo
 share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/oc/LC_MESSAGES/gimp20-python.mo
 share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/oc/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/oc/LC_MESSAGES/gimp20-tips.mo
 share/locale/oc/LC_MESSAGES/gimp20.mo
 share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/pa/LC_MESSAGES/gimp20-python.mo
 share/locale/pa/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/pa/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/pa/LC_MESSAGES/gimp20-tips.mo
 share/locale/pa/LC_MESSAGES/gimp20.mo
 share/locale/pl/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/pl/LC_MESSAGES/gimp20-python.mo
 share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/pl/LC_MESSAGES/gimp20-tips.mo
 share/locale/pl/LC_MESSAGES/gimp20.mo
 share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/pt/LC_MESSAGES/gimp20-python.mo
 share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/pt/LC_MESSAGES/gimp20-tips.mo
 share/locale/pt/LC_MESSAGES/gimp20.mo
 share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo
 share/locale/pt_BR/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/pt_BR/LC_MESSAGES/gimp20-tips.mo
 share/locale/pt_BR/LC_MESSAGES/gimp20.mo
 share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ro/LC_MESSAGES/gimp20-python.mo
 share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ro/LC_MESSAGES/gimp20-tips.mo
 share/locale/ro/LC_MESSAGES/gimp20.mo
 share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ru/LC_MESSAGES/gimp20-python.mo
 share/locale/ru/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/ru/LC_MESSAGES/gimp20-tips.mo
 share/locale/ru/LC_MESSAGES/gimp20.mo
 share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/rw/LC_MESSAGES/gimp20-python.mo
 share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/rw/LC_MESSAGES/gimp20-tips.mo
 share/locale/rw/LC_MESSAGES/gimp20.mo
 share/locale/si/LC_MESSAGES/gimp20.mo
 share/locale/sk/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/sk/LC_MESSAGES/gimp20-python.mo
 share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/sk/LC_MESSAGES/gimp20-tips.mo
 share/locale/sk/LC_MESSAGES/gimp20.mo
 share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/sl/LC_MESSAGES/gimp20-python.mo
 share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/sl/LC_MESSAGES/gimp20-tips.mo
 share/locale/sl/LC_MESSAGES/gimp20.mo
 share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/sr/LC_MESSAGES/gimp20-python.mo
 share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/sr/LC_MESSAGES/gimp20-tips.mo
 share/locale/sr/LC_MESSAGES/gimp20.mo
 share/locale/sr@latin/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/sr@latin/LC_MESSAGES/gimp20-python.mo
 share/locale/sr@latin/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/sr@latin/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/sr@latin/LC_MESSAGES/gimp20-tips.mo
 share/locale/sr@latin/LC_MESSAGES/gimp20.mo
 share/locale/sv/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/sv/LC_MESSAGES/gimp20-python.mo
 share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/sv/LC_MESSAGES/gimp20-tips.mo
 share/locale/sv/LC_MESSAGES/gimp20.mo
 share/locale/ta/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/ta/LC_MESSAGES/gimp20-python.mo
 share/locale/ta/LC_MESSAGES/gimp20-script-fu.mo
-share/locale/ta/LC_MESSAGES/gimp20-tips.mo
 share/locale/ta/LC_MESSAGES/gimp20.mo
 share/locale/te/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/te/LC_MESSAGES/gimp20-python.mo
@@ -5781,20 +5726,17 @@ share/locale/tr/LC_MESSAGES/gimp20-libgi
 share/locale/tr/LC_MESSAGES/gimp20-python.mo
 share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/tr/LC_MESSAGES/gimp20-tips.mo
 share/locale/tr/LC_MESSAGES/gimp20.mo
 share/locale/tt/LC_MESSAGES/gimp20.mo
 share/locale/uk/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/uk/LC_MESSAGES/gimp20-python.mo
 share/locale/uk/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/uk/LC_MESSAGES/gimp20-tips.mo
 share/locale/uk/LC_MESSAGES/gimp20.mo
 share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/vi/LC_MESSAGES/gimp20-python.mo
 share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/vi/LC_MESSAGES/gimp20-tips.mo
 share/locale/vi/LC_MESSAGES/gimp20.mo
 share/locale/xh/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/xh/LC_MESSAGES/gimp20-python.mo
@@ -5809,19 +5751,16 @@ share/locale/zh_CN/LC_MESSAGES/gimp20-li
 share/locale/zh_CN/LC_MESSAGES/gimp20-python.mo
 share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/zh_CN/LC_MESSAGES/gimp20-tips.mo
 share/locale/zh_CN/LC_MESSAGES/gimp20.mo
 share/locale/zh_HK/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/zh_HK/LC_MESSAGES/gimp20-python.mo
 share/locale/zh_HK/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/zh_HK/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/zh_HK/LC_MESSAGES/gimp20-tips.mo
 share/locale/zh_HK/LC_MESSAGES/gimp20.mo
 share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo
 share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo
 share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo
 share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.mo
-share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo
 share/locale/zh_TW/LC_MESSAGES/gimp20.mo
 share/metainfo/
 share/metainfo/gimp-data-extras.metainfo.xml

Reply via email to