And again some more missing localization includes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28017 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2009-03-01 19:13:19 +00:00
parent 346c843533
commit 623b0e6f85
5 changed files with 8 additions and 2 deletions

View file

@ -3,6 +3,9 @@
* Resources/English.lproj/Localizable.strings: Regenerate this file.
* Resources/German.lproj/Localizable.strings: Regnerate and add
translation and escaping of non-ASCII characters.
* Source/NSColor.m
* Source/NSColorSpace.m
* Source/NSPrintInfo.m
* Source/NSAlert.m,
* Source/NSWindow.m,
* Source/GSPrintOperation.m,

View file

@ -48,6 +48,7 @@
#include "AppKit/NSGraphics.h"
#include "AppKit/PSOperators.h"
#include "GNUstepGUI/GSTheme.h"
#include "GSGuiPrivate.h"
static Class NSColorClass;

View file

@ -29,6 +29,7 @@
#import <Foundation/Foundation.h>
#import <AppKit/NSColorSpace.h>
#include "GSGuiPrivate.h"
@implementation NSColorSpace

View file

@ -209,8 +209,8 @@ static BOOL menuBarVisible = YES;
- (void) _organizeMenu
{
NSString *infoString = NSLocalizedString(@"Info", @"Info");
NSString *servicesString = NSLocalizedString(@"Services", @"Services");
NSString *infoString = _(@"Info");
NSString *servicesString = _(@"Services");
int i;
if ([self isEqual: [NSApp mainMenu]] == YES)

View file

@ -36,6 +36,7 @@
#include "AppKit/NSPrinter.h"
#include "AppKit/NSPrintInfo.h"
#include "GNUstepGUI/GSPrinting.h"
#include "GSGuiPrivate.h"
// Class variables:
static NSPrintInfo *sharedPrintInfo = nil;