Ticket #5918: mail.patch
File mail.patch, 1.3 KB (added by , 15 years ago) |
---|
-
src/preferences/mail/Account.cpp
304 304 if (!BEntry(path.Path()).Exists()) { 305 305 find_directory(B_BEOS_ADDONS_DIRECTORY,&path); 306 306 path.Append(kSystemFilterAddOnPath); 307 path.Append( TR ("New mail notification"));307 path.Append("New mail notification"); 308 308 } 309 309 BEntry(path.Path()).GetRef(&ref); 310 310 fInbound->AddFilter(msg,ref); … … 312 312 // Inbox 313 313 path = addOnPath; 314 314 path.Append(kSystemFilterAddOnPath); 315 path.Append( TR ("Inbox"));315 path.Append("Inbox"); 316 316 if (!BEntry(path.Path()).Exists()) { 317 317 find_directory(B_BEOS_ADDONS_DIRECTORY,&path); 318 318 path.Append(kSystemFilterAddOnPath); 319 path.Append( TR ("Inbox"));319 path.Append("Inbox"); 320 320 } 321 321 BEntry(path.Path()).GetRef(&ref); 322 322 fInbound->AddFilter(msg,ref); … … 347 347 348 348 path = addOnPath; 349 349 path.Append(kSystemFilterAddOnPath); 350 path.Append( TR ("Outbox"));350 path.Append("Outbox"); 351 351 if (!BEntry(path.Path()).Exists()) { 352 352 find_directory(B_BEOS_ADDONS_DIRECTORY,&path); 353 353 path.Append(kSystemFilterAddOnPath); 354 path.Append( TR ("Outbox"));354 path.Append("Outbox"); 355 355 } 356 356 BEntry(path.Path()).GetRef(&ref); 357 357 fOutbound->AddFilter(msg,ref);