diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-12-08 19:21:21 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-12-08 19:21:21 +0000 |
| commit | fc9dc0e8888053c61927991eb755edefadc70571 (patch) | |
| tree | eccfb684d5fd5c8a24e3ae1786a0a76b95d007d3 /macosx/plugins/DFNet | |
| parent | 643df7a7c83ad93cf98fa7f4bc10a8d4e557958e (diff) | |
| download | pcsxr-fc9dc0e8888053c61927991eb755edefadc70571.tar.gz | |
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')
5 files changed, 23 insertions, 5 deletions
diff --git a/macosx/plugins/DFNet/English.lproj/Localizable.strings b/macosx/plugins/DFNet/English.lproj/Localizable.strings index f48d7085..31bb46c2 100644 --- a/macosx/plugins/DFNet/English.lproj/Localizable.strings +++ b/macosx/plugins/DFNet/English.lproj/Localizable.strings @@ -9,3 +9,8 @@ "Error allocating memory!\n" = "Error allocating memory!\n"; "error connecting to %s: %s\n" = "Error connecting to %s: %s\n"; "Socket Driver" = "Socket Driver"; + +"Address Too Long" = "Address Too Long"; +"The address is too long.\n\nTry to use only the IP address and not a host name." = "The address is too long.\n\nTry to use only the IP address and not a host name."; +"Blank Address" = "Blank Address"; +"The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals." = "The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals."; diff --git a/macosx/plugins/DFNet/fr.lproj/Localizable.strings b/macosx/plugins/DFNet/fr.lproj/Localizable.strings index 0361887a..77e144e3 100644 --- a/macosx/plugins/DFNet/fr.lproj/Localizable.strings +++ b/macosx/plugins/DFNet/fr.lproj/Localizable.strings @@ -9,3 +9,8 @@ "Error allocating memory!\n" = "Erreur d'allocation mémoire !\n"; "error connecting to %s: %s\n" = "Erreur lors de la connection à %s: %s\n"; "Socket Driver" = "Pilote Socket"; + +//"Address Too Long" = "Address Too Long"; +//"The address is too long.\n\nTry to use only the IP address and not a host name." = "The address is too long.\n\nTry to use only the IP address and not a host name."; +//"Blank Address" = "Blank Address"; +//"The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals." = "The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals."; diff --git a/macosx/plugins/DFNet/hu.lproj/Localizable.strings b/macosx/plugins/DFNet/hu.lproj/Localizable.strings index 570d94da..f3baef54 100644 --- a/macosx/plugins/DFNet/hu.lproj/Localizable.strings +++ b/macosx/plugins/DFNet/hu.lproj/Localizable.strings @@ -9,3 +9,8 @@ "Error allocating memory!\n" = "Memória kiosztási hiba!\n"; "error connecting to %s: %s\n" = "hiba a következőhöz történő kapcsolódáskor: %s: %s\n"; "Socket Driver" = "Socket illesztőprogram"; + +//"Address Too Long" = "Address Too Long"; +//"The address is too long.\n\nTry to use only the IP address and not a host name." = "The address is too long.\n\nTry to use only the IP address and not a host name."; +//"Blank Address" = "Blank Address"; +//"The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals." = "The address specified is either blank, or can't be converted to ASCII.\n\nTry connecting directly using the IP address using latin numerals."; 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; } diff --git a/macosx/plugins/DFNet/zh-Hans.lproj/SockDialog.strings b/macosx/plugins/DFNet/zh-Hans.lproj/SockDialog.strings index 20524804..ba961b3d 100644 --- a/macosx/plugins/DFNet/zh-Hans.lproj/SockDialog.strings +++ b/macosx/plugins/DFNet/zh-Hans.lproj/SockDialog.strings @@ -3,7 +3,7 @@ "1.title" = "连接中…"; /* Class = "NSTextFieldCell"; title = "连接等待中..."; ObjectID = "4"; */ -"4.title" = "连接等待中..."; +"4.title" = "连接等待中…"; /* Class = "NSButtonCell"; title = "取消"; ObjectID = "27"; */ "27.title" = "取消"; |
