From: Dan F. <dfa...@us...> - 2010-02-06 03:06:51
|
Update of /cvsroot/libexif/libexif/libexif/fuji In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv18477/libexif/fuji Modified Files: mnote-fuji-entry.c mnote-fuji-tag.c Log Message: Made the case of text output be more consistent. Now, tag titles have each word capitalized (like a title) and tag values are always lower case, except the first word which is capitalized (more like a sentence). Index: mnote-fuji-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/fuji/mnote-fuji-tag.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- mnote-fuji-tag.c 18 Dec 2009 01:34:26 -0000 1.9 +++ mnote-fuji-tag.c 6 Feb 2010 00:15:22 -0000 1.10 @@ -34,7 +34,7 @@ static const struct { } table[] = { #ifndef NO_VERBOSE_TAG_STRINGS {MNOTE_FUJI_TAG_VERSION, "Version", N_("Maker Note Version"), ""}, - {MNOTE_FUJI_TAG_SERIAL_NUMBER, "SerialNumber", N_("Serial Number"), N_("This number is unique, it contains the date of manufacture.")}, + {MNOTE_FUJI_TAG_SERIAL_NUMBER, "SerialNumber", N_("Serial Number"), N_("This number is unique and based on the date of manufacture.")}, {MNOTE_FUJI_TAG_QUALITY, "Quality", N_("Quality"), ""}, {MNOTE_FUJI_TAG_SHARPNESS, "Sharpness", N_("Sharpness"), ""}, {MNOTE_FUJI_TAG_WHITE_BALANCE, "WhiteBalance", N_("White Balance"), ""}, @@ -42,7 +42,7 @@ static const struct { {MNOTE_FUJI_TAG_TONE, "Contrast", N_("Contrast"), ""}, {MNOTE_FUJI_TAG_FLASH_MODE, "FlashMode", N_("Flash Mode"), ""}, {MNOTE_FUJI_TAG_FLASH_STRENGTH, "FlashStrength", N_("Flash Firing Strength Compensation"), ""}, - {MNOTE_FUJI_TAG_MACRO, "MacroMode", N_("Macro mode"), ""}, + {MNOTE_FUJI_TAG_MACRO, "MacroMode", N_("Macro Mode"), ""}, {MNOTE_FUJI_TAG_FOCUS_MODE, "FocusingMode", N_("Focusing Mode"), ""}, {MNOTE_FUJI_TAG_FOCUS_POINT, "FocusPoint", N_("Focus Point"), ""}, {MNOTE_FUJI_TAG_SLOW_SYNC, "SlowSynchro", N_("Slow Synchro Mode"), ""}, Index: mnote-fuji-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/fuji/mnote-fuji-entry.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- mnote-fuji-entry.c 27 Oct 2009 06:06:11 -0000 1.5 +++ mnote-fuji-entry.c 6 Feb 2010 00:15:22 -0000 1.6 @@ -73,8 +73,8 @@ static const struct { { {0, N_("Auto")}, {0x100, N_("Daylight")}, {0x200, N_("Cloudy")}, - {0x300, N_("Daylight-color fluorescent")}, - {0x301, N_("DayWhite-color fluorescent")}, + {0x300, N_("Daylight fluorescent")}, + {0x301, N_("Day white fluorescent")}, {0x302, N_("White fluorescent")}, {0x400, N_("Incandescent")}, {0x500, N_("Flash")}, |