mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 00:51:02 +00:00
Added missing internationalisation and more strings in spanish
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29197 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3a0c721f28
commit
1f0b992588
3 changed files with 31 additions and 9 deletions
|
@ -166,8 +166,8 @@ static NSPrintPanel *shared_instance;
|
|||
|
||||
/* Setup the layout popup */
|
||||
control = CONTROL(self, NSPPLayoutButton);
|
||||
list = [NSArray arrayWithObjects: @"1 up", @"2 up", @"4 up", @"6 up",
|
||||
@"8 up", nil];
|
||||
list = [NSArray arrayWithObjects: _(@"1 up"), _(@"2 up"), _(@"4 up"), _(@"6 up"),
|
||||
_(@"8 up"), nil];
|
||||
[control removeAllItems];
|
||||
for (i = 0; i < [list count]; i++)
|
||||
{
|
||||
|
@ -281,8 +281,8 @@ static NSPrintPanel *shared_instance;
|
|||
else if (tag ==NSFaxButton)
|
||||
{
|
||||
_picked = NSFaxButton;
|
||||
NSRunAlertPanel(@"Sorry", @"Faxing of print file not implemented",
|
||||
@"OK", NULL, NULL);
|
||||
NSRunAlertPanel(_(@"Sorry"), _(@"Faxing of print file not implemented"),
|
||||
_(@"OK"), NULL, NULL);
|
||||
/* Don't stop the modal session */
|
||||
return;
|
||||
}
|
||||
|
@ -451,7 +451,7 @@ static NSPrintPanel *shared_instance;
|
|||
}
|
||||
}
|
||||
else
|
||||
[control addItemWithTitle: @"Unknown"];
|
||||
[control addItemWithTitle: _(@"Unknown")];
|
||||
|
||||
/* Setup the paper feed popup */
|
||||
control = CONTROL(_optionPanel, NSPPPaperFeedButton);
|
||||
|
@ -497,7 +497,7 @@ static NSPrintPanel *shared_instance;
|
|||
}
|
||||
}
|
||||
else
|
||||
[control addItemWithTitle: @"Unknown"];
|
||||
[control addItemWithTitle: _(@"Unknown")];
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue