[gimp] Issue #4054 - Missing closing brackets for some BMP saving names



commit 204df59474b7b86741da2087fb6210d4cc030021
Author: Michael Natterer <mitch gimp org>
Date:   Tue Oct 8 22:11:10 2019 +0200

    Issue #4054 - Missing closing brackets for some BMP saving names
    
    Fix the broken strings.

 plug-ins/file-bmp/bmp-save.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/plug-ins/file-bmp/bmp-save.c b/plug-ins/file-bmp/bmp-save.c
index 18ca865fc2..e4a3306db2 100644
--- a/plug-ins/file-bmp/bmp-save.c
+++ b/plug-ins/file-bmp/bmp-save.c
@@ -1002,9 +1002,9 @@ save_dialog (GimpProcedure *procedure,
   if (channels < 3)
     gtk_widget_set_sensitive (frame, FALSE);
 
-  store = gimp_int_store_new (_("16 bit (R5 G6 B5"),     RGB_565,
-                              _("16 bit (A1 R5 G5 B5"),  RGBA_5551,
-                              _("16 bit (X1 R5 G5 B5"),  RGB_555,
+  store = gimp_int_store_new (_("16 bit (R5 G6 B5)"),    RGB_565,
+                              _("16 bit (A1 R5 G5 B5)"), RGBA_5551,
+                              _("16 bit (X1 R5 G5 B5)"), RGB_555,
                               _("24 bit (R8 G8 B8)"),    RGB_888,
                               _("32 bit (A8 R8 G8 B8)"), RGBA_8888,
                               _("32 bit (X8 R8 G8 B8)"), RGBX_8888,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]