Version 22.107.14:May 07, 2023 Changes in edition of announcements.

This commit is contained in:
acanas 2023-05-07 23:58:32 +02:00
parent d084861e52
commit a57abde31e
6 changed files with 19 additions and 41 deletions

View File

@ -1578,7 +1578,7 @@ const struct Act_Actions ActLst_Actions[ActLst_NUM_ACTIONS] =
// Actions not in menu: // Actions not in menu:
[ActWriAnn ] = {1237,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_ShowFormAnnouncement ,NULL}, [ActWriAnn ] = {1237,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_ShowFormAnnouncement ,NULL},
[ActRcvAnn ] = {1238,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_ReceiveAnnouncement ,NULL}, [ActNewAnn ] = {1238,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_ReceiveAnnouncement ,NULL},
[ActHidAnn ] = {1470,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ann_HideActiveAnnouncement ,Ann_ShowAllAnnouncements ,NULL}, [ActHidAnn ] = {1470,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ann_HideActiveAnnouncement ,Ann_ShowAllAnnouncements ,NULL},
[ActUnhAnn ] = {1471,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ann_RevealHiddenAnnouncement ,Ann_ShowAllAnnouncements ,NULL}, [ActUnhAnn ] = {1471,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,Ann_RevealHiddenAnnouncement ,Ann_ShowAllAnnouncements ,NULL},
[ActRemAnn ] = {1236,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_RemoveAnnouncement ,NULL}, [ActRemAnn ] = {1236,-1,TabUnk,ActSeeAnn ,0x200,0x200,0x200,0x200,0x200,0x200,0x200,Act_CONT_NORM,Act_BRW_1ST_TAB,NULL ,Ann_RemoveAnnouncement ,NULL},
@ -3130,7 +3130,7 @@ Act_Action_t ActLst_FromActCodToAction[1 + ActLst_MAX_ACTION_COD] = // Do not re
ActSeeAnn, // #1235 ActSeeAnn, // #1235
ActRemAnn, // #1236 ActRemAnn, // #1236
ActWriAnn, // #1237 ActWriAnn, // #1237
ActRcvAnn, // #1238 ActNewAnn, // #1238
-1, // #1239 (obsolete action) -1, // #1239 (obsolete action)
-1, // #1240 (obsolete action) -1, // #1240 (obsolete action)
-1, // #1241 (obsolete action) -1, // #1241 (obsolete action)

View File

@ -1479,7 +1479,7 @@
#define ActReqMaiUsr (ActUnfSevTch + 6) #define ActReqMaiUsr (ActUnfSevTch + 6)
// Secondary actions // Secondary actions
#define ActWriAnn (ActUnfSevTch + 7) #define ActWriAnn (ActUnfSevTch + 7)
#define ActRcvAnn (ActUnfSevTch + 8) #define ActNewAnn (ActUnfSevTch + 8)
#define ActHidAnn (ActUnfSevTch + 9) #define ActHidAnn (ActUnfSevTch + 9)
#define ActUnhAnn (ActUnfSevTch + 10) #define ActUnhAnn (ActUnfSevTch + 10)
#define ActRemAnn (ActUnfSevTch + 11) #define ActRemAnn (ActUnfSevTch + 11)

View File

@ -305,10 +305,10 @@ void Ann_ShowFormAnnouncement (void)
extern const char *Txt_MSG_Subject; extern const char *Txt_MSG_Subject;
extern const char *Txt_MSG_Content; extern const char *Txt_MSG_Content;
extern const char *Txt_Users; extern const char *Txt_Users;
extern const char *Txt_Create_announcement; extern const char *Txt_Create;
/***** Begin form *****/ /***** Begin form *****/
Frm_BeginForm (ActRcvAnn); Frm_BeginForm (ActNewAnn);
/***** Begin box and table *****/ /***** Begin box and table *****/
Box_BoxTableBegin (NULL,Txt_Announcement, Box_BoxTableBegin (NULL,Txt_Announcement,
@ -343,7 +343,7 @@ void Ann_ShowFormAnnouncement (void)
HTM_TR_End (); HTM_TR_End ();
/***** End table, send button and end box *****/ /***** End table, send button and end box *****/
Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create_announcement); Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create);
/***** End form *****/ /***** End form *****/
Frm_EndForm (); Frm_EndForm ();

View File

@ -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. 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.13 (2023-05-07)" #define Log_PLATFORM_VERSION "SWAD 22.107.14 (2023-05-07)"
#define CSS_FILE "swad22.107.css" #define CSS_FILE "swad22.107.css"
#define JS_FILE "swad22.49.js" #define JS_FILE "swad22.49.js"
/* /*
Version 22.107.14:May 07, 2023 Changes in edition of announcements. (337936 lines)
Version 22.107.13:May 07, 2023 Changes in edition of exam sessions. (337957 lines) Version 22.107.13:May 07, 2023 Changes in edition of exam sessions. (337957 lines)
Version 22.107.12:May 07, 2023 Changes in edition of rubrics. (337930 lines) Version 22.107.12:May 07, 2023 Changes in edition of rubrics. (337930 lines)
Version 22.107.11:May 07, 2023 Changes in edition of surveys. (337952 lines) Version 22.107.11:May 07, 2023 Changes in edition of surveys. (337952 lines)

View File

@ -6595,29 +6595,6 @@ const char *Txt_Create_account =
"Hesabı oluştur"; "Hesabı oluştur";
#endif #endif
const char *Txt_Create_announcement =
#if L==1 // ca
"Crear anunci";
#elif L==2 // de
"Erstelle Bekanntmachung";
#elif L==3 // en
"Create announcement";
#elif L==4 // es
"Crear anuncio";
#elif L==5 // fr
"Créer annonce";
#elif L==6 // gn
"Crear anuncio"; // Okoteve traducción
#elif L==7 // it
"Crea annuncio";
#elif L==8 // pl
"Stwórz ogłoszenia";
#elif L==9 // pt
"Criar anúncio";
#elif L==10 // tr
"Create announcement"; // Çeviri lazim!
#endif
const char *Txt_Create_another_type_of_degree = const char *Txt_Create_another_type_of_degree =
#if L==1 // ca #if L==1 // ca
"Crear un altre tipus de titulació"; "Crear un altre tipus de titulació";

View File

@ -28766,27 +28766,27 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] =
"See form to create a new global announcement" // Çeviri lazim! "See form to create a new global announcement" // Çeviri lazim!
#endif #endif
, ,
[ActRcvAnn] = [ActNewAnn] =
#if L==1 // ca #if L==1 // ca
"Create new global announcement" // Necessita traducció "Crear anunci"
#elif L==2 // de #elif L==2 // de
"Create new global announcement" // Need Übersetzung "Erstelle Bekanntmachung"
#elif L==3 // en #elif L==3 // en
"Create new global announcement" "Create announcement"
#elif L==4 // es #elif L==4 // es
"Crear nuevo anuncio global" "Crear anuncio"
#elif L==5 // fr #elif L==5 // fr
"Create new global announcement" // Besoin de traduction "Créer annonce"
#elif L==6 // gn #elif L==6 // gn
"Crear nuevo anuncio global" // Okoteve traducción "Omoheñói anuncio"
#elif L==7 // it #elif L==7 // it
"Create new global announcement" // Bisogno di traduzione "Crea annuncio"
#elif L==8 // pl #elif L==8 // pl
"Create new global announcement" // Potrzebujesz tlumaczenie "Stwórz ogłoszenia"
#elif L==9 // pt #elif L==9 // pt
"Create new global announcement" // Precisa de tradução "Criar anúncio"
#elif L==10 // tr #elif L==10 // tr
"Create new global announcement" // Çeviri lazim! "Duyuru oluştur"
#endif #endif
, ,
[ActHidAnn] = [ActHidAnn] =