Applied patch by Duane R. Bailey:

* Replaced occurances of "..." by B_UTF8_ELLIPSIS in the apps folder.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24851 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2008-04-07 09:19:56 +00:00
parent 038ed3d1f2
commit c9d15f8cdb
8 changed files with 14 additions and 14 deletions

View File

@ -746,7 +746,7 @@ VideoWindow::_BuildCaptureControls(BView* theView)
aFrame.bottom -= kYBuffer;
fFtpSetupBox = new BBox(aFrame, "Ftp Setup", B_FOLLOW_ALL, B_WILL_DRAW);
fUploadClientMenu = new BPopUpMenu("Send to...");
fUploadClientMenu = new BPopUpMenu("Send to" B_UTF8_ELLIPSIS);
for (int i = 0; kUploadClient[i]; i++) {
BMessage *m = new BMessage(msg_upl_client);
m->AddInt32("client", i);
@ -821,7 +821,7 @@ VideoWindow::_BuildCaptureControls(BView* theView)
aFrame = fStatusBox->Bounds();
aFrame.InsetBy(kXBuffer, kYBuffer);
fStatusLine = new BStringView(aFrame, "Status Line", "Waiting ...");
fStatusLine = new BStringView(aFrame, "Status Line", "Waiting" B_UTF8_ELLIPSIS);
fStatusBox->AddChild(fStatusLine);
}

View File

@ -647,7 +647,7 @@ VideoConsumer::LocalSave(char* filename, BBitmap* bitmap)
{
BFile* output;
UpdateFtpStatus("Capturing Image ...");
UpdateFtpStatus("Capturing Image" B_UTF8_ELLIPSIS);
/* save a local copy of the image in the requested format */
output = new BFile();
@ -695,14 +695,14 @@ VideoConsumer::FtpSave(char* filename)
ftp->SetPassive(fPassiveFtp);
// ftp the local file to our web site
UpdateFtpStatus("Logging in ...");
UpdateFtpStatus("Logging in" B_UTF8_ELLIPSIS);
if (ftp->Connect((string)fServerText, (string)fLoginText, (string)fPasswordText)) {
// connect to server
UpdateFtpStatus("Connected ...");
UpdateFtpStatus("Connected" B_UTF8_ELLIPSIS);
if (ftp->ChangeDir((string)fDirectoryText)) {
// cd to the desired directory
UpdateFtpStatus("Transmitting ...");
UpdateFtpStatus("Transmitting" B_UTF8_ELLIPSIS);
if (ftp->PutFile((string)filename, (string)"temp")) {
// send the file to the server
@ -710,7 +710,7 @@ VideoConsumer::FtpSave(char* filename)
ftp->Chmod((string)"temp", (string)"644");
// make it world readable
UpdateFtpStatus("Renaming ...");
UpdateFtpStatus("Renaming" B_UTF8_ELLIPSIS);
if (ftp->MoveFile((string)"temp", (string)filename)) {
// change to the desired name

View File

@ -2956,7 +2956,7 @@ TMailWindow::_RebuildQueryMenu(bool firstTime)
delete item;
}
fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries...","???..."),
fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries" B_UTF8_ELLIPSIS,"???" B_UTF8_ELLIPSIS),
new BMessage(M_EDIT_QUERIES), 'E', B_SHIFT_KEY));
bool queryItemsAdded = false;

View File

@ -586,7 +586,7 @@ PackageView::_GroupChanged(int32 index)
}
fDestination->AddSeparatorItem();
item = new BMenuItem("Other...", new BMessage(P_MSG_OPEN_PANEL));
item = new BMenuItem("Other" B_UTF8_ELLIPSIS, new BMessage(P_MSG_OPEN_PANEL));
item->SetTarget(this);
fDestination->AddItem(item);

View File

@ -28,7 +28,7 @@
KernelMemoryBarMenuItem::KernelMemoryBarMenuItem(system_info& systemInfo)
: BMenuItem("System Resources & Caches...", NULL)
: BMenuItem("System Resources & Caches" B_UTF8_ELLIPSIS, NULL)
{
fLastSum = -1;
fGrenze1 = -1;

View File

@ -25,7 +25,7 @@
NoiseBarMenuItem::NoiseBarMenuItem()
: BMenuItem("Gone Teams...", NULL)
: BMenuItem("Gone Teams" B_UTF8_ELLIPSIS, NULL)
{
fBusyWaiting = -1;
fLost = -1;

View File

@ -260,7 +260,7 @@ ProcessController::MessageReceived(BMessage *message)
if (alert->Go())
kill_team(team);
} else {
alert = new BAlert("", "This team is already gone...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);
alert = new BAlert("", "This team is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);
alert->Go();
}
}
@ -296,7 +296,7 @@ ProcessController::MessageReceived(BMessage *message)
}
#endif
} else {
alert = new BAlert("", "This thread is already gone...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);
alert = new BAlert("", "This thread is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);
alert->Go();
}
}

View File

@ -142,7 +142,7 @@ TermWindow::_SetupMenu()
fFilemenu->AddItem(new BMenuItem("New Tab", new BMessage(kNewTab), 'T'));
fFilemenu->AddSeparatorItem();
fFilemenu->AddItem(new BMenuItem("Page Setup...", new BMessage(MENU_PAGE_SETUP)));
fFilemenu->AddItem(new BMenuItem("Page Setup" B_UTF8_ELLIPSIS, new BMessage(MENU_PAGE_SETUP)));
fFilemenu->AddItem(new BMenuItem("Print", new BMessage(MENU_PRINT),'P'));
fFilemenu->AddSeparatorItem();
fFilemenu->AddItem(new BMenuItem("About Terminal" B_UTF8_ELLIPSIS, new BMessage(B_ABOUT_REQUESTED)));