diff --git a/xwords4/wince/LocalizedStrIncludes.h b/xwords4/wince/LocalizedStrIncludes.h index 3c5bf670d..43a08c585 100755 --- a/xwords4/wince/LocalizedStrIncludes.h +++ b/xwords4/wince/LocalizedStrIncludes.h @@ -46,6 +46,11 @@ enum { STR_ROBOT_MOVED, STR_REMOTE_MOVED, + STR_PASSED, + STRSD_SUMMARYSCORED, + STRD_TRADED, + STR_LOSTTURN, + STR_NOT_USED }; diff --git a/xwords4/wince/cemain.c b/xwords4/wince/cemain.c index 91eabb056..cd9c8ba43 100755 --- a/xwords4/wince/cemain.c +++ b/xwords4/wince/cemain.c @@ -1913,6 +1913,15 @@ ce_util_getUserString( XW_UtilCtxt* uc, XP_U16 stringCode ) case STR_REMOTE_MOVED: return (XP_UCHAR*)"Remote player made this move:" XP_CR; + case STR_PASSED: + return (XP_UCHAR*)"Passed"; + case STRSD_SUMMARYSCORED: + return (XP_UCHAR*)"%s:%d"; + case STRD_TRADED: + return (XP_UCHAR*)"Traded %d"; + case STR_LOSTTURN: + return (XP_UCHAR*)"Lost turn"; + default: XP_LOGF( "stringCode=%d", stringCode ); return (XP_UCHAR*)"unknown code";