mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
add strings for relay errors
This commit is contained in:
parent
cf5906eacf
commit
77a8df77ac
1 changed files with 13 additions and 0 deletions
|
@ -2093,6 +2093,19 @@ ce_util_userError( XW_UtilCtxt* uc, UtilErrID id )
|
|||
message = "Tile assignment can't be undone.";
|
||||
break;
|
||||
|
||||
case ERR_RELAY_BASE + XWRELAY_ERROR_TIMEOUT:
|
||||
message = "The relay timed you out; usually that means "
|
||||
"the other players didn't show.";
|
||||
break;
|
||||
case ERR_RELAY_BASE + XWRELAY_ERROR_HEART_YOU:
|
||||
message = "You were disconnected from relay because it didn't "
|
||||
"hear from you in too long.";
|
||||
break;
|
||||
case ERR_RELAY_BASE + XWRELAY_ERROR_HEART_OTHER:
|
||||
case ERR_RELAY_BASE + XWRELAY_ERROR_LOST_OTHER:
|
||||
message = "The relay has lost contact with a device in this game.";
|
||||
break;
|
||||
|
||||
default:
|
||||
message = "unknown errorcode ID!!!";
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue