From 212c4c0a2007031450899cadd6b48008f7409746 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 6 May 2010 13:23:46 +0000 Subject: [PATCH] * Applied patch by yourpalal that fixes #5918, ie. removed the accidental localizing of add-on paths. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36648 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/mail/Account.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/preferences/mail/Account.cpp b/src/preferences/mail/Account.cpp index 964d3ec30b..a6458b760c 100644 --- a/src/preferences/mail/Account.cpp +++ b/src/preferences/mail/Account.cpp @@ -304,7 +304,7 @@ void Account::CreateInbound() if (!BEntry(path.Path()).Exists()) { find_directory(B_BEOS_ADDONS_DIRECTORY,&path); path.Append(kSystemFilterAddOnPath); - path.Append(TR ("New mail notification")); + path.Append("New mail notification"); } BEntry(path.Path()).GetRef(&ref); fInbound->AddFilter(msg,ref); @@ -312,11 +312,11 @@ void Account::CreateInbound() // Inbox path = addOnPath; path.Append(kSystemFilterAddOnPath); - path.Append(TR ("Inbox")); + path.Append("Inbox"); if (!BEntry(path.Path()).Exists()) { find_directory(B_BEOS_ADDONS_DIRECTORY,&path); path.Append(kSystemFilterAddOnPath); - path.Append(TR ("Inbox")); + path.Append("Inbox"); } BEntry(path.Path()).GetRef(&ref); fInbound->AddFilter(msg,ref); @@ -347,11 +347,11 @@ void Account::CreateOutbound() path = addOnPath; path.Append(kSystemFilterAddOnPath); - path.Append(TR ("Outbox")); + path.Append("Outbox"); if (!BEntry(path.Path()).Exists()) { find_directory(B_BEOS_ADDONS_DIRECTORY,&path); path.Append(kSystemFilterAddOnPath); - path.Append(TR ("Outbox")); + path.Append("Outbox"); } BEntry(path.Path()).GetRef(&ref); fOutbound->AddFilter(msg,ref);