formatting fixes; add string for attempt to undo tile assignment.

This commit is contained in:
ehouse 2004-05-14 09:05:45 +00:00
parent dc629a2706
commit dca1e27fa5

View file

@ -135,6 +135,10 @@ linux_getErrString( UtilErrID id )
message = "Empty squares cannot separate tiles played."; message = "Empty squares cannot separate tiles played.";
break; break;
case ERR_TOO_FEW_TILES_LEFT_TO_TRADE:
message = "Too few tiles left to trade.";
break;
case ERR_TWO_TILES_FIRST_MOVE: case ERR_TWO_TILES_FIRST_MOVE:
message = "Must play two or more pieces on the first move."; message = "Must play two or more pieces on the first move.";
break; break;
@ -158,6 +162,9 @@ linux_getErrString( UtilErrID id )
message = "Conflict between Host and Guest dictionaries; Host wins."; message = "Conflict between Host and Guest dictionaries; Host wins.";
XP_WARNF( "GTK may have problems here." ); XP_WARNF( "GTK may have problems here." );
break; break;
case ERR_CANT_UNDO_TILEASSIGN:
message = "Tile assignment can't be undone.";
break;
default: default:
message = "<unrecognized error code reported>"; message = "<unrecognized error code reported>";
} }