mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 13:20:47 +00:00
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:
parent
346c843533
commit
623b0e6f85
5 changed files with 8 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
#include "AppKit/NSGraphics.h"
|
||||
#include "AppKit/PSOperators.h"
|
||||
#include "GNUstepGUI/GSTheme.h"
|
||||
#include "GSGuiPrivate.h"
|
||||
|
||||
static Class NSColorClass;
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/NSColorSpace.h>
|
||||
#include "GSGuiPrivate.h"
|
||||
|
||||
@implementation NSColorSpace
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue