diff --git a/macosx/BonjourController.m b/macosx/BonjourController.m index d75492e67..4cee655a3 100644 --- a/macosx/BonjourController.m +++ b/macosx/BonjourController.m @@ -63,12 +63,12 @@ BonjourController * fDefaultController = nil; - (void) netService: (NSNetService *) sender didNotPublish: (NSDictionary *) errorDict { - NSLog(@"Failed to publish the web interface service on port: %d, with error: %@", [sender port], errorDict); + NSLog(@"Failed to publish the web interface service on port %d, with error: %@", [sender port], errorDict); } - (void) netService: (NSNetService *) sender didNotResolve: (NSDictionary *) errorDict { - NSLog(@"Failed to resolve the web interface service on port: %d, with error: %@", [sender port], errorDict); + NSLog(@"Failed to resolve the web interface service on port %d, with error: %@", [sender port], errorDict); } @end diff --git a/macosx/zh_TW.lproj/Localizable.strings b/macosx/zh_TW.lproj/Localizable.strings index eecd3fd76..36490275f 100644 Binary files a/macosx/zh_TW.lproj/Localizable.strings and b/macosx/zh_TW.lproj/Localizable.strings differ