Updated to use B_TRANSLATE* macros. relates to #5408.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36698 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -68,18 +68,18 @@ static struct PageFormat
|
|||||||
float height;
|
float height;
|
||||||
} pageFormat[] =
|
} pageFormat[] =
|
||||||
{
|
{
|
||||||
{TR_MARK("Letter"), letter_width, letter_height },
|
{B_TRANSLATE_MARK("Letter"), letter_width, letter_height },
|
||||||
{TR_MARK("Legal"), legal_width, legal_height },
|
{B_TRANSLATE_MARK("Legal"), legal_width, legal_height },
|
||||||
{TR_MARK("Ledger"), ledger_width, ledger_height },
|
{B_TRANSLATE_MARK("Ledger"), ledger_width, ledger_height },
|
||||||
{TR_MARK("Tabloid"), tabloid_width, tabloid_height },
|
{B_TRANSLATE_MARK("Tabloid"), tabloid_width, tabloid_height },
|
||||||
{TR_MARK("A0"), a0_width, a0_height },
|
{B_TRANSLATE_MARK("A0"), a0_width, a0_height },
|
||||||
{TR_MARK("A1"), a1_width, a1_height },
|
{B_TRANSLATE_MARK("A1"), a1_width, a1_height },
|
||||||
{TR_MARK("A2"), a2_width, a2_height },
|
{B_TRANSLATE_MARK("A2"), a2_width, a2_height },
|
||||||
{TR_MARK("A3"), a3_width, a3_height },
|
{B_TRANSLATE_MARK("A3"), a3_width, a3_height },
|
||||||
{TR_MARK("A4"), a4_width, a4_height },
|
{B_TRANSLATE_MARK("A4"), a4_width, a4_height },
|
||||||
{TR_MARK("A5"), a5_width, a5_height },
|
{B_TRANSLATE_MARK("A5"), a5_width, a5_height },
|
||||||
{TR_MARK("A6"), a6_width, a6_height },
|
{B_TRANSLATE_MARK("A6"), a6_width, a6_height },
|
||||||
{TR_MARK("B5"), b5_width, b5_height },
|
{B_TRANSLATE_MARK("B5"), b5_width, b5_height },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -111,7 +111,7 @@ LeftAlign(BView* view)
|
|||||||
|
|
||||||
ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
||||||
BMessage* settings, AutoReply* sender)
|
BMessage* settings, AutoReply* sender)
|
||||||
: BWindow(ConfigWindow::GetWindowFrame(), TR("Page setup"),
|
: BWindow(ConfigWindow::GetWindowFrame(), B_TRANSLATE("Page setup"),
|
||||||
B_TITLED_WINDOW,
|
B_TITLED_WINDOW,
|
||||||
B_NOT_RESIZABLE | B_NOT_ZOOMABLE | B_AUTO_UPDATE_SIZE_LIMITS)
|
B_NOT_RESIZABLE | B_NOT_ZOOMABLE | B_AUTO_UPDATE_SIZE_LIMITS)
|
||||||
, fKind(kind)
|
, fKind(kind)
|
||||||
@@ -126,7 +126,7 @@ ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
|||||||
PrinterForMimeType();
|
PrinterForMimeType();
|
||||||
|
|
||||||
if (kind == kJobSetup)
|
if (kind == kJobSetup)
|
||||||
SetTitle(TR("Print setup"));
|
SetTitle(B_TRANSLATE("Print setup"));
|
||||||
|
|
||||||
BView* panel = new BBox(Bounds(), "temporary", B_FOLLOW_ALL, B_WILL_DRAW);
|
BView* panel = new BBox(Bounds(), "temporary", B_FOLLOW_ALL, B_WILL_DRAW);
|
||||||
AddChild(panel);
|
AddChild(panel);
|
||||||
@@ -134,10 +134,10 @@ ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
|||||||
BRect dummyRect(0, 0, 1, 1);
|
BRect dummyRect(0, 0, 1, 1);
|
||||||
|
|
||||||
// print selection pop up menu
|
// print selection pop up menu
|
||||||
BPopUpMenu* menu = new BPopUpMenu(TR("Select a printer"));
|
BPopUpMenu* menu = new BPopUpMenu(B_TRANSLATE("Select a printer"));
|
||||||
SetupPrintersMenu(menu);
|
SetupPrintersMenu(menu);
|
||||||
|
|
||||||
fPrinters = new BMenuField(TR("Printer:"), menu, NULL);
|
fPrinters = new BMenuField(B_TRANSLATE("Printer:"), menu, NULL);
|
||||||
|
|
||||||
// page format button
|
// page format button
|
||||||
fPageSetup = AddPictureButton(panel, dummyRect, "Paper setup",
|
fPageSetup = AddPictureButton(panel, dummyRect, "Paper setup",
|
||||||
@@ -145,7 +145,7 @@ ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
|||||||
|
|
||||||
// add description to button
|
// add description to button
|
||||||
BStringView *pageFormatTitle = new BStringView("paperSetupTitle",
|
BStringView *pageFormatTitle = new BStringView("paperSetupTitle",
|
||||||
TR("Paper setup:"));
|
B_TRANSLATE("Paper setup:"));
|
||||||
fPageFormatText = new BStringView("paperSetupText", "");
|
fPageFormatText = new BStringView("paperSetupText", "");
|
||||||
|
|
||||||
// page selection button
|
// page selection button
|
||||||
@@ -155,7 +155,8 @@ ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
|||||||
fJobSetup = AddPictureButton(panel, dummyRect, "Page setup",
|
fJobSetup = AddPictureButton(panel, dummyRect, "Page setup",
|
||||||
"JOB_SETUP_ON", "JOB_SETUP_OFF", MSG_JOB_SETUP);
|
"JOB_SETUP_ON", "JOB_SETUP_OFF", MSG_JOB_SETUP);
|
||||||
// add description to button
|
// add description to button
|
||||||
jobSetupTitle = new BStringView("jobSetupTitle", TR("Page setup:"));
|
jobSetupTitle = new BStringView("jobSetupTitle",
|
||||||
|
B_TRANSLATE("Page setup:"));
|
||||||
fJobSetupText = new BStringView("jobSetupText", "");
|
fJobSetupText = new BStringView("jobSetupText", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,9 +166,10 @@ ConfigWindow::ConfigWindow(config_setup_kind kind, Printer* defaultPrinter,
|
|||||||
separator->SetExplicitMaxSize(BSize(B_SIZE_UNLIMITED, 1));
|
separator->SetExplicitMaxSize(BSize(B_SIZE_UNLIMITED, 1));
|
||||||
|
|
||||||
// Cancel & OK button
|
// Cancel & OK button
|
||||||
BButton* cancel = new BButton(dummyRect, "Cancel", TR("Cancel"),
|
BButton* cancel = new BButton(dummyRect, "Cancel", B_TRANSLATE("Cancel"),
|
||||||
new BMessage(B_QUIT_REQUESTED));
|
new BMessage(B_QUIT_REQUESTED));
|
||||||
fOk = new BButton(dummyRect, "OK", TR("OK"), new BMessage(MSG_OK));
|
fOk = new BButton(dummyRect, "OK", B_TRANSLATE("OK"),
|
||||||
|
new BMessage(MSG_OK));
|
||||||
|
|
||||||
RemoveChild(panel);
|
RemoveChild(panel);
|
||||||
|
|
||||||
@@ -295,7 +297,8 @@ kAbout =
|
|||||||
void
|
void
|
||||||
ConfigWindow::AboutRequested()
|
ConfigWindow::AboutRequested()
|
||||||
{
|
{
|
||||||
BAlert *about = new BAlert("About printer server", kAbout, TR("OK"));
|
BAlert *about = new BAlert("About printer server", kAbout,
|
||||||
|
B_TRANSLATE("OK"));
|
||||||
about->Go();
|
about->Go();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -456,10 +459,10 @@ void ConfigWindow::UpdateUI()
|
|||||||
fPageSetup->SetEnabled(false);
|
fPageSetup->SetEnabled(false);
|
||||||
if (fJobSetup) {
|
if (fJobSetup) {
|
||||||
fJobSetup->SetEnabled(false);
|
fJobSetup->SetEnabled(false);
|
||||||
fJobSetupText->SetText(TR("Undefined"));
|
fJobSetupText->SetText(B_TRANSLATE("Undefined"));
|
||||||
}
|
}
|
||||||
fOk->SetEnabled(false);
|
fOk->SetEnabled(false);
|
||||||
fPageFormatText->SetText(TR("Undefined"));
|
fPageFormatText->SetText(B_TRANSLATE("Undefined"));
|
||||||
} else {
|
} else {
|
||||||
fPageSetup->SetEnabled(true);
|
fPageSetup->SetEnabled(true);
|
||||||
|
|
||||||
@@ -479,11 +482,11 @@ void ConfigWindow::UpdateUI()
|
|||||||
int32 orientation = 0;
|
int32 orientation = 0;
|
||||||
fPageSettings.FindInt32(PSRV_FIELD_ORIENTATION, &orientation);
|
fPageSettings.FindInt32(PSRV_FIELD_ORIENTATION, &orientation);
|
||||||
if (orientation == 0)
|
if (orientation == 0)
|
||||||
pageFormat << ", " << TR("Portrait");
|
pageFormat << ", " << B_TRANSLATE("Portrait");
|
||||||
else
|
else
|
||||||
pageFormat << ", " << TR("Landscape");
|
pageFormat << ", " << B_TRANSLATE("Landscape");
|
||||||
} else {
|
} else {
|
||||||
pageFormat << TR("Undefined");
|
pageFormat << B_TRANSLATE("Undefined");
|
||||||
}
|
}
|
||||||
fPageFormatText->SetText(pageFormat.String());
|
fPageFormatText->SetText(pageFormat.String());
|
||||||
|
|
||||||
@@ -494,18 +497,18 @@ void ConfigWindow::UpdateUI()
|
|||||||
if (fJobSettings.FindInt32(PSRV_FIELD_FIRST_PAGE, &first) == B_OK &&
|
if (fJobSettings.FindInt32(PSRV_FIELD_FIRST_PAGE, &first) == B_OK &&
|
||||||
fJobSettings.FindInt32(PSRV_FIELD_LAST_PAGE, &last) == B_OK) {
|
fJobSettings.FindInt32(PSRV_FIELD_LAST_PAGE, &last) == B_OK) {
|
||||||
if (first >= 1 && first <= last && last != INT_MAX) {
|
if (first >= 1 && first <= last && last != INT_MAX) {
|
||||||
job << TR("Page") << " " << first << " " << TR("to") << " "
|
job << B_TRANSLATE("Page") << " " << first << " " <<
|
||||||
<< last;
|
B_TRANSLATE("to") << " " << last;
|
||||||
} else {
|
} else {
|
||||||
job << TR("All pages");
|
job << B_TRANSLATE("All pages");
|
||||||
}
|
}
|
||||||
int32 copies;
|
int32 copies;
|
||||||
if (fJobSettings.FindInt32(PSRV_FIELD_COPIES, &copies)
|
if (fJobSettings.FindInt32(PSRV_FIELD_COPIES, &copies)
|
||||||
== B_OK && copies > 1) {
|
== B_OK && copies > 1) {
|
||||||
job << ", " << copies << " " << TR("copies");
|
job << ", " << copies << " " << B_TRANSLATE("copies");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
job << TR("Undefined");
|
job << B_TRANSLATE("Undefined");
|
||||||
}
|
}
|
||||||
fJobSetupText->SetText(job.String());
|
fJobSetupText->SetText(job.String());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -83,15 +83,17 @@ status_t PrintServerApp::async_thread(void* data)
|
|||||||
// If no default printer is set, give user
|
// If no default printer is set, give user
|
||||||
// choice of aborting or setting up a printer
|
// choice of aborting or setting up a printer
|
||||||
int32 count = Printer::CountPrinters();
|
int32 count = Printer::CountPrinters();
|
||||||
BString alertText(TR("There are no printers set up."));
|
BString alertText(
|
||||||
|
B_TRANSLATE("There are no printers set up."));
|
||||||
if (count > 0)
|
if (count > 0)
|
||||||
alertText.SetTo(
|
alertText.SetTo(B_TRANSLATE(
|
||||||
TR("There is no default printer set up."));
|
"There is no default printer set up."));
|
||||||
|
|
||||||
alertText.Append(" ");
|
alertText.Append(" ");
|
||||||
alertText.Append(TR("Would you like to set one up now?"));
|
alertText.Append(
|
||||||
|
B_TRANSLATE("Would you like to set one up now?"));
|
||||||
BAlert* alert = new BAlert("Info", alertText.String(),
|
BAlert* alert = new BAlert("Info", alertText.String(),
|
||||||
TR("No"), TR("Yes"));
|
B_TRANSLATE("No"), B_TRANSLATE("Yes"));
|
||||||
if (alert->Go() == 1) {
|
if (alert->Go() == 1) {
|
||||||
if (count == 0)
|
if (count == 0)
|
||||||
run_add_printer_panel();
|
run_add_printer_panel();
|
||||||
@@ -133,11 +135,11 @@ status_t PrintServerApp::async_thread(void* data)
|
|||||||
transportPath.String()) == B_OK) {
|
transportPath.String()) == B_OK) {
|
||||||
// If printer was created ok,
|
// If printer was created ok,
|
||||||
// ask if it needs to be the default
|
// ask if it needs to be the default
|
||||||
BString text(TR("Would you like to make @ "
|
BString text(B_TRANSLATE("Would you like to make @ "
|
||||||
"the default printer?"));
|
"the default printer?"));
|
||||||
text.ReplaceFirst("@", printerName.String());
|
text.ReplaceFirst("@", printerName.String());
|
||||||
BAlert* alert = new BAlert("", text.String(), TR("No"),
|
BAlert* alert = new BAlert("", text.String(),
|
||||||
TR("Yes"));
|
B_TRANSLATE("No"), B_TRANSLATE("Yes"));
|
||||||
if (alert->Go() == 1)
|
if (alert->Go() == 1)
|
||||||
p->app->SelectPrinter(printerName.String());
|
p->app->SelectPrinter(printerName.String());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -428,17 +428,19 @@ PrintServerApp::CreatePrinter(const char* printerName, const char* driverName,
|
|||||||
// the printer exists, but no default at all
|
// the printer exists, but no default at all
|
||||||
return B_OK;
|
return B_OK;
|
||||||
} else {
|
} else {
|
||||||
info.SetTo(TR("There already exists a printer you are going to "
|
info.SetTo(B_TRANSLATE(
|
||||||
|
"There already exists a printer you are going to "
|
||||||
"create, but it's driver could not be found! Replace?"));
|
"create, but it's driver could not be found! Replace?"));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
info.SetTo(TR("There already exists a printer you are going to "
|
info.SetTo(B_TRANSLATE(
|
||||||
|
"There already exists a printer you are going to "
|
||||||
"create, but it's not usable at all! Replace?"));
|
"create, but it's not usable at all! Replace?"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (info.Length() != 0) {
|
if (info.Length() != 0) {
|
||||||
BAlert *alert = new BAlert("Info", info.String(), TR("Cancel"),
|
BAlert *alert = new BAlert("Info", info.String(),
|
||||||
TR("OK"));
|
B_TRANSLATE("Cancel"), B_TRANSLATE("OK"));
|
||||||
alert->SetShortcut(0, B_ESCAPE);
|
alert->SetShortcut(0, B_ESCAPE);
|
||||||
if (alert->Go() == 0)
|
if (alert->Go() == 0)
|
||||||
return rc;
|
return rc;
|
||||||
|
|||||||
Reference in New Issue
Block a user