UI fixes from Xandros:

* Expanded contractions (couldn't -> could not)
* Added or removed periods at end of sentences based on where they
  were (captions/dialogs yes, checkboxes no)
* Enabled F1-to-start-kdehelp in kruler
* Added a few -caption "%c" params in some .desktop files

svn path=/trunk/kdegraphics/kdvi/; revision=162062
This commit is contained in:
Kurt Granroth 2002-06-19 21:50:01 +00:00
parent 368ae36517
commit d9c410e035
4 changed files with 6 additions and 6 deletions

View file

@ -55,13 +55,13 @@ void font::fontNameReceiver(QString fname)
set_char_p = &dviWindow::set_char;
} else
if (magic == GF_MAGIC)
oops(QString(i18n("The GF format for font file %1 is no longer supported.")).arg(filename) );
oops(QString(i18n("The GF format for font file %1 is no longer supported")).arg(filename) );
else
if (magic == VF_MAGIC) {
read_VF_index();
set_char_p = &dviWindow::set_vf_char;
} else
oops(QString(i18n("Cannot recognize format for font file %1.")).arg(filename) );
oops(QString(i18n("Cannot recognize format for font file %1")).arg(filename) );
}

View file

@ -34,7 +34,7 @@ fontPool::fontPool(void)
progress = new fontProgressDialog( "fontgen", // Chapter in the documentation for help.
i18n( "KDVI is currently generating bitmap fonts..." ),
i18n( "Aborts the font generation. Do not do this." ),
i18n( "Aborts the font generation. Don't do this." ),
i18n( "KDVI is currently generating bitmap fonts which are needed to display your document. "
"For this, KDVI uses a number of external programs, such as MetaFont. You can find "
"the output of these programs later in the document info dialog." ),
@ -125,7 +125,7 @@ QString fontPool::status(void)
QStringList tmp;
if (fontList.isEmpty())
return i18n("The font list is currently empty.");
return i18n("The fontlist is currently empty.");
text.append("<table WIDTH=\"100%\" NOSAVE >");
text.append("<tr><td><b>Name</b></td> <td><b>DPI</b></td> <td><b>Type</b></td> <td><b>Filename</b></td></tr>");

View file

@ -31,7 +31,7 @@ fontProgressDialog::fontProgressDialog( QString helpIndex, QString label, QStrin
if (helpIndex.isEmpty() == false) {
setHelp(helpIndex, "kdvi");
setHelpLinkText( i18n( "What is going on here?") );
setHelpLinkText( i18n( "What's going on here?") );
enableLinkedHelp(true);
} else
enableLinkedHelp(false);

2
pk.cpp
View file

@ -263,7 +263,7 @@ void font::read_PK_char(unsigned int ch)
w = num(fp, n);
h = num(fp, n);
if (w > 0x7fff || h > 0x7fff)
oops(QString(i18n("The character %1 is too large in file %2.")).arg(ch).arg(fontname));
oops(QString(i18n("The character %1 is too large in file %2")).arg(ch).arg(fontname));
g->bitmap.w = w;
g->bitmap.h = h;
}