Removed trailing 'OpenBeos' from translators's names, to be consistent with the rest. Anyone knows why we have two TIFF translators in the tree?

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17696 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2006-06-01 20:21:51 +00:00
parent 68c442e5c2
commit ab8e333337
4 changed files with 6 additions and 6 deletions

View File

@ -193,7 +193,7 @@ TIFFView::Draw(BRect area)
xbold = fh.descent + 1;
ybold = fh.ascent + fh.descent * 2 + fh.leading;
char title[] = "OpenBeOS TIFF Image Translator";
char title[] = "TIFF Image Translator";
DrawString(title, BPoint(xbold, ybold));
SetFont(be_plain_font);

View File

@ -489,7 +489,7 @@ virtual void Draw(
xbold = fh.descent + 1;
ybold = fh.ascent + fh.descent * 2 + fh.leading;
char title[] = "OpenBeOS PPM Image Translator";
char title[] = "PPM Image Translator";
DrawString(title, BPoint(xbold, ybold));
SetFont(be_plain_font);

View File

@ -267,7 +267,7 @@ SGIView::Draw(BRect area)
xbold = fh.descent + 1;
ybold = fh.ascent + fh.descent * 2 + fh.leading;
const char* text = "OpenBeOS SGI Image Translator";
const char* text = "SGI Image Translator";
DrawString(text, BPoint(xbold, ybold));
SetFont(be_plain_font);

View File

@ -180,7 +180,7 @@ TGAView::Draw(BRect area)
xbold = fh.descent + 1;
ybold = fh.ascent + fh.descent * 2 + fh.leading;
char title[] = "OpenBeOS TGA Image Translator";
char title[] = "TGA Image Translator";
DrawString(title, BPoint(xbold, ybold));
SetFont(be_plain_font);
@ -196,9 +196,9 @@ TGAView::Draw(BRect area)
static_cast<int>(B_TRANSLATION_REVISION_VERSION(TGA_TRANSLATOR_VERSION)),
__DATE__);
DrawString(detail, BPoint(xbold, yplain + ybold));
/* char copyright[] = "© 2002 OpenBeOS Project";
/* char copyright[] = "© 2002 Haiku Project";
DrawString(copyright, BPoint(xbold, yplain * 2 + ybold));
*/
char writtenby[] = "Written by the OBOS Translation Kit Team";
char writtenby[] = "Written by the Haiku Translation Kit Team";
DrawString(writtenby, BPoint(xbold, yplain * 7 + ybold));
}