Version 14.34.4

This commit is contained in:
Antonio Cañas Vargas 2014-12-08 23:08:37 +01:00
parent 5502ec4092
commit 3804950434
4 changed files with 251 additions and 227 deletions

View File

@ -35,12 +35,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.34.3 (2014/12/08)"
#define Log_PLATFORM_VERSION "SWAD 14.34.4 (2014/12/08)"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h | tail -1
/*
Version 14.34.4 :Dic 08, 2014 Some messages translated. (170623 lines)
Version 14.34.3 :Dic 08, 2014 Tables are printed with rounded corners. (170602 lines)
Version 14.34.2 :Dic 08, 2014 Button to show more details on list of attendances. (170728 lines)
Version 14.34.1 :Dic 08, 2014 Translation of a message when refreshing list of attendances. (170710 lines)

View File

@ -1740,6 +1740,7 @@ void Inf_EditPlainTxtInfo (void)
void Inf_EditRichTxtInfo (void)
{
extern const char *Txt_The_rich_text_editor_is_not_yet_available;
extern const char *Txt_Send;
Inf_InfoType_t InfoType = Inf_AsignInfoType ();
char Txt[Cns_MAX_BYTES_LONG_TEXT+1];
@ -1756,7 +1757,7 @@ void Inf_EditRichTxtInfo (void)
if (Gbl.Usrs.Me.UsrDat.UsrCod != 1346 &&
Gbl.Usrs.Me.UsrDat.UsrCod != 24383) // TODO: Remove this when rich text editor is available
{
Lay_ShowAlert (Lay_WARNING,"El editor de texto enriquecido aún no está disponible."); // Need translation!!!!
Lay_ShowAlert (Lay_WARNING,Txt_The_rich_text_editor_is_not_yet_available);
/***** Show again the form to select and send course info *****/
Inf_FormsToSelSendInfo ();

File diff suppressed because it is too large Load Diff

View File

@ -3358,12 +3358,13 @@ static void Usr_PrintAccountSeparator (void)
static void Usr_PutLinkToRemoveMyAccount (void)
{
extern const char *The_ClassFormul[The_NUM_THEMES];
extern const char *Txt_Remove_account;
Act_FormStart (ActUpdOthUsrDat);
Usr_PutParamOtherUsrCodEncrypted (Gbl.Usrs.Me.UsrDat.EncryptedUsrCod);
Par_PutHiddenParamUnsigned ("RegRemAction",(unsigned) Usr_ELIMINATE_ONE_USR_FROM_PLATFORM);
Act_LinkFormSubmit ("Eliminar cuenta",The_ClassFormul[Gbl.Prefs.Theme]);
Lay_PutSendIcon ("delon","Eliminar cuenta","Eliminar cuenta"); // Need translation!!!!
Act_LinkFormSubmit (Txt_Remove_account,The_ClassFormul[Gbl.Prefs.Theme]);
Lay_PutSendIcon ("delon",Txt_Remove_account,Txt_Remove_account);
fprintf (Gbl.F.Out,"</form>");
}