diff options
author | Håkon Nessjøen <haakon.nessjoen@gmail.com> | 2012-02-28 14:37:13 +0100 |
---|---|---|
committer | Håkon Nessjøen <haakon.nessjoen@gmail.com> | 2012-02-28 14:37:13 +0100 |
commit | 86990fe50070268508caf171c825217c7da21ef5 (patch) | |
tree | 379ba20b36aa684b924b13d24d977531b447f5f1 | |
parent | 210b1b5574afb381b87d6d34860009a905ed6848 (diff) | |
download | MAC-Telnet-86990fe50070268508caf171c825217c7da21ef5.tar.gz MAC-Telnet-86990fe50070268508caf171c825217c7da21ef5.zip |
Cleaned up i18n
-rw-r--r-- | macping.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -155,13 +155,13 @@ int main(int argc, char **argv) { fprintf(stderr, _("Usage: %s <MAC> [-h] [-f] [-c <count>] [-s <packet size>]\n"), argv[0]); if (print_help) { - fprintf(stderr, _("\nParameters:\n")); - fprintf(stderr, _(" MAC MAC-Address of the RouterOS/mactelnetd device.\n")); - fprintf(stderr, _(" -f Fast mode, do not wait before sending next ping request.\n")); - fprintf(stderr, _(" -s Specify size of ping packet.\n")); - fprintf(stderr, _(" -c Number of packets to send. (0 = unlimited)\n")); - fprintf(stderr, _(" -h This help.\n")); - fprintf(stderr, "\n"); + fprintf(stderr, _("\nParameters:\n" + " MAC MAC-Address of the RouterOS/mactelnetd device.\n" + " -f Fast mode, do not wait before sending next ping request.\n" + " -s Specify size of ping packet.\n" + " -c Number of packets to send. (0 = unlimited)\n" + " -h This help.\n" + "\n")); } return 1; } |