mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
1e70a67c30
commit
9b9802a2f7
2 changed files with 8 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue