Small changes to strings.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37810 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
9e332eb5ef
commit
4de827d536
@ -75,8 +75,8 @@ void
|
|||||||
TimedAlert::GetLabel(BString &string)
|
TimedAlert::GetLabel(BString &string)
|
||||||
{
|
{
|
||||||
string = B_TRANSLATE("Attention!\n\nBecause of the switch from daylight "
|
string = B_TRANSLATE("Attention!\n\nBecause of the switch from daylight "
|
||||||
"saving time, your computer's clock may be an hour off. Currently, "
|
"saving time, your computer's clock may be an hour off.\n"
|
||||||
"your computer thinks it is ");
|
"Your computer thinks it is");
|
||||||
|
|
||||||
time_t t;
|
time_t t;
|
||||||
struct tm tm;
|
struct tm tm;
|
||||||
@ -89,6 +89,7 @@ TimedAlert::GetLabel(BString &string)
|
|||||||
|
|
||||||
here->FormatTime(timestring, 15, t, false);
|
here->FormatTime(timestring, 15, t, false);
|
||||||
|
|
||||||
|
string += " ";
|
||||||
string += timestring;
|
string += timestring;
|
||||||
|
|
||||||
string += B_TRANSLATE(".\n\nIs this the correct time?");
|
string += B_TRANSLATE(".\n\nIs this the correct time?");
|
||||||
@ -147,8 +148,7 @@ main(int argc, char **argv)
|
|||||||
|
|
||||||
if (index == 2) {
|
if (index == 2) {
|
||||||
index = (new BAlert("dstcheck",
|
index = (new BAlert("dstcheck",
|
||||||
B_TRANSLATE("Would you like to set the clock using the Time and"
|
B_TRANSLATE("Would you like to set the clock?"),
|
||||||
"\nDate preference utility?"),
|
|
||||||
B_TRANSLATE("No"), B_TRANSLATE("Yes")))->Go();
|
B_TRANSLATE("No"), B_TRANSLATE("Yes")))->Go();
|
||||||
|
|
||||||
if (index == 1)
|
if (index == 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user