strings and dialog for renaming and confirming deletion of saved games

This commit is contained in:
ehouse 2005-01-21 07:54:10 +00:00
parent 880c602ebb
commit 5162df5625

View file

@ -242,6 +242,17 @@ RESOURCE TBUF64 r_confirm_delgame {
buf = "Are you sure you want delete the selected game?";
}
RESOURCE TBUF64 r_alert_no_rename_open_game {
buf = "You can't rename the current game.";
}
RESOURCE TBUF32 r_alert_rename_target_exists {
buf = "Name already in use.";
}
RESOURCE TBUF32 r_alert_rename_target_badname {
buf = "Illegal game name";
}
#define XW_EFLAGS EEikEdwinNoAutoSelection | EEikEdwinReadOnly | EEikEdwinResizable
@ -525,3 +536,18 @@ RESOURCE DIALOG r_xwords_savedgames_dlg
}
};
}
RESOURCE DIALOG r_xwords_editname_dlg
{
title = "Change name";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait | EEikDialogFlagNotifyEsc;
items = {
DLG_LINE {
prompt = "New name";
id = EEditNameEdwin;
type = EEikCtFileNameEd;
control = FILENAMEEDITOR { width = 32; };
}
};
}