mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Undo improvements.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20559 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d8e7174773
commit
0569bc7afb
2 changed files with 8 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue