@@ -17,7 +17,7 @@ int main(int argc, char** argv) {
1717 NSString *MSG_INSTALL_JAVA=NSLocalizedString(@" You need to have JAVA installed on your Mac!\n Visit java.com for installation instructions..." , nil );
1818 NSString *MSG_LATER=NSLocalizedString(@" Later" , nil );
1919 NSString *MSG_VISIT_JAVA_DOT_COM=NSLocalizedString(@" Java by Oracle" , nil );
20- NSString *MSG_VISIT_ADOPTOPENJDK =NSLocalizedString(@" Java by Adoptium" , nil );
20+ NSString *MSG_VISIT_ADOPTIUM =NSLocalizedString(@" Java by Adoptium" , nil );
2121
2222 NSBundle *main = [NSBundle mainBundle ];
2323 NSDictionary *info = [main infoDictionary ];
@@ -314,7 +314,7 @@ int main(int argc, char** argv) {
314314 [alert setInformativeText: [NSString stringWithFormat: @" %@ \n %@ " , expandedMessage, MSG_NO_SUITABLE_JAVA_CHECK]];
315315 [alert addButtonWithTitle: MSG_LATER];
316316 [alert addButtonWithTitle: MSG_VISIT_JAVA_DOT_COM];
317- [alert addButtonWithTitle: MSG_VISIT_ADOPTOPENJDK ];
317+ [alert addButtonWithTitle: MSG_VISIT_ADOPTIUM ];
318318 NSModalResponse res = [alert runModal ];
319319 if (res == NSAlertSecondButtonReturn ) {
320320 [[NSWorkspace sharedWorkspace ] openURL: [NSURL URLWithString: @" https://www.java.com/download/" ]];
@@ -329,7 +329,7 @@ int main(int argc, char** argv) {
329329 [alert setInformativeText: MSG_INSTALL_JAVA];
330330 [alert addButtonWithTitle: MSG_LATER];
331331 [alert addButtonWithTitle: MSG_VISIT_JAVA_DOT_COM];
332- [alert addButtonWithTitle: MSG_VISIT_ADOPTOPENJDK ];
332+ [alert addButtonWithTitle: MSG_VISIT_ADOPTIUM ];
333333 NSModalResponse res = [alert runModal ];
334334 if (res == NSAlertSecondButtonReturn ) {
335335 [[NSWorkspace sharedWorkspace ] openURL: [NSURL URLWithString: @" https://www.java.com/download/" ]];
0 commit comments