Corrected issue with previous change.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20560 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-01-15 11:16:00 +00:00
parent 1e70a67c30
commit 9b9802a2f7
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2005-01-15 06:17 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSUndoManager.m: Undid previous change here.
2005-01-15 06:13 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSUndoManager.m: Localized undo/redo menu title.

View file

@ -656,11 +656,11 @@
{
if ([actionName isEqual: @""])
{
return _(@"Redo");
return @"Redo";
}
else
{
return [NSString stringWithFormat: @"%@ %@", _(@"Redo"), actionName];
return [NSString stringWithFormat: @"Redo %@", actionName];
}
}
return actionName;
@ -933,11 +933,11 @@
{
if ([actionName isEqual: @""])
{
return _(@"Undo");
return @"Undo";
}
else
{
return [NSString stringWithFormat: @"%@ %@", _(@"Undo"), actionName];
return [NSString stringWithFormat: @"Undo %@", actionName];
}
}
return actionName;