diff --git a/swad_action_list.c b/swad_action_list.c index ab20305c..6166704b 100644 --- a/swad_action_list.c +++ b/swad_action_list.c @@ -1585,7 +1585,7 @@ const struct Act_Actions ActLst_Actions[ActLst_NUM_ACTIONS] = [ActSeeOneNot ] = {1164,-1,TabUnk,ActSeeAllNot ,0x3F8,0x3C7, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_GetHighLightedNotCod ,Not_ListFullNotices ,NULL}, [ActWriNot ] = { 59,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Not_ShowFormNotice ,NULL}, - [ActRcvNot ] = { 60,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_ReceiveNotice ,Not_ListFullNotices ,NULL}, + [ActNewNot ] = { 60,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_ReceiveNotice ,Not_ListFullNotices ,NULL}, [ActHidNot ] = { 763,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_HideActiveNotice ,Not_ListFullNotices ,NULL}, [ActUnhNot ] = { 764,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,Not_RevealHiddenNotice ,Not_ListFullNotices ,NULL}, [ActReqRemNot ] = {1472,-1,TabUnk,ActSeeAllNot ,0x220,0x200, 0, 0, 0, 0, 0,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Not_ReqRemNotice ,NULL}, @@ -1952,7 +1952,7 @@ Act_Action_t ActLst_FromActCodToAction[1 + ActLst_MAX_ACTION_COD] = // Do not re -1, // #57 (obsolete action) -1, // #58 (obsolete action) ActWriNot, // #59 - ActRcvNot, // #60 + ActNewNot, // #60 -1, // #61 (obsolete action) ActRemUsrGbl, // #62 -1, // #63 (obsolete action) diff --git a/swad_action_list.h b/swad_action_list.h index 086aa034..f7508ed3 100644 --- a/swad_action_list.h +++ b/swad_action_list.h @@ -1485,7 +1485,7 @@ #define ActRemAnn (ActUnfSevTch + 11) #define ActSeeOneNot (ActUnfSevTch + 12) #define ActWriNot (ActUnfSevTch + 13) -#define ActRcvNot (ActUnfSevTch + 14) +#define ActNewNot (ActUnfSevTch + 14) #define ActHidNot (ActUnfSevTch + 15) #define ActUnhNot (ActUnfSevTch + 16) #define ActReqRemNot (ActUnfSevTch + 17) diff --git a/swad_changelog.h b/swad_changelog.h index a612dfd2..c718f746 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -629,10 +629,11 @@ TODO: Emilce Barrera Mesa: Podr TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen. */ -#define Log_PLATFORM_VERSION "SWAD 22.107.27 (2023-05-09)" +#define Log_PLATFORM_VERSION "SWAD 22.107.28 (2023-05-09)" #define CSS_FILE "swad22.107.17.css" #define JS_FILE "swad22.49.js" /* + Version 22.107.28:May 09, 2023 Changes in edition of notices. (337707 lines) Version 22.107.27:May 09, 2023 Changes in edition of links. (337750 lines) Version 22.107.26:May 09, 2023 Changes in edition of holidays. (337740 lines) Version 22.107.25:May 09, 2023 Changes in edition of games. (337760 lines) diff --git a/swad_notice.c b/swad_notice.c index 7fcdfe06..b32498ae 100644 --- a/swad_notice.c +++ b/swad_notice.c @@ -103,14 +103,14 @@ void Not_ShowFormNotice (void) extern const char *Hlp_COMMUNICATION_Notices; extern const char *Txt_The_notice_will_appear_as_a_yellow_note_; extern const char *Txt_Notice; - extern const char *Txt_Create_notice; + extern const char *Txt_Create; /***** Help message *****/ Ale_ShowAlert (Ale_INFO,Txt_The_notice_will_appear_as_a_yellow_note_, Gbl.Hierarchy.Crs.FullName); /***** Begin form *****/ - Frm_BeginForm (ActRcvNot); + Frm_BeginForm (ActNewNot); /***** Begin box *****/ Box_BoxBegin (NULL,Txt_Notice, @@ -125,7 +125,7 @@ void Not_ShowFormNotice (void) HTM_TEXTAREA_End (); /***** Send button and end box *****/ - Box_BoxWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create_notice); + Box_BoxWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create); /***** End form *****/ Frm_EndForm (); diff --git a/swad_place.c b/swad_place.c index 9c36a6b4..8bcb6837 100644 --- a/swad_place.c +++ b/swad_place.c @@ -676,7 +676,7 @@ void Plc_ContEditAfterChgPlc (void) static void Plc_PutFormToCreatePlace (void) { - extern const char *Txt_Create_place; + extern const char *Txt_Create; /***** Begin form *****/ Frm_BeginForm (ActNewPlc); @@ -725,7 +725,7 @@ static void Plc_PutFormToCreatePlace (void) HTM_TR_End (); /***** End table, send button and end box *****/ - Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create_place); + Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create); /***** End form *****/ Frm_EndForm (); diff --git a/swad_text.c b/swad_text.c index 63985cad..3bb26faa 100644 --- a/swad_text.c +++ b/swad_text.c @@ -6779,29 +6779,6 @@ const char *Txt_Create_link = "Create link"; // Çeviri lazim! #endif -const char *Txt_Create_notice = -#if L==1 // ca - "Crear avís"; -#elif L==2 // de - "Erstelle Ankündigung"; -#elif L==3 // en - "Create notice"; -#elif L==4 // es - "Crear aviso"; -#elif L==5 // fr - "Créer avis"; -#elif L==6 // gn - "Crear aviso"; // Okoteve traducción -#elif L==7 // it - "Crea avviso"; -#elif L==8 // pl - "Utwórz powiadomienie"; -#elif L==9 // pt - "Criar aviso"; -#elif L==10 // tr - "Create notice"; // Çeviri lazim! -#endif - const char *Txt_Create_BR_notification = #if L==1 // ca "Crear
notificació"; @@ -6848,29 +6825,6 @@ const char *Txt_Create_password = "Şifre oluştur"; #endif -const char *Txt_Create_place = -#if L==1 // ca - "Crear lloc"; -#elif L==2 // de - "Standort eingeben"; -#elif L==3 // en - "Create place"; -#elif L==4 // es - "Crear lugar"; -#elif L==5 // fr - "Créer emplacement"; -#elif L==6 // gn - "Crear lugar"; // Okoteve traducción -#elif L==7 // it - "Crea localit`"; -#elif L==8 // pl - "Utwórz miejsce"; -#elif L==9 // pt - "Criar localização"; -#elif L==10 // tr - "Create place"; // Çeviri lazim! -#endif - const char *Txt_Create_plugin = #if L==1 // ca "Crear complement"; diff --git a/swad_text_action.c b/swad_text_action.c index e49fa038..ae1b9022 100644 --- a/swad_text_action.c +++ b/swad_text_action.c @@ -3420,25 +3420,25 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = , [ActNewPlc] = #if L==1 // ca - "Request creation of a place" // Necessita traducció + "Crear lloc" #elif L==2 // de - "Request creation of a place" // Need Übersetzung + "Standort eingeben" #elif L==3 // en - "Request creation of a place" + "Create place" #elif L==4 // es - "Solicitar creación de un lugar" + "Crear lugar" #elif L==5 // fr - "Request creation of a place" // Besoin de traduction + "Créer emplacement" #elif L==6 // gn - "Solicitar creación de un lugar" // Okoteve traducción + "Crear lugar" // Okoteve traducción #elif L==7 // it - "Request creation of a place" // Bisogno di traduzione + "Crea localit`" #elif L==8 // pl - "Request creation of a place" // Potrzebujesz tlumaczenie + "Utwórz miejsce" #elif L==9 // pt - "Request creation of a place" // Precisa de tradução + "Criar localização" #elif L==10 // tr - "Request creation of a place" // Çeviri lazim! + "Create place" // Çeviri lazim! #endif , [ActRemPlc] = @@ -28904,27 +28904,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] = "Write a new notice" // Çeviri lazim! #endif , - [ActRcvNot] = + [ActNewNot] = #if L==1 // ca - "Create new notice" // Necessita traducció + "Crear avís" #elif L==2 // de - "Create new notice" // Need Übersetzung + "Erstelle Ankündigung" #elif L==3 // en - "Create new notice" + "Create notice" #elif L==4 // es - "Crear nuevo aviso" + "Crear aviso" #elif L==5 // fr - "Create new notice" // Besoin de traduction + "Créer avis" #elif L==6 // gn - "Crear nuevo aviso" // Okoteve traducción + "Crear aviso" // Okoteve traducción #elif L==7 // it - "Create new notice" // Bisogno di traduzione + "Crea avviso" #elif L==8 // pl - "Create new notice" // Potrzebujesz tlumaczenie + "Utwórz powiadomienie" #elif L==9 // pt - "Create new notice" // Precisa de tradução + "Criar aviso" #elif L==10 // tr - "Create new notice" // Çeviri lazim! + "Create notice" // Çeviri lazim! #endif , [ActHidNot] =