[gimp] file-pnm: Fix strings including case changes
- From: Mukund Sivaraman <muks src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] file-pnm: Fix strings including case changes
- Date: Tue, 6 Dec 2011 15:14:11 +0000 (UTC)
commit 7af0494495375f96941e1737a8f0a4f9521fcf0f
Author: Mukund Sivaraman <muks banu com>
Date: Tue Dec 6 20:42:30 2011 +0530
file-pnm: Fix strings including case changes
plug-ins/common/file-pnm.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/plug-ins/common/file-pnm.c b/plug-ins/common/file-pnm.c
index 8303c4d..0db38b2 100644
--- a/plug-ins/common/file-pnm.c
+++ b/plug-ins/common/file-pnm.c
@@ -240,7 +240,7 @@ query (void)
};
gimp_install_procedure (LOAD_PROC,
- "loads files of the pnm file format",
+ "Loads files in the PNM file format",
"FIXME: write help for pnm_load",
"Erik Nygren",
"Erik Nygren",
@@ -260,7 +260,7 @@ query (void)
"string,P4,0,string,P5,0,string,P6");
gimp_install_procedure (PNM_SAVE_PROC,
- "saves files in the pnm file format",
+ "Saves files in the PNM file format",
"PNM saving handles all image types without transparency.",
"Erik Nygren",
"Erik Nygren",
@@ -272,7 +272,7 @@ query (void)
save_args, NULL);
gimp_install_procedure (PBM_SAVE_PROC,
- "saves files in the pnm file format",
+ "Saves files in the PBM file format",
"PBM saving produces mono images without transparency.",
"Martin K Collins",
"Erik Nygren",
@@ -284,7 +284,7 @@ query (void)
save_args, NULL);
gimp_install_procedure (PGM_SAVE_PROC,
- "saves files in the pnm file format",
+ "Saves files in the PGM file format",
"PGM saving produces grayscale images without transparency.",
"Erik Nygren",
"Erik Nygren",
@@ -296,7 +296,7 @@ query (void)
save_args, NULL);
gimp_install_procedure (PPM_SAVE_PROC,
- "saves files in the pnm file format",
+ "Saves files in the PPM file format",
"PPM saving handles RGB images without transparency.",
"Erik Nygren",
"Erik Nygren",
@@ -1054,7 +1054,7 @@ save_image (const gchar *filename,
break;
default:
- g_warning ("pnm: unknown drawable_type\n");
+ g_warning ("PNM: Unknown drawable_type\n");
return FALSE;
}
}
@@ -1094,7 +1094,7 @@ save_image (const gchar *filename,
break;
default:
- g_warning ("pnm: unknown drawable_type\n");
+ g_warning ("PNM: Unknown drawable_type\n");
return FALSE;
}
}
@@ -1130,7 +1130,7 @@ save_image (const gchar *filename,
break;
default:
- g_warning ("images saved as PBM should be black/white");
+ g_warning ("Images saved as PBM should be black/white");
break;
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]