comparison src/util.c @ 5302:6dfcd7dbecde

[gaim-migrate @ 5674] Bjoern Voigt writes: "I have updated the German translation and added some forgotten files to po/POTFILES.in (see attached patch file)." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 06 May 2003 00:07:21 +0000
parents cfbd0cb3f18b
children ccec8893c1be
comparison
equal deleted inserted replaced
5301:d846a933299c 5302:6dfcd7dbecde
712 712
713 void show_usage(int mode, const char *name) 713 void show_usage(int mode, const char *name)
714 { 714 {
715 switch (mode) { 715 switch (mode) {
716 case 0: /* full help text */ 716 case 0: /* full help text */
717 printf("Gaim %s\n" 717 printf(_("Gaim %s\n"
718 "Usage: %s [OPTION]...\n\n" 718 "Usage: %s [OPTION]...\n\n"
719 " -a, --acct display account editor window\n" 719 " -a, --acct display account editor window\n"
720 " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n" 720 " -w, --away[=MESG] make away on signon (optional argument MESG specifies\n"
721 " name of away message to use)\n" 721 " name of away message to use)\n"
722 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n" 722 " -l, --login[=NAME] automatically login (optional argument NAME specifies\n"
724 " -n, --loginwin don't automatically login; show login window\n" 724 " -n, --loginwin don't automatically login; show login window\n"
725 " -u, --user=NAME use account NAME\n" 725 " -u, --user=NAME use account NAME\n"
726 " -f, --file=FILE use FILE as config\n" 726 " -f, --file=FILE use FILE as config\n"
727 " -d, --debug print debugging messages to stdout\n" 727 " -d, --debug print debugging messages to stdout\n"
728 " -v, --version display the current version and exit\n" 728 " -v, --version display the current version and exit\n"
729 " -h, --help display this help and exit\n", VERSION, name); 729 " -h, --help display this help and exit\n"), VERSION, name);
730 break; 730 break;
731 case 1: /* short message */ 731 case 1: /* short message */
732 printf("Gaim %s. Try `%s -h' for more information.\n", VERSION, name); 732 printf(_("Gaim %s. Try `%s -h' for more information.\n"), VERSION, name);
733 break; 733 break;
734 } 734 }
735 } 735 }
736 736
737 GSList *message_split(char *message, int limit) 737 GSList *message_split(char *message, int limit)