summaryrefslogtreecommitdiff
path: root/macosx/plugins/DFNet/macsrc
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-12-08 19:21:21 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-12-08 19:21:21 +0000
commitfc9dc0e8888053c61927991eb755edefadc70571 (patch)
treeeccfb684d5fd5c8a24e3ae1786a0a76b95d007d3 /macosx/plugins/DFNet/macsrc
parent643df7a7c83ad93cf98fa7f4bc10a8d4e557958e (diff)
OS X:
Localizing some strings in the Net Plug-In Changing three periods to ellipses on all localizations. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88069 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins/DFNet/macsrc')
-rwxr-xr-xmacosx/plugins/DFNet/macsrc/PluginConfigController.m11
1 files changed, 7 insertions, 4 deletions
diff --git a/macosx/plugins/DFNet/macsrc/PluginConfigController.m b/macosx/plugins/DFNet/macsrc/PluginConfigController.m
index 434a108b..0ea7951e 100755
--- a/macosx/plugins/DFNet/macsrc/PluginConfigController.m
+++ b/macosx/plugins/DFNet/macsrc/PluginConfigController.m
@@ -28,6 +28,8 @@
#define APP_ID @"net.codeplex.pcsxr.DFNet"
#define PrefsKey APP_ID @" Settings"
+#define NSLocalizedStringInBundle(key, bundle, comment) \
+ [bundle localizedStringForKey:(key) value:@"" table:nil]
static PluginConfigController *windowController = nil;
@@ -49,7 +51,7 @@ void AboutDlgProc()
NSString *path = [bundle pathForResource:@"Credits" ofType:@"rtf"];
NSAttributedString *credits;
if (path) {
- credits = [[NSAttributedString alloc] initWithPath: path
+ credits = [[NSAttributedString alloc] initWithPath:path
documentAttributes:NULL];
} else {
credits = [[NSAttributedString alloc] initWithString:@""];
@@ -99,7 +101,7 @@ void ReadConfig()
keyValues = [defaults dictionaryForKey:PrefsKey];
- conf.PortNum = [keyValues[kIPPORT] intValue];
+ conf.PortNum = [keyValues[kIPPORT] unsignedShortValue];
conf.PlayerNum = [keyValues[kPLAYERNUM] intValue];
strlcpy(conf.ipAddress, [keyValues[kIPADDRKEY] cStringUsingEncoding:NSASCIIStringEncoding], sizeof(conf.ipAddress));
}
@@ -114,14 +116,15 @@ void ReadConfig()
- (IBAction)ok:(id)sender
{
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
+ NSBundle *curBundle = [NSBundle bundleForClass:[PluginConfigController class]];
NSString *theAddress = [ipAddress stringValue];
NSInteger asciiLen = [theAddress lengthOfBytesUsingEncoding:NSASCIIStringEncoding];
if (asciiLen > (sizeof(conf.ipAddress) - 1)) {
- NSBeginAlertSheet(@"Address too long", nil, nil, nil, [self window], nil, NULL, NULL, NULL, @"The address is too long.\n\nTry to use only the IP address and not a host name.");
+ NSBeginAlertSheet(NSLocalizedStringInBundle(@"Address Too Long", curBundle, nil), nil, nil, nil, [self window], nil, NULL, NULL, NULL, @"%@", NSLocalizedStringInBundle(@"The address is too long.\n\nTry to use only the IP address and not a host name.", curBundle, nil));
return;
} else if (asciiLen == 0) {
- NSBeginAlertSheet(@"Blank address", nil, nil, nil, [self window], nil, NULL, NULL, NULL, @"The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals.");
+ NSBeginAlertSheet(NSLocalizedStringInBundle(@"Blank Address", curBundle, nil), nil, nil, nil, [self window], nil, NULL, NULL, NULL, @"%@", NSLocalizedStringInBundle(@"The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals.", curBundle, nil));
return;
}