From b19d894f27438f1d83765db84a931de2d506e82a Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 5 Jan 2016 14:00:43 -0500 Subject: [PATCH] Don't try to translate "SOGo" --- UI/Common/English.lproj/Localizable.strings | 2 -- UI/Common/UIxPageFrame.m | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/UI/Common/English.lproj/Localizable.strings b/UI/Common/English.lproj/Localizable.strings index b6aab2b63..54f38f4a2 100644 --- a/UI/Common/English.lproj/Localizable.strings +++ b/UI/Common/English.lproj/Localizable.strings @@ -104,5 +104,3 @@ "Loading" = "Loading"; "No such user." = "No such user."; "You cannot (un)subscribe to a folder that you own!" = "You cannot (un)subscribe to a folder that you own!"; -"SOGo" = "SOGo"; -"Modules" = "Modules"; diff --git a/UI/Common/UIxPageFrame.m b/UI/Common/UIxPageFrame.m index 0f8a8cb0c..3be6ddbb1 100644 --- a/UI/Common/UIxPageFrame.m +++ b/UI/Common/UIxPageFrame.m @@ -1,7 +1,7 @@ /* Copyright (C) 2004-2005 SKYRIX Software AG - Copyright (C) 2005-2012 Inverse inc. + Copyright (C) 2005-2015 Inverse inc. This file is part of SOGo. @@ -90,7 +90,7 @@ sd = [SOGoSystemDefaults sharedSystemDefaults]; pageTitle = [sd pageTitle]; if (pageTitle == nil || ![pageTitle length]) - pageTitle = [self labelForKey: @"SOGo"]; + pageTitle = (@"SOGo"); } return pageTitle;