1
0
mirror of synced 2024-11-23 23:21:06 +01:00

chore - Error message typo correction (#751)

This commit is contained in:
Lolly 2024-11-19 01:37:20 +08:00 committed by GitHub
parent da8dc1cad7
commit 5e4df1ea1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ internal class CSystemError : CStage {
case Errno.ENO_SKINNOTFOUND: { case Errno.ENO_SKINNOTFOUND: {
ErrorMessage += "No compatible skin was found.\n"; ErrorMessage += "No compatible skin was found.\n";
ErrorMessage += "Please ensure that you have a compatible skin within your System folder.\n"; ErrorMessage += "Please ensure that you have a compatible skin within your System folder.\n";
ErrorMessage += "If you did not installed a skin, please do so through the OpenTaiko Hub (Skins tab).\n"; ErrorMessage += "If you have not installed a skin, please do so through the OpenTaiko Hub (Skins tab).\n";
ErrorMessage += "If this does not resolve the issue, please try updating your skins through the OpenTaiko Hub.\n"; ErrorMessage += "If this does not resolve the issue, please try updating your skins through the OpenTaiko Hub.\n";
break; break;
} }
@ -67,7 +67,7 @@ internal class CSystemError : CStage {
}; };
// Append a call to contact if necessary // Append a call to contact if necessary
ErrorMessage += "\nIf the error persits, please contact us through the links provided on the OpenTaiko Hub."; ErrorMessage += "\nIf the error persists, please contact us through the links provided on the OpenTaiko Hub.";
} }
// Constructor // Constructor