~stefanlsd/+junk/test

« back to all changes in this revision

Viewing changes to src/hello.c

  • Committer: stefan
  • Date: 2008-09-05 20:24:20 UTC
  • Revision ID: stefan@lsd-20080905202420-sx70qyp886r4hyjz
Replace world with universe in hello.c

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
 
102
102
  /* Print greeting message and exit. */
103
103
  if (t)
104
 
    printf (_("hello, world\n"));
 
104
    printf (_("hello, universe\n"));
105
105
 
106
106
  else if (n)
107
107
    /* TRANSLATORS: Use box drawing characters or other fancy stuff
112
112
    */
113
113
        printf (_("\
114
114
+---------------+\n\
115
 
| Hello, world! |\n\
 
115
| Hello, universe! |\n\
116
116
+---------------+\n\
117
117
"));
118
118
 
119
119
  else
120
120
    {
121
121
      if (!greeting)
122
 
        greeting = _("Hello, world!");
 
122
        greeting = _("Hello, universe!");
123
123
      puts (greeting);
124
124
    }
125
125