[gimp-gap] Fixes to user visible messages: no more camel case, better capitalization



commit f494ca26ddf7559978fc3c3c8e1b375d21ab9a10
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date:   Sat Dec 3 22:18:24 2011 +0400

    Fixes to user visible messages: no more camel case, better capitalization

 vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c b/vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
index 3ec04b3..f0e7037 100644
--- a/vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
+++ b/vid_enc_ffmpeg/gap_enc_ffmpeg_gui.c
@@ -3767,13 +3767,13 @@ p_create_file_comment_frame (GapGveFFMpegGlobalParams *gpp)
 
 
   /* the Set Aspectratio checkbutton */
-  checkbutton = gtk_check_button_new_with_label (_("Set Aspectratio"));
+  checkbutton = gtk_check_button_new_with_label (_("Set aspect ratio"));
   gpp->ff_aspect_checkbutton = checkbutton;
   gtk_widget_show (checkbutton);
   gtk_table_attach (GTK_TABLE (table), checkbutton, 1, 2, row, row+1,
                     (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
                     (GtkAttachOptions) (0), 0, 0);
-  gimp_help_set_help_data (checkbutton, _("store aspectratio information (width/height) in the output video"), NULL);
+  gimp_help_set_help_data (checkbutton, _("Store aspect ratio information (width/height) in the output video"), NULL);
   g_object_set_data (G_OBJECT (checkbutton), GAP_ENC_FFGUI_GPP, (gpointer)gpp);
   g_signal_connect (G_OBJECT (checkbutton), "toggled",
                     G_CALLBACK (on_ff_gint32_checkbutton_toggled),
@@ -3781,7 +3781,7 @@ p_create_file_comment_frame (GapGveFFMpegGlobalParams *gpp)
 
 
   /* the ASPECT combo */
-  combo = gimp_int_combo_box_new (_("auto"),   GAP_GVE_FFMPEG_ASPECT_00_AUTO,
+  combo = gimp_int_combo_box_new (_("Auto"),   GAP_GVE_FFMPEG_ASPECT_00_AUTO,
                                   _("3:2"),    GAP_GVE_FFMPEG_ASPECT_01_3_2,
                                   _("4:3"),    GAP_GVE_FFMPEG_ASPECT_02_4_3,
                                   _("16:9"),   GAP_GVE_FFMPEG_ASPECT_03_16_9,
@@ -3828,7 +3828,7 @@ p_create_file_comment_frame (GapGveFFMpegGlobalParams *gpp)
   gtk_table_attach (GTK_TABLE (table), checkbutton, 1, 2, row, row+1,
                     (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
                     (GtkAttachOptions) (0), 0, 0);
-  gimp_help_set_help_data (checkbutton, _("show video encoder expert settings"), NULL);
+  gimp_help_set_help_data (checkbutton, _("Show video encoder expert settings"), NULL);
   g_object_set_data (G_OBJECT (checkbutton), GAP_ENC_FFGUI_GPP, (gpointer)gpp);
   g_signal_connect (G_OBJECT (checkbutton), "toggled",
                     G_CALLBACK (on_ff_gint32_checkbutton_toggled),



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