mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
add new warning message
This commit is contained in:
parent
32cad79f1c
commit
865435b785
3 changed files with 13 additions and 0 deletions
|
@ -41,6 +41,10 @@
|
|||
{ "STR_TOO_FEW_TILES", "Too few tiles left to trade." },
|
||||
{ "STR_CANT_UNDO_TILEASSIGN", "Nothing to undo. (Initial tile picking "
|
||||
"cannot be undone.)" },
|
||||
{ "STR_CANT_HINT_WHILE_DISABLED", "The hint feature is disabled for this "
|
||||
"game. Enable it for a new game using the "
|
||||
"Preferences dialog." },
|
||||
|
||||
{ "STR_VALUES_TITLE", "Counts and Values" },
|
||||
{ "STR_REMAINS_TITLE","Remaining tiles" },
|
||||
{ "STRS_VALUES_HEADER", "%s counts/values:\n" },
|
||||
|
|
|
@ -43,6 +43,11 @@
|
|||
#endif
|
||||
{ "STR_TOO_FEW_TILES", "Pas assez de lettres pour échanger." },
|
||||
{ "STR_CANT_UNDO_TILEASSIGN", "Impossible d'annuler. (Le tirage initial ne peut être annulé.)" },
|
||||
/* translate me */
|
||||
{ "STR_CANT_HINT_WHILE_DISABLED", "The hint feature is disabled for this "
|
||||
"game. Enable it for a new game using the "
|
||||
"Preferences dialog." },
|
||||
|
||||
{ "STR_VALUES_TITLE", "Nombres et Valeurs" },
|
||||
{ "STR_REMAINS_TITLE","Lettres restantes" },
|
||||
{ "STRS_VALUES_HEADER", "%s nombres/valeurs :\n" },
|
||||
|
|
|
@ -3661,6 +3661,10 @@ palm_util_userError( XW_UtilCtxt* uc, UtilErrID id )
|
|||
case ERR_CANT_UNDO_TILEASSIGN:
|
||||
strID = STR_CANT_UNDO_TILEASSIGN;
|
||||
break;
|
||||
|
||||
case ERR_CANT_HINT_WHILE_DISABLED:
|
||||
strID = STR_CANT_HINT_WHILE_DISABLED;
|
||||
break;
|
||||
|
||||
#ifdef XWFEATURE_RELAY
|
||||
case ERR_RELAY_BASE + XWRELAY_ERROR_TIMEOUT:
|
||||
|
|
Loading…
Reference in a new issue