~kubuntu-members/kompare/4.11

« back to all changes in this revision

Viewing changes to main.cpp

  • Committer: Malcolm Hunter
  • Date: 2001-12-04 22:43:30 UTC
  • Revision ID: git-v1:564ee4e5213990c068c1521d191e5bff39be325f
Corrected typographical errors

svn path=/trunk/kdesdk/kompare/; revision=125559

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
static KCmdLineOptions options[] =
36
36
{
37
 
        { "+[URL [URL2]]", I18N_NOOP( "Document to open. If only one url is given\nit is considered a .diff file. If 2 files are given\nkompare will compare them." ), 0 },
 
37
        { "+[URL [URL2]]", I18N_NOOP( "Document to open. If only one URL is given,\nit is considered to be a .diff file. If 2 files are given,\nKompare will compare them." ), 0 },
38
38
        { 0, 0, 0 }
39
39
};
40
40
 
90
90
                        widget->compare( args->url( 0 ), args->url( 1 ) );
91
91
                        break;
92
92
                default: // error
93
 
                        KMessageBox::error( NULL, i18n( "Sorry you gave too many arguments, dont know what to do with them..." ) );
 
93
                        KMessageBox::error( NULL, i18n( "Sorry you gave too many arguments, I don't know what to do with them..." ) );
94
94
                        return 0;
95
95
                        break;
96
96
                }