Ticket #2040: apps_ellipsis.diff
File apps_ellipsis.diff, 5.8 KB (added by , 17 years ago) |
---|
-
src/apps/codycam/CodyCam.cpp
746 746 aFrame.bottom -= kYBuffer; 747 747 748 748 fFtpSetupBox = new BBox(aFrame, "Ftp Setup", B_FOLLOW_ALL, B_WILL_DRAW); 749 fUploadClientMenu = new BPopUpMenu("Send to ...");749 fUploadClientMenu = new BPopUpMenu("Send to" B_UTF8_ELLIPSIS); 750 750 for (int i = 0; kUploadClient[i]; i++) { 751 751 BMessage *m = new BMessage(msg_upl_client); 752 752 m->AddInt32("client", i); … … 821 821 aFrame = fStatusBox->Bounds(); 822 822 aFrame.InsetBy(kXBuffer, kYBuffer); 823 823 824 fStatusLine = new BStringView(aFrame, "Status Line", "Waiting ...");824 fStatusLine = new BStringView(aFrame, "Status Line", "Waiting" B_UTF8_ELLIPSIS); 825 825 fStatusBox->AddChild(fStatusLine); 826 826 } 827 827 -
src/apps/codycam/VideoConsumer.cpp
647 647 { 648 648 BFile* output; 649 649 650 UpdateFtpStatus("Capturing Image ...");650 UpdateFtpStatus("Capturing Image" B_UTF8_ELLIPSIS); 651 651 652 652 /* save a local copy of the image in the requested format */ 653 653 output = new BFile(); … … 695 695 ftp->SetPassive(fPassiveFtp); 696 696 // ftp the local file to our web site 697 697 698 UpdateFtpStatus("Logging in ...");698 UpdateFtpStatus("Logging in" B_UTF8_ELLIPSIS); 699 699 if (ftp->Connect((string)fServerText, (string)fLoginText, (string)fPasswordText)) { 700 700 // connect to server 701 UpdateFtpStatus("Connected ...");701 UpdateFtpStatus("Connected" B_UTF8_ELLIPSIS); 702 702 703 703 if (ftp->ChangeDir((string)fDirectoryText)) { 704 704 // cd to the desired directory 705 UpdateFtpStatus("Transmitting ...");705 UpdateFtpStatus("Transmitting" B_UTF8_ELLIPSIS); 706 706 707 707 if (ftp->PutFile((string)filename, (string)"temp")) { 708 708 // send the file to the server … … 710 710 ftp->Chmod((string)"temp", (string)"644"); 711 711 // make it world readable 712 712 713 UpdateFtpStatus("Renaming ...");713 UpdateFtpStatus("Renaming" B_UTF8_ELLIPSIS); 714 714 715 715 if (ftp->MoveFile((string)"temp", (string)filename)) { 716 716 // change to the desired name -
src/apps/processcontroller/KernelMemoryBarMenuItem.cpp
28 28 29 29 30 30 KernelMemoryBarMenuItem::KernelMemoryBarMenuItem(system_info& systemInfo) 31 : BMenuItem("System Resources & Caches ...", NULL)31 : BMenuItem("System Resources & Caches" B_UTF8_ELLIPSIS, NULL) 32 32 { 33 33 fLastSum = -1; 34 34 fGrenze1 = -1; -
src/apps/processcontroller/NoiseBarMenuItem.cpp
25 25 26 26 27 27 NoiseBarMenuItem::NoiseBarMenuItem() 28 : BMenuItem("Gone Teams ...", NULL)28 : BMenuItem("Gone Teams" B_UTF8_ELLIPSIS, NULL) 29 29 { 30 30 fBusyWaiting = -1; 31 31 fLost = -1; -
src/apps/processcontroller/ProcessController.cpp
260 260 if (alert->Go()) 261 261 kill_team(team); 262 262 } else { 263 alert = new BAlert("", "This team is already gone ...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);263 alert = new BAlert("", "This team is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); 264 264 alert->Go(); 265 265 } 266 266 } … … 296 296 } 297 297 #endif 298 298 } else { 299 alert = new BAlert("", "This thread is already gone ...", "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT);299 alert = new BAlert("", "This thread is already gone" B_UTF8_ELLIPSIS, "Ok!", NULL, NULL, B_WIDTH_AS_USUAL, B_STOP_ALERT); 300 300 alert->Go(); 301 301 } 302 302 } -
src/apps/packageinstaller/PackageView.cpp
586 586 } 587 587 fDestination->AddSeparatorItem(); 588 588 589 item = new BMenuItem("Other ...", new BMessage(P_MSG_OPEN_PANEL));589 item = new BMenuItem("Other" B_UTF8_ELLIPSIS, new BMessage(P_MSG_OPEN_PANEL)); 590 590 item->SetTarget(this); 591 591 fDestination->AddItem(item); 592 592 -
src/apps/terminal/TermWindow.cpp
142 142 fFilemenu->AddItem(new BMenuItem("New Tab", new BMessage(kNewTab), 'T')); 143 143 144 144 fFilemenu->AddSeparatorItem(); 145 fFilemenu->AddItem(new BMenuItem("Page Setup ...", new BMessage(MENU_PAGE_SETUP)));145 fFilemenu->AddItem(new BMenuItem("Page Setup" B_UTF8_ELLIPSIS, new BMessage(MENU_PAGE_SETUP))); 146 146 fFilemenu->AddItem(new BMenuItem("Print", new BMessage(MENU_PRINT),'P')); 147 147 fFilemenu->AddSeparatorItem(); 148 148 fFilemenu->AddItem(new BMenuItem("About Terminal" B_UTF8_ELLIPSIS, new BMessage(B_ABOUT_REQUESTED))); -
src/apps/mail/MailWindow.cpp
2956 2956 delete item; 2957 2957 } 2958 2958 2959 fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries ...","???..."),2959 fQueryMenu->AddItem(new BMenuItem(MDR_DIALECT_CHOICE("Edit Queries" B_UTF8_ELLIPSIS,"???" B_UTF8_ELLIPSIS), 2960 2960 new BMessage(M_EDIT_QUERIES), 'E', B_SHIFT_KEY)); 2961 2961 2962 2962 bool queryItemsAdded = false;